/* ------------------------------------------------------
   YARED STUDIO — WARM EDITORIAL THEME
   Cream paper · espresso ink · oxblood accent
   Fraunces (display) + Karla (text)
---------------------------------------------------------*/

/* --------- DESIGN TOKENS --------- */
:root {
  --paper: #fbf7f0;        /* warm cream page */
  --paper-deep: #f2ebdf;   /* sand, alternating sections */
  --ink: #2a211b;          /* espresso */
  --ink-soft: #6f6055;     /* warm grey-brown */
  --oxblood: #6e190f;      /* brand */
  --oxblood-deep: #4c100a;
  --oxblood-soft: rgba(110, 25, 15, 0.08);
  --line: rgba(42, 33, 27, 0.16);
  --line-strong: rgba(42, 33, 27, 0.4);

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --max-width: 1400px;
  --gutter: clamp(20px, 5vw, 56px);

  /* legacy aliases still referenced in old markup */
  --bg: var(--paper);
  --bg-soft: var(--paper-deep);
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --text-muted: var(--ink-soft);
  --muted: var(--ink-soft);
  --border: var(--line);
  --brand: var(--oxblood);
  --brand-light: #93331f;
  --brand-soft: var(--oxblood-soft);
  --accent: var(--ink);
  --accent-2: var(--oxblood);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 6px 18px rgba(42, 33, 27, 0.08);
  --shadow-soft: 0 10px 30px rgba(42, 33, 27, 0.07);
  --glass: rgba(42, 33, 27, 0.04);
}

/* Linen texture kept for 404 page */
.linen-bg {
  background-color: var(--paper-deep);
}

/* --------- RESET --------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
}

html {
  scroll-behavior: smooth;
}

body,
body.hamnet-style {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0.005em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

::selection {
  background: var(--oxblood);
  color: var(--paper);
}

/* --------- TYPE SYSTEM --------- */
h1, h2, h3,
.hamnet-headings h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.9rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); }

h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 0.4em;
}

em, .accent-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

p {
  margin: 0 0 1.1em;
  color: var(--ink-soft);
  max-width: 68ch;
}

/* Uppercase micro-label, used before section titles */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 1.1em;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--oxblood);
  vertical-align: middle;
  margin-right: 12px;
}

/* Hide the decorative line when eyebrow is inside a centered section */
.section-intro .eyebrow::before,
.services .eyebrow::before,
.workflow-section .eyebrow::before,
.section-header .eyebrow::before,
[style*="text-align:center"] .eyebrow::before,
[style*="text-align: center"] .eyebrow::before {
  display: none;
}

/* --------- LAYOUT SHELL --------- */
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  width: 100%;
}

main > section,
main > .section-divider {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin-top: clamp(20px, 3vw, 38px);
  margin-bottom: 0;
  height: 0;
}

/* --------- HEADER (single row, logo centered in nav) --------- */
.site > header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: clamp(12px, 1.8vw, 20px) var(--gutter);
  position: relative;
  z-index: 50;
}

@media (min-width: 881px) {
  .site > header .brand {
    display: none;
  }
}

.site > header nav a.nav-logo {
  padding: 0;
  border-bottom: 0;
  margin: 0 clamp(10px, 2vw, 28px);
}

.logo-img--nav {
  width: clamp(110px, 11vw, 150px);
  height: auto;
}

@media (max-width: 880px) {
  .site > header nav a.nav-logo {
    display: none;
  }
}

.brand a {
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.brand .wordmark {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 430;
  letter-spacing: 0.01em;
  color: var(--ink);
  white-space: nowrap;
}

.brand .wordmark em {
  color: var(--oxblood);
}

.logo-img {
  width: clamp(140px, 14vw, 180px);
  height: auto;
}

.site > header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
}

.site > header nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.site > header nav a:hover,
.site > header nav a[aria-current="page"] {
  border-bottom-color: var(--oxblood);
  color: var(--oxblood);
}

.site > header nav a.btn {
  border-bottom: 0;
}

