/* ================================================================
   Webchefs — Main Stylesheet
   ================================================================
   Extracted from the original homepage HTML <style> block and kept
   as one file on purpose: premium brochure sites rarely need more.
   Organised by section so you can find things quickly.
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal:     #0f1115;
  --charcoal-2:   #15171c;
  --charcoal-3:   #1d2026;
  --off-white:    #F5F3EE;
  --gold:         #c9a46b;
  --warm-grey:    #666B72;
  --line:         rgba(245,245,245,0.16);

  --green:        var(--charcoal-2);
  --green-dark:   var(--off-white);
  --green-deep:   var(--charcoal);
  --green-light:  #191c22;
  --green-mid:    #2b2e35;
  --terra:        var(--gold);
  --terra-btn:    var(--gold);
  --terra-hover:  #b89158;
  --terra-light:  var(--gold);
  --cream:        var(--charcoal);
  --warm-white:   var(--charcoal-2);
  --text:         var(--off-white);
  --text-dark:    var(--off-white);
  --text-mid:     rgba(245,245,245,0.74);
  --text-light:   rgba(245,245,245,0.56);
  --border:       var(--line);

  --font-serif: 'DM Sans', system-ui, sans-serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --max-w: 1080px;
  --section-pad: 6rem clamp(1.5rem, 4vw, 3rem);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

/* ── SKIP LINK (WCAG 2.4.1) ─────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--green-dark); color: #fff;
  padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500;
  border-radius: 0 0 4px 4px; z-index: 9999; text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── FOCUS STYLES (WCAG 2.4.7) ──────────────────────────────── */
:focus-visible { outline: 3px solid var(--terra-btn); outline-offset: 3px; }

/* ── UTILITIES ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); overflow-x: hidden; }
.container--narrow { max-width: 760px; }
.section { padding: var(--section-pad); }
.section--alt  { background: var(--green-light); }
.section--dark { background: var(--green-deep); }
.section--warm { background: var(--warm-white); }
.center-cta { text-align: center; margin-top: 2.5rem; }

/* ── SECTION ALTERNATION (warm-white ↔ cream, disabled with .no-section-alternation) ── */
main:not(.no-section-alternation) > section:nth-of-type(odd) { background: var(--warm-white); }
main:not(.no-section-alternation) > section:nth-of-type(even) { background: var(--cream); }
/* Explicit overrides for alt/dark sections (take precedence) */
.section--alt { background: var(--green-light) !important; }
.section--dark { background: var(--green-deep) !important; }

.label {
  display: inline-block; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 0.75rem;
}
.label--light { color: var(--terra-light); }

.brand-lower {
  text-transform: none;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; line-height: 1.2;
  color: var(--green-dark); margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--terra); }
.section-title--light { color: #fff; }
.section-title--light em { color: var(--terra-light); }
.section-lead { font-size: 1.05rem; color: var(--text-mid); max-width: 600px; line-height: 1.8; }

.faq-section {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
}

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

.faq-section__header {
  max-width: 760px;
  margin: 0 0 clamp(2rem, 3.2vw, 3rem);
}

.faq-section .section-title {
  color: var(--off-white);
}

.faq-section .section-lead {
  color: rgba(245,243,238,0.68);
  margin-top: 0.75rem;
}

.faq-section__items {
  display: grid;
  gap: 0.9rem;
  max-width: 980px;
}

.faq-item {
  border: 1px solid rgba(245,243,238,0.14);
  border-radius: 6px;
  background: rgba(245,243,238,0.025);
}

.faq-item summary {
  color: var(--off-white);
  cursor: pointer;
  font-weight: 500;
  line-height: 1.5;
  list-style: none;
  padding: 1.05rem 1.2rem;
}

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

.faq-item summary::after {
  content: '+';
  color: var(--gold);
  float: right;
  font-size: 1.1rem;
  line-height: 1;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  border-top: 1px solid rgba(245,243,238,0.1);
  color: rgba(245,243,238,0.72);
  line-height: 1.75;
  margin: 0;
  padding: 1rem 1.2rem 1.15rem;
}

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; font-family: var(--font-sans);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  border-radius: var(--radius); transition: all 0.2s ease;
  cursor: pointer; border: none;
  min-height: 44px; /* WCAG 2.5.5 - minimum touch target size */
}
.btn--primary { background: var(--terra-btn); color: #0f1115; }
.btn--primary:hover { background: var(--terra-hover); }
.btn--outline-dark { background: transparent; color: var(--off-white); border: 1.5px solid rgba(245,245,245,0.45); }
.btn--outline-dark:hover { background: rgba(245,245,245,0.08); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); }
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ── MAIN NAV ───────────────────────────────────────────────── */
nav[aria-label="Main navigation"] {
  background: rgba(15,17,21,0.96); border-bottom: 1px solid rgba(245,245,245,0.14);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 24px rgba(0,0,0,0.32);
  backdrop-filter: blur(14px);
}
.nav__inner { max-width: 1480px; margin: 0 auto; padding: 0 clamp(1.5rem, 3vw, 3rem); display: flex; align-items: center; justify-content: space-between; height: 104px; }
.nav__logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; flex-shrink: 0; }
.nav__logo-mark { width: clamp(285px, 20vw, 330px); height: auto; max-height: 84px; flex-shrink: 0; object-fit: contain; align-self: center; display: block; }
.nav__logo-text { display: none; }

.nav__links { display: flex; list-style: none; gap: 0.1rem; align-items: center; }
.nav__links a { font-size: 0.74rem; color: rgba(245,245,245,0.72); text-decoration: none; padding: 0.4rem 0.58rem; border-radius: var(--radius); transition: color 0.15s, background 0.15s; white-space: nowrap; letter-spacing: 0.08em; text-transform: uppercase; }
.nav__links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav__links a[aria-current="page"] { color: #fff; font-weight: 500; }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-btn { font-size: 0.78rem; color: rgba(245,245,245,0.72); background: none; border: none; cursor: pointer; padding: 0.4rem 0.7rem; border-radius: var(--radius); display: flex; align-items: center; gap: 0.25rem; transition: color 0.15s, background 0.15s; font-family: var(--font-sans); letter-spacing: 0.08em; text-transform: uppercase; }
.nav__dropdown-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav__dropdown-btn svg { transition: transform 0.2s; }
.nav__dropdown-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav__dropdown-menu { display: none; position: absolute; top: calc(100% + 0.5rem); left: 0; background: #15171c; border: 1px solid var(--border); border-radius: 6px; box-shadow: 0 8px 24px rgba(0,0,0,0.28); list-style: none; min-width: 200px; padding: 0.4rem 0; z-index: 300; }
.nav__dropdown-menu.is-open { display: block; }
.nav__dropdown-menu a { display: block; padding: 0.6rem 1rem; font-size: 0.78rem; color: var(--text-mid); text-decoration: none; transition: background 0.15s, color 0.15s; }
.nav__dropdown-menu a:hover { background: var(--green-light); color: var(--green-dark); }
.nav__dropdown-menu a[aria-current="page"] { color: var(--green-dark); background: var(--green-light); font-weight: 500; }

.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__cta .btn { padding: 0.5rem 1.1rem; font-size: 0.75rem; }

.nav__burger { display: none; background: none; cursor: pointer; padding: 0.5rem 0.85rem; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); border-radius: var(--radius); font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500; align-items: center; gap: 0.4rem; }
.nav__burger svg { display: block; width: 16px; height: 16px; }

.nav__phone-btn { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--terra-btn); color: #0f1115; border-radius: var(--radius); text-decoration: none; flex-shrink: 0; }
.nav__phone-btn svg { width: 18px; height: 18px; }

/* ── MOBILE MENU ────────────────────────────────────────────── */
.nav__mobile { display: none; position: fixed; inset: 0; z-index: 300; }
.nav__mobile.is-open { display: block; }
.nav__mobile-backdrop { position: absolute; inset: 0; background: rgba(30,48,41,0.5); backdrop-filter: blur(2px); }
.nav__mobile-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(320px, 85vw); background: var(--cream); box-shadow: -4px 0 24px rgba(0,0,0,0.15); display: flex; flex-direction: column; overflow-y: auto; }
.nav__mobile-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.nav__mobile-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--green-dark); font-weight: 600; }
.nav__mobile-close { background: none; border: none; cursor: pointer; color: var(--green-dark); padding: 0.5rem; border-radius: var(--radius); min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.nav__mobile-links { list-style: none; padding: 1rem 0; flex: 1; }
.nav__mobile-links a { display: block; padding: 0.85rem 1.5rem; font-size: 1rem; color: var(--text-mid); text-decoration: none; border-bottom: 1px solid var(--border); }
.nav__mobile-links a:hover { background: var(--green-light); color: var(--green-dark); }
.nav__mobile-links a[aria-current="page"] { color: var(--green-dark); font-weight: 500; }

.nav__mobile-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  color: var(--text-mid);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--font-sans);
  text-align: left;
  transition: background 0.15s, color 0.15s;
}
.nav__mobile-dropdown-btn:hover { background: var(--green-light); color: var(--green-dark); }
.nav__mobile-dropdown-btn svg { transition: transform 0.2s; }
.nav__mobile-dropdown-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav__mobile-dropdown-menu {
  display: none;
  list-style: none;
  background: var(--green-light);
  padding: 0;
  margin: 0;
}
.nav__mobile-dropdown-menu.is-open { display: block; }
.nav__mobile-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem 0.75rem 3rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transition: background 0.15s, color 0.15s;
}
.nav__mobile-dropdown-menu a:hover { background: rgba(255,255,255,0.5); color: var(--green-dark); }
.nav__mobile-dropdown-menu a[aria-current="page"] { color: var(--green-dark); font-weight: 500; background: rgba(255,255,255,0.7); }

