/* =====================================================
   Criscrystalclear — editorial coastal one-pager
   Aesthetic: warm cream paper, deep loch teal,
   Fraunces (soft serif) + Plus Jakarta Sans.
   ===================================================== */

:root {
  /* palette */
  --ink:        #0E2620;
  --ink-soft:   #21433B;
  --cream:      #F2EBDD;
  --paper:      #F8F3E7;
  --sea:        #2C5F5D;
  --sea-deep:   #1B4A48;
  --mist:       #C8D6CF;
  --gold:       #B89968;
  --gold-soft:  #D9C29C;
  --rule:       rgba(14, 38, 32, 0.16);
  --rule-soft:  rgba(14, 38, 32, 0.08);

  /* type */
  --display: 'Fraunces', 'Times New Roman', serif;
  --body:    'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;

  /* spacing scale */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2.5rem;
  --s-5: 4rem;
  --s-6: 6rem;
  --s-7: 8rem;

  --max: 1240px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* atmospheric paper wash */
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(184, 153, 104, 0.10), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(44, 95, 93, 0.07), transparent 55%);
  background-attachment: fixed;
}

/* ---------- utilities ---------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: 1.25rem;
}
@media (min-width: 720px)  { .wrap { padding-inline: 2rem; } }
@media (min-width: 1080px) { .wrap { padding-inline: 3rem; } }

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  position: fixed;
  top: 1rem; left: 1rem;
  background: var(--ink); color: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  z-index: 100;
  font-size: 0.85rem;
  font-weight: 500;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: 3px;
  border-radius: 2px;
}

section[id] { scroll-margin-top: 88px; }

/* ---------- typography primitives ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  letter-spacing: -0.025em;
  line-height: 0.96;
}
.display em,
em.display-em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-weight: 400;
  color: var(--sea);
}

.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  border-bottom: 1px solid var(--rule-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-variation-settings: "SOFT" 60, "opsz" 14;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand__mark { color: var(--gold); font-size: 0.85em; line-height: 1; }
.brand__name--accent { font-style: italic; color: var(--sea); font-weight: 400; }

.primary-nav { display: none; }
@media (min-width: 820px) {
  .primary-nav {
    display: flex;
    gap: 2rem;
  }
  .primary-nav a {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--ink-soft);
    position: relative;
    padding-block: 0.25rem;
    transition: color 0.2s ease;
  }
  .primary-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 1px;
    background: var(--sea);
    transition: right 0.3s ease;
  }
  .primary-nav a:hover { color: var(--sea); }
  .primary-nav a:hover::after { right: 0; }
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}
.btn--mini {
  padding: 0.55rem 1.05rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn--mini:hover {
  background: var(--sea);
  border-color: var(--sea);
}
@media (max-width: 560px) {
  .phone__label { display: none; }
  .phone__num { font-size: 0.9rem; }
  .btn--mini { display: none; }
}
.phone__label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 3px;
}
.phone__num {
  font-family: var(--display);
  font-variation-settings: "SOFT" 50, "opsz" 36;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* ---------- hero ---------- */