/* --------- BUTTONS --------- */
.btn,
.primary-btn,
button[type="submit"] {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
  background: var(--oxblood);
  border: 1px solid var(--oxblood);
  padding: 14px 30px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.primary-btn:hover,
button[type="submit"]:hover {
  background: var(--oxblood-deep);
  border-color: var(--oxblood-deep);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

/* nav book button stays compact; keep text cream (nav link rules are more specific) */
.site > header nav .btn,
.site > header nav a.btn,
.site > header nav a.btn:hover {
  padding: 10px 22px;
  color: var(--paper);
  border-bottom: 1px solid var(--oxblood);
}

/* --------- MOBILE NAV --------- */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  z-index: 60;
  position: relative;
}

.menu-toggle #icon,
.menu-toggle #icon::before,
.menu-toggle #icon::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
}

.menu-toggle #icon::before { position: absolute; transform: translateY(-7px); }
.menu-toggle #icon::after { position: absolute; transform: translateY(7px); }

.menu-toggle.toggled #icon { background: transparent; }
.menu-toggle.toggled #icon::before { transform: rotate(45deg); }
.menu-toggle.toggled #icon::after { transform: rotate(-45deg); }

@media (max-width: 880px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: var(--gutter);
    transform: translateY(-50%);
  }

  .site > header {
    flex-direction: row;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo-img {
    width: 120px;
  }

  .site > header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 10px var(--gutter) 26px;
    display: none;
  }

  .site > header.nav-open nav {
    display: flex;
  }

  .site > header nav a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
    font-size: 0.85rem;
  }

  .site > header nav a.btn {
    margin-top: 18px;
    width: auto;
    border: 1px solid var(--oxblood);
    padding: 12px 26px;
    text-align: center;
  }
}

/* --------- HERO (homepage slider) --------- */
.hero.hero-showcase {
  max-width: var(--max-width);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.hero-showcase-inner {
  position: relative;
  height: calc(100svh - var(--hdr-h, 88px) - 14px);
  min-height: 420px;
  max-height: 980px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-showcase-track,
.hero-bg-slide {
  position: absolute;
  inset: 0;
}

.hero-bg-slide {
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-bg-slide.is-active {
  opacity: 1;
}

.hero-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* warm vignette so overlay text stays readable */
.hero-showcase-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 14, 9, 0.58) 0%, rgba(26, 14, 9, 0.18) 26%, transparent 44%);
  pointer-events: none;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: clamp(30px, 6vh, 70px);
  text-align: center;
  padding: 0 var(--gutter);
  pointer-events: none;
}

.hero-overlay .hero-kicker,
.hero-overlay h2 {
  text-shadow: 0 1px 16px rgba(26, 14, 9, 0.6);
}

.hero-overlay .hero-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(251, 247, 240, 0.85);
  margin-bottom: 14px;
}

.hero-overlay h2 {
  font-family: var(--font-serif);
  font-weight: 340;
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: #fbf7f0;
  margin: 0;
  line-height: 1.1;
  text-wrap: balance;
}

.hero-overlay h2 em {
  font-style: italic;
  font-weight: 360;
}

.hero-bg-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(251, 247, 240, 0.5);
  border-radius: 50%;
  background: rgba(26, 14, 9, 0.18);
  color: #fbf7f0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(3px);
}

.hero-bg-arrow:hover {
  background: rgba(26, 14, 9, 0.45);
  border-color: #fbf7f0;
}

.hero-bg-arrow--prev { left: clamp(12px, 2.5vw, 34px); }
.hero-bg-arrow--next { right: clamp(12px, 2.5vw, 34px); }

