/* =========================================================================
   Central Florida Real Estate Photography (CFLREP)
   Coastal design system  •  styles.css
   Palette: ocean teal + sun-sand accent on airy sea-mist whites
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --ink:        #0c2733;   /* deep teal-navy text */
  --ink-soft:   #41606b;   /* secondary text */
  --ink-muted:  #6c858e;   /* muted text */
  --teal:       #0e7c86;   /* primary */
  --teal-700:   #0a5f67;
  --teal-900:   #073f45;
  --aqua:       #15b3bb;   /* bright coastal accent */
  --sand:       #f4a04c;   /* sun / CTA accent */
  --sand-dark:  #e08a2e;
  --coral:      #ff6f61;   /* sparing highlight */

  --sky-50:     #f5fafb;
  --sky-100:    #e9f5f6;
  --sky-200:    #d3eaec;
  --paper:      #ffffff;
  --line:       #e1ecee;
  --line-soft:  #eef5f6;

  /* Gradients */
  --grad-teal:   linear-gradient(135deg, #0e7c86 0%, #16b5bd 100%);
  --grad-sun:    linear-gradient(135deg, #f4a04c 0%, #f6b765 100%);
  --grad-sunset: linear-gradient(120deg, #0b2a33 0%, #0e7c86 45%, #f4a04c 120%);
  --hero-veil:   linear-gradient(180deg, rgba(8,28,36,.48) 0%, rgba(8,28,36,.26) 34%, rgba(8,28,36,.80) 82%, rgba(8,28,36,.98) 100%);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing & shape */
  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(12,39,51,.06);
  --shadow-sm: 0 6px 18px rgba(12,39,51,.08);
  --shadow:    0 14px 40px rgba(12,39,51,.12);
  --shadow-lg: 0 30px 70px rgba(12,39,51,.18);

  --transition: .28s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--teal-700); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal); }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-sans); font-weight: 700; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--sand); border-radius: 2px; }