.nav__mobile-footer { padding: 1.5rem; border-top: 1px solid var(--border); }
.nav__mobile-footer .btn { width: 100%; justify-content: center; margin-bottom: 1rem; }
.nav__mobile-contact { font-size: 0.82rem; }
.nav__mobile-contact a { display: block; color: var(--text-mid); text-decoration: none; margin-bottom: 0.3rem; }
.nav__mobile-contact a:hover { color: var(--green-dark); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; height: calc((100vh - 96px) * 0.75); min-height: 520px; max-height: 780px; display: flex; align-items: flex-end; }
.hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 68% 35%; display: block; filter: brightness(0.72) saturate(0.82); }
.hero__photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, #1a3020 0%, #1e3624 28%, rgba(28,48,32,0.92) 42%, rgba(28,48,32,0.55) 58%, rgba(28,48,32,0.12) 75%, transparent 90%),
    linear-gradient(to top, rgba(10,20,12,0.72) 0%, rgba(10,20,12,0.18) 32%, transparent 55%),
    linear-gradient(to bottom, rgba(10,20,12,0.72) 0%, rgba(10,20,12,0.28) 30%, transparent 52%);
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.55;
}
.hero__inner { max-width: var(--max-w); margin: 0 auto; width: 100%; display: flex; align-items: flex-end; padding: 3rem 1.5rem 5rem; position: relative; z-index: 4; }
.hero__content { max-width: 560px; position: relative; padding-left: 0; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 0.65rem; margin-bottom: 1.4rem; }
.hero__eyebrow-line { width: 32px; height: 1px; background: var(--terra-light); opacity: 0.8; }
.hero__eyebrow-text { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra-light); }
.hero__title { font-family: var(--font-serif); font-size: clamp(2.6rem, 4.8vw, 4.4rem); font-weight: 300; line-height: 1.06; color: #fff; margin-bottom: 1.4rem; letter-spacing: -0.015em; }
.hero__title em { font-style: italic; color: var(--terra-light); font-weight: 300; }
.hero__desc { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.82; margin-bottom: 2.2rem; max-width: 440px; }
.hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

@media (max-width: 860px) {
  .hero { height: auto; min-height: 390px; max-height: none; align-items: flex-end; }
  .hero__photo img { object-position: 60% 30%; }
  .hero__photo::after {
    background:
      linear-gradient(to bottom, rgba(20,38,24,0.5) 0%, rgba(14,26,16,0.96) 62%),
      linear-gradient(to right, rgba(14,26,16,0.6) 0%, transparent 60%);
  }
  .hero__inner { padding: 0 1.25rem 3rem; align-items: flex-end; }
  .hero__content { padding-left: 0; max-width: 100%; }
}
@media (max-width: 600px) {
  .hero__title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero { min-height: 360px; }
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar { background: var(--green); padding: 0.85rem 1.5rem; }
.trust-bar__inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.75rem; color: rgba(255,255,255,0.9); font-weight: 400; }
.trust-item svg { width: 13px; height: 13px; color: var(--terra-light); flex-shrink: 0; }
.trust-item--cqc { text-decoration: none; }
.trust-item__cqc-badge {
  display: inline-block;
  background: #00843d; color: #fff;
  padding: 0.2rem 0.7rem; border-radius: 3px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
  font-family: Arial, sans-serif;
}

/* ── INTRO ──────────────────────────────────────────────────── */
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro__grid--reverse .img-block { order: 2; }
.img-block {
  aspect-ratio: 4/3; background: var(--green-mid); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
}
.img-block img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.img-block:hover img { transform: scale(1.03); }
.img-block::after { content: ''; position: absolute; inset: 0; border-radius: 6px; box-shadow: inset 0 0 60px rgba(0,0,0,0.18); pointer-events: none; }
.img-block::before {
  content: ''; position: absolute;
  bottom: -1px; right: -1px; z-index: 2;
  width: 48px; height: 48px;
  border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold);
  border-radius: 0 0 6px 0; pointer-events: none; opacity: 0.6;
}
.intro__body p { color: var(--text-mid); margin-bottom: 1.25rem; font-size: 1.02rem; line-height: 1.85; }