.hero-bg-cta {
  position: absolute;
  z-index: 4;
  right: clamp(16px, 3vw, 40px);
  bottom: clamp(16px, 3vw, 36px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fbf7f0;
  text-decoration: none;
  border-bottom: 1px solid rgba(251, 247, 240, 0.6);
  padding-bottom: 4px;
  transition: border-color 0.25s ease;
}

.hero-bg-cta:hover {
  border-bottom-color: #fbf7f0;
}

.hero-bg-cta-icon {
  display: inline-block;
  margin-left: 6px;
}

@media (max-width: 700px) {
  .hero-bg-arrow { display: none; }

  .hero-overlay .hero-kicker {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
  }
}

/* --------- INTRO STATEMENT --------- */
.section-intro {
  padding-top: clamp(28px, 3.5vw, 46px);
  padding-bottom: clamp(6px, 1.2vw, 12px);
  text-align: center;
}

.section-intro h1 {
  max-width: 21ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.section-intro h1 em {
  color: var(--oxblood);
}

.section-intro p {
  max-width: 58ch;
  margin: 1.1em auto 0;
  font-size: 1.05rem;
}


.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

/* --------- SPLIT FEATURE (image + text) --------- */
.community-section,
.quality-section {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(10px, 1.5vw, 22px);
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

.split-feature-media img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.split-feature-content h3 {
  margin-bottom: 0.7em;
}

.community-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--oxblood);
  margin-top: 1.4em;
}

@media (max-width: 880px) {
  .split-feature {
    grid-template-columns: 1fr;
  }

  .split-feature--quality .split-feature-media {
    order: -1;
  }
}

/* --------- GALLERY GRID --------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
  padding-top: clamp(24px, 4vw, 44px);
  padding-bottom: clamp(24px, 4vw, 44px);
}

.gallery .section-header {
  grid-column: 1 / -1;
}

.photo {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--paper-deep);
  border-radius: var(--radius);
}

.gallery .photo {
  aspect-ratio: 4 / 5;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.photo:hover img {
  transform: scale(1.045);
}

.photo .meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 16px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fbf7f0;
  background: linear-gradient(to top, rgba(26, 14, 9, 0.62), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.photo:hover .meta {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 880px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .gallery .photo {
    aspect-ratio: 4 / 3.4;
  }
}

/* --------- SECTION HEADERS --------- */
.section-header {
  text-align: center;
  margin-bottom: clamp(20px, 3.4vw, 36px);
}

.section-header p {
  margin-left: auto;
  margin-right: auto;
}

/* --------- SERVICES --------- */
.services {
  padding-top: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(28px, 4vw, 56px);
  text-align: center;
}

.services > h3 {
  margin-bottom: clamp(22px, 3.4vw, 40px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 36px);
  text-align: left;
}

.service {
  display: flex;
  flex-direction: column;
  background: var(--paper-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding-bottom: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.service h4,
.service p,
.service .service-price {
  padding-left: 24px;
  padding-right: 24px;
}

.service-link {
  margin-left: 24px;
}

.service-price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--oxblood);
  margin-bottom: 14px;
}

.service-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
  margin-bottom: 20px;
  background: var(--paper-deep);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.service:hover .service-media img {
  transform: scale(1.05);
}

.service h4 {
  font-size: 1.45rem;
  margin-bottom: 0.35em;
}

.service h4 a {
  text-decoration: none;
  color: var(--ink);
  transition: color 0.25s ease;
}

.service h4 a:hover {
  color: var(--oxblood);
}

.service p {
  font-size: 0.97rem;
  margin-bottom: 0.9em;
}

.service-link {
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oxblood);
  text-decoration: none;
  border-bottom: 1px solid var(--oxblood-soft);
  align-self: flex-start;
  padding-bottom: 3px;
  transition: border-color 0.25s ease;
}

.service-link:hover {
  border-bottom-color: var(--oxblood);
}

.services-note {
  margin: 26px auto 0;
  font-size: 0.92rem;
  text-align: center;
}

.services-note a {
  color: var(--oxblood);
  text-decoration: none;
  border-bottom: 1px solid var(--oxblood-soft);
}

.services-note a:hover {
  border-bottom-color: var(--oxblood);
}

@media (max-width: 880px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .service-media {
    aspect-ratio: 4 / 3.2;
  }
}

/* --------- WORKFLOW / PROCESS --------- */
.workflow-section {
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(36px, 5vw, 64px);
  text-align: center;
}

.workflow-section > h3 {
  margin-bottom: clamp(22px, 3.6vw, 40px);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(14px, 2.2vw, 26px);
  text-align: left;
}