.eyebrow.is-light { color: #ffffff; }
.eyebrow.center { justify-content: center; }

.lead { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.7; }
.text-center { text-align: center; }
.measure { max-width: 60ch; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.container.narrow { max-width: var(--container-narrow); }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
/* Offset anchored sections so the fixed header doesn't overlap them on a single-page site */
[id] { scroll-margin-top: 90px; }
.section.tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-head { max-width: 660px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.bg-sky { background: var(--sky-50); }
.bg-mist { background: linear-gradient(180deg, var(--sky-100), var(--sky-50)); }
.bg-ink { background: var(--ink); color: #cfe0e4; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .95rem 1.7rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 1rem; letter-spacing: .01em;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
  border: 2px solid transparent; line-height: 1;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-primary { background: var(--grad-sun); color: #3a2407; box-shadow: 0 10px 24px rgba(224,138,46,.35); }
.btn-primary:hover { color: #3a2407; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(224,138,46,.45); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 10px 24px rgba(14,124,134,.3); }
.btn-teal:hover { background: var(--teal-700); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: #fff; color: var(--teal-900); border-color: #fff; }
.btn-outline { background: transparent; color: var(--teal-700); border-color: var(--line); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn-group.center { justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: var(--transition);
  padding: .65rem 0;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: var(--transition);
  background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(12px);
  box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--line-soft);
}
.site-header.scrolled::before { opacity: 1; }
.site-header > .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand__mark { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; box-shadow: var(--shadow-xs); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; color: var(--ink); letter-spacing: -.01em; }
.brand__sub { font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--teal); }
/* Light brand (over hero) */
.site-header:not(.scrolled) .brand__name { color: #fff; }
.site-header:not(.scrolled) .brand__sub { color: var(--aqua); }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  position: relative; padding: .6rem .85rem; border-radius: 8px;
  font-weight: 500; font-size: .98rem; color: var(--ink);
}
.nav a::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .35rem; height: 2px;
  background: var(--sand); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--teal-700); }
.site-header:not(.scrolled) .nav a { color: rgba(255,255,255,.94); }
.site-header:not(.scrolled) .nav a:hover { color: #fff; }
/* Keep the call-to-action button styled correctly in both header states */
.nav a.btn { color: #3a2407; }
.nav a.btn::after { display: none; }
.nav a.btn svg { width: 1.05em; height: 1.05em; }
.site-header:not(.scrolled) .nav a.btn-primary { color: #3a2407; }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.header-phone {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--ink);
  font-size: 1rem;
}
.header-phone svg { width: 1.05em; height: 1.05em; color: var(--teal); }
.site-header:not(.scrolled) .header-phone { color: #fff; }
.site-header:not(.scrolled) .header-phone svg { color: var(--sand); }

/* Mobile nav toggle */
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--transition); position: relative;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.site-header:not(.scrolled) .nav-toggle span,
.site-header:not(.scrolled) .nav-toggle span::before,
.site-header:not(.scrolled) .nav-toggle span::after { background: #fff; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: clamp(540px, 84vh, 800px); display: flex; align-items: flex-end; color: #fff; isolation: isolate; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media picture { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--hero-veil); }
.hero__inner { padding-block: clamp(6rem, 14vh, 9rem) clamp(3rem, 7vh, 5rem); max-width: 760px; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero .lead { color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 1.6vw, 1.3rem); margin-top: 1.25rem; max-width: 46ch; }
.hero .btn-group { margin-top: 2.1rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.2); }
.hero__badge { display: flex; align-items: center; gap: .6rem; font-size: .92rem; font-weight: 500; color: rgba(255,255,255,.92); }
.hero__badge svg { width: 1.4em; height: 1.4em; color: var(--sand); flex-shrink: 0; }

/* Coastal wave divider */
.wave { display: block; width: 100%; height: auto; line-height: 0; }
.wave svg { display: block; width: 100%; height: auto; }

/* ---------- Trust / stats bar ---------- */
.statbar { background: var(--ink); color: #fff; }
.statbar .grid { gap: 1rem 2rem; }
.stat { text-align: center; padding: .5rem; }
.stat__num { font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 600; color: #fff; line-height: 1; }
.stat__num .unit { color: var(--sand); }
.stat__label { margin-top: .5rem; font-size: .9rem; color: #9fc0c6; letter-spacing: .02em; }

/* ---------- Cards ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; transition: var(--transition); height: 100%;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--sky-100); color: var(--teal); margin-bottom: 1.3rem;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .98rem; }
.card__price { margin-top: auto; padding-top: 1.2rem; font-weight: 700; color: var(--teal-700); font-size: .95rem; }
.card__price span { font-family: var(--font-display); font-size: 1.45rem; color: var(--ink); }
.card__link { margin-top: 1.1rem; display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--teal); font-size: .95rem; }
.card__link svg { width: 1em; height: 1em; transition: transform var(--transition); }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 3/2; object-fit: cover; }
.split__media .float-badge {
  position: absolute; bottom: -20px; left: -20px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1rem 1.3rem; display: flex; align-items: center; gap: .85rem; max-width: 70%;
}
.split__media .float-badge svg { width: 2.1rem; height: 2.1rem; color: var(--teal); flex-shrink: 0; }
.split__media .float-badge b { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); }
.split__media .float-badge small { color: var(--ink-muted); font-size: .82rem; }
.split__body h2 { margin-bottom: 1.15rem; }
.split__body p + p { margin-top: 1rem; }

.checklist { display: grid; gap: .85rem; margin-top: 1.6rem; }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; color: var(--ink-soft); }
.checklist svg { width: 1.4em; height: 1.4em; color: var(--teal); flex-shrink: 0; margin-top: .15em; }
.checklist b { color: var(--ink); }

/* ---------- Process / steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.step { position: relative; padding: 2rem 1.5rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.step::before {
  counter-increment: step; content: counter(step);
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  width: 44px; height: 44px; border-radius: 50%; background: var(--grad-teal); color: #fff;
  display: grid; place-items: center; margin-bottom: 1.1rem; box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.step p { font-size: .95rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; grid-auto-rows: 220px; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: var(--sky-100); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,28,36,.55), transparent 55%);
  opacity: 0; transition: var(--transition);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__cap { position: absolute; left: 1rem; bottom: .85rem; z-index: 2; color: #fff; font-weight: 600; font-size: .9rem; opacity: 0; transform: translateY(8px); transition: var(--transition); }
.gallery__item:hover .gallery__cap { opacity: 1; transform: none; }
.gallery__tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; background: rgba(255,255,255,.92); color: var(--teal-900); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .7rem; border-radius: var(--radius-pill); }
/* spans */
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }
.row-2 { grid-row: span 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(7,24,30,.92); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 1.4rem; right: 1.6rem; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 1.6rem; display: grid; place-items: center; }
.lightbox__close:hover { background: #fff; color: var(--ink); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 1.6rem; display: grid; place-items: center; }
.lightbox__nav:hover { background: #fff; color: var(--ink); }
.lightbox__nav.prev { left: 1.2rem; } .lightbox__nav.next { right: 1.2rem; }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; height: 100%; display: flex; flex-direction: column; }
.quote-card .stars { color: var(--sand); letter-spacing: .1em; margin-bottom: 1rem; }
.quote-card blockquote { font-size: 1.05rem; color: var(--ink); line-height: 1.6; font-family: var(--font-display); font-weight: 400; }
.quote-card figcaption { margin-top: 1.3rem; display: flex; align-items: center; gap: .8rem; }
.quote-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-teal); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); }
.quote-card .who b { display: block; color: var(--ink); font-size: .95rem; }
.quote-card .who small { color: var(--ink-muted); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: stretch; }
.price-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.2rem 2rem; display: flex; flex-direction: column; transition: var(--transition); }
.price-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.price-card.featured { border: 2px solid var(--teal); box-shadow: var(--shadow); position: relative; }
.price-card.featured::before { content: "Most Popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-sun); color: #3a2407; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .9rem; border-radius: var(--radius-pill); white-space: nowrap; }
.price-card h3 { font-size: 1.3rem; }
.price-card .sqft { color: var(--ink-muted); font-size: .9rem; margin-top: .25rem; }
.price-card .price { font-family: var(--font-display); font-size: 2.8rem; font-weight: 600; color: var(--ink); margin: 1.1rem 0 .2rem; line-height: 1; }
.price-card .price small { font-size: .9rem; color: var(--ink-muted); font-family: var(--font-sans); font-weight: 600; }
.price-card .from { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); font-weight: 700; }
.price-card ul { display: grid; gap: .7rem; margin: 1.5rem 0; }
.price-card li { display: flex; gap: .6rem; font-size: .95rem; color: var(--ink-soft); }
.price-card li svg { width: 1.2em; height: 1.2em; color: var(--teal); flex-shrink: 0; margin-top: .2em; }
.price-card .btn { margin-top: auto; }

/* Add-ons table */
.addons { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem 2.5rem; }
.addon { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.addon b { color: var(--ink); font-weight: 600; }
.addon small { display: block; color: var(--ink-muted); font-weight: 400; font-size: .85rem; }
.addon .amt { color: var(--teal-700); font-weight: 700; white-space: nowrap; font-family: var(--font-display); }

/* ---------- Areas ---------- */
.area-pills { display: flex; flex-wrap: wrap; gap: .6rem; }
.area-pill { background: var(--sky-100); color: var(--teal-900); border: 1px solid var(--sky-200); padding: .5rem 1rem; border-radius: var(--radius-pill); font-size: .9rem; font-weight: 600; }
.area-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; height: 100%; }
.area-card h3 { font-size: 1.25rem; margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem; }
.area-card h3 svg { width: 1.1em; height: 1.1em; color: var(--sand); }
.area-card p { font-size: .95rem; }
.area-card ul { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.area-card ul li { font-size: .82rem; color: var(--ink-muted); background: var(--sky-50); padding: .25rem .65rem; border-radius: var(--radius-pill); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad-sunset); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.5rem,5vw,4rem); text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23ffffff' stroke-opacity='.05' stroke-width='1'/%3E%3C/svg%3E"); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 52ch; margin-inline: auto; margin-top: .8rem; }
.cta-band .btn-group { margin-top: 2rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact-cards { display: grid; gap: 1.2rem; }
.contact-line { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.5rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); transition: var(--transition); }
.contact-line:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.contact-line .ico { width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px; background: var(--sky-100); color: var(--teal); display: grid; place-items: center; }
.contact-line .ico svg { width: 24px; height: 24px; }
.contact-line > span:last-child { display: flex; flex-direction: column; gap: .2rem; }
.contact-line .label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-muted); font-weight: 700; }
.contact-line .value { display: block; font-family: var(--font-display); font-size: 1.3rem; line-height: 1.2; color: var(--ink); }
.contact-line .value a { color: var(--ink); }
.contact-line .value a:hover { color: var(--teal); }
.contact-line small { color: var(--ink-muted); }

.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .45rem; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--sky-50); transition: var(--transition);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(14,124,134,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form .fineprint { font-size: .82rem; color: var(--ink-muted); margin-top: .9rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left; padding: 1.3rem 0; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--ink); }
.faq__q .pm { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--sky-100); color: var(--teal); display: grid; place-items: center; font-size: 1.2rem; transition: var(--transition); }
.faq__item.open .pm { background: var(--teal); color: #fff; transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { padding-bottom: 1.3rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #a9c4ca; padding-top: 0; }
.site-footer a { color: #cfe0e4; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding: clamp(3rem,6vw,4.5rem) 0; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__sub { color: var(--aqua); }
.footer-brand p { color: #8fb0b7; margin-top: 1rem; font-size: .95rem; max-width: 32ch; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col li { font-size: .95rem; }
.footer-contact .line { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .9rem; font-size: .95rem; }
.footer-contact svg { width: 1.15em; height: 1.15em; color: var(--sand); flex-shrink: 0; margin-top: .25em; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.3rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: var(--transition); }
.footer-social a:hover { background: var(--teal); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; color: #7fa1a8; }
.footer-bottom a { color: #7fa1a8; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Floating call (mobile) ---------- */
.fab-call { position: fixed; right: 1rem; bottom: 1rem; z-index: 90; display: none; align-items: center; gap: .5rem; background: var(--grad-sun); color: #3a2407; font-weight: 700; padding: .9rem 1.3rem; border-radius: var(--radius-pill); box-shadow: var(--shadow); }
.fab-call svg { width: 1.2em; height: 1.2em; }

/* ---------- Page hero (inner) ---------- */
.page-hero { position: relative; padding: clamp(8rem,16vh,11rem) 0 clamp(3rem,7vw,5rem); color: #fff; isolation: isolate; background: var(--grad-sunset); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.2' fill='%23ffffff' fill-opacity='.08'/%3E%3C/svg%3E"); }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,.9); max-width: 56ch; margin-top: 1rem; font-size: 1.12rem; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 1.3rem; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Accessibility ---------- */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 999; background: var(--teal); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; color: #fff; }
:focus-visible { outline: 3px solid var(--aqua); outline-offset: 2px; border-radius: 4px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .gallery { grid-auto-rows: 200px; }
}
@media (max-width: 860px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px); background: #fff;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: .2rem;
    padding: 6rem 1.5rem 2rem; box-shadow: var(--shadow-lg); transform: translateX(105%);
    transition: transform var(--transition); z-index: 105;
  }
  body.nav-open .nav { transform: none; }
  .nav a:not(.btn) { color: var(--ink) !important; padding: .95rem .6rem; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 1.2rem; justify-content: center; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(8,28,36,.5); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 104; }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse .split__media { order: 0; }
  .split__media .float-badge { left: 1rem; bottom: 1rem; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .fab-call { display: inline-flex; }
  .hero { min-height: 88vh; }
}
@media (max-width: 560px) {
  body { font-size: 1rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand__sub { font-size: .56rem; }
  .gallery { grid-template-columns: repeat(6,1fr); grid-auto-rows: 160px; }
  .col-6, .col-4, .col-8, .col-12 { grid-column: span 6; }
  .row-2 { grid-row: span 1; }
  .hero__badges { gap: 1rem 1.4rem; }
  .btn { width: 100%; }
  .hero .btn, .cta-band .btn, .btn-group.center .btn { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
