/* ============================================================
   VINEYARD SANDS DIGITAL — Global Stylesheet
   Brand: Luxurious boho cottage core
   ============================================================ */

/* ------------------------------------------------------------
   FONTS
   TODO before launch: Self-host these fonts per SEO playbook §1b.
   Download WOFF2 files from Google Fonts and place in /fonts/
   Then replace the @import below with @font-face declarations.
   Using font-display: optional (NOT swap) to prevent LCP re-triggers.
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600&display=optional');

/* Self-hosted font stubs — uncomment and populate after downloading WOFF2 files:

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: optional;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: optional;
}

*/

/* ------------------------------------------------------------
   BRAND COLOR TOKENS
   ------------------------------------------------------------ */
:root {
  /* Dusty Rose — primary brand */
  --rose-deep:    #985d60;
  --rose-mid:     #c07772;
  --rose-light:   #e8c8c6;

  /* Amber — luxury accent */
  --amber-deep:   #b77638;
  --amber-mid:    #d9a86c;
  --amber-light:  #f0d8b0;

  /* Dusty Teal — pop accent */
  --teal-deep:    #7a9fa5;
  --teal-mid:     #a8c4c8;
  --teal-light:   #d8eaec;

  /* Warm Linen — neutrals */
  --linen-lightest: #f7f1e8;
  --linen-mid:      #ddd2bd;
  --linen-darker:   #bfaf9f;

  /* Bark — text and darks (warm, never cold) */
  --bark-darkest: #3c2e29;
  --bark-mid:     #5e5956;
  --bark-lightest:#968f8f;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 9rem;

  /* Max content width */
  --max-w: 1100px;
  --max-w-narrow: 720px;
}

/* ------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bark-darkest);
  background-color: var(--linen-lightest);
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* ------------------------------------------------------------
   TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--bark-darkest);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
a:hover { color: var(--rose-deep); }

/* Eyebrow / label text */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-deep);
  display: block;
  margin-bottom: 0.5rem;
}

/* ------------------------------------------------------------
   LAYOUT UTILITIES
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container--narrow {
  max-width: var(--max-w-narrow);
}

.section {
  padding-block: var(--space-lg);
}

.section--lg {
  padding-block: var(--space-xl);
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background-color: var(--rose-deep);
  color: var(--linen-lightest);
  border-color: var(--rose-deep);
}
.btn--primary:hover {
  background-color: #7a4a4d;
  border-color: #7a4a4d;
  color: var(--linen-lightest);
}

.btn--secondary {
  background-color: transparent;
  color: var(--rose-deep);
  border-color: var(--rose-deep);
}
.btn--secondary:hover {
  background-color: var(--rose-deep);
  color: var(--linen-lightest);
}

.btn--amber {
  background-color: var(--amber-deep);
  color: var(--linen-lightest);
  border-color: var(--amber-deep);
}
.btn--amber:hover {
  background-color: #956030;
  border-color: #956030;
  color: var(--linen-lightest);
}

.btn--ghost {
  background-color: transparent;
  color: var(--linen-lightest);
  border-color: var(--linen-lightest);
}
.btn--ghost:hover {
  background-color: var(--linen-lightest);
  color: var(--bark-darkest);
}

/* ------------------------------------------------------------
   CARDS
   ------------------------------------------------------------ */
.card {
  background: var(--linen-lightest);
  border: 1px solid var(--linen-mid);
  border-radius: 4px;
  padding: var(--space-md);
}

.card--tinted {
  background: var(--linen-mid);
}

/* ------------------------------------------------------------
   DIVIDERS
   ------------------------------------------------------------ */
.divider {
  border: none;
  border-top: 1px solid var(--linen-mid);
  margin-block: var(--space-md);
}

.divider--amber {
  border-top: 2px solid var(--amber-mid);
  width: 4rem;
  margin-inline: 0;
}

/* ------------------------------------------------------------
   SECTION BACKGROUNDS
   ------------------------------------------------------------ */
.bg-linen     { background-color: var(--linen-lightest); }
.bg-linen-mid { background-color: var(--linen-mid); }
.bg-rose      { background-color: var(--rose-light); }
.bg-teal      { background-color: var(--teal-light); }
.bg-bark      { background-color: var(--bark-darkest); color: var(--linen-lightest); }
.bg-bark h1,
.bg-bark h2,
.bg-bark h3,
.bg-bark h4  { color: var(--linen-lightest); }

/* ------------------------------------------------------------
   FAQ — native <details>/<summary> (zero JS)
   ------------------------------------------------------------ */