.workflow-step {
  background: var(--paper-deep);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.workflow-step:nth-child(odd) { transform: rotate(-1deg); }
.workflow-step:nth-child(even) { transform: rotate(1deg); }
.workflow-step:hover { transform: rotate(0deg) translateY(-4px); }

.workflow-step .step-num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--oxblood);
  margin-bottom: 8px;
}

.workflow-step h4 {
  font-size: 1.35rem;
}

.workflow-step p {
  font-size: 0.94rem;
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .workflow-step,
  .workflow-step:nth-child(odd),
  .workflow-step:nth-child(even) { transform: none; }
}

/* --------- CARDS (about / contact) --------- */
.about-section,
.contact-section {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(10px, 1.5vw, 22px);
}

.card {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  background: var(--paper-deep);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 56px);
  box-shadow: var(--shadow-sm);
}

.about-profile {
  margin: 30px auto;
}

.about-profile-img {
  width: clamp(180px, 30vw, 240px);
  height: clamp(180px, 30vw, 240px);
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  filter: saturate(0.96);
}

.card p {
  margin-left: auto;
  margin-right: auto;
}

.about-cta {
  margin-top: 30px;
}

/* --------- CONTACT FORM --------- */
.contact-form,
.inquire-form {
  margin-top: 34px;
  text-align: left;
}

.contact-form {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 22px 0 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 2px;
  outline: none;
  transition: border-color 0.25s ease;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%232a211b' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 26px;
}

input:focus,
select:focus,
textarea:focus {
  border-bottom-color: var(--oxblood);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

::placeholder {
  color: rgba(111, 96, 85, 0.55);
}

.contact-form button[type="submit"],
.inquire-form button[type="submit"] {
  margin-top: 30px;
}

.cf-turnstile {
  margin-top: 24px;
}

.form-banner {
  margin: 26px auto 0;
  max-width: 560px;
  padding: 16px 20px;
  border: 1px solid var(--line-strong);
  background: var(--paper-deep);
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: var(--radius);
}

.form-banner--error {
  border-color: var(--oxblood);
  color: var(--oxblood-deep);
}

@keyframes formBannerDrop {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-banner.is-visible {
  animation: formBannerDrop 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .form-banner.is-visible { animation: none; }
}

/* --------- FAQ --------- */
.faq-section {
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(32px, 5vw, 56px);
  max-width: 820px;
}

.faq-section > h3 {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.faq-accordion details {
  border-top: 1px solid var(--line);
}

.faq-accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-accordion summary {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 440;
  padding: 20px 36px 20px 2px;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--oxblood);
  transition: transform 0.3s ease;
}

.faq-accordion details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-accordion details p {
  padding: 0 2px 22px;
  margin: 0;
}

/* --------- TESTIMONIALS (kept for future) --------- */
.testimonials {
  padding-top: clamp(36px, 5.5vw, 70px);
  padding-bottom: clamp(40px, 6vw, 72px);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.testimonial p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
}

.testimonial span {
  display: block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oxblood);
}

/* --------- FOOTER --------- */
footer {
  border-top: 1px solid var(--line);
  margin-top: clamp(20px, 3vw, 38px);
}

footer > div {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px) var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-align: center;
}

footer a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s ease, border-color 0.25s ease;
}

footer a:hover {
  color: var(--oxblood);
  border-bottom-color: var(--oxblood);
}

.footer-separator {
  color: var(--line-strong);
}

/* big serif sign-off above footer links */
.footer-signoff {
  text-align: center;
  padding: clamp(36px, 5vw, 64px) var(--gutter) 0;
}

.footer-signoff .signoff-line {
  font-family: var(--font-serif);
  font-weight: 340;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1.15;
  max-width: 18ch;
  margin: 0 auto 30px;
  color: var(--ink);
  text-wrap: balance;
}

.footer-signoff .signoff-line em {
  color: var(--oxblood);
}

/* --------- LIGHTBOX --------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 12, 8, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 4vmin;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 94vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: 1px solid rgba(251, 247, 240, 0.45);
  color: #fbf7f0;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.lb-close:hover {
  background: rgba(251, 247, 240, 0.12);
}

/* --------- DETAILS LAYOUT (service + inquire pages) --------- */
.section-details {
  padding-top: clamp(18px, 2.5vw, 32px);
  padding-bottom: clamp(30px, 5vw, 60px);
}