/* ── CARE / SERVICES CARDS ──────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 2rem 1.75rem; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.card__icon { width: 44px; height: 44px; background: var(--green-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--terra); }
.card__icon svg { width: 20px; height: 20px; }
.card__title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.6rem; }
.card__desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }
.section__header { margin-bottom: 0; }

/* ── VALUES ─────────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.value-card { display: flex; gap: 1.25rem; padding: 1.75rem; background: #fff; border-radius: 6px; border: 1px solid var(--border); }
.value-card__icon { width: 40px; height: 40px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--terra); }
.value-card__icon svg { width: 18px; height: 18px; }
.value-card__title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.4rem; }
.value-card__desc { font-size: 0.86rem; color: var(--text-mid); line-height: 1.7; }

/* ── LIFE ───────────────────────────────────────────────────── */
.life__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.life__intro { color: rgba(255,255,255,0.88); font-size: 1.02rem; line-height: 1.8; margin-bottom: 0.5rem; }
.tick-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; margin: 1.5rem 0 2rem; }
.tick-list li { font-size: 0.88rem; color: rgba(255,255,255,0.88); display: flex; align-items: center; gap: 0.5rem; }
.tick-list li::before { content: ''; width: 5px; height: 5px; background: var(--terra-light); border-radius: 50%; flex-shrink: 0; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section { background: var(--warm-white); }
.testimonials-header { margin-bottom: 3rem; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.t-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 1.75rem 2rem 2rem; display: flex; flex-direction: column; gap: 1.25rem; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.t-icon { color: var(--terra); flex-shrink: 0; }
.t-icon svg { display: block; width: 28px; height: 20px; }
.t-text { font-size: 1rem; color: var(--text-mid); line-height: 1.85; font-style: italic; flex: 1; }
.t-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.t-initials { width: 42px; height: 42px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 500; color: var(--green-dark); flex-shrink: 0; }
.t-name { font-size: 0.85rem; font-weight: 500; color: var(--green-dark); }
.t-role { font-size: 0.75rem; color: var(--text-light); margin-top: 0.1rem; }

@media (max-width: 860px) { .t-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .t-card { padding: 1.5rem; } .t-text { font-size: 0.95rem; } }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner { background: var(--green); padding: 5rem 1.5rem; text-align: center; }
.cta-banner__inner { max-width: 620px; margin: 0 auto; }
.cta-banner .section-lead { color: rgba(255,255,255,0.88); margin: 0 auto 2.5rem; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.cta-banner__phone { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 1.1rem; font-family: var(--font-serif); color: #fff; text-decoration: none; }
.cta-banner__phone:hover { color: var(--terra-light); }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer, footer * { box-sizing: border-box; }
footer { background: var(--green-deep); border-top: 1px solid rgba(201,164,107,0.34); }
.footer__main { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; padding: 3.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); align-items: flex-start; }
.footer__brand { background: transparent; display: flex; flex-direction: column; }
.footer__logo-wrap { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer__logo-mark { width: 270px; height: auto; max-height: 80px; flex-shrink: 0; object-fit: contain; align-self: center; display: block; margin-top: 0; }
.footer__logo-text { display: none; }
.footer__logo-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: #fff; letter-spacing: 0.02em; }
.footer__logo-sub { font-size: 0.6rem; color: rgba(200,169,110,0.65); letter-spacing: 0.14em; text-transform: uppercase; }
.footer__desc { max-width: 360px; font-size: 0.86rem; color: rgba(255,255,255,0.68); line-height: 1.75; margin-bottom: 1.1rem; }
.footer__chat { align-self: flex-start; display: inline-flex; align-items: center; gap: 0.5rem; min-height: 40px; padding: 0.55rem 0.85rem; margin-bottom: 1.25rem; border: 1px solid rgba(201,164,107,0.34); color: rgba(245,243,238,0.84); text-decoration: none; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; transition: border-color 0.18s, color 0.18s, background 0.18s; }
.footer__chat:hover { border-color: rgba(201,164,107,0.72); color: var(--gold); background: rgba(201,164,107,0.06); }
.footer__chat svg { width: 16px; height: 16px; color: var(--gold); }
.footer__contact a { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 0.4rem; transition: color 0.15s; }
.footer__contact a:hover { color: var(--terra-light); }
.footer__contact svg { width: 13px; height: 13px; flex-shrink: 0; }

.footer__social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer__social-link { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.15s; }
.footer__social-link:hover { color: var(--terra-light); }
.footer__social-link svg { width: 18px; height: 18px; }
.footer__nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 0 2rem; background: transparent; align-items: start; border-left: 1px solid rgba(245,243,238,0.14); padding-left: 3rem; }
.footer__nav-col { display: flex; flex-direction: column; background: transparent; padding-top: 20px; }
.footer__nav-col--no-heading { padding-top: calc(20px + 2.55rem); }
.footer__nav-heading { font-size: 1rem; letter-spacing: 0.02em; text-transform: none; color: #c8a96e; font-weight: 500; margin-bottom: 1rem; background: transparent; }
.footer__nav-link { font-size: 0.82rem; color: rgba(255,255,255,0.75); text-decoration: none; padding: 0.25rem 0; transition: color 0.15s; background: transparent; border: none; display: block; }
.footer__nav-link:hover { color: var(--terra-light); }

.footer__cqc-line { padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); font-size: 0.78rem; }
.footer__cqc-line a { color: var(--terra-light); }

.footer__bottom-bar-wrap { background: var(--green-deep); padding: 0 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer__bottom-bar { max-width: var(--max-w); margin: 0 auto; padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer__copy { font-size: 0.72rem; color: rgba(255,255,255,0.65); }

.footer__credit { background: rgba(0,0,0,0.2); padding: 0.65rem 1.5rem; text-align: center; }
.footer__credit-inner { max-width: var(--max-w); margin: 0 auto; font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.footer__credit a { color: rgba(255,255,255,0.65); text-decoration: none; font-weight: 500; }
.footer__credit a:hover { color: var(--terra-light); }

/* ── WEBCHEFS BRAND PASS ───────────────────────────────────── */
main {
  background: var(--charcoal);
}

.card,
.value-card,
.t-card,
.team-card,
.fees-card,
.nav__mobile-panel {
  background: var(--charcoal-2);
  border-color: var(--line);
  box-shadow: none;
}

.card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

.card__icon,
.value-card__icon,
.t-initials {
  background: rgba(201,164,107,0.12);
  color: var(--gold);
}

.img-block {
  background: var(--charcoal-3);
  border: 1px solid var(--line);
}

.label::after,
.hero__eyebrow-line {
  background: var(--gold);
}

.hero__photo img {
  opacity: 0 !important;
  animation: none !important;
}

.hero__photo {
  background:
    linear-gradient(120deg, #0f1115 0%, #111318 48%, #171a20 100%);
}

.hero__photo::before {
  content: '';
  position: absolute;
  right: clamp(1.25rem, 8vw, 8rem);
  top: 18%;
  width: min(420px, 42vw);
  height: 58%;
  border: 1px solid rgba(245,245,245,0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(245,245,245,0.14) 0 12%, transparent 12% 100%),
    linear-gradient(180deg, rgba(245,245,245,0.08) 0 22%, transparent 22% 100%),
    rgba(15,17,21,0.64);
  box-shadow: 0 34px 90px rgba(0,0,0,0.35);
  opacity: 0.72;
}

.hero__photo::after {
  background:
    linear-gradient(100deg, #0f1115 0%, rgba(15,17,21,0.98) 42%, rgba(15,17,21,0.72) 66%, rgba(15,17,21,0.16) 100%),
    linear-gradient(to top, rgba(15,17,21,0.9) 0%, rgba(15,17,21,0.22) 42%, transparent 68%);
}

.trust-bar,
.cta-banner,
footer,
.footer__bottom-bar-wrap {
  background: #0a0b0d;
}

.footer__main,
.footer__bottom-bar-wrap,
.footer__bottom-bar {
  border-color: var(--line);
}

/* ── WEBCHEFS HOMEPAGE ─────────────────────────────────────── */
.wc-hero {
  min-height: clamp(760px, calc(100vh - 98px), 980px);
  background: var(--charcoal);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.wc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245,243,238,0.025);
  pointer-events: none;
}

.wc-hero__inner {
  min-height: clamp(760px, calc(100vh - 98px), 980px);
  display: grid;
  grid-template-columns: minmax(450px, 0.78fr) minmax(680px, 1.22fr);
  max-width: 1440px;
  gap: clamp(2rem, 3vw, 4rem);
  align-items: center;
  position: relative;
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.wc-hero__copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.wc-hero__title {
  color: var(--secondary, #F5F3EE);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.15rem, 4.15vw, 4.1rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  margin: 1.9rem 0 1.9rem;
}

.wc-hero__title em {
  color: var(--gold);
  font-style: normal;
}

.wc-hero__desc {
  color: rgba(245,243,238,0.9);
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  line-height: 1.62;
  max-width: 550px;
  margin: 0 0 2.6rem;
}

.wc-hero .btn {
  min-width: 196px;
  justify-content: center;
  min-height: 56px;
}

.wc-hero__visual {
  position: absolute;
  inset: 0 -7vw 0 43%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: auto;
  margin-left: 0;
  box-shadow: none;
}

.wc-hero__visual::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 -1px;
  width: 1px;
  background: var(--charcoal);
  box-shadow: 44px 0 86px 76px var(--charcoal);
  z-index: 2;
}

.wc-hero__visual::after {
  content: '';
  position: absolute;
  inset: auto 7% -5% 14%;
  height: 20%;
  background: rgba(201,164,107,0.07);
  filter: blur(42px);
  pointer-events: none;
  z-index: 1;
}

.wc-hero__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: none;
  filter: saturate(0.96) brightness(0.92) contrast(1.07);
}

.wc-hero--concept {
  height: clamp(720px, 66.666vw, 1024px);
  min-height: 0;
  background-color: var(--charcoal);
  overflow: hidden;
}

.wc-hero--concept::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(90deg, rgba(15, 17, 21, 1) 0%, rgba(15, 17, 21, 1) 38%, rgba(15, 17, 21, 0.78) 49%, rgba(15, 17, 21, 0.22) 61%, rgba(15, 17, 21, 0) 74%);
  z-index: 1;
  pointer-events: none;
}

.wc-hero--concept .wc-hero__inner {
  max-width: none;
  min-height: 0;
  height: 100%;
  display: block;
  padding: 0;
}

.wc-hero--concept .wc-hero__visual {
  display: none;
}

.wc-hero__concept-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  clip-path: inset(0 0 0 43%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 100%);
  z-index: 0;
}

.wc-hero--concept .hero__eyebrow,
.wc-hero--concept .wc-hero__title,
.wc-hero--concept .wc-hero__desc {
  opacity: 1;
  pointer-events: auto;
}

.wc-hero--concept .wc-hero__copy {
  position: absolute;
  left: clamp(2rem, 5.45vw, 5.5rem);
  top: clamp(7.5rem, 11vw, 10.75rem);
  z-index: 3;
  width: min(47vw, 720px);
  max-width: none;
  background: transparent;
}

.wc-hero--concept .hero__eyebrow {
  margin-bottom: clamp(1.8rem, 3vw, 3rem);
}

.wc-hero--concept .wc-hero__title {
  font-size: clamp(3.8rem, 5.25vw, 5.65rem);
  line-height: 0.96;
  margin: 0 0 clamp(1.7rem, 2.5vw, 2.5rem);
}

.wc-nowrap {
  white-space: nowrap;
}

.wc-hero--concept .wc-hero__desc {
  font-size: clamp(1.15rem, 1.35vw, 1.38rem);
  line-height: 1.55;
  max-width: 510px;
}

.wc-hero--concept .hero__actions {
  gap: 1.45rem;
  margin-top: clamp(2.1rem, 3vw, 3rem);
}

.wc-hero--concept .hero__actions .btn {
  min-height: 56px;
  min-width: 0;
  padding: 0.85rem 1.85rem;
}

.wc-hero--concept .hero__actions .btn:first-child {
  width: auto;
  min-width: 260px;
}

.wc-hero--concept .hero__actions .btn:last-child {
  width: auto;
  min-width: 190px;
}

.wc-hero--split {
  min-height: 0;
  background: #000;
}

.wc-hero--split::before {
  background: none;
}

.wc-hero--split .wc-hero__inner {
  display: grid;
  grid-template-columns: minmax(430px, 0.78fr) minmax(650px, 1.22fr);
  gap: clamp(3.25rem, 4.6vw, 5.5rem);
  align-items: start;
  min-height: clamp(560px, calc(88vh - 104px), 760px);
  max-width: 1320px;
  padding-top: clamp(1.75rem, 2.7vw, 3rem);
  padding-bottom: clamp(3.5rem, 5vw, 5.75rem);
}

.wc-hero--split .wc-hero__copy {
  max-width: 560px;
  width: 100%;
}

.wc-hero--split .wc-hero__title {
  font-size: clamp(2.45rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 0 0 clamp(1.35rem, 2vw, 1.8rem);
}

.wc-hero--split .wc-hero__desc {
  color: rgba(245,243,238,0.86);
  font-size: clamp(1.12rem, 1.45vw, 1.38rem);
  line-height: 1.55;
  margin-bottom: clamp(2rem, 3vw, 2.85rem);
  max-width: 540px;
}

.wc-hero__points {
  display: grid;
  gap: 1.1rem;
  list-style: none;
  margin: 0 0 clamp(2.4rem, 3vw, 3.1rem);
  padding: 0;
}

.wc-hero__points li {
  color: rgba(245,243,238,0.88);
  font-size: clamp(1rem, 1.16vw, 1.18rem);
  line-height: 1.45;
  padding-left: 2.35rem;
  position: relative;
}

.wc-hero__points li::before {
  content: "";
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  height: 0.8rem;
  left: 0.35rem;
  position: absolute;
  top: 0.24rem;
  transform: rotate(45deg);
  width: 0.42rem;
}

.wc-hero__note-label {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  line-height: 1.6;
  margin: 0 0 0.85rem;
  text-transform: uppercase;
}

.wc-hero__note {
  color: rgba(245,243,238,0.82);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  margin: 0 0 2rem;
}

.wc-hero--split .hero__actions {
  margin-top: 0;
}

.wc-hero--split .hero__actions .btn {
  font-size: 0.82rem;
  min-height: 64px;
  min-width: 320px;
  padding-inline: 2.2rem;
}

.wc-hero--split .wc-hero__visual {
  align-self: start;
  aspect-ratio: 1.22;
  background: #000;
  border: 0;
  border-radius: 0;
  box-shadow: 0 34px 95px rgba(0,0,0,0.36);
  display: block;
  height: auto;
  inset: auto;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 2;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.16) 5%, rgba(0,0,0,0.7) 18%, #000 32%, #000 88%, rgba(0,0,0,0.52) 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.16) 5%, rgba(0,0,0,0.7) 18%, #000 32%, #000 88%, rgba(0,0,0,0.52) 96%, transparent 100%);
}

.wc-hero--split .wc-hero__visual::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(90deg, #000 0%, #000 14%, rgba(0,0,0,0.9) 26%, rgba(0,0,0,0.44) 42%, rgba(0,0,0,0) 62%, rgba(0,0,0,0.76) 100%),
    linear-gradient(180deg, #000 0%, rgba(0,0,0,0.68) 10%, rgba(0,0,0,0.08) 28%, rgba(0,0,0,0.08) 66%, rgba(0,0,0,0.78) 88%, #000 100%);
}

.wc-hero--split .wc-hero__visual::after {
  content: "";
  display: block;
  position: absolute;
  inset: auto 10% -8% 4%;
  height: 32%;
  background: rgba(0,0,0,0.62);
  filter: blur(34px);
  pointer-events: none;
  z-index: 2;
}

.wc-hero--split .wc-hero__visual img {
  display: block;
  filter: saturate(0.96) brightness(0.84) contrast(1.08);
  height: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 10%, rgba(0,0,0,0.34) 27%, #000 45%, #000 84%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 10%, rgba(0,0,0,0.34) 27%, #000 45%, #000 84%, transparent 100%);
  max-width: none;
  object-fit: cover;
  object-position: right center;
  transform: translateX(-40%);
  width: 175%;
}

.selected-work {
  background: var(--charcoal);
}

.selected-work__container {
  max-width: 1460px;
}

.selected-work__header {
  margin-bottom: clamp(1rem, 2vw, 1.55rem);
  max-width: 700px;
}

.selected-work__header .section-title {
  color: var(--off-white);
}

.selected-work__header .section-lead {
  color: rgba(245,243,238,0.68);
  margin-top: 0.75rem;
}

.selected-work-showcase {
  display: block;
  margin-top: 2.3rem;
  text-decoration: none;
}

.selected-work-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

.portfolio-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.9fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-top: 0;
}

.portfolio-feature__visual {
  min-width: 0;
}

.portfolio-feature__visual--devices {
  margin-left: clamp(-1.5rem, -1vw, 0rem);
}

.portfolio-feature__visual--concept {
  margin-left: clamp(-1rem, -0.8vw, 0rem);
}

.portfolio-feature__visual--rosewood {
  aspect-ratio: 1.18;
  margin-left: clamp(-1.5rem, -1vw, 0rem);
  overflow: hidden;
}

.portfolio-feature__visual--rosewood img {
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
  width: 152%;
}

.portfolio-feature__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.portfolio-feature__visual--rosewood img {
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
  width: 152%;
}

.portfolio-mockup {
  border: 1px solid rgba(245,243,238,0.18);
  border-radius: 10px;
  background:
    radial-gradient(circle at 72% 18%, rgba(201,164,107,0.16), transparent 34%),
    linear-gradient(145deg, rgba(245,243,238,0.06), rgba(245,243,238,0.015));
  box-shadow: 0 34px 90px rgba(0,0,0,0.42);
  overflow: hidden;
}

.portfolio-mockup__bar {
  align-items: center;
  background: rgba(0,0,0,0.34);
  border-bottom: 1px solid rgba(245,243,238,0.12);
  display: flex;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0 1rem;
}

.portfolio-mockup__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245,243,238,0.24);
}

.portfolio-mockup__bar span:nth-child(2) {
  background: rgba(201,164,107,0.55);
}

.portfolio-mockup__bar em {
  color: rgba(245,243,238,0.72);
  flex: 1;
  font-size: 0.75rem;
  font-style: normal;
  text-align: center;
}

.portfolio-mockup__screen {
  min-height: clamp(360px, 34vw, 560px);
  padding: clamp(1.25rem, 2.3vw, 2.3rem);
  position: relative;
}

.portfolio-mockup__screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,17,21,0.9), rgba(15,17,21,0.48)),
    radial-gradient(circle at 75% 55%, rgba(245,243,238,0.12), transparent 32%);
  pointer-events: none;
}

.portfolio-mockup__nav,
.portfolio-mockup__hero,
.portfolio-mockup__tiles {
  position: relative;
  z-index: 1;
}

.portfolio-mockup__nav {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 2vw, 1.8rem);
  color: rgba(245,243,238,0.76);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-mockup__nav strong {
  color: var(--off-white);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-right: auto;
  text-transform: none;
}

.portfolio-mockup__hero {
  margin-top: clamp(4rem, 7vw, 7rem);
  max-width: 460px;
}

.portfolio-mockup__hero p {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.portfolio-mockup__hero h3 {
  color: var(--off-white);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.portfolio-mockup__hero span {
  border: 1px solid rgba(201,164,107,0.7);
  color: var(--off-white);
  display: inline-flex;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-top: 2rem;
  padding: 0.75rem 1.1rem;
  text-transform: uppercase;
}

.portfolio-mockup__tiles {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 5vw, 5rem);
}

.portfolio-mockup__tiles span {
  min-height: 86px;
  border: 1px solid rgba(245,243,238,0.12);
  background: rgba(245,243,238,0.055);
}

.portfolio-mockup__tiles span:nth-child(2) {
  background: rgba(201,164,107,0.09);
}

.portfolio-feature__content {
  padding: clamp(1rem, 2vw, 2rem) 0;
}

.portfolio-feature__content h3 {
  color: var(--off-white);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.15rem, 3.6vw, 3.4rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
}

.portfolio-feature__rule {
  display: block;
  width: 42px;
  height: 2px;
  margin: 1.65rem 0 1.55rem;
  background: var(--gold);
}

.portfolio-feature__content p {
  color: rgba(245,243,238,0.78);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.75;
  margin: 0;
}

.portfolio-feature__block {
  border-top: 1px solid rgba(245,243,238,0.16);
  margin-top: 1.8rem;
  padding-top: 1.55rem;
}

.portfolio-feature__block h4 {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.portfolio-feature__block ul {
  display: grid;
  gap: 0.62rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.portfolio-feature__block li {
  color: rgba(245,243,238,0.78);
  line-height: 1.55;
  padding-left: 1.45rem;
  position: relative;
}

.portfolio-feature__block li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  background: transparent;
  color: var(--gold);
}

.portfolio-feature__columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portfolio-feature__button {
  margin-top: 2rem;
  min-width: 300px;
  justify-content: center;
}

.portfolio-feature__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(245,243,238,0.16);
  border-bottom: 1px solid rgba(245,243,238,0.16);
  gap: 0;
  margin-top: 1.75rem;
  padding: 1.35rem 0;
}

.portfolio-feature__fact {
  align-items: center;
  color: rgba(245,243,238,0.86);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  line-height: 1.55;
  min-width: 0;
  padding: 0 0.85rem;
  text-align: center;
  text-transform: uppercase;
}

.portfolio-feature__fact + .portfolio-feature__fact {
  border-left: 1px solid rgba(245,243,238,0.14);
}

.portfolio-feature__fact-icon {
  color: var(--gold);
  display: block;
  width: 30px;
  height: 30px;
}

.portfolio-feature__fact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 2rem;
  max-width: 960px;
}