.hero {
  padding: var(--s-5) 0 var(--s-6);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* subtle prism light beam */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg,
      transparent 35%,
      rgba(184, 153, 104, 0.06) 45%,
      rgba(44, 95, 93, 0.05) 55%,
      transparent 65%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  gap: var(--s-3);
}
.hero__col {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.hero__eyebrow { align-self: start; }
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  letter-spacing: -0.035em;
  line-height: 0.92;
  font-size: clamp(3rem, 13vw, 9rem);
  margin-block: 0.25rem;
}
.hero__title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-weight: 400;
  background: linear-gradient(110deg, var(--sea) 10%, var(--gold) 50%, var(--sea) 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 9s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.hero__sub {
  max-width: 38ch;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  color: var(--ink-soft);
  line-height: 1.55;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

/* hero media: photo + seal overlay */
.hero__media {
  position: relative;
  margin: var(--s-3) 0 0;
  border-radius: 4px;
  overflow: visible;
  aspect-ratio: 4 / 5;
  max-width: 520px;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(0.95) contrast(1.02);
  box-shadow:
    0 30px 60px -30px rgba(14, 38, 32, 0.35),
    0 1px 0 rgba(14, 38, 32, 0.04);
}
.hero__seal {
  position: absolute;
  bottom: -36px;
  right: -28px;
  width: 132px;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px -16px rgba(14, 38, 32, 0.4);
  animation: rotate 60s linear infinite;
}
.hero__seal svg { width: 92%; height: 92%; }
@media (min-width: 720px) {
  .hero__seal { width: 168px; bottom: -44px; right: -34px; }
}
@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    column-gap: var(--s-5);
    align-items: center;
  }
  .hero__col { grid-column: 1; }
  .hero__media {
    grid-column: 2;
    margin-top: 0;
    aspect-ratio: 3 / 4;
    max-width: none;
  }
  .hero__seal { width: 184px; bottom: -50px; right: -50px; }
}
@keyframes rotate { to { transform: rotate(360deg); } }
.seal-text {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.30em;
  font-weight: 600;
  fill: currentColor;
}
.seal-mark { font-size: 36px; fill: var(--gold); font-family: var(--display); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  border: 1px solid var(--ink);
  white-space: nowrap;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid {
  background: var(--ink);
  color: var(--cream);
}
.btn--solid:hover {
  background: var(--sea);
  border-color: var(--sea);
  box-shadow: 0 8px 24px -12px rgba(44, 95, 93, 0.6);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--cream {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* ---------- trust strip ---------- */
.trust {
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  padding-block: 1.1rem;
  background: var(--paper);
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust__sep { color: var(--gold); font-size: 0.7rem; }

/* ---------- section heading ---------- */
.section-head {
  margin-bottom: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 32ch;
}
.section-head h2 {
  font-size: clamp(2.25rem, 5.6vw, 4.25rem);
}
.section-head__sub {
  color: var(--ink-soft);
  max-width: 48ch;
}

/* ---------- services ---------- */
.services { padding-block: var(--s-7) var(--s-6); }
.services__grid {
  display: grid;
  gap: 0;
}
.service {
  display: grid;
  gap: 0.6rem;
  padding-block: var(--s-3);
  border-top: 1px solid var(--rule);
  position: relative;
}
.service:last-of-type { border-bottom: 1px solid var(--rule); }
.service__no {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 14;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.service__title {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1;
  transition: color 0.3s ease;
}
.service__copy {
  max-width: 52ch;
  color: var(--ink-soft);
}
.service:hover .service__title { color: var(--sea); }

@media (min-width: 720px) {
  .service {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    grid-template-rows: auto auto;
    column-gap: var(--s-4);
    row-gap: 0.4rem;
    padding-block: var(--s-4);
    align-items: baseline;
  }
  .service__no   { grid-column: 1; grid-row: 1; }
  .service__title{ grid-column: 1; grid-row: 2; }
  .service__copy { grid-column: 2; grid-row: 1 / span 2; align-self: end; padding-bottom: 0.4rem; }
}

/* ---------- approach ---------- */
.approach {
  padding-block: var(--s-7);
  background: var(--paper);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
}
.approach__grid {
  display: grid;
  gap: var(--s-5);
}
.approach__intro h2 {
  font-size: clamp(2.25rem, 5.6vw, 4.25rem);
  margin: 0.6rem 0 1.1rem;
}
.approach__intro p {
  max-width: 52ch;
  color: var(--ink-soft);
}

.approach__list {
  list-style: none;
  display: grid;
  gap: 0;
}
.approach__list li {
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding-block: 1.4rem;
  border-top: 1px solid var(--rule);
}
.approach__list li:last-child { border-bottom: 1px solid var(--rule); }
.approach__list strong {
  font-family: var(--display);
  font-variation-settings: "SOFT" 80, "opsz" 144;
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  letter-spacing: -0.04em;
  color: var(--sea);
  line-height: 1;
}
.approach__list strong sup {
  font-size: 0.45em;
  vertical-align: super;
  font-variation-settings: "SOFT" 60, "opsz" 24;
  color: var(--gold);
  margin-left: 0.05em;
}
.approach__list .muted { color: var(--gold); }
.approach__list span {
  color: var(--ink-soft);
  max-width: 32ch;
}
@media (min-width: 1024px) {
  .approach__grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); align-items: start; }
}

/* ---------- pull quote ---------- */
.pullquote {
  padding-block: var(--s-7);
  text-align: center;
  position: relative;
}
.pullquote::before,
.pullquote::after {
  content: "";
  display: block;
  width: 1px;
  height: 56px;
  background: var(--rule);
  margin: 0 auto;
}
.pullquote::before { margin-bottom: var(--s-3); }
.pullquote::after  { margin-top: var(--s-3); }

.pullquote__decor {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 14;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: lowercase;
  margin-bottom: var(--s-3);
}
.pullquote blockquote p {
  font-family: var(--display);
  font-weight: 300;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: clamp(2.2rem, 7vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 16ch;
  margin: 0 auto;
}
.pullquote blockquote em {
  font-style: italic;
  color: var(--sea);
}

/* ---------- contact ---------- */
.contact {
  padding-block: var(--s-7);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(184, 153, 104, 0.18), transparent 65%);
  pointer-events: none;
}
.contact .eyebrow { color: var(--mist); }
.contact em { color: var(--gold); font-variation-settings: "SOFT" 100, "opsz" 144; }

.contact__grid {
  display: grid;
  gap: var(--s-5);
  position: relative;
}
.contact__intro h2 {
  font-size: clamp(2.5rem, 6.2vw, 4.75rem);
  margin: 0.6rem 0 1.1rem;
  color: var(--cream);
}
.contact__intro p {
  max-width: 46ch;
  color: var(--mist);
  margin-bottom: var(--s-3);
}

.contact__details {
  display: grid;
  gap: var(--s-3);
}
.contact__details > div {
  border-top: 1px solid rgba(248, 243, 231, 0.18);
  padding-top: 1rem;
}
.contact__details dt {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.contact__details dd {
  font-family: var(--display);
  font-variation-settings: "SOFT" 60, "opsz" 36;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.contact__details dd a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
  padding-bottom: 1px;
}
.contact__details dd a:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}
@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--s-6);
    align-items: start;
  }
  .contact__details {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3) var(--s-5);
  }
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--mist);
  padding-block: 1.6rem;
  border-top: 1px solid rgba(248, 243, 231, 0.12);
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__brand .brand__mark { color: var(--gold); }