.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item details {
  border: 1px solid var(--linen-mid);
  border-radius: 4px;
  overflow: hidden;
}

.faq-item summary {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--linen-lightest);
  list-style: none;
  color: var(--bark-darkest);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--rose-deep);
  flex-shrink: 0;
  margin-left: 1rem;
  line-height: 1;
}
.faq-item details[open] summary::after {
  content: '−';
}

.faq-item details[open] summary {
  border-bottom: 1px solid var(--linen-mid);
}

.faq-answer {
  padding: 1rem 1.25rem;
  color: var(--bark-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Visible (non-expandable) FAQ for homepage */
.faq-visible {
  border-left: 3px solid var(--amber-mid);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
.faq-visible h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.faq-visible p {
  color: var(--bark-mid);
  font-size: 0.95rem;
}

/* ------------------------------------------------------------
   GRID UTILITIES
   ------------------------------------------------------------ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   TEXT ALIGNMENT UTILITIES
   ------------------------------------------------------------ */
.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ------------------------------------------------------------
   BREADCRUMB
   ------------------------------------------------------------ */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--bark-mid);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
  margin-bottom: var(--space-md);
}
.breadcrumb a { color: var(--bark-mid); }
.breadcrumb span { color: var(--bark-lightest); }

/* ------------------------------------------------------------
   TESTIMONIAL
   ------------------------------------------------------------ */
.testimonial {
  background: var(--linen-lightest);
  border-left: 3px solid var(--rose-mid);
  padding: 1.5rem;
  border-radius: 0 4px 4px 0;
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--bark-darkest);
  margin-bottom: 0.75rem;
}
.testimonial cite {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark-mid);
  font-style: normal;
}

/* ------------------------------------------------------------
   ACCESSIBILITY
   ------------------------------------------------------------ */
:focus-visible {
  outline: 2px solid var(--teal-deep);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ------------------------------------------------------------
   HEADER
   ------------------------------------------------------------ */
.site-header {
  background: var(--linen-lightest);
  border-bottom: 1px solid var(--linen-mid);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  gap: 1rem;
}

.logo-link {
  text-decoration: none;
  flex-shrink: 0;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-vineyard {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--amber-mid);
  letter-spacing: 0.01em;
}

.logo-sands {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-top: -0.15rem;
  padding-left: 0.15em;
}

.main-nav { display: flex; align-items: center; }

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bark-mid);
  padding: 0.5rem 0.75rem;
  border-radius: 2px;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link--active {
  color: var(--rose-deep);
  text-decoration: none;
}

.nav-cta { margin-left: 0.75rem; font-size: 0.75rem; padding: 0.5rem 1.1rem; }

.nav-link--trigger {
  background: none;
  border: none;
  cursor: default;
  padding: 0.5rem 0.75rem;
  line-height: inherit;
  vertical-align: middle;
}

/* ── Nav dropdown ─────────────────────────────────────── */
.nav-item { position: relative; width: max-content; display: flex; align-items: center; }

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--linen-lightest);
  border: 1px solid var(--linen-mid);
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(60,46,41,0.10);
  padding: 0.4rem 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}

.nav-dropdown li a {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bark-mid);
  text-decoration: none;
  padding: 0.55rem 1rem;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown li a:hover {
  background: var(--linen-mid);
  color: var(--rose-deep);
}

/* mobile dropdown — show inline */
.mobile-nav-sub {
  list-style: none;
  padding: 0 0 0.25rem 0.75rem;
}

.mobile-nav-sub li a {
  display: block;
  font-size: 0.9rem;
  color: var(--bark-mid);
  padding: 0.45rem 0;
  text-decoration: none;
  border-bottom: 1px solid var(--linen-mid);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bark-darkest);
  border-radius: 2px;
}

.mobile-menu {
  background: var(--linen-lightest);
  border-top: 1px solid var(--linen-mid);
  padding: 1rem 1.5rem 1.5rem;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--bark-darkest);
  padding: 0.75rem 0;
  text-decoration: none;
  border-bottom: 1px solid var(--linen-mid);
}

@media (max-width: 768px) {
  .nav-list { display: none; }
  .nav-toggle { display: flex; }
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--bark-darkest);
  color: var(--linen-lightest);
}

.footer-main {
  padding-block: var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  gap: var(--space-md);
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 1.25rem;
}

.footer-logo-link {
  text-decoration: none;
  display: block;
  margin: 0 auto;
}

.footer-logo-img {
  height: 360px;
  width: 360px;
  object-fit: contain;
  max-width: none;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
  transition: opacity 0.2s;
}

.footer-logo-link:hover .footer-logo-img {
  opacity: 0.88;
}