.portfolio-fact {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(245,243,238,0.88);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  line-height: 1.55;
  padding: 0 1.7rem;
  text-transform: uppercase;
}

.portfolio-fact:first-child {
  padding-left: 0;
}

.portfolio-fact + .portfolio-fact {
  border-left: 1px solid rgba(245,243,238,0.18);
}

.portfolio-fact__icon {
  color: var(--gold);
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
}

.portfolio-fact__icon svg {
  width: 100%;
  height: 100%;
}

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

.work-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.work-card__visual {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #15171c;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.work-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,17,21,0.18);
  pointer-events: none;
}

.work-card__visual--one {
  background: #15171c;
}

.work-card__visual--two {
  background: #17191f;
}

.work-card__visual--three {
  background: #14161b;
}

.work-card__browser {
  position: absolute;
  inset: 14% 12%;
  border: 1px solid rgba(245,243,238,0.2);
  background: rgba(15,17,21,0.78);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
}

.work-card__browser span {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  width: 42px;
  height: 2px;
  background: var(--gold);
  box-shadow: 58px 0 0 rgba(245,243,238,0.72), 116px 0 0 rgba(245,243,238,0.32);
}

.work-card__browser strong {
  color: var(--off-white);
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.08;
  max-width: 250px;
}

.work-card__browser em {
  color: rgba(245,243,238,0.64);
  display: block;
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-top: 0.75rem;
  max-width: 250px;
  text-transform: uppercase;
}

.work-card h3 {
  color: var(--off-white);
  font-size: 1.02rem;
  font-weight: 500;
}

.work-card h3 a {
  color: inherit;
  text-decoration: none;
}

.work-card h3 a:hover {
  color: var(--gold);
}

.work-card p {
  color: var(--text-light);
  font-size: 0.86rem;
}

.process-section {
  background: #0a0b0d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-section .container {
  max-width: 1360px;
}

.process-section__header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.process-section__header .label::after {
  content: '';
  display: block;
  width: 64px;
  height: 1px;
  margin-top: 0.85rem;
  margin-left: auto;
  margin-right: auto;
}

.process-section__header .section-title {
  margin: 0.9rem 0 1.1rem;
}