/* ---------- feature image ---------- */
.feature {
  margin: 0;
  padding-block: var(--s-4) var(--s-5);
  position: relative;
}
.feature img {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  height: clamp(280px, 50vh, 560px);
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
}
.feature figcaption {
  max-width: var(--max);
  margin: 1rem auto 0;
  padding-inline: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 14;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.feature figcaption::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
@media (min-width: 720px)  { .feature figcaption { padding-inline: 2rem; } }
@media (min-width: 1080px) { .feature figcaption { padding-inline: 3rem; } }

/* ---------- contact CTA stack ---------- */
.contact__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: var(--s-3);
}
.btn--cream-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 243, 231, 0.45);
}
.btn--cream-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* ---------- modal (pure CSS, :target) ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: end stretch;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 720px) {
  .modal { place-items: center; padding: 1.5rem; }
}
.modal:target {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 38, 32, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.modal__panel {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  max-width: 640px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 2.25rem 1.5rem 2rem;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -20px 60px -20px rgba(14, 38, 32, 0.5);
  transform: translateY(40px);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal:target .modal__panel { transform: translateY(0); }
@media (min-width: 720px) {
  .modal__panel {
    border-radius: 12px;
    padding: 2.5rem 2.25rem 2.25rem;
    transform: translateY(20px) scale(0.98);
    box-shadow: 0 30px 80px -20px rgba(14, 38, 32, 0.55);
  }
  .modal:target .modal__panel { transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.modal__close:hover { background: var(--ink); color: var(--cream); }

.modal__head { margin-bottom: var(--s-3); }
.modal__title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin: 0.5rem 0 0.75rem;
  letter-spacing: -0.025em;
}
.modal__lede {
  color: var(--ink-soft);
  max-width: 48ch;
  font-size: 0.96rem;
}

.modal__channels {
  display: grid;
  gap: 0.6rem;
  margin-bottom: var(--s-3);
}
.modal__channel {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--paper);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.modal__channel:hover {
  border-color: var(--sea);
  background: var(--cream);
  transform: translateY(-1px);
}
.modal__channel-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.modal__channel-value {
  font-family: var(--display);
  font-variation-settings: "SOFT" 60, "opsz" 36;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
  word-break: break-all;
}
.modal__channel-hint {
  font-size: 0.78rem;
  color: var(--ink-soft);
}
@media (min-width: 560px) {
  .modal__channels { grid-template-columns: 1fr 1fr; }
}

.modal__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: var(--s-3);
  padding-block: 1rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.modal__meta dt {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.modal__meta dd {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--ink);
}
@media (max-width: 480px) {
  .modal__meta {
    grid-template-columns: 1fr 1fr;
  }
  .modal__meta > div:last-child {
    grid-column: 1 / -1;
  }
}

.modal__map {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.modal__map iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
  filter: saturate(0.85) hue-rotate(-8deg);
}
.modal__map-link {
  display: block;
  padding: 0.6rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--paper);
  border-top: 1px solid var(--rule);
  text-align: right;
  transition: color 0.2s ease;
}
.modal__map-link:hover { color: var(--sea); }

/* ---------- selection ---------- */
::selection {
  background: var(--sea);
  color: var(--cream);
}

/* =====================================================
   index2.html variants — full-bleed bg hero + lean contact
   ===================================================== */

/* header sits over a dark hero */
.site-header--over {
  background: transparent;
  border-bottom: 1px solid rgba(248, 243, 231, 0.14);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  backdrop-filter: blur(8px) saturate(120%);
  background: linear-gradient(to bottom, rgba(14, 38, 32, 0.55), rgba(14, 38, 32, 0));
}
.site-header--over .brand            { color: var(--cream); }
.site-header--over .brand__mark      { color: var(--gold); }
.site-header--over .brand__name--accent { color: var(--gold-soft); }
.site-header--over .primary-nav a    { color: var(--mist); }
.site-header--over .primary-nav a:hover { color: var(--cream); }
.site-header--over .primary-nav a::after { background: var(--gold); }
.site-header--over .phone__label     { color: var(--mist); }
.site-header--over .phone__num       { color: var(--cream); }
.site-header--over .btn--mini {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.site-header--over .btn--mini:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* hero with full-bleed background image */
.hero--bg {
  position: relative;
  min-height: clamp(620px, 88vh, 880px);
  display: grid;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  padding-block: var(--s-7) var(--s-6);
  /* offset the sticky header overlap */
  margin-top: -73px;
  padding-top: calc(var(--s-7) + 73px);
}
/* override the soft prism wash from the default hero */
.hero--bg::before { display: none; }

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05) brightness(0.9);
  animation: heroDrift 24s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { transform: scale(1.05) translate3d(0, 0, 0); }
  100% { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg,
      rgba(14, 38, 32, 0.86) 0%,
      rgba(14, 38, 32, 0.62) 38%,
      rgba(14, 38, 32, 0.42) 62%,
      rgba(14, 38, 32, 0.7) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(184, 153, 104, 0.18), transparent 55%);
}

.hero__grid--bg {
  position: relative;
  z-index: 2;
  display: block;
}
.hero--bg .hero__col {
  max-width: 720px;
}
.hero--bg .hero__eyebrow {
  color: var(--gold-soft);
}
.hero--bg .hero__title {
  color: var(--cream);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
.hero--bg .hero__title em {
  background: linear-gradient(110deg, var(--gold-soft) 5%, #F5E6CC 45%, var(--gold-soft) 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero--bg .hero__sub {
  color: var(--mist);
  max-width: 44ch;
}
.hero--bg .btn--solid {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.hero--bg .btn--solid:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 28px -14px rgba(184, 153, 104, 0.7);
}
.hero--bg .btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 243, 231, 0.55);
}
.hero--bg .btn--ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* floating seal in top-right of bg hero */
.hero__seal--floating {
  display: none;
  position: absolute;
  top: 6rem;
  right: 1.5rem;
  width: 110px;
  aspect-ratio: 1;
  background: transparent;
  color: var(--cream);
  box-shadow: none;
  z-index: 3;
  animation: rotate 60s linear infinite;
  place-items: center;
}
.hero__seal--floating svg { width: 100%; height: 100%; }
.hero__seal--floating .seal-text { fill: var(--cream); }
.hero__seal--floating .seal-mark { fill: var(--gold-soft); }
@media (min-width: 720px) {
  .hero__seal--floating { display: grid; width: 140px; top: 7rem; right: 2.25rem; }
}
@media (min-width: 1024px) {
  .hero__seal--floating { width: 168px; top: 8rem; right: 3.5rem; }
}

/* lean contact band — for index2.html */
.contact--lean {
  padding-block: var(--s-6);
}
.contact--lean::before { /* keep the gold corner glow */
  /* inherits from .contact, already declared */
}
.contact--lean__row {
  display: grid;
  gap: var(--s-4);
  position: relative;
  z-index: 1;
}
.contact--lean__copy h2 {
  font-size: clamp(2.25rem, 5.6vw, 4rem);
  margin: 0.6rem 0 1rem;
  color: var(--cream);
}
.contact--lean__copy p {
  max-width: 46ch;
  color: var(--mist);
}
.contact--lean__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}
.contact--lean__cta .btn {
  justify-content: center;
}
.contact--lean__email {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--mist);
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-decoration-color: rgba(248, 243, 231, 0.3);
  text-underline-offset: 5px;
  text-align: center;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.contact--lean__email:hover {
  color: var(--gold-soft);
  text-decoration-color: var(--gold-soft);
}
@media (min-width: 768px) {
  .contact--lean__row {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: var(--s-5);
  }
}

