/* ===== The Complete Light — landing page styles ===== */
:root {
  --bg: #0c0c0e;
  --bg-alt: #141417;
  --bg-card: #1a1a1f;
  --blue: #2ca6e3;
  --blue-deep: #1f8bc6;
  --green: #8db737;
  --green-soft: #a6ce4e;
  --gold: #2ca6e3;        /* brand blue — kept var name so existing rules recolor */
  --gold-soft: #5bbdec;   /* light blue */
  --text: #eef2f6;
  --muted: #9aa3a9;
  --line: rgba(44,166,227,0.22);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: var(--gold); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; letter-spacing: 0.3px; }
h2 { font-size: 2rem; margin-bottom: 0.5rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.4rem; color: var(--gold-soft); }
.gold { color: var(--gold); }
.muted { color: var(--muted); }
.center { text-align: center; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 720px; }
.section { padding: 64px 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #ffffff;
  font-weight: 600;
  font-family: var(--sans);
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 22px rgba(44,166,227,0.3);
  font-size: 1rem;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(44,166,227,0.45); color: #fff; }
.btn-sm { padding: 9px 16px; font-size: 0.82rem; }
.btn-lg { padding: 15px 34px; font-size: 1.08rem; }
.btn-block { width: 100%; margin-top: 10px; }

/* ===== Top bar ===== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 22px;
  background: rgba(12,12,14,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.wordmark { display: flex; align-items: center; }
.logo-img { height: 180px; width: auto; display: block; }
.logo-footer { height: 84px; width: auto; margin: 0 auto 10px; display: block; }
@media (max-width: 600px) { .logo-img { height: 72px; } }

/* ===== Hero ===== */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg img { object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0.55) 0%, rgba(8,8,10,0.45) 40%, rgba(8,8,10,0.85) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 0 22px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: 2.7rem; margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-sub { font-size: 1.2rem; color: #ece6d8; margin-bottom: 28px; }
.hero-trust { margin-top: 20px; font-size: 0.86rem; color: var(--gold-soft); letter-spacing: 0.4px; }

/* ===== About ===== */
.about { background: var(--bg-alt); text-align: center; }
.about p { font-size: 1.12rem; color: #ded8cc; margin: 14px 0 26px; }
.stat-row { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 0; }
.stat-row li { font-size: 0.84rem; color: var(--gold-soft); text-transform: uppercase; letter-spacing: 1px; padding: 0 18px; border-right: 1px solid var(--line); }
.stat-row li:last-child { border-right: none; }

/* ===== Services ===== */
.cards { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 32px 0 24px; }
.card { background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px; padding: 28px 24px; transition: border-color .2s, transform .2s; }
.card:hover { border-color: var(--gold); transform: translateY(-3px); }
.card-icon { font-size: 1.8rem; color: var(--blue); margin-bottom: 10px; }
.card:nth-child(2) .card-icon { color: var(--green); }
.card:nth-child(3) .card-icon { color: var(--green-soft); }
.card p { color: var(--muted); }

/* ===== Gallery ===== */
.gallery { background: var(--bg-alt); }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; border: 1px solid var(--line); }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 26px 16px 12px; font-size: 0.9rem; color: #f4f0e8;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

/* ===== Testimonials ===== */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
.review { background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px; padding: 24px; }
.review .stars { color: var(--green); letter-spacing: 3px; margin-bottom: 10px; font-size: 1rem; }
.review p { font-style: italic; color: #e6e0d4; margin-bottom: 12px; }
.review cite { color: var(--gold-soft); font-style: normal; font-weight: 600; font-size: 0.92rem; }

/* ===== Forms ===== */
.inquiry { background: var(--bg-alt); }
.form { margin-top: 26px; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0 16px; }
.field label, .field .label { display: block; font-size: 0.84rem; color: var(--gold-soft); margin-bottom: 6px; letter-spacing: 0.4px; }
.req { color: var(--gold); margin-left: 3px; }
.field input, .field select, .field textarea {
  width: 100%; background: #0e0e11; border: 1px solid var(--line); border-radius: 9px;
  padding: 12px 14px; color: var(--text); font-family: var(--sans); font-size: 1rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,162,78,0.15); }
.field textarea { resize: vertical; }
.checks { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.checks label { color: var(--text); font-size: 0.95rem; display: flex; align-items: center; gap: 6px; cursor: pointer; }
.checks input { width: auto; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.field.invalid input, .field.invalid textarea { border-color: #c0563f; }
.form-status { margin-top: 14px; text-align: center; font-size: 0.95rem; min-height: 1.2em; }
.form-status.success { color: var(--gold-soft); }
.form-status.error { color: #e08a6f; }

/* Star input */
.star-input { display: flex; gap: 6px; }
.star-input .star { background: none; border: none; color: var(--green); font-size: 1.9rem; cursor: pointer; line-height: 1; padding: 0; transition: transform .1s; }
.star-input .star:hover { transform: scale(1.15); }
.star-input .star.on { text-shadow: 0 0 10px rgba(212,162,78,0.6); }

/* ===== Footer ===== */
.footer { background: #08080a; border-top: 1px solid var(--line); padding: 46px 0 36px; text-align: center; }
.footer p { color: var(--muted); font-size: 0.92rem; margin-bottom: 7px; }
.footer-mark { font-family: var(--serif); font-weight: 700; letter-spacing: 3px; color: var(--text); font-size: 1.1rem; }
.footer .copyright { margin-top: 16px; font-size: 0.8rem; color: #6b675f; }

/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.92); display: none; align-items: center; justify-content: center; flex-direction: column; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 94vw; max-height: 82vh; border-radius: 8px; }
.lightbox-caption { color: var(--gold-soft); margin-top: 14px; font-size: 0.95rem; }
.lightbox-close { position: absolute; top: 18px; right: 24px; background: none; border: none; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }

/* ===== Responsive ===== */
@media (min-width: 720px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 860px) {
  body { font-size: 18px; }
  h2 { font-size: 2.5rem; }
  .hero h1 { font-size: 3.6rem; }
  .hero-sub { font-size: 1.35rem; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item img { height: 260px; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 88px 0; }
}