.process-section__header p {
  color: rgba(245,243,238,0.68);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-step {
  position: relative;
  min-height: 100%;
  padding: 0 clamp(1rem, 1.8vw, 1.85rem);
  text-align: center;
}

.process-step + .process-step {
  border-left: 1px solid rgba(245,243,238,0.2);
}

.process-step__number {
  display: block;
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step__rule {
  display: block;
  width: 42px;
  height: 1px;
  margin: 1.05rem auto 1rem;
  background: var(--gold);
}

.process-step h3 {
  color: var(--off-white);
  font-size: clamp(0.82rem, 0.9vw, 0.98rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.4;
  margin: 0 0 0.95rem;
  text-transform: uppercase;
}

.process-step p {
  color: rgba(245,243,238,0.66);
  font-size: clamp(0.82rem, 0.88vw, 0.9rem);
  line-height: 1.62;
  margin: 0 auto 0.85rem;
  max-width: 230px;
}

.process-step__note {
  color: var(--gold) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.16em;
  line-height: 1.4 !important;
  margin-bottom: 0.8rem !important;
  text-transform: uppercase;
}

.process-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  border: 1px solid rgba(245,243,238,0.82);
  border-radius: 50%;
  position: relative;
}

.process-icon::before,
.process-icon::after,
.process-icon span,
.process-icon span::before,
.process-icon span::after {
  content: '';
  position: absolute;
  display: block;
}

.process-icon--discover::after {
  width: 48px;
  height: 1px;
  right: -29px;
  bottom: 5px;
  background: rgba(245,243,238,0.82);
  transform: rotate(45deg);
  transform-origin: left center;
}

.process-icon--discover::before {
  left: 31px;
  bottom: 24px;
  width: 5px;
  height: 18px;
  border: 1px solid var(--gold);
  border-radius: 3px 3px 0 0;
  box-shadow:
    11px -10px 0 -1px #0a0b0d,
    11px -10px 0 0 var(--gold),
    22px -20px 0 -1px #0a0b0d,
    22px -20px 0 0 var(--gold);
}

.process-icon--discover span {
  right: 24px;
  top: 28px;
  width: 27px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 9px 0 var(--gold), 0 18px 0 var(--gold);
}

.process-icon--direction span,
.process-icon--build span {
  inset: 25px 17px 24px;
  border: 1px solid rgba(245,243,238,0.82);
  border-radius: 3px;
}

.process-icon--direction::before,
.process-icon--build::before {
  top: 17px;
  left: 20px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--off-white);
  box-shadow: 10px 0 0 var(--off-white), 20px 0 0 var(--off-white);
}

.process-icon--direction::after {
  left: 29px;
  top: 43px;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(245,243,238,0.82);
}

.process-icon--direction span::before {
  right: 13px;
  top: 9px;
  width: 28px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 9px 0 var(--gold), 0 18px 0 var(--gold);
}

.process-icon--build span::before,
.process-icon--build span::after {
  top: 18px;
  width: 16px;
  height: 16px;
  border-color: var(--gold);
  border-style: solid;
  transform: rotate(45deg);
}

.process-icon--build span::before {
  left: 18px;
  border-width: 0 0 1px 1px;
}

.process-icon--build span::after {
  right: 18px;
  border-width: 1px 1px 0 0;
}

.process-icon--build::after {
  top: 38px;
  left: 47px;
  width: 1px;
  height: 24px;
  background: var(--gold);
  transform: rotate(19deg);
}

.process-icon--launch span {
  inset: 17px 25px 16px;
  border: 1px solid rgba(245,243,238,0.82);
  border-radius: 46% 46% 50% 50%;
  clip-path: polygon(50% 0, 100% 18%, 91% 74%, 50% 100%, 9% 74%, 0 18%);
}

.process-icon--launch span::before {
  left: 20px;
  top: 31px;
  width: 16px;
  height: 29px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translate(-50%, -50%) rotate(43deg);
}

.process-icon--support::before {
  inset: 21px;
  border: 1px solid rgba(245,243,238,0.82);
  border-radius: 50%;
}

.process-icon--support::after {
  left: 22px;
  top: 51px;
  width: 18px;
  height: 18px;
  border-left: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
}

.process-icon--support span {
  right: 22px;
  top: 28px;
  width: 21px;
  height: 18px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.process-icon--support span::before {
  left: -30px;
  top: 32px;
  width: 50px;
  height: 1px;
  background: rgba(245,243,238,0.82);
}

.process-section {
  background: #000;
  border-top: 1px solid rgba(245,243,238,0.08);
  border-bottom: 1px solid rgba(245,243,238,0.08);
  padding-top: clamp(4.25rem, 5.4vw, 5.8rem);
  padding-bottom: clamp(4.25rem, 5.4vw, 5.8rem);
  overflow: hidden;
}

.process-section .container {
  max-width: 1460px;
}

.process-section__header {
  max-width: 700px;
  margin: 0 0 clamp(2rem, 3.4vw, 2.9rem);
  text-align: left;
}

.process-section__header .section-title {
  color: var(--off-white);
}

.process-section__header .section-lead {
  color: rgba(245,243,238,0.68);
  margin-top: 0.75rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-step {
  padding: 0 clamp(1.15rem, 1.9vw, 2.05rem);
  text-align: center;
}

.process-step + .process-step {
  border-left: 1px solid rgba(245,243,238,0.28);
}

.process-icon {
  width: clamp(112px, 8.6vw, 136px);
  height: clamp(112px, 8.6vw, 136px);
  margin: 0 auto clamp(1rem, 1.6vw, 1.4rem);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.process-icon img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-icon::before,
.process-icon::after {
  content: none !important;
  display: none !important;
}

.process-step__number {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.process-step h3 {
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.12vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

.process-step__rule {
  width: 54px;
  height: 2px;
  margin: 1.05rem auto 1.15rem;
  background: var(--warm-grey);
}

.process-step p {
  max-width: 230px;
  color: rgba(245,243,238,0.86);
  font-size: clamp(0.88rem, 0.96vw, 0.98rem);
  line-height: 1.58;
  margin: 0 auto;
}

.process-section__cta {
  margin-top: clamp(2.2rem, 3.4vw, 3.1rem);
}

.wc-testimonials {
  background: var(--charcoal);
  border-bottom: 1px solid var(--line);
}

.wc-why .container,
.wc-testimonials .container {
  max-width: 1460px;
}

.wc-testimonials__header {
  max-width: 700px;
  margin: 0 0 clamp(2.2rem, 4vw, 3.4rem);
  text-align: left;
}

.wc-testimonials__header .section-title {
  color: var(--off-white);
}

.wc-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.wc-testimonial {
  min-height: 100%;
  padding: clamp(1.5rem, 2vw, 2rem);
  border: 1px solid rgba(245,243,238,0.14);
  border-radius: 6px;
  background: rgba(245,243,238,0.025);
  display: flex;
  flex-direction: column;
  position: relative;
}

.wc-testimonial__mark {
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.6rem;
  line-height: 0.72;
  margin-bottom: 1.15rem;
}

.wc-testimonial blockquote {
  color: rgba(245,243,238,0.76);
  font-size: 0.94rem;
  line-height: 1.78;
  margin: 0;
  flex: 1;
}

.wc-testimonial footer {
  background: transparent;
  border-top: 1px solid rgba(245,243,238,0.12);
  margin-top: 1.45rem;
  padding-top: 1rem;
}

.wc-testimonial strong {
  display: block;
  color: var(--off-white);
  font-size: 0.9rem;
  font-weight: 500;
}

.wc-testimonial footer span {
  display: block;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  line-height: 1.45;
  margin-top: 0.35rem;
  text-transform: uppercase;
}

.wc-why {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
}

.wc-why .section__header {
  max-width: 700px;
  margin: 0 0 clamp(2.2rem, 4vw, 3.4rem);
  text-align: left;
}

.wc-why .section-title {
  color: var(--off-white);
}

.wc-why .section-lead {
  color: rgba(245,243,238,0.68);
  margin-top: 0.75rem;
}

.wc-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 0;
}

.wc-why-card {
  background: rgba(245,243,238,0.025);
  border: 1px solid rgba(245,243,238,0.14);
  border-radius: 6px;
  min-height: 100%;
  padding: clamp(1.7rem, 2.4vw, 2.35rem);
  text-align: center;
}

.wc-why-card__icon {
  display: block;
  width: clamp(112px, 9vw, 140px);
  height: clamp(112px, 9vw, 140px);
  margin: 0 auto 1.55rem;
  object-fit: contain;
}

.wc-why-card h3 {
  color: var(--off-white);
  font-size: 1.08rem;
  font-weight: 500;
  margin: 0 0 0.65rem;
}

.wc-why-card p {
  color: rgba(245,243,238,0.68);
  font-size: 0.9rem;
  line-height: 1.68;
  margin: 0;
}

.wc-why-card__subtitle {
  color: var(--gold) !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.12em;
  line-height: 1.55 !important;
  margin-bottom: 1rem !important;
  text-transform: uppercase;
}

main.no-section-alternation > .wc-hero--split {
  background: #000;
}

main.no-section-alternation > .wc-why {
  background: var(--charcoal);
}

main.no-section-alternation > .selected-work {
  background: #000;
}

main.no-section-alternation > .process-section {
  background: var(--charcoal);
}

main.no-section-alternation > .wc-testimonials {
  background: #000;
}

main.no-section-alternation > .faq-section {
  background: var(--charcoal);
}

.why-page {
  background: var(--charcoal);
}

.why-page__header {
  max-width: 820px;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.why-page .section-title {
  color: var(--off-white);
}

.why-page__lead {
  color: rgba(245,243,238,0.72);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.75;
  margin: 1.25rem 0 0;
}

.why-page__grid {
  display: grid;
  gap: 1.25rem;
}

.why-page__card {
  border: 1px solid rgba(245,243,238,0.14);
  border-radius: 6px;
  background: rgba(245,243,238,0.025);
  padding: clamp(1.6rem, 2.5vw, 2.35rem);
}

.why-page__card::before {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.why-page__card h2 {
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 0.8rem;
}

.why-page__card p {
  color: rgba(245,243,238,0.68);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0;
  max-width: 820px;
}

.why-page__card p + p {
  margin-top: 1rem;
}

.why-page__subtitle {
  color: var(--gold) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.12em;
  line-height: 1.6 !important;
  margin-bottom: 1.2rem !important;
  text-transform: uppercase;
}

.why-compare {
  border-top: 1px solid rgba(245,243,238,0.12);
  margin-top: clamp(4rem, 7vw, 6rem);
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.why-compare__header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.why-compare__title {
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0.8rem 0 0;
}

.why-compare__list {
  display: grid;
  gap: 0.9rem;
}

.why-compare__item {
  border: 1px solid rgba(245,243,238,0.14);
  border-radius: 6px;
  background: rgba(245,243,238,0.025);
  overflow: hidden;
}

.why-compare__item summary {
  align-items: center;
  color: var(--off-white);
  cursor: pointer;
  display: flex;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 500;
  justify-content: space-between;
  line-height: 1.45;
  list-style: none;
  padding: 1.35rem clamp(1.25rem, 2.2vw, 1.8rem);
}

.why-compare__item summary::-webkit-details-marker {
  display: none;
}

.why-compare__item summary::after {
  color: var(--gold);
  content: "+";
  font-size: 1.45rem;
  font-weight: 300;
  margin-left: 1.5rem;
}

.why-compare__item[open] summary {
  border-bottom: 1px solid rgba(245,243,238,0.12);
}

.why-compare__item[open] summary::after {
  content: "-";
}

.why-compare__content {
  padding: clamp(1.35rem, 2.4vw, 2rem);
}

.why-compare__content p {
  color: rgba(245,243,238,0.7);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0;
  max-width: 850px;
}

.why-compare__content p + p {
  margin-top: 1rem;
}

.why-compare__standfirst {
  color: var(--off-white) !important;
  font-size: 1.08rem !important;
}

.why-compare__note {
  color: var(--gold) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-compare__content h3 {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 1.6rem 0 0.8rem;
  text-transform: uppercase;
}

.why-compare__content ul {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-compare__content li {
  color: rgba(245,243,238,0.76);
  line-height: 1.65;
  padding-left: 1.2rem;
  position: relative;
}

.why-compare__content li::before {
  background: var(--gold);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 0.85em;
  width: 0.45rem;
}

.process-page {
  background: var(--charcoal);
}

.process-page__header {
  max-width: 920px;
  margin-bottom: clamp(3.5rem, 6vw, 5rem);
}

.process-page .section-title {
  color: var(--off-white);
}

.process-page__lead {
  color: rgba(245,243,238,0.72);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.75;
  margin: 1.25rem 0 0;
  max-width: 820px;
}

.process-page__steps {
  display: grid;
  gap: 1.25rem;
}

.process-page__step {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid rgba(245,243,238,0.14);
  border-radius: 6px;
  background: rgba(245,243,238,0.025);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.process-page__number {
  color: var(--gold);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}

.process-page__content {
  max-width: 920px;
}

.process-page__content h2 {
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 0.8rem;
}

.process-page__content p {
  color: rgba(245,243,238,0.7);
  font-size: 0.98rem;
  line-height: 1.78;
  margin: 0;
}

.process-page__content p + p {
  margin-top: 1rem;
}

.process-page__subtitle {
  color: var(--gold) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.12em;
  line-height: 1.6 !important;
  margin-bottom: 1.35rem !important;
  text-transform: uppercase;
}

.process-page__list-intro {
  color: var(--off-white) !important;
  font-weight: 500;
  margin-top: 1.6rem !important;
}

.process-page__content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0.85rem 0 1.35rem;
  padding: 0;
}

.process-page__content li {
  color: rgba(245,243,238,0.76);
  line-height: 1.65;
  padding-left: 1.2rem;
  position: relative;
}

.process-page__content li::before {
  background: var(--gold);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 0.85em;
  width: 0.45rem;
}

.process-page__outcome {
  border-top: 1px solid rgba(245,243,238,0.12);
  color: var(--off-white) !important;
  margin-top: 1.5rem !important;
  padding-top: 1.25rem;
}

@media (max-width: 760px) {
  .process-page__step {
    grid-template-columns: 1fr;
  }

  .process-page__content ul {
    grid-template-columns: 1fr;
  }
}

.card-grid .card__icon:empty {
  display: none;
}

.card-grid .card:has(.card__icon:empty) {
  padding-top: 2.2rem;
}

@media (max-width: 960px) {
  .wc-hero {
    min-height: auto;
  }

  .wc-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .wc-hero__visual {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    height: auto;
    aspect-ratio: 1.78;
    box-shadow: 0 36px 90px rgba(0,0,0,0.34);
  }

  .wc-hero__visual img {
    width: 100%;
    object-position: 74% center;
    transform: none;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-feature {
    grid-template-columns: 1fr;
  }

  .portfolio-feature__visual--devices {
    margin-left: 0;
  }

  .portfolio-feature__visual--rosewood {
    aspect-ratio: 1.08;
    margin-left: 0;
  }

  .portfolio-feature__visual--rosewood img {
    width: 160%;
  }

  .portfolio-feature__facts,
  .portfolio-feature__columns {
    grid-template-columns: 1fr;
  }

  .portfolio-feature__fact + .portfolio-feature__fact {
    border-left: 0;
    border-top: 1px solid rgba(245,243,238,0.14);
    padding-top: 1rem;
  }

  .portfolio-facts {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .portfolio-fact,
  .portfolio-fact:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .portfolio-fact + .portfolio-fact {
    border-left: 0;
    padding-left: 0;
  }

  .work-card__visual {
    min-height: 280px;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 0;
  }

  .process-step:nth-child(3n + 1) {
    border-left: 0;
  }

  .wc-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .wc-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wc-hero--split .wc-hero__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    min-height: 0;
  }

  .wc-hero--split .wc-hero__copy {
    max-width: 640px;
  }

  .wc-hero--split .wc-hero__visual {
    aspect-ratio: 16 / 10;
  }

}

.wc-hero--concept .wc-hero__inner {
  display: block;
  padding: 0;
}

.wc-hero--concept .wc-hero__visual {
  display: none;
}

@media (max-width: 600px) {
  .wc-hero--concept {
    height: auto;
    min-height: 0;
  }

  .wc-hero--concept::before,
  .wc-hero__concept-image {
    display: none;
  }

  .wc-hero--concept .wc-hero__inner {
    height: auto;
    padding: 0;
  }

  .wc-hero--concept .wc-hero__copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    padding: 4.5rem 1.5rem;
  }

  .wc-hero--concept .wc-hero__title {
    font-size: clamp(3.05rem, 13vw, 4.35rem);
  }

  .wc-hero--concept .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 2rem;
  }

  .wc-hero--concept .hero__actions .btn {
    min-height: 56px;
    width: 100%;
  }

  .wc-hero--concept .hero__actions .btn:first-child {
    width: 100%;
    min-width: 0;
  }

  .wc-hero--concept .hero__actions .btn:last-child {
    width: 100%;
    min-width: 0;
  }

  .wc-hero--split .wc-hero__inner {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 4.5rem 1.5rem;
  }

  .wc-hero--split .wc-hero__copy {
    max-width: none;
  }

  .wc-hero--split .wc-hero__title {
    font-size: clamp(3.05rem, 13vw, 4.25rem);
  }

  .wc-hero--split .wc-hero__visual {
    aspect-ratio: 4 / 3;
    margin-top: 0;
  }

  .wc-hero--split .wc-hero__visual img {
    object-position: right center;
    transform: translateX(-38%);
    width: 160%;
  }

  .wc-hero--split .hero__actions .btn {
    min-width: 0;
    width: 100%;
  }

  .wc-hero .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .wc-hero .btn {
    width: 100%;
  }

  .wc-hero__visual {
    margin-top: 1.5rem;
    aspect-ratio: 4 / 3;
  }

  .wc-hero__visual img {
    width: 100%;
    object-position: 74% center;
    transform: none;
  }

  .process-section__header {
    margin-bottom: 3.5rem;
    text-align: center;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step,
  .process-step + .process-step,
  .process-step:nth-child(3n + 1) {
    border-left: 0;
  }

  .process-step {
    padding: 0 0 2.2rem;
    text-align: center;
  }

  .process-step + .process-step {
    border-top: 1px solid rgba(245,243,238,0.16);
    padding-top: 2.2rem;
  }

  .process-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .process-step__rule {
    margin-left: auto;
    margin-right: auto;
  }

  .process-step p {
    margin-left: auto;
    margin-right: auto;
    max-width: 280px;
  }

  .wc-testimonials__header {
    margin-bottom: 1.8rem;
  }

  .wc-testimonial {
    padding: 1.4rem;
  }

  .wc-why__grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

}

/* ── COOKIE BANNER ──────────────────────────────────────────── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--green-deep); border-top: 3px solid var(--terra-btn); padding: 1.25rem 1.5rem; z-index: 9000; box-shadow: 0 -4px 24px rgba(0,0,0,0.2); transform: translateY(0); transition: transform 0.3s ease; }
.cookie-banner.is-hidden { transform: translateY(110%); }
.cookie-banner__inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-banner__text { font-size: 0.82rem; color: rgba(255,255,255,0.85); line-height: 1.6; flex: 1; min-width: 260px; }
.cookie-banner__text a { color: var(--terra-light); text-decoration: underline; }
.cookie-banner__text a:hover { color: #fff; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }
.cookie-banner__accept { background: var(--terra-btn); color: #fff; border: none; border-radius: var(--radius); padding: 0.6rem 1.25rem; font-size: 0.78rem; font-weight: 500; font-family: var(--font-sans); letter-spacing: 0.04em; cursor: pointer; transition: background 0.2s; }
.cookie-banner__accept:hover { background: var(--terra-hover); }
.cookie-banner__decline { background: transparent; color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius); padding: 0.6rem 1.25rem; font-size: 0.78rem; font-weight: 500; font-family: var(--font-sans); letter-spacing: 0.04em; cursor: pointer; transition: all 0.2s; }
.cookie-banner__decline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
@media (max-width: 600px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__accept, .cookie-banner__decline { flex: 1; text-align: center; }
}

/* ── CONTENT PAGE (legal/long-form) ─────────────────────────── */
.content-page__header { background: var(--green-light); padding: 4.5rem 0 3rem; }
.content-page__title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--green-dark); margin-bottom: 0.5rem; }
.content-page__meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.25rem; }
.content-page__lead { font-size: 1.05rem; color: var(--text-mid); max-width: 680px; line-height: 1.8; }
.content-page__body { padding: 4rem 0 5rem; }
.content-page__body h2 { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 400; color: var(--green-dark); margin: 2.5rem 0 1rem; }
.content-page__body h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--green-dark); margin: 1.75rem 0 0.75rem; }
.content-page__body p  { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.85; }
.content-page__body ul { margin: 0 0 1.25rem 1.25rem; }
.content-page__body li { color: var(--text-mid); margin-bottom: 0.4rem; line-height: 1.7; }

/* ── TEAM ───────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.75rem; margin-top: 3rem; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.team-card__photo { aspect-ratio: 4/3; background: var(--green-mid); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }
.team-card__name { font-family: var(--font-serif); font-size: 1.2rem; color: var(--green-dark); padding: 1.25rem 1.5rem 0.1rem; }
.team-card__role { font-size: 0.8rem; color: var(--terra); padding: 0 1.5rem 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; }
.team-card__bio  { font-size: 0.88rem; color: var(--text-mid); padding: 0 1.5rem 1.5rem; line-height: 1.7; }

/* ── FEES INTRO (text-only) ─────────────────────────────────── */
.fees-intro {
  padding: 3.5rem 1.5rem !important;
}
.fees-intro .label { margin-bottom: 1rem; }
.fees-intro .section-title { margin-bottom: 1.75rem; }
.fees-intro__paragraph {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.fees-intro__paragraph:last-of-type { margin-bottom: 0; }

/* ── FEES PRICING (weekly rates grid) ─────────────────────────── */
.fees-pricing {
  background: var(--warm-white);
  padding: 4rem 1.5rem !important;
}
.fees-pricing__header { margin-bottom: 2.5rem; }
.fees-pricing__header .section-title { margin-bottom: 0.75rem; }
.fees-pricing__intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.fees-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.fees-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fees-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra-btn) 0%, var(--gold) 100%);
}

.fees-card .card__icon {
  margin-bottom: 1.25rem;
}

.fees-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.fees-card__price {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--terra-btn);
  font-family: var(--font-serif);
  line-height: 1.1;
  margin-bottom: 0;
}

.fees-card__period {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: normal;
  display: block;
  margin-top: 0.25rem;
}

.fees-pricing__note {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* ── FEES WHAT'S INCLUDED ───────────────────────────────────── */
.fees-included,
.fees-additional,
.fees-funding,
.fees-commitment {
  padding: 4rem 1.5rem !important;
}

.fees-included .section-title,
.fees-additional .section-title,
.fees-funding .section-title,
.fees-commitment .section-title {
  margin-bottom: 0.85rem;
}

.fees-included__intro,
.fees-additional__intro,
.fees-funding__intro,
.fees-commitment__intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

/* ── FEES LIST ─────────────────────────────────────────────────── */
.fees-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.95rem;
  margin-bottom: 0;
}

.fees-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(200,169,110,0.2);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.fees-list__item::before {
  content: '✓';
  font-weight: 700;
  color: var(--terra-btn);
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1.3;
}

.fees-list--commitment { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.fees-list--commitment .fees-list__item {
  background: var(--green-light);
  border-color: var(--green-mid);
}

/* ── ADDITIONAL SERVICES NOTE ──────────────────────────────────── */
.fees-additional__note,
.fees-funding__support {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* ── FUNDING OPTIONS ───────────────────────────────────────────── */
.fees-funding__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 0;
}

.fees-funding-option {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.fees-funding-option:hover {
  border-color: var(--terra-btn);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.fees-funding-option__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.fees-funding-option__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── ADDITIONAL SERVICES (horizontal cards, icon left) ────────────── */
.fees-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 0;
}

.fees-service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.fees-service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--terra-btn) 0%, var(--gold) 100%);
}

.fees-service-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  border-radius: 4px;
  color: var(--terra);
}