/* =====================================================
   index3.html — ocean / aqua theme
   Apply by adding `class="theme-ocean"` to <body>.
   Keeps the same structural CSS, swaps the palette and
   atmospheric washes for cool blues + aqua highlights.
   ===================================================== */
.theme-ocean {
  --ink:        #0B2138;   /* deep ocean navy */
  --ink-soft:   #1E4063;   /* mid navy */
  --cream:      #ECF2F6;   /* cool mist white (page bg) */
  --paper:      #F5F9FB;   /* lighter cool */
  --sea:        #1F6FB2;   /* clear ocean blue (was teal) */
  --sea-deep:   #134B82;   /* deep blue */
  --mist:       #B8CDDD;   /* sky mist */
  --gold:       #4FB7C9;   /* aqua highlight (replaces gold) */
  --gold-soft:  #95D7DF;   /* light aqua */
  --rule:       rgba(11, 33, 56, 0.16);
  --rule-soft:  rgba(11, 33, 56, 0.08);

  /* swap the warm body wash for a cool aqua/blue one */
  background-image:
    radial-gradient(ellipse at 0% 0%,    rgba(79, 183, 201, 0.12), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(31, 111, 178, 0.08), transparent 55%);
}

/* hero overlay needs to match the new ink colour explicitly,
   because it was hard-coded to teal-rgba in the bg-hero block */