.details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

/* inquire page keeps the two-column form + zoom card */
.inquire-page .details-layout {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
}

@media (max-width: 880px) {
  .inquire-page .details-layout {
    grid-template-columns: 1fr;
  }
}

.details-text {
  max-width: 720px;
}

.details-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.details-list {
  list-style: none;
  margin: 1.2em 0;
  padding: 0;
}

.details-list li {
  position: relative;
  padding: 9px 0 9px 26px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.details-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--oxblood);
}

.details-card {
  background: var(--paper-deep);
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.details-card h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 0.4em;
}

.price-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--oxblood);
}

.details-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.small-note {
  font-size: 0.85rem;
}

@media (max-width: 880px) {
  .details-layout {
    grid-template-columns: 1fr;
  }
}

/* --------- INVESTMENT TIERS --------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
  margin: 24px 0;
  align-items: stretch;
}

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

.tier-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px 26px;
  border-radius: var(--radius);
}

.tier-card h3 {
  font-size: 1.25rem;
  font-weight: 480;
  margin-bottom: 4px;
}

.tier-card .tier-price {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 360;
  color: var(--oxblood);
  margin: 0 0 10px;
}

.tier-card .details-list li {
  padding: 5px 0 5px 24px;
  font-size: 0.93rem;
}

.tier-card--featured {
  background: var(--oxblood);
  border-color: var(--oxblood);
}

.tier-card--featured h3,
.tier-card--featured .tier-price {
  color: #fbf7f0;
}

.tier-card--featured .details-list li {
  color: rgba(251, 247, 240, 0.85);
}

.tier-card--featured .details-list li::before {
  color: rgba(251, 247, 240, 0.7);
}

.details-card .primary-btn {
  display: block;
  max-width: 380px;
  margin: 8px auto 0;
  text-align: center;
}

/* --------- FIELD LAYOUT (inquire form) --------- */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}

@media (max-width: 600px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

/* --------- PORTFOLIO PAGE --------- */
.portfolio-gallery {
  padding-bottom: clamp(40px, 6vw, 72px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: clamp(10px, 1.6vw, 22px);
}

.portfolio-grid .portfolio-item:nth-child(6n+1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.portfolio-grid .portfolio-item:nth-child(12n+7) {
  grid-column: 2 / span 2;
}

.portfolio-item,
.portfolio-item--wide,
.portfolio-item--tall {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 4 / 5;
}

@media (max-width: 880px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .portfolio-item--wide,
  .portfolio-item--tall,
  .portfolio-grid .portfolio-item:nth-child(6n+1),
  .portfolio-grid .portfolio-item:nth-child(12n+7) {
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-item,
  .portfolio-grid .portfolio-item:nth-child(6n+1) {
    aspect-ratio: 4 / 3.4;
  }
}

/* --------- POLICY PAGE --------- */
.policy-page .section-intro {
  text-align: left;
}

.policy-page .section-intro h1,
.policy-page .section-intro p {
  margin-left: 0;
}

.policy-body {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: clamp(40px, 6vw, 72px);
}

.policy-body h2,
.policy-body h3 {
  font-size: 1.45rem;
  margin-top: 2.2em;
}

.policy-body {
  padding-top: 10px;
}

/* --------- REVEAL ANIMATION --------- */
.js .reveal-target {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal-target.revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal-target {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .photo img,
  .service-media img {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}


/* --------- HERO TRIPTYCH (fills first viewport) --------- */
.hero.hero-triptych {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.hero-trip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
  height: calc(100svh - 128px);
  min-height: 440px;
  max-height: 960px;
}

.hero-trip-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-deep);
}

.hero-trip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-trip-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 14, 9, 0.42) 0%, transparent 36%);
  pointer-events: none;
}

.hero-triptych .hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(26px, 5vh, 56px);
  z-index: 3;
  text-align: center;
  padding: 0 var(--gutter);
  pointer-events: none;
}

.hero-triptych .hero-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 247, 240, 0.9);
  margin-bottom: 10px;
  text-shadow: 0 1px 8px rgba(26, 14, 9, 0.5);
}

.hero-triptych .hero-overlay h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  color: #fbf7f0;
  margin: 0;
  line-height: 1.08;
  text-shadow: 0 2px 14px rgba(26, 14, 9, 0.55);
  text-wrap: balance;
}

.hero-triptych .hero-cta {
  position: absolute;
  right: clamp(34px, 4vw, 72px);
  bottom: clamp(20px, 3.4vh, 40px);
  z-index: 4;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fbf7f0;
  text-decoration: none;
  border-bottom: 1px solid rgba(251, 247, 240, 0.6);
  padding-bottom: 3px;
  text-shadow: 0 1px 8px rgba(26, 14, 9, 0.5);
}

.hero-triptych .hero-cta:hover {
  border-bottom-color: #fbf7f0;
}

@media (max-width: 880px) {
  .hero-trip-grid {
    grid-template-columns: 1fr;
    height: calc(100svh - 104px);
    min-height: 480px;
  }

  .hero-trip-item--alt {
    display: none;
  }
}


/* --------- ABOUT FUN FACTS --------- */
.fun-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px auto 6px;
  max-width: 640px;
  text-align: left;
}

.fun-facts .fact {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.fun-facts .fact-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 3px;
}

.fun-facts .fact-value {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

@media (max-width: 600px) {
  .fun-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* warm intro line inside investment cards */
.invest-warm {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--ink);
  margin: -4px 0 4px;
}

/* --------- STICKY HEADER (mobile only) --------- */
@media (max-width: 880px) {
  .site > header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--paper);
    transition: padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.25s ease;
  }

  /* brand slides via translateX — JS sets the value */
  .site > header .brand {
    transition: transform 0.4s cubic-bezier(0.34, 1.1, 0.64, 1);
    transform-origin: center center;
    will-change: transform;
  }

  /* logo width change is what actually shrinks the header height */
  .site > header .brand .logo-img {
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .site > header.scrolled {
    padding-top: 6px;
    padding-bottom: 6px;
    box-shadow: 0 2px 12px rgba(26, 14, 9, 0.08);
  }

  .site > header.scrolled .brand .logo-img {
    width: 95px;
  }
}

/* --------- BACK TO TOP BUTTON (desktop only) --------- */
.back-to-top {
  display: none;
}

@media (min-width: 881px) {
  .back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 90;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--ink);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 10px rgba(26, 14, 9, 0.10);
  }

  .back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .back-to-top:hover {
    box-shadow: 0 4px 18px rgba(26, 14, 9, 0.16);
    border-color: var(--oxblood);
    color: var(--oxblood);
  }

  .back-to-top svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}


/* ==========================================================
   ANIMATE LAYER — purposeful feedback & state communication
   ========================================================== */

/* --- Easing tokens --- */
:root {
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Button: lift on hover, press on active --- */
.btn,
.primary-btn,
button[type="submit"] {
  transition:
    background   0.22s var(--ease-out-quart),
    color        0.22s var(--ease-out-quart),
    border-color 0.22s var(--ease-out-quart),
    transform    0.18s var(--ease-out-quart),
    box-shadow   0.18s var(--ease-out-quart);
}

.btn:hover,
.primary-btn:hover,
button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(110, 25, 15, 0.22);
}

.btn:active,
.primary-btn:active,
button[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: none;
  transition-duration: 0.08s;
}

/* ghost btn gets a neutral shadow on hover */
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(42, 33, 27, 0.12);
}

/* Nav book button — skip the lift so it doesn't fight header layout */
.site > header nav .btn:hover,
.site > header nav a.btn:hover {
  transform: none;
  box-shadow: none;
}

/* --- Nav links: animated underline draw (left → right) --- */
.site > header nav a:not(.btn):not(.nav-logo) {
  position: relative;
  border-bottom: none;      /* remove old border-bottom */
  padding-bottom: 4px;
  overflow: visible;
}

.site > header nav a:not(.btn):not(.nav-logo)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--oxblood);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease-out-quart);
}

.site > header nav a:not(.btn):not(.nav-logo):hover::after,
.site > header nav a:not(.btn):not(.nav-logo)[aria-current="page"]::after {
  transform: scaleX(1);
}

/* keep colour shift */
.site > header nav a:not(.btn):not(.nav-logo):hover {
  border-bottom: none;
  color: var(--oxblood);
}

/* --- Hero arrow: gentle idle pulse --- */
@keyframes arrow-breathe {
  0%, 100% { opacity: 0.82; transform: translateY(-50%) scale(1); }
  50%       { opacity: 1;    transform: translateY(-50%) scale(1.06); }
}

.hero-bg-arrow {
  animation: arrow-breathe 3.2s ease-in-out infinite;
}

.hero-bg-arrow:hover {
  animation: none;
  transform: translateY(-50%);
}

/* --- Hero CTA arrow: float up-right on hover --- */
.hero-bg-cta-icon {
  display: inline-block;
  transition: transform 0.3s var(--ease-out-quart);
}

.hero-bg-cta:hover .hero-bg-cta-icon {
  transform: translate(3px, -3px);
}

/* --- Eyebrow line: draws on scroll reveal --- */
.js .eyebrow::before {
  width: 0;
  transition: width 0.55s var(--ease-out-expo) 0.35s;
}

.js .revealed .eyebrow::before,
.js.revealed .eyebrow::before {
  width: 28px;
}

/* Handle eyebrow that's a direct child of a revealed section */
.js .reveal-target.revealed .eyebrow::before {
  width: 28px;
}

/* --- Service cards: staggered entrance (JS sets --stagger-delay) --- */
/* Only hide when JS + IntersectionObserver are both confirmed available */
.js.io-ready .services-grid .service {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity   0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo),
    box-shadow 0.4s ease;
  transition-delay: var(--stagger-delay, 0ms);
}

.js.io-ready .services-grid .service.service-visible {
  opacity: 1;
  transform: translateY(0);
}

/* keep hover lift working after reveal */
.js.io-ready .services-grid .service.service-visible:hover {
  transform: translateY(-4px);
}

/* --- Form inputs: animated focus indicator --- */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  transition: border-color 0.25s var(--ease-out-quart);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-bottom-color: var(--oxblood);
}

/* --- Split-feature image: subtle scale-in on reveal --- */
.js .split-feature-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.js .reveal-target .split-feature-media img,
.js .split-feature.reveal-target .split-feature-media img {
  transform: scale(1.04);
  transition: transform 1.2s var(--ease-out-expo);
}

.js .reveal-target.revealed .split-feature-media img,
.js .split-feature.reveal-target.revealed .split-feature-media img {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-arrow               { animation: none; }
  .hero-bg-cta-icon            { transition: none; }
  .btn, .primary-btn,
  button[type="submit"]        { transform: none !important; box-shadow: none !important; }
  .site > header nav a::after  { transition: none; }
  .js .services-grid .service  { opacity: 1; transform: none; transition: none; }
  .js .eyebrow::before         { transition: none; width: 28px; }
  .js .split-feature-media img { transform: none !important; transition: none !important; }
}


/* ==========================================================
   DELIGHT LAYER — personality & surprise
   ========================================================== */

/* --- Scroll progress bar (oxblood line at very top) --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--oxblood);
  z-index: 200;
  transform-origin: left center;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* --- Service price: scale pulse on card hover --- */
.service:hover .service-price {
  transform: scale(1.03);
  transition: transform 0.3s var(--ease-out-quart);
}

.service-price {
  transform-origin: left center;
  transition: transform 0.3s var(--ease-out-quart);
}

/* --- Community note: delayed fade after parent reveals --- */
.js .community-note {
  opacity: 0;
  transition: opacity 0.9s ease 0.6s;
}

.js .reveal-target.revealed .community-note {
  opacity: 1;
}

/* --- Hero kicker: slow letter-spacing settle on load --- */
@keyframes kicker-settle {
  from { letter-spacing: 0.48em; opacity: 0; }
  to   { letter-spacing: 0.34em; opacity: 0.85; }
}

.hero-overlay .hero-kicker {
  animation: kicker-settle 1.1s var(--ease-out-expo) 0.3s both;
}

/* --- Gallery image warm overlay on hover --- */
.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(110, 25, 15, 0.06);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: inherit;
  pointer-events: none;
}

.photo:hover::before {
  opacity: 1;
}

/* --- Service link arrow animate right --- */
.service-link::after {
  content: " →";
  display: inline-block;
  transition: transform 0.25s var(--ease-out-quart);
}

.service-link:hover::after {
  transform: translateX(4px);
}

/* --- Back-to-top: arrow bounce on hover --- */
@keyframes arrow-up-bounce {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-3px); }
}

.back-to-top:hover svg {
  animation: arrow-up-bounce 0.5s var(--ease-out-quart);
}

/* --- Workflow step number: oxblood brightens on hover --- */
.workflow-step:hover .step-num {
  color: var(--oxblood);
  transition: color 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress              { transition: none; }
  .hero-overlay .hero-kicker    { animation: none; opacity: 0.85; }
  .photo::before                { transition: none; }
  .service-link::after          { transition: none; }
  .back-to-top:hover svg        { animation: none; }
  .js .community-note           { opacity: 1; transition: none; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICE PAGE REDESIGN — editorial split layout
   ═══════════════════════════════════════════════════════════ */

/* ── Header: large headline left / standfirst right ── */
.svc-hd {
  padding-top: clamp(36px, 5vw, 64px);
}

.svc-hd-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  padding-bottom: clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
}

.svc-h1 {
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0.35em 0 0;
  text-wrap: balance;
  color: var(--ink);
}

.svc-h1 em {
  color: var(--oxblood);
  font-style: italic;
}

.svc-standfirst {
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 52ch;
  align-self: end;
  margin: 0;
  padding-bottom: 0.3em;
}

/* Eyebrow line always visible in non-reveal header */
.js .svc-hd .eyebrow::before {
  width: 28px;
  transition: none;
}

/* ── Split body: editorial text left / investment right ── */
.svc-split {
  padding-top: clamp(36px, 4.5vw, 56px);
  padding-bottom: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.svc-editorial h2,
.svc-investment h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  margin-bottom: 0.65em;
}

.svc-editorial > p {
  max-width: 62ch;
}

/* Investment italic sub-line */
.svc-inv-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--oxblood);
  margin: -0.4em 0 0;
}

/* ── Tier cards: three distinct options ── */
.svc-tiers {
  list-style: none;
  padding: 0;
  margin: clamp(20px, 2.5vw, 28px) 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-tier {
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.svc-tier-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 7px;
}

.svc-tier h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1.3;
}

.svc-tier-price {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--oxblood);
  line-height: 1;
  white-space: nowrap;
}

.svc-tier-features {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* Featured tier: oxblood border + sand background + larger price */
.svc-tier--best {
  background: var(--paper-deep);
  border-color: var(--oxblood);
  padding: clamp(16px, 2vw, 22px);
}

.svc-tier--best h3 {
  font-size: 1.25rem;
}

.svc-tier--best .svc-tier-price {
  font-size: 1.85rem;
}

.svc-tier--best .svc-tier-features {
  font-size: 0.9rem;
}

/* "Most popular" badge */
.svc-pick-badge {
  font-family: var(--font-sans);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--oxblood);
  padding: 2px 8px 3px;
  border-radius: 100px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.6;
  margin-top: -2px;
}

/* CTA button fills column */
.svc-investment .primary-btn {
  display: block;
  margin-top: 8px;
}

/* ── Responsive ── */
@media (max-width: 880px) {
  .svc-hd-inner {
    grid-template-columns: 1fr;
    gap: clamp(10px, 2vw, 16px);
  }

  .svc-standfirst {
    padding-bottom: 0;
  }

  .svc-split {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
  }

  .svc-h1 {
    font-size: clamp(2.4rem, 9vw, 3.8rem);
  }
}