.fees-service-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.fees-service-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.4;
  margin: 0;
}

/* ── FUNDING YOUR CARE (vertical cards, icon top) ──────────────── */
.fees-funding__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 0;
}

.fees-funding-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fees-funding-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra-btn) 0%, var(--gold) 100%);
}

.fees-funding-card .card__icon {
  margin-bottom: 1.25rem;
}

.fees-funding-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.fees-funding-card__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}


/* ── FEES RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .fees-pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .fees-services__grid { grid-template-columns: repeat(2, 1fr); }
  .fees-funding__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .fees-list { grid-template-columns: 1fr; }
  .fees-funding__options { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .fees-pricing__grid { grid-template-columns: 1fr; }
  .fees-card { padding: 1.75rem 1.5rem; }
  .fees-card__price { font-size: 1.8rem; }
  .fees-list { grid-template-columns: 1fr; }
  .fees-funding__options { grid-template-columns: 1fr; }
  .fees-services__grid { grid-template-columns: 1fr; }
  .fees-funding__grid { grid-template-columns: 1fr; }
}

/* ── ADMISSIONS PAGE ────────────────────────────────────────── */
.admissions-intro {
  padding: 3.5rem 1.5rem !important;
}
.admissions-intro .label { margin-bottom: 1rem; }
.admissions-intro .section-title { margin-bottom: 1.75rem; }
.admissions-intro__paragraph {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.admissions-intro__paragraph:last-of-type { margin-bottom: 0; }

/* ── ADMISSIONS STEPS ──────────────────────────────────────── */
.admissions-steps {
  padding: 4rem 1.5rem !important;
}
.admissions-steps .section-title { margin-bottom: 2.5rem; }

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  max-width: 700px;
}

/* Vertical connecting line with fade-out */
.steps-list::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--terra-btn) 0%, var(--terra-btn) 85%, transparent 100%);
}

.step-item {
  display: flex;
  gap: 2rem;
  position: relative;
}

.step-item__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--terra-btn);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(158, 90, 34, 0.2);
}

.step-item__content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-item__heading {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.step-item__text {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.85;
  margin: 0;
}

/* ── ADMISSIONS URGENT ─────────────────────────────────────── */
.admissions-urgent {
  padding: 4rem 1.5rem !important;
}
.admissions-urgent .section-title { margin-bottom: 1.75rem; }

.admissions-urgent__text {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.admissions-urgent__text:last-of-type { margin-bottom: 0; }
.admissions-urgent__text strong { color: var(--green-dark); }

/* ── ADMISSIONS EXPECTATIONS ───────────────────────────────── */
.admissions-expectations {
  padding: 4rem 1.5rem !important;
}
.admissions-expectations .section-title { margin-bottom: 1.75rem; }

.admissions-expectations__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.admissions-expectations__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

.admissions-expectations__item::before {
  content: '✓';
  font-weight: 700;
  color: var(--terra-btn);
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1.3;
}

/* ── ADMISSIONS FUNDING ────────────────────────────────────── */
.admissions-funding {
  padding: 4rem 1.5rem !important;
}
.admissions-funding .section-title { margin-bottom: 1.75rem; }

.admissions-funding__text {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.admissions-funding__text:last-of-type { margin-bottom: 0; }

/* ── ADMISSIONS RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
  .admissions-expectations__item { gap: 0.85rem; padding: 1rem; }
  .steps-list { gap: 2.5rem; }
  .steps-list::before { left: 23px; }
  .step-item__number { width: 48px; height: 48px; font-size: 1.25rem; }
  .step-item { gap: 1.5rem; }
}

@media (max-width: 600px) {
  .admissions-intro { padding: 3rem 1.25rem !important; }
  .admissions-steps { padding: 3rem 1.25rem !important; }
  .admissions-urgent { padding: 3rem 1.25rem !important; }
  .admissions-expectations { padding: 3rem 1.25rem !important; }
  .admissions-funding { padding: 3rem 1.25rem !important; }

  .admissions-intro .section-title,
  .admissions-steps .section-title,
  .admissions-urgent .section-title,
  .admissions-expectations .section-title,
  .admissions-funding .section-title {
    font-size: 1.6rem;
  }

  .steps-list { gap: 2rem; max-width: 100%; }
  .steps-list::before { left: 19px; }
  .step-item__number { width: 40px; height: 40px; font-size: 1.1rem; }
  .step-item { gap: 1.25rem; }
  .step-item__heading { font-size: 1.1rem; }
  .step-item__text { font-size: 0.95rem; }
  .admissions-urgent__text,
  .admissions-funding__text { font-size: 0.95rem; }
  .admissions-expectations__item { font-size: 0.9rem; }
}

/* ── ABOUT PAGE ────────────────────────────────────────────── */
.about-intro {
  padding: 3.5rem 1.5rem !important;
}
.about-intro .label { margin-bottom: 1rem; }
.about-intro .section-title { margin-bottom: 1.75rem; }
.about-intro__paragraph {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.about-intro__paragraph:last-of-type { margin-bottom: 0; }

.about-story,
.about-approach,
.about-who-we-care,
.about-home,
.about-team,
.about-quality,
.about-clients,
.about-visit {
  padding: 4rem 1.5rem !important;
}

.about-story .section-title,
.about-approach .section-title,
.about-who-we-care .section-title,
.about-home .section-title,
.about-team .section-title,
.about-quality .section-title,
.about-clients .section-title,
.about-visit .section-title {
  margin-bottom: 1.75rem;
}

.about-section__paragraph {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-section__paragraph:last-of-type { margin-bottom: 0; }

.about-section__lead {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-list {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--terra-btn);
}

.about-list li {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.about-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--terra-btn);
  font-weight: bold;
}

.about-section__cta {
  margin-top: 2rem;
}

.about-section__cta .btn {
  margin-right: 0.5rem;
}

/* ── ABOUT RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 960px) {
  .about-intro { padding: 3rem 1.5rem !important; }
  .about-story,
  .about-approach,
  .about-who-we-care,
  .about-home,
  .about-team,
  .about-quality,
  .about-clients,
  .about-visit {
    padding: 3rem 1.5rem !important;
  }
}

@media (max-width: 600px) {
  .about-intro { padding: 2.5rem 1.25rem !important; }
  .about-story,
  .about-approach,
  .about-who-we-care,
  .about-home,
  .about-team,
  .about-quality,
  .about-clients,
  .about-visit {
    padding: 2.5rem 1.25rem !important;
  }

  .about-intro .section-title,
  .about-story .section-title,
  .about-approach .section-title,
  .about-who-we-care .section-title,
  .about-home .section-title,
  .about-team .section-title,
  .about-quality .section-title,
  .about-clients .section-title,
  .about-visit .section-title {
    font-size: 1.6rem;
  }

  .about-intro__paragraph,
  .about-section__paragraph,
  .about-section__lead {
    font-size: 0.95rem;
  }

  .about-list li {
    font-size: 0.95rem;
  }
}

/* ── COMPLAINTS PROCEDURE PAGE ─────────────────────────────── */
.complaints-intro {
  padding: 3.5rem 1.5rem !important;
}
.complaints-intro .label { margin-bottom: 1rem; }
.complaints-intro .section-title { margin-bottom: 1.75rem; }
.complaints-intro__paragraph {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.complaints-intro__paragraph:last-of-type { margin-bottom: 0; }

/* ── COMPLAINTS RESPONSIVE ────────────────────────────────── */
@media (max-width: 600px) {
  .complaints-intro { padding: 2.5rem 1.25rem !important; }
  .complaints-intro .section-title { font-size: 1.6rem; }
  .complaints-intro__paragraph { font-size: 0.95rem; }
}

/* ── LEGAL PAGES (unified styling) ─────────────────────────── */
.privacy-policy-section,
.cookie-policy-section,
.accessibility-statement-section,
.terms-conditions-section {
  padding: 4rem 1.5rem !important;
}

.privacy-policy-section .label,
.cookie-policy-section .label,
.accessibility-statement-section .label,
.terms-conditions-section .label {
  margin-bottom: 1rem;
}

.privacy-policy-section .section-title,
.cookie-policy-section .section-title,
.accessibility-statement-section .section-title,
.terms-conditions-section .section-title {
  margin-bottom: 1.75rem;
}

.legal-section__meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  display: block;
}

.legal-section__lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Legal section headings */
.privacy-policy-section h3,
.cookie-policy-section h3,
.accessibility-statement-section h3,
.terms-conditions-section h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green-dark);
  margin: 2rem 0 1rem 0;
}

.privacy-policy-section h3:first-of-type,
.cookie-policy-section h3:first-of-type,
.accessibility-statement-section h3:first-of-type,
.terms-conditions-section h3:first-of-type {
  margin-top: 0;
}

/* Legal section subheadings (h4) */
.privacy-policy-section h4,
.cookie-policy-section h4,
.accessibility-statement-section h4,
.terms-conditions-section h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--green-dark);
  margin: 1.5rem 0 0.75rem 0;
}