.theme-ocean .hero__overlay {
  background:
    linear-gradient(115deg,
      rgba(11, 33, 56, 0.86) 0%,
      rgba(11, 33, 56, 0.62) 38%,
      rgba(11, 33, 56, 0.42) 62%,
      rgba(11, 33, 56, 0.7) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(149, 215, 223, 0.20), transparent 55%);
}

/* warm-tinted shadows hard-coded elsewhere → recolour for ocean */
.theme-ocean .hero__media img {
  box-shadow:
    0 30px 60px -30px rgba(11, 33, 56, 0.45),
    0 1px 0 rgba(11, 33, 56, 0.04);
}
.theme-ocean .hero__seal { box-shadow: 0 12px 28px -16px rgba(11, 33, 56, 0.4); }

.theme-ocean .modal__overlay { background: rgba(11, 33, 56, 0.55); }
.theme-ocean .modal__panel   { box-shadow: 0 30px 80px -20px rgba(11, 33, 56, 0.55); }
.theme-ocean .contact::before {
  background: radial-gradient(circle at 30% 30%, rgba(149, 215, 223, 0.20), transparent 65%);
}

/* slightly different feel on the bg-hero shimmer headline so it
   reads as water-light instead of warm-gold */
.theme-ocean .hero--bg .hero__title em {
  background: linear-gradient(110deg, var(--gold-soft) 5%, #DCEEF3 45%, var(--gold-soft) 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* services: 2-column layout matching the "approach" section
   (heading sticky on the left, list on the right) — v3 only */
.theme-ocean .services .wrap {
  display: grid;
  gap: var(--s-4);
}
.theme-ocean .services .section-head {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .theme-ocean .services .wrap {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    column-gap: var(--s-6);
    align-items: start;
  }
  .theme-ocean .services .section-head {
    position: sticky;
    top: 96px;
  }
  /* row layout: No. on the left, title+copy stacked on the right
     — mirrors the .approach__list pattern. tighter padding & type so
     the whole section reads in one screenful. */
  .theme-ocean .service {
    grid-template-columns: minmax(72px, auto) minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 1.5rem;
    row-gap: 0.3rem;
    padding-block: 1.4rem;
    align-items: baseline;
  }
  .theme-ocean .service__no {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    font-family: var(--display);
    font-style: italic;
    font-variation-settings: "SOFT" 100, "opsz" 144;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    font-weight: 400;
    color: var(--gold);
    letter-spacing: -0.015em;
    line-height: 1;
    padding-top: 0.15rem;
  }
  .theme-ocean .service__title {
    grid-column: 2;
    grid-row: 1;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    line-height: 1.05;
  }
  .theme-ocean .service__copy {
    grid-column: 2;
    grid-row: 2;
    max-width: 56ch;
    font-size: 0.95rem;
    line-height: 1.5;
    padding-bottom: 0;
    align-self: auto;
  }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
