/* ==========================================================================
   Bluewater Waterfront — Serene Blue Waterfront design system
   Cormorant Garamond (display) + Manrope (body)
   ========================================================================== */

:root {
  /* Palette */
  --deep: #123A4A;
  --deep-2: #0C2A36;
  --deep-3: #1B4E60;
  --aqua: #6FB3C0;
  --aqua-soft: #9CCCD5;
  --aqua-tint: #E4F0F1;
  --cream: #F7F3EC;
  --cream-2: #FBF8F2;
  --sand: #E4D8C3;
  --sand-2: #D8C7A8;
  --ink: #10323F;
  --muted: #4E6A73;
  --line: rgba(18, 58, 74, 0.14);
  --line-soft: rgba(18, 58, 74, 0.08);
  --white: #ffffff;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Space + shape */
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 18px rgba(12, 42, 54, 0.08);
  --shadow: 0 20px 50px -22px rgba(12, 42, 54, 0.35);
  --shadow-lg: 0 40px 90px -40px rgba(12, 42, 54, 0.5);
  --maxw: 1200px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--aqua);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  display: inline-block;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.06; color: var(--deep); letter-spacing: -0.01em; }
.display { font-size: clamp(2.6rem, 1.5rem + 5vw, 5.4rem); }
.h2 { font-size: clamp(2.05rem, 1.4rem + 3vw, 3.5rem); }
.h3 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem); }
.lead { font-size: clamp(1.05rem, 1rem + 0.5vw, 1.28rem); color: var(--muted); max-width: 56ch; }
.skip-link {
  position: absolute; left: 1rem; top: -60px;
  background: var(--deep); color: var(--cream);
  padding: 0.7rem 1.1rem; border-radius: 8px; z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2.5px solid var(--aqua);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--deep);
  --fg: var(--cream);
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.92rem 1.6rem;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: 999px;
  font-weight: 600; font-size: 0.94rem; letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn .arw { transition: transform 0.35s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }
.btn--ghost {
  --bg: transparent; --fg: var(--deep);
  border-color: var(--line);
}
.btn--ghost:hover { --bg: var(--deep); --fg: var(--cream); border-color: var(--deep); }
.btn--aqua { --bg: var(--aqua); --fg: var(--deep-2); border-color: var(--aqua); }
.btn--light { --bg: var(--cream); --fg: var(--deep); border-color: var(--cream); }
.btn--wide { width: 100%; justify-content: center; }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line-soft);
  box-shadow: 0 8px 30px -20px rgba(12,42,54,0.4);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand__mark { width: 34px; height: 34px; flex: none; color: var(--aqua); }
.brand__mark .deep { color: var(--deep); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  color: var(--deep); letter-spacing: 0.01em;
}
.brand__tag {
  font-family: var(--sans); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--aqua);
  margin-top: 3px;
}
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-size: 0.92rem; font-weight: 500; color: var(--muted);
  position: relative; padding-block: 0.4rem;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--aqua);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav__links a:hover { color: var(--deep); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 0.85rem; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 10px;
  background: transparent; padding: 0;
  align-items: center; justify-content: center;
}
.nav__toggle span {
  position: relative; width: 20px; height: 1.5px; background: var(--deep);
  display: block; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 1.5px; background: var(--deep);
  transition: transform 0.3s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__desktop-cta { display: none; }
  .nav__links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream-2);
    padding: 1rem var(--gutter) 2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 1rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1.1rem; color: var(--deep); }
  .nav__links a::after { display: none; }
  .nav__links .btn { margin-top: 1.2rem; }
}

/* ==========================================================================
   Hero — signature waterline device
   ========================================================================== */
.hero { position: relative; padding-top: clamp(2rem, 5vw, 3.5rem); }
.hero__grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
.hero__coords {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--aqua); display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.4rem;
}
.hero__coords svg { width: 15px; height: 15px; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--aqua); }
.hero__sub { max-width: 46ch; margin-bottom: 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero__stats {
  display: flex; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2.8rem;
  padding-top: 2rem; border-top: 1px solid var(--line);
}
.stat__num { font-family: var(--serif); font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.6rem); color: var(--deep); line-height: 1; }
.stat__num span { color: var(--aqua); }
.stat__label { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; margin-top: 0.4rem; }

.hero__media { position: relative; }
.hero__frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,58,74,0) 45%, rgba(12,42,54,0.55) 100%);
}
.hero__caption {
  position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1.1rem; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.hero__caption strong { font-family: var(--serif); font-size: 1.15rem; color: var(--deep); font-weight: 600; display: block; }
.hero__caption small { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.04em; }
.hero__caption .pill {
  font-size: 0.72rem; font-weight: 700; color: var(--deep-2);
  background: var(--aqua); padding: 0.35rem 0.7rem; border-radius: 999px; white-space: nowrap;
}
.hero__badge {
  position: absolute; top: -18px; right: -14px; z-index: 3;
  width: 108px; height: 108px; border-radius: 50%;
  background: var(--deep); color: var(--cream);
  display: grid; place-items: center; text-align: center;
  box-shadow: var(--shadow);
  animation: spin 26s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .hero__badge { animation: none; } }
.hero__badge svg { width: 100%; height: 100%; }
.hero__badge .dot { fill: var(--aqua); }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 520px; margin-inline: auto; }
  .hero__frame { aspect-ratio: 5 / 4; }
  .hero__badge { width: 88px; height: 88px; top: -14px; }
}

/* ---------- Waterline divider ---------- */
.waterline { position: relative; height: 46px; overflow: hidden; }
.waterline svg { position: absolute; bottom: 0; width: 100%; height: 100%; }

/* ==========================================================================
   Marquee ribbon
   ========================================================================== */
.ribbon { background: var(--deep); color: var(--cream); overflow: hidden; }
.ribbon__track {
  display: flex; gap: 3rem; padding-block: 0.95rem; white-space: nowrap;
  animation: slide 32s linear infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) { .ribbon__track { animation: none; flex-wrap: wrap; justify-content: center; } }
.ribbon__track span { font-family: var(--serif); font-size: 1.15rem; font-style: italic; display: inline-flex; align-items: center; gap: 3rem; }
.ribbon__track span::after { content: "◈"; color: var(--aqua); font-style: normal; font-size: 0.8rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ==========================================================================
   About / Story
   ========================================================================== */
.about { background: var(--cream-2); }
.about__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about__quote {
  position: absolute; bottom: -28px; left: -20px;
  background: var(--deep); color: var(--cream);
  padding: 1.3rem 1.5rem; border-radius: 14px; max-width: 260px;
  box-shadow: var(--shadow); font-family: var(--serif); font-size: 1.25rem; font-style: italic; line-height: 1.3;
}
.about__body h2 { margin-bottom: 1.4rem; }
.about__body p { color: var(--muted); margin-bottom: 1.1rem; max-width: 54ch; }
.about__body p strong { color: var(--deep); font-weight: 600; }
.about__pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 2rem; }
.pillar { padding: 1.2rem 1.3rem; background: var(--white); border: 1px solid var(--line-soft); border-radius: 12px; }
.pillar svg { width: 26px; height: 26px; color: var(--aqua); margin-bottom: 0.7rem; }
.pillar h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.pillar p { font-size: 0.86rem; margin: 0; }

@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin: 0 auto 2.5rem; }
  .about__quote { left: auto; right: 12px; }
}
@media (max-width: 480px) { .about__pillars { grid-template-columns: 1fr; } }

/* ==========================================================================
   Section head
   ========================================================================== */
.sec-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { margin-block: 0.9rem 1rem; }
.sec-head p { color: var(--muted); }
.sec-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; max-width: none; }
.sec-head--row .sec-head__txt { max-width: 54ch; }
@media (max-width: 720px) { .sec-head--row { flex-direction: column; align-items: flex-start; gap: 1.2rem; } }

/* ==========================================================================
   Collection (featured listings + signature)
   ========================================================================== */
.collection__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.listing {
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.listing:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.listing__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.listing__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.listing:hover .listing__media img { transform: scale(1.06); }
.listing__status {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 0.75rem; border-radius: 999px;
  background: color-mix(in srgb, var(--cream) 92%, transparent); color: var(--deep);
  backdrop-filter: blur(6px);
}
.listing__status.is-live { background: var(--aqua); color: var(--deep-2); }
.listing__frontage {
  position: absolute; bottom: 1rem; right: 1rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 600; color: var(--cream);
  background: rgba(12,42,54,0.55); backdrop-filter: blur(4px);
  padding: 0.4rem 0.7rem; border-radius: 999px;
}
.listing__frontage svg { width: 14px; height: 14px; color: var(--aqua-soft); }
.listing__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.listing__loc { font-size: 0.78rem; color: var(--aqua); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.listing__name { font-size: 1.55rem; margin: 0.35rem 0 0.9rem; }
.listing__specs { display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line-soft); }
.spec { display: flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; color: var(--muted); }
.spec svg { width: 17px; height: 17px; color: var(--deep-3); flex: none; }
.listing__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: 1.1rem; }
.listing__price { font-family: var(--serif); font-size: 1.5rem; color: var(--deep); font-weight: 600; }
.listing__price small { font-family: var(--sans); font-size: 0.72rem; color: var(--muted); font-weight: 500; display: block; letter-spacing: 0.02em; }
.listing__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 600; color: var(--deep);
  transition: gap 0.3s var(--ease);
}
.listing__link svg { width: 15px; height: 15px; }
.listing__link:hover { gap: 0.7rem; color: var(--aqua); }

@media (max-width: 720px) { .collection__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Signature — private viewing
   ========================================================================== */
.viewing { position: relative; color: var(--cream); overflow: hidden; }
.viewing__bg { position: absolute; inset: 0; }
.viewing__bg img { width: 100%; height: 100%; object-fit: cover; }
.viewing__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(12,42,54,0.94) 0%, rgba(18,58,74,0.82) 45%, rgba(18,58,74,0.35) 100%); }
.viewing .wrap { position: relative; z-index: 2; }
.viewing__inner { max-width: 620px; }
.viewing .eyebrow { color: var(--aqua-soft); }
.viewing h2 { color: var(--cream); margin: 1rem 0 1.3rem; }
.viewing p { color: rgba(247,243,236,0.86); margin-bottom: 1.6rem; max-width: 52ch; }
.viewing__steps { display: grid; gap: 0.9rem; margin: 2rem 0 2.4rem; }
.vstep { display: flex; gap: 1rem; align-items: flex-start; }
.vstep__n { font-family: var(--serif); font-size: 1.4rem; color: var(--aqua-soft); flex: none; width: 2.2rem; }
.vstep h3 { color: var(--cream); font-size: 1.2rem; margin-bottom: 0.2rem; }
.vstep p { margin: 0; font-size: 0.9rem; }
.viewing__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery__grid {
  display: grid; gap: clamp(0.75rem, 1.5vw, 1.1rem);
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(140px, 20vw, 220px);
}
.gitem { position: relative; overflow: hidden; border-radius: var(--radius); }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gitem:hover img { transform: scale(1.07); }
.gitem::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(12,42,54,0.4)); opacity: 0; transition: opacity 0.4s var(--ease); }
.gitem:hover::after { opacity: 1; }
.gitem--wide { grid-column: span 2; }
.gitem--tall { grid-row: span 2; }
.gitem__cap { position: absolute; left: 0.9rem; bottom: 0.8rem; z-index: 2; color: var(--cream); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; opacity: 0; transform: translateY(6px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.gitem:hover .gitem__cap { opacity: 1; transform: translateY(0); }
@media (max-width: 860px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } .gitem--tall { grid-row: span 1; } }
@media (max-width: 460px) { .gallery__grid { grid-template-columns: 1fr; } .gitem--wide { grid-column: span 1; } }

/* ==========================================================================
   Team
   ========================================================================== */
.team { background: var(--cream-2); }
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.member { text-align: left; }
.member__photo {
  aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.1rem;
  position: relative; background: var(--aqua-tint);
}
.member__photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(18,58,74,0.16));
}
.member__initials {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 0;
  font-family: var(--serif); font-size: 4rem; color: var(--deep-3); opacity: 0.35;
}
.member h3 { font-size: 1.4rem; }
.member__role { color: var(--aqua); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin: 0.2rem 0 0.7rem; }
.member p { font-size: 0.9rem; color: var(--muted); }
@media (max-width: 760px) { .team__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.quote {
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem;
  display: flex; flex-direction: column;
}
.quote__mark { font-family: var(--serif); font-size: 3.4rem; line-height: 0.6; color: var(--aqua); height: 1.4rem; }
.quote__body { font-family: var(--serif); font-size: 1.32rem; line-height: 1.42; color: var(--deep); font-style: italic; margin-bottom: 1.6rem; }
.quote__by { margin-top: auto; display: flex; align-items: center; gap: 0.8rem; }
.quote__av { width: 42px; height: 42px; border-radius: 50%; background: var(--deep); color: var(--cream); display: grid; place-items: center; font-family: var(--serif); font-size: 1.1rem; flex: none; }
.quote__by strong { display: block; font-family: var(--sans); font-size: 0.9rem; color: var(--deep); font-weight: 700; }
.quote__by span { font-size: 0.78rem; color: var(--muted); }
.stars { color: var(--aqua); letter-spacing: 0.12em; font-size: 0.85rem; margin-bottom: 0.9rem; }
@media (max-width: 860px) { .quotes__grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; } }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: var(--deep); color: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact .eyebrow { color: var(--aqua-soft); }
.contact h2 { color: var(--cream); margin: 1rem 0 1.2rem; }
.contact__intro { color: rgba(247,243,236,0.85); margin-bottom: 2rem; max-width: 44ch; }
.contact__block { padding-block: 1.2rem; border-top: 1px solid rgba(247,243,236,0.16); display: flex; gap: 1rem; align-items: flex-start; }
.contact__block svg { width: 22px; height: 22px; color: var(--aqua-soft); flex: none; margin-top: 3px; }
.contact__block h3 { color: var(--cream); font-size: 1.15rem; margin-bottom: 0.2rem; }
.contact__block p, .contact__block a { color: rgba(247,243,236,0.82); font-size: 0.92rem; font-family: var(--sans); }
.contact__block a:hover { color: var(--aqua-soft); }
.contact__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.wa {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: #25D366; color: #05331a; padding: 0.85rem 1.4rem; border-radius: 999px;
  font-weight: 700; font-size: 0.9rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.wa svg { width: 18px; height: 18px; }
.call-link {
  display: inline-flex; align-items: center; gap: 0.55rem;
  border: 1px solid rgba(247,243,236,0.3); color: var(--cream);
  padding: 0.85rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: 0.9rem;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.call-link:hover { background: rgba(247,243,236,0.1); border-color: var(--cream); }
.call-link svg { width: 17px; height: 17px; color: var(--aqua-soft); }

/* ---------- Form ---------- */
.form-card {
  background: var(--cream); color: var(--ink);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.form-card__sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.6rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--deep); margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.field .req { color: var(--aqua); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.82rem 1rem; font: inherit; font-size: 0.94rem;
  color: var(--ink); background: var(--white);
  border: 1px solid var(--line); border-radius: 10px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #98a9ae; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(111,179,192,0.25);
}
.field textarea { resize: vertical; min-height: 118px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234E6A73' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 18px; padding-right: 2.6rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-reassure { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; display: flex; align-items: center; gap: 0.5rem; text-align: left; }
.form-reassure svg { width: 15px; height: 15px; color: var(--aqua); flex: none; }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }
@media (max-width: 440px) { .field-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--deep-2); color: rgba(247,243,236,0.72); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(247,243,236,0.12); }
.footer__brand .brand__name { color: var(--cream); }
.footer__brand p { margin-top: 1rem; max-width: 34ch; font-size: 0.9rem; }
.footer__col h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--aqua-soft); margin-bottom: 1rem; font-weight: 700; }
.footer__col a { display: block; padding: 0.35rem 0; font-size: 0.92rem; transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--cream); }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(247,243,236,0.2);
  display: grid; place-items: center; color: rgba(247,243,236,0.8);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer__social a:hover { background: var(--aqua); color: var(--deep-2); border-color: var(--aqua); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-top: 2rem; font-size: 0.82rem; flex-wrap: wrap;
}
.footer__bottom a { color: var(--aqua-soft); }
.footer__bottom a:hover { color: var(--cream); text-decoration: underline; }
.studio-credit { color: rgba(247,243,236,0.6); }
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 460px) { .footer__top { grid-template-columns: 1fr; } }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==========================================================================
   Contact page hero + thank-you
   ========================================================================== */
.page-hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 3vw, 2rem); background: var(--cream-2); border-bottom: 1px solid var(--line-soft); }
.page-hero h1 { margin: 0.8rem 0 1rem; }
.page-hero p { max-width: 54ch; }
.breadcrumb { font-size: 0.82rem; color: var(--muted); }
.breadcrumb a { color: var(--aqua); }
.breadcrumb a:hover { text-decoration: underline; }

.thanks { min-height: 78vh; display: grid; place-items: center; text-align: center; padding-block: 4rem; }
.thanks__card { max-width: 620px; }
.thanks__icon { width: 84px; height: 84px; margin: 0 auto 1.8rem; border-radius: 50%; background: var(--aqua-tint); display: grid; place-items: center; }
.thanks__icon svg { width: 40px; height: 40px; color: var(--deep); }
.thanks h1 { margin-bottom: 1.2rem; }
.thanks p { color: var(--muted); margin-bottom: 2rem; max-width: 48ch; margin-inline: auto; }
.thanks__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