/* Legal section paragraphs */
.privacy-policy-section p,
.cookie-policy-section p,
.accessibility-statement-section p,
.terms-conditions-section p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* Legal section lists */
.privacy-policy-section ul,
.cookie-policy-section ul,
.accessibility-statement-section ul,
.terms-conditions-section ul {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.privacy-policy-section li,
.cookie-policy-section li,
.accessibility-statement-section li,
.terms-conditions-section li {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.privacy-policy-section li::before,
.cookie-policy-section li::before,
.accessibility-statement-section li::before,
.terms-conditions-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--terra-btn);
  font-weight: bold;
}

/* Legal page links */
.privacy-policy-section a,
.cookie-policy-section a,
.accessibility-statement-section a,
.terms-conditions-section a {
  color: var(--terra-btn);
  text-decoration: underline;
}

/* ── LEGAL PAGES RESPONSIVE ────────────────────────────────── */
@media (max-width: 960px) {
.privacy-policy-section,
.cookie-policy-section,
.accessibility-statement-section,
.terms-conditions-section {
    padding: 3rem 1.5rem !important;
  }
}

@media (max-width: 600px) {
.privacy-policy-section,
.cookie-policy-section,
.accessibility-statement-section,
.terms-conditions-section {
    padding: 2.5rem 1.25rem !important;
  }

.privacy-policy-section .section-title,
.cookie-policy-section .section-title,
.accessibility-statement-section .section-title,
.terms-conditions-section .section-title {
    font-size: 1.6rem;
  }

  .legal-section__lead,
.privacy-policy-section p,
.cookie-policy-section p,
.accessibility-statement-section p,
.terms-conditions-section p {
    font-size: 0.95rem;
  }

.privacy-policy-section li,
.cookie-policy-section li,
.accessibility-statement-section li,
.terms-conditions-section li {
    font-size: 0.95rem;
  }
}

/* ── VISITING PAGE ─────────────────────────────────────────── */
.visiting-intro {
  padding: 3.5rem 1.5rem !important;
}

.visiting-intro__content {
  max-width: 700px;
}

.visiting-intro__lead {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--terra-btn);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.visiting-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.visiting-intro__content {
  max-width: 700px;
}

.visiting-intro__paragraph {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.visiting-intro__paragraph:last-of-type {
  margin-bottom: 0;
}

.visiting-intro__image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.visiting-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Visiting sections */
.visiting-expect,
.visiting-family,
.visiting-access,
.visiting-parking,
.visiting-address,
.visiting-planning,
.visiting-first,
.visiting-safety {
  padding: 4rem 1.5rem !important;
}

.visiting-expect .section-title,
.visiting-family .section-title,
.visiting-access .section-title,
.visiting-parking .section-title,
.visiting-address .section-title,
.visiting-planning .section-title,
.visiting-first .section-title,
.visiting-safety .section-title {
  margin-bottom: 1.75rem;
}

.visiting-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.visiting-text:last-of-type {
  margin-bottom: 0;
}

/* Visiting list */
.visiting-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0 0 0;
  padding: 0;
}

.visiting-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.visiting-list__item::before {
  content: '•';
  color: var(--terra-btn);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── VISITING RESPONSIVE ──────────────────────────────────── */
@media (max-width: 960px) {
  .visiting-intro { padding: 3rem 1.5rem !important; }
  .visiting-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .visiting-expect,
  .visiting-family,
  .visiting-access,
  .visiting-parking,
  .visiting-address,
  .visiting-planning,
  .visiting-first,
  .visiting-safety { padding: 3.5rem 1.5rem !important; }
}

@media (max-width: 600px) {
  .visiting-intro { padding: 3rem 1.25rem !important; }
  .visiting-expect,
  .visiting-family,
  .visiting-access,
  .visiting-parking,
  .visiting-address,
  .visiting-planning,
  .visiting-first,
  .visiting-safety {
    padding: 3rem 1.25rem !important;
  }

  .visiting-intro__lead { font-size: 1.2rem; }
  .visiting-text { font-size: 0.9rem; }
}

/* ── LIFE AT ROSEWOOD PAGE ─────────────────────────────────── */

/* ── DAY TIMETABLE: Two-column with left accent line ────────── */
.day-timetable {
  max-width: 800px;
}

.day-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--terra-btn);
  margin-left: 0;
}

.day-row:not(:last-child) {
  border-bottom: 1px solid var(--green-mid);
  padding-bottom: 1.5rem;
}

.day-time {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--terra-btn);
  line-height: 1.4;
  flex-shrink: 0;
}

.day-content {
  margin: 0;
}

.day-content strong {
  display: block;
  font-size: 1rem;
  color: var(--green-dark);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.day-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.day-closing {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ── CAROUSEL GALLERY ──────────────────────────────────────── */
.carousel-section {
  padding: 4rem 1.5rem !important;
}

.carousel {
  position: relative;
  max-width: 900px;
  margin: 2rem auto 0;
}

.carousel__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel__track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Carousel Buttons */
.carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  color: var(--green-dark);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
  font-weight: 300;
  line-height: 1;
}

.carousel__button:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel__button:focus-visible {
  outline: 3px solid var(--terra-btn);
  outline-offset: 2px;
}

.carousel__button--prev {
  left: 1rem;
}

.carousel__button--next {
  right: 1rem;
}

/* Carousel Indicators */
.carousel__indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--terra-btn);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel__dot:hover {
  transform: scale(1.15);
}

.carousel__dot:focus-visible {
  outline: 2px solid var(--terra-btn);
  outline-offset: 3px;
}

.carousel__dot--active {
  background: var(--terra-btn);
  transform: scale(1.2);
}

/* ── SERVICES PAGE ─────────────────────────────────────────── */
.services-intro {
  padding: 3.5rem 1.5rem !important;
}

.services-intro .label { margin-bottom: 1rem; }
.services-intro .section-title { margin-bottom: 1.75rem; }

.services-intro__paragraph {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.services-intro__paragraph:last-of-type { margin-bottom: 0; }

/* All Services Section */
.services-all {
  padding: 4rem 1.5rem !important;
}

.services-group {
  margin-bottom: 3rem;
  scroll-margin-top: 120px;
}

.services-group--divider {
  padding-top: 3rem;
  border-top: 1px solid var(--green-mid);
}

.services-group__heading {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.services-group__lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--terra-btn);
  font-weight: 400;
  margin-bottom: 1.15rem;
  line-height: 1.5;
}

.services-group__intro {
  max-width: 760px;
  color: rgba(245,243,238,0.68);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}

.services-group__included {
  color: var(--off-white);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 2rem 0 1.2rem;
  text-transform: uppercase;
}

.services-subgroup {
  margin-top: 2rem;
  max-width: 980px;
}

.services-subgroup--featured {
  border: 1px solid rgba(201,164,107,0.28);
  border-radius: 6px;
  background: rgba(201,164,107,0.045);
  padding: 1.25rem;
}

.services-subgroup + .services-subgroup {
  border-top: 1px solid rgba(245,243,238,0.12);
  padding-top: 2rem;
}

.services-subgroup--featured + .services-subgroup {
  border-top: 0;
}

.services-subgroup__title {
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 1rem;
}

.services-subgroup__lead {
  color: rgba(245,243,238,0.72);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.2rem;
  max-width: 760px;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 980px;
}

.services-list li {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(245,243,238,0.025);
  padding: 1.25rem 1.35rem;
  position: relative;
}

.services-list li::before {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1rem;
}

.services-list strong {
  display: block;
  color: var(--off-white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 0.45rem;
}

.services-list span {
  display: block;
  color: rgba(245,243,238,0.68);
  line-height: 1.68;
}

.services-bonus {
  border: 1px solid rgba(201,164,107,0.28);
  border-radius: 6px;
  background: rgba(201,164,107,0.045);
  margin: 2rem 0 2.2rem;
  max-width: 980px;
  padding: 1.25rem;
}

.services-bonus .services-group__included {
  margin-top: 0;
}

.services-list--bonus li {
  background: rgba(15,17,21,0.26);
  border-color: rgba(201,164,107,0.2);
}

.services-subgroup--featured .services-list li {
  background: rgba(15,17,21,0.26);
  border-color: rgba(201,164,107,0.2);
}

.services-optional {
  color: rgba(245,243,238,0.68);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 1.4rem 0 0;
  max-width: 980px;
}

.services-optional strong {
  color: var(--off-white);
  font-weight: 500;
}

.services-group__closing {
  max-width: 760px;
  border-top: 1px solid var(--line);
  margin-top: 2.4rem;
  padding-top: 1.5rem;
}

.services-group__closing strong {
  display: block;
  color: var(--off-white);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
}

.services-group__closing span {
  display: block;
  color: rgba(245,243,238,0.68);
  line-height: 1.7;
}

/* ── SERVICES RESPONSIVE ───────────────────────────────────── */
@media (max-width: 960px) {
  .services-intro { padding: 3rem 1.5rem !important; }
  .services-all { padding: 3.5rem 1.5rem !important; }
  .services-group__lead { font-size: 1.05rem; }
  .services-group__heading { font-size: 1.25rem; }
}

@media (max-width: 600px) {
  .services-intro { padding: 2.5rem 1.25rem !important; }
  .services-all { padding: 3rem 1.25rem !important; }

  .services-intro .section-title {
    font-size: 1.6rem;
  }

  .services-intro__paragraph { font-size: 0.95rem; }
  .services-group__heading { font-size: 1.15rem; }
  .services-group__lead { font-size: 1rem; }
  .services-list { grid-template-columns: 1fr; }
  .services-list li { font-size: 0.9rem; }
  .services-group--divider { padding-top: 2rem; }
}

/* ── ACTIVITIES INTRO WITH IMAGE ───────────────────────────── */
.activities-intro {
  padding: 4rem 1.5rem !important;
}

.activities-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.activities-intro__content {
  max-width: 700px;
}

.activities-intro__image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.activities-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Activities list */
.life-activities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.life-activities-list li {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.life-activities-list li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: var(--terra-btn);
  font-weight: 700;
}

/* Meal times section */
.meals-times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  margin: 2rem 0;
}