.footer-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-vineyard {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--amber-mid);
}

.footer-sands {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose-light);
  padding-left: 0.1em;
  margin-top: -0.1rem;
}

.footer-tagline {
  color: var(--linen-darker);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.footer-contact a {
  color: var(--teal-mid);
  font-size: 0.85rem;
  text-decoration: none;
}
.footer-contact a:hover { color: var(--teal-light); }

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social a {
  color: var(--linen-darker);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--linen-lightest); }

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-mid);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--linen-darker);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--linen-lightest); }

.footer-cta-col p {
  color: var(--linen-darker);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.25rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--bark-lightest);
  margin: 0;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ------------------------------------------------------------
   CTA BANNER
   ------------------------------------------------------------ */
.cta-banner {
  padding-block: var(--space-lg);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cta-text { flex: 1; min-width: 280px; }

.cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--linen-lightest);
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: var(--linen-darker);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

/* ------------------------------------------------------------
   SERVICE PAGE SHARED STYLES
   ------------------------------------------------------------ */
.service-page-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-lg);
  align-items: start;
}

.service-lead {
  font-size: 1.1rem;
  color: var(--bark-mid);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.service-page-main h1 { margin-bottom: 1rem; }
.service-page-main h2 {
  font-size: 1.4rem;
  color: var(--rose-deep);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.service-page-main p { color: var(--bark-mid); }

.service-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.service-includes li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--bark-mid);
  font-size: 0.95rem;
}
.service-includes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber-deep);
  font-weight: 700;
}

.service-cta-inline {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 5rem;
}

.sidebar-box {
  background: var(--linen-mid);
  border-radius: 4px;
  padding: 1.25rem;
}

.sidebar-box h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 0.75rem;
}

.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-links a {
  color: var(--bark-darkest);
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.sidebar-links a::before { content: '→'; color: var(--rose-mid); }
.sidebar-links a:hover { color: var(--rose-deep); }

.sidebar-box--cta {
  background: var(--rose-light);
  border: 1px solid var(--rose-mid);
}
.sidebar-box--cta p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--bark-darkest);
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .service-page-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

/* ------------------------------------------------------------
   RESPONSIVE UTILITIES
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  :root {
    --space-lg:  3rem;
    --space-xl:  4rem;
    --space-2xl: 5rem;
  }
}

/* ============================================================
   EDITORIAL LAYOUT SYSTEM — Asymmetric / Magazine / Warm
   Added: 2026-06
   ============================================================ */

/* ------------------------------------------------------------
   HERO — ASYMMETRIC SPLIT
   60% headline left, 40% visual card right, deliberately offset
   ------------------------------------------------------------ */
.hero-split {
  padding-block: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero-split::before {
  /* Warm vine-swirl ambient blob — purely decorative */
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(ellipse at center,
    rgba(168,196,200,0.18) 0%,
    rgba(208,174,157,0.10) 50%,
    transparent 72%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.hero-split-copy {
  padding-right: 1rem;
}

.hero-split-copy .eyebrow {
  margin-bottom: 1rem;
}

.hero-split-copy h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  color: var(--bark-darkest);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.hero-split-copy h1 em {
  font-style: italic;
  color: var(--rose-deep);
}

.hero-split-copy .hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--bark-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 46ch;
}

.hero-split-copy .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Right-side visual — editorial offset card */
.hero-split-visual {
  position: relative;
  padding-top: 2rem; /* intentional offset downward */
}

.hero-editorial-card {
  background: var(--linen-lightest);
  border: 1px solid var(--linen-mid);
  border-radius: 2px;
  padding: 2rem;
  position: relative;
}

.hero-editorial-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid var(--amber-light);
  border-radius: 2px;
  pointer-events: none;
}

.hero-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-stat {
  border-left: 3px solid var(--amber-mid);
  padding-left: 1rem;
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--rose-deep);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark-mid);
}

.hero-pull-quote {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--linen-mid);
}

.hero-pull-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--bark-darkest);
  line-height: 1.6;
}

.hero-pull-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-top: 0.75rem;
}

/* Floating accent dot — decorative only */
.hero-accent-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--teal-mid);
  border-radius: 50%;
  top: -6px;
  right: 2rem;
}

@media (max-width: 860px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
  }
  .hero-split-visual {
    padding-top: 0;
  }
  .hero-split-copy h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

/* ------------------------------------------------------------
   ALTERNATING TEXT + IMAGE RHYTHM BLOCKS
   ------------------------------------------------------------ */
.alt-section {
  padding-block: var(--space-lg);
}

.alt-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* Swap columns for "reversed" alt blocks */
.alt-block--reverse {
  direction: rtl; /* visual flip */
}
.alt-block--reverse > * {
  direction: ltr; /* restore text direction */
}

.alt-block-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--bark-darkest);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.alt-block-copy h2 em {
  color: var(--rose-deep);
  font-style: italic;
}

.alt-block-copy p {
  color: var(--bark-mid);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.alt-block-copy .block-cta {
  margin-top: 1.25rem;
}

/* Visual side — placeholder until photos are added */
.alt-block-visual {
  position: relative;
}

.img-slot {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg,
    var(--linen-mid) 0%,
    var(--linen-darker) 50%,
    var(--amber-light) 100%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--linen-mid);
}

/* Subtle texture overlay on image slot */
.img-slot::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.6;
}

/* Image caption label inside the slot */
.img-slot-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark-mid);
  background: rgba(247,241,232,0.85);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  z-index: 1;
}

/* Offset border accent on visual */
.alt-block-visual .img-slot {
  position: relative;
}

.alt-block-visual .img-slot::before {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--amber-light);
  border-radius: 2px;
  z-index: -1;
}

@media (max-width: 768px) {
  .alt-block,
  .alt-block--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ------------------------------------------------------------
   PULL QUOTE — EDITORIAL ACCENT
   ------------------------------------------------------------ */
.pull-quote-block {
  padding-block: var(--space-md);
  padding-inline: clamp(1rem, 6vw, 4rem);
  border-left: 4px solid var(--rose-mid);
  margin-block: var(--space-md);
  margin-inline: auto;
  max-width: 780px;
}

.pull-quote-block blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--bark-darkest);
  line-height: 1.5;
}

.pull-quote-block cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-top: 1rem;
}

/* ------------------------------------------------------------
   EDITORIAL SECTION DIVIDER
   ------------------------------------------------------------ */
.section-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-block: var(--space-sm);
}

.section-rule::before,
.section-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--linen-mid);
}

.section-rule span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bark-lightest);
  white-space: nowrap;
}

/* ------------------------------------------------------------
   STAGGER FADE-IN ON SCROLL
   ------------------------------------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ------------------------------------------------------------
   SERVICE PAGE — ALTERNATING INCLUDE ITEMS
   ------------------------------------------------------------ */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-block: 1.5rem;
}

.include-card {
  background: var(--linen-lightest);
  border: 1px solid var(--linen-mid);
  border-radius: 2px;
  padding: 1.25rem 1.5rem;
  border-top: 3px solid var(--amber-mid);
  transition: border-top-color 0.2s;
}

.include-card:hover {
  border-top-color: var(--rose-mid);
}

.include-card strong {
  display: block;
  color: var(--bark-darkest);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.include-card p {
  font-size: 0.88rem;
  color: var(--bark-mid);
  line-height: 1.65;
  margin: 0;
}

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

/* ------------------------------------------------------------
   HOMEPAGE SERVICE CARDS — EDITORIAL
   ------------------------------------------------------------ */
.services-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: var(--space-md);
}

.service-editorial-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--bark-darkest);
  border: 1px solid var(--linen-mid);
  border-radius: 2px;
  background: var(--linen-lightest);
  padding: 2rem;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}

.service-editorial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.service-editorial-card:hover {
  transform: translateY(-3px);
  border-color: var(--rose-light);
  box-shadow: 0 8px 28px rgba(60,46,41,0.1);
  color: var(--bark-darkest);
}

.service-editorial-card:hover::after {
  transform: scaleX(1);
}

.service-card-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.8rem;
  color: var(--linen-mid);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color 0.22s;
}

.service-editorial-card:hover .service-card-number {
  color: var(--amber-light);
}

.service-editorial-card h3 {
  font-size: 1.35rem;
  color: var(--rose-deep);
  margin-bottom: 0.6rem;
}

.service-editorial-card p {
  color: var(--bark-mid);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-top: 1.25rem;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.service-editorial-card:hover .service-card-link {
  gap: 0.7rem;
  color: var(--rose-deep);
}

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


/* ── Real images ─────────────────────────────────────── */

.site-logo {
  display: block;
  height: 52px;
  width: auto;
}

.alt-block-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md, 6px);
  display: block;
  min-height: 340px;
}

.alt-block-img--portrait {
  aspect-ratio: 4 / 5;
  min-height: unset;
  max-height: 520px;
  object-position: top center;
}

.service-feature-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md, 6px);
  display: block;
  margin: 1.5rem 0 1.75rem;
}

.about-headshot {
  width: 100%;
  border-radius: 4px;
  display: block;
  object-fit: cover;
}