.meal-item {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

.meal-item strong {
  color: var(--green-dark);
  font-weight: 500;
}

/* Life page section intro styling */
.section-intro {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.75rem;
  max-width: none;
}

/* ── DAY TIMETABLE RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  .day-row {
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1.25rem 0 1.25rem 1.25rem;
  }

  .day-time {
    font-size: 0.85rem;
  }

  .day-content strong {
    font-size: 0.95rem;
  }

  .day-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .day-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem 0 1rem 1rem;
  }

  .day-time {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }

  .day-content strong {
    font-size: 0.9rem;
  }

  .day-content p {
    font-size: 0.8rem;
  }
}

/* ── CAROUSEL RESPONSIVE ───────────────────────────────────── */
@media (max-width: 960px) {
  .carousel__button {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  .carousel__button--prev {
    left: 0.75rem;
  }

  .carousel__button--next {
    right: 0.75rem;
  }
}

@media (max-width: 600px) {
  .carousel-section {
    padding: 3rem 1.25rem !important;
  }

  .carousel__viewport {
    border-radius: 8px;
  }

  .carousel__button {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .carousel__button--prev {
    left: 0.5rem;
  }

  .carousel__button--next {
    right: 0.5rem;
  }

  .carousel__indicators {
    gap: 0.5rem;
    margin-top: 1.25rem;
  }

  .carousel__dot {
    width: 8px;
    height: 8px;
  }
}

/* ── ACTIVITIES RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
  .activities-intro { padding: 3.5rem 1.5rem !important; }
  .activities-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .activities-intro { padding: 3rem 1.25rem !important; }
  .activities-intro__grid { grid-template-columns: 1fr; gap: 2rem; }
  .life-activities-list li { font-size: 0.9rem; }
  .day-closing { margin-top: 1.5rem; padding-top: 1rem; }
}

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-page { background: var(--cream); }
.contact-page__header { max-width: 720px; margin: 0 auto 2rem; text-align: center; }
.contact-page__header .section-lead { margin-left: auto; margin-right: auto; }
.contact-page__points {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 1.75rem auto 2rem;
  max-width: 520px;
  padding: 0;
  text-align: left;
}

.contact-page__points li {
  color: rgba(245,243,238,0.82);
  font-size: 0.98rem;
  line-height: 1.5;
  padding-left: 2rem;
  position: relative;
}

.contact-page__points li::before {
  content: "";
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  height: 0.62rem;
  left: 0.35rem;
  position: absolute;
  top: 0.28rem;
  transform: rotate(45deg);
  width: 0.34rem;
}

.contact-page__note-label,
.contact-page__note {
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
  text-align: left;
}

.contact-page__note-label {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.contact-page__note {
  color: rgba(245,243,238,0.82);
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0;
}

.contact-layout {
  display: flex;
  justify-content: center;
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto 1.75rem;
}

.contact-direct .contact-method {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(34,57,39,0.06);
}

/* Left column — info */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 120px; }
.contact-info__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.5rem;
  box-shadow: 0 2px 16px rgba(34,57,39,0.06);
  overflow: hidden;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease;
  position: relative;
}
.contact-method + .contact-method { border-top: 1px solid var(--border); }
.contact-method:hover { background: var(--green-light); }
.contact-method:hover .contact-method__icon { background: var(--terra-btn); color: #fff; }

.contact-method__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--terra);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.contact-method__icon svg { width: 20px; height: 20px; }
.contact-method__body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.contact-method__label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra);
}
.contact-method__value {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 500;
  color: var(--green-dark);
  line-height: 1.35;
  word-break: break-word;
}
.contact-method__meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.contact-info__note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
  position: relative;
}

/* Right column — form card */
.contact-form-card {
  background: rgba(245,243,238,0.025);
  border: 1px solid rgba(245,243,238,0.14);
  border-radius: 8px;
  padding: 2.5rem 2.5rem 2.25rem;
  box-shadow: none;
  position: relative;
  width: min(100%, 760px);
}
.contact-form-card::before {
  content: none;
}
.contact-form-card__header {
  margin-bottom: 1.75rem;
  text-align: left;
}
.contact-form-card__title {
  font-family: var(--font-serif);
  font-size: 1.9rem; font-weight: 400; line-height: 1.2;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.contact-form-card__title em { font-style: italic; color: var(--terra); }
.contact-form-card__lead {
  font-size: 0.95rem; color: rgba(245,243,238,0.7); line-height: 1.75;
}
.contact-form-card__eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  line-height: 1.6;
  margin: 0 0 0.55rem;
  text-transform: uppercase;
}
.contact-form-card__note {
  color: rgba(245,243,238,0.86);
  font-size: 1rem;
  margin: 0 0 1.15rem;
}

/* Form fields */
.contact-form__status {
  border: 1px solid rgba(245,243,238,0.16);
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1.35rem;
  padding: 0.95rem 1rem;
}
.contact-form__status p { margin: 0 0 0.35rem; }
.contact-form__status ul { margin: 0; padding-left: 1.1rem; }
.contact-form__status--success {
  background: rgba(70, 123, 83, 0.16);
  border-color: rgba(137, 184, 130, 0.38);
  color: rgba(245,243,238,0.92);
}
.contact-form__status--error {
  background: rgba(158, 90, 34, 0.18);
  border-color: rgba(201, 164, 107, 0.4);
  color: rgba(245,243,238,0.92);
}
.contact-form__field--hidden {
  left: -9999px;
  position: absolute;
  top: auto;
}
.contact-form__row + .contact-form__row { margin-top: 1.1rem; }
.contact-form__row--split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
}
.contact-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form__field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(245,243,238,0.9);
}
.contact-form__field label span { color: var(--terra); margin-left: 0.15rem; }
.contact-form__field input,
.contact-form__field textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--off-white);
  padding: 0.85rem 1rem;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(245,243,238,0.16);
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
  line-height: 1.5;
  min-height: 44px; /* WCAG 2.5.5 - minimum touch target size */
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(245,243,238,0.42);
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: rgba(201,164,107,0.72);
  background: rgba(0,0,0,0.34);
  box-shadow: 0 0 0 3px rgba(201,164,107,0.12);
}
.contact-form__field textarea { resize: vertical; min-height: 130px; }

.contact-form__privacy {
  margin-top: 1.25rem;
  font-size: 0.78rem; color: var(--text-light); line-height: 1.6;
}
.contact-form__privacy a {
  color: var(--terra); text-decoration: none;
  border-bottom: 1px solid rgba(158,90,34,0.3);
}
.contact-form__privacy a:hover { color: var(--terra-hover); border-color: currentColor; }

.contact-form__actions {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1.75rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.contact-form__phone-alt {
  font-size: 0.88rem; color: var(--text-mid); text-decoration: none;
  transition: color 0.15s;
}
.contact-form__phone-alt strong {
  color: var(--green-dark);
  border-bottom: 1px dotted rgba(42,66,53,0.3);
}
.contact-form__phone-alt:hover strong { color: var(--terra-hover); border-color: currentColor; }

/* Contact page responsive */
@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-info { position: static; }
  .contact-form-card { padding: 2rem 1.75rem 1.75rem; }
  .contact-form-card::before { left: 1.75rem; right: 1.75rem; }
}
@media (max-width: 600px) {
  .contact-page__header { margin-bottom: 2.25rem; }
  .contact-form__row--split { grid-template-columns: 1fr; }
  .contact-form-card { padding: 1.75rem 1.25rem 1.5rem; }
  .contact-form-card::before { left: 1.25rem; right: 1.25rem; }
  .contact-method { padding: 1rem; gap: 0.85rem; }
  .contact-method__value { font-size: 1.05rem; }
}

/* ── FAQs ───────────────────────────────────────────────────── */
.faq-list { margin-top: 2.5rem; }
.faq-list .faq-item { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 1.1rem 1.5rem; margin-bottom: 0.75rem; }
.faq-list .faq-item[open] { box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.faq-list .faq-item__q { font-family: var(--font-serif); font-size: 1.1rem; color: var(--green-dark); cursor: pointer; font-weight: 500; list-style: none; }
.faq-list .faq-item__q::-webkit-details-marker { display: none; }
.faq-list .faq-item__q::after { content: '+'; float: right; color: var(--terra); font-size: 1.25rem; line-height: 1; }
.faq-list .faq-item[open] .faq-item__q::after { content: '−'; }
.faq-list .faq-item__a { padding-top: 0.75rem; color: var(--text-mid); line-height: 1.8; font-size: 0.95rem; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.hero__content > * { animation: fadeUp 0.7s ease both; }
.hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.hero__content > *:nth-child(2) { animation-delay: 0.2s; }
.hero__content > *:nth-child(3) { animation-delay: 0.3s; }
.hero__content > *:nth-child(4) { animation-delay: 0.42s; }
.hero__content > *:nth-child(5) { animation-delay: 0.54s; }
.hero__photo img { animation: fadeIn 1s 0s ease both; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__phone-btn { display: flex; }
  .nav__logo-mark { width: min(210px, 52vw); height: auto; max-height: 58px; }
  .nav__logo-text { padding-left: 0.75rem; }
  .nav__logo-name { font-size: 1.05rem; }
  .nav__right { gap: 0.75rem; }
  .nav__burger { padding: 0.4rem 0.6rem; font-size: 0.7rem; }
  .hero__inner { max-width: 780px; }
  .intro__grid, .life__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__nav { grid-template-columns: 1fr; gap: 1.5rem; border-left: 0; border-top: 1px solid rgba(245,243,238,0.14); padding-left: 0; padding-top: 2rem; }
  .footer__nav-col--no-heading { padding-top: 0; }
  .tick-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  :root { --section-pad: 4rem 1.25rem; }
  .footer__bottom-bar { flex-direction: column; align-items: flex-start; }
  .trust-bar__inner { justify-content: flex-start; gap: 1.25rem; }
  .footer__nav { grid-template-columns: 1fr; }
}

/* ── EXTRA SMALL PHONES (iPhone SE, etc) ───────────────────────── */
@media (max-width: 400px) {
  /* Ensure header stays readable on very small screens */
  .nav__inner { height: 80px; padding: 0 0.75rem; }
  .nav__logo-mark { width: min(172px, 50vw); height: auto; max-height: 52px; }
  .nav__logo-name { font-size: 0.95rem; }
  .nav__logo-sub { font-size: 0.55rem; }
  .nav__logo-text { padding-left: 0.5rem; gap: 0.15rem; }
  /* Ensure touch targets meet 44px minimum */
  .nav__phone-btn { width: 44px; height: 44px; }
  .nav__burger { padding: 0.5rem 0.5rem; min-height: 44px; font-size: 0.65rem; }
  /* Tighten gaps on small screens */
  .nav__right { gap: 0.5rem; }
  /* Improve readability */
  .hero__title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.5rem); }
  /* Contact form adjustments for tiny screens */
  .contact-form__row--split { grid-template-columns: 1fr; gap: 1rem; }
  .contact-layout { flex-direction: column; gap: 2rem; }
}

/* ── REDUCED MOTION (WCAG 2.3.3) ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

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