/* Lunas Hilom Sanctuary — editorial heritage-warmth aesthetic
   Typography: Freight Big Pro (display) + Neue Haas Grotesk Text (body)
   Loaded via Adobe Fonts kit — see <link> tag in each HTML <head>. */

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

:root {
  --bark: #3E342A;
  --umber: #1F1A14;
  --terra: #C85D3A;
  --terra-dark: #A14425;
  --sage: #708C5B;
  --sage-dark: #556B46;
  --cream: #F6EFE3;
  --cream-warm: #EEE3CF;
  --paper: #FAF5EB;
  --ink: #2A241E;
  --muted: #6B5F51;
  --line: #D9CDB8;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'neue-haas-grotesk-text', system-ui, -apple-system, sans-serif;
  background: var(--paper);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(200,93,58,0.04), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(112,140,91,0.05), transparent 60%);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; }

h1, h2, h3, h4 { font-family: 'freight-big-pro', Georgia, 'Times New Roman', serif; font-weight: 400; color: var(--umber); line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 300; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }

/* ==== Chapter marker (unique) ==== */
.chapter {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'neue-haas-grotesk-text', system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 18px;
}
.chapter::before {
  content: '';
  width: 42px;
  height: 1px;
  background: var(--terra);
}
.chapter-num {
  font-family: 'freight-big-pro', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--bark);
  letter-spacing: 0;
  text-transform: none;
}

/* ==== Decorative hand-drawn divider ==== */
.divider {
  display: block;
  margin: 60px auto;
  max-width: 120px;
  opacity: 0.45;
}

/* ==== Header (NOT sticky — intentional) ==== */
.top-bar {
  background: var(--umber);
  color: var(--cream);
  font-size: 0.82rem;
  padding: 10px 0;
  letter-spacing: 0.02em;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar a { color: var(--cream-warm); }
.top-bar a:hover { color: var(--terra); }
.top-bar-left, .top-bar-right { display: flex; gap: 22px; align-items: center; }

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  position: relative;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.logo {
  font-family: 'freight-big-pro', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--umber);
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo span { display: block; font-family: 'neue-haas-grotesk-text', system-ui, sans-serif; font-size: 0.66rem; letter-spacing: 0.28em; color: var(--terra); text-transform: uppercase; margin-top: 4px; font-weight: 500; }
.main-nav { display: flex; justify-content: center; }
.main-nav ul { list-style: none; display: flex; gap: 34px; align-items: center; }
.main-nav a {
  font-size: 0.88rem;
  color: var(--bark);
  position: relative;
  padding: 6px 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--terra);
  transition: width 0.3s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.has-dropdown { position: relative; }
.has-dropdown > a::before {
  content: '▾';
  margin-right: 4px;
  color: var(--terra);
  font-size: 0.7rem;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 2px solid var(--terra);
  min-width: 240px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.25s ease;
  z-index: 100;
  box-shadow: 0 18px 40px -20px rgba(31,26,20,0.25);
}
.has-dropdown:hover .dropdown, .has-dropdown.open .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li { list-style: none; }
.dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: 0.85rem;
}
.dropdown a:hover { background: var(--cream); color: var(--terra); }
.dropdown a::after { display: none; }

.header-cta {
  font-family: 'neue-haas-grotesk-text', system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--umber);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid var(--umber);
  font-weight: 600;
  transition: all 0.25s ease;
  display: inline-block;
}
.header-cta:hover { background: var(--terra); border-color: var(--terra); color: var(--paper) !important; }

.burger {
  display: none;
  background: transparent;
  border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.burger span {
  position: absolute;
  left: 9px;
  width: 26px;
  height: 2px;
  background: var(--umber);
  transition: all 0.3s ease;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 28px; }
.burger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ==== Hero (asymmetric magazine) ==== */
.hero {
  padding: 80px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero-side-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: left center;
  font-family: 'neue-haas-grotesk-text', system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  margin-bottom: 30px;
  font-weight: 300;
}
.hero-text h1 em { font-style: italic; color: var(--terra); font-weight: 400; }
.hero-lede {
  font-size: 1.12rem;
  color: var(--bark);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 18px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'neue-haas-grotesk-text', system-ui, sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  min-height: 48px;
}
.btn-primary {
  background: var(--terra) !important;
  color: var(--paper) !important;
}
.btn-primary:hover { background: var(--terra-dark) !important; }
.btn-outline {
  background: transparent !important;
  color: var(--umber) !important;
  border: 1px solid var(--umber) !important;
}
.btn-outline:hover { background: var(--umber) !important; color: var(--paper) !important; }
.btn-ghost {
  background: transparent !important;
  color: var(--terra) !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid var(--terra) !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem !important;
}
.btn-ghost:hover { color: var(--umber) !important; border-color: var(--umber) !important; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-caption {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: var(--paper);
  padding: 16px 20px;
  font-size: 0.82rem;
  color: var(--bark);
  border-left: 3px solid var(--terra);
  font-style: italic;
  font-family: 'freight-big-pro', Georgia, serif;
}

.hero-stats {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.hero-stat { padding: 0 24px; border-right: 1px solid var(--line); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: 'freight-big-pro', Georgia, serif; font-size: 2.4rem; color: var(--umber); font-weight: 300; line-height: 1; margin-bottom: 6px; }
.hero-stat-label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

/* ==== Sections ==== */
.section { padding: 100px 0; }
.section .container > h2,
.section .container-narrow > h2,
.section .container > h3,
.section .container-narrow > h3 { margin-bottom: 14px; }
.section .container > p,
.section .container-narrow > p,
.section .container > ul,
.section .container-narrow > ul,
.section .container > ol,
.section .container-narrow > ol,
.section .container > blockquote,
.section .container-narrow > blockquote { margin-bottom: 18px; line-height: 1.75; }

/* Styled editorial lists inside .section */
.section .container > ul,
.section .container-narrow > ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 26px;
  display: grid;
  gap: 14px;
}
.section .container > ul > li,
.section .container-narrow > ul > li {
  position: relative;
  padding: 4px 0 4px 36px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--bark);
  border-bottom: 1px solid rgba(217,205,184,0.55);
  padding-bottom: 14px;
}
.section .container > ul > li:last-child,
.section .container-narrow > ul > li:last-child { border-bottom: none; padding-bottom: 4px; }
.section .container > ul > li::before,
.section .container-narrow > ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 1px;
  background: var(--terra);
}
.section .container > ol,
.section .container-narrow > ol {
  list-style: none;
  padding: 0;
  margin: 24px 0 26px;
  counter-reset: lunas;
  display: grid;
  gap: 16px;
}
.section .container > ol > li,
.section .container-narrow > ol > li {
  position: relative;
  padding: 4px 0 4px 54px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--bark);
  counter-increment: lunas;
}
.section .container > ol > li::before,
.section .container-narrow > ol > li::before {
  content: counter(lunas, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'freight-big-pro', Georgia, serif;
  font-size: 1.5rem;
  color: var(--terra);
  font-style: italic;
  line-height: 1.2;
}

/* Dark-section list variant */
.section-dark .container > ul > li,
.section-dark .container-narrow > ul > li { color: var(--cream-warm); border-bottom-color: rgba(246,239,227,0.12); }

/* ==== Step / process cards (ol.pricing-grid pattern) ==== */
ol.pricing-grid {
  list-style: none !important;
  padding: 0;
  margin: 40px 0 0;
  counter-reset: step;
}
ol.pricing-grid > li.price-card {
  counter-increment: step;
  padding: 40px 32px 32px;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}
ol.pricing-grid > li.price-card:hover {
  border-color: var(--terra);
  transform: translateY(-2px);
}
ol.pricing-grid > li.price-card::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: 'freight-big-pro', Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
  font-style: italic;
  font-weight: 300;
  color: var(--terra);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
ol.pricing-grid > li.price-card .price-tag {
  position: static !important;
  display: block !important;
  background: transparent !important;
  color: var(--muted) !important;
  font-family: 'neue-haas-grotesk-text', system-ui, sans-serif !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  padding: 10px 0 16px !important;
  margin: 0 0 14px !important;
  font-weight: 600 !important;
  border-top: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
  width: 100% !important;
  top: auto !important;
  right: auto !important;
}
ol.pricing-grid > li.price-card h3 {
  font-family: 'freight-big-pro', Georgia, serif !important;
  font-size: 1.35rem !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  color: var(--umber) !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin: 0 0 14px 0 !important;
  padding: 0 !important;
}
ol.pricing-grid > li.price-card p {
  color: var(--bark);
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0;
}
.section .container > h3,
.section .container-narrow > h3 { margin-top: 40px; }
.section .container > h3:first-child,
.section .container-narrow > h3:first-child,
.section .container > .chapter + h3,
.section .container-narrow > .chapter + h3,
.section .container > h2 + h3,
.section .container-narrow > h2 + h3 { margin-top: 28px; }
.section .container > p + h2,
.section .container-narrow > p + h2,
.section .container > ul + h2,
.section .container-narrow > ul + h2 { margin-top: 48px; }

/* Dark CTA band spacing */
.section-dark .container > h2,
.section-dark .container-narrow > h2 { margin-top: 18px; margin-bottom: 22px; }
.section-dark .container > p,
.section-dark .container-narrow > p { margin-bottom: 32px; font-size: 1.05rem; line-height: 1.7; }
.section-dark .container > .btn,
.section-dark .container-narrow > .btn { margin-top: 8px; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--umber); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .chapter { color: var(--terra); }
.section-dark .chapter-num { color: var(--cream-warm); }

.section-head {
  max-width: 720px;
  margin-bottom: 60px;
}
.section-head.center { margin: 0 auto 60px; text-align: center; }
.section-head h2 { margin-bottom: 18px; }
.section-subtitle {
  color: var(--bark);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 620px;
}
.section-dark .section-subtitle { color: var(--cream-warm); }

/* ==== Services / Feature cards ==== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: block;
  color: inherit;
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--terra);
  transition: width 0.3s ease;
  z-index: 2;
}
.feature-card:hover::before { width: 4px; }
.feature-card:hover { border-color: var(--bark); }
.feature-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(0.92);
}
.feature-card-body { padding: 30px 32px 34px; }
.feature-card-body .chapter { font-size: 0.72rem; margin-bottom: 14px; }
.feature-card-body .chapter::before { width: 28px; }
.feature-card-body h3 { font-size: 1.5rem; margin-bottom: 12px; }
.feature-card-body p { color: var(--bark); font-size: 0.96rem; margin-bottom: 20px; line-height: 1.7; }
.feature-card-body .btn-ghost { font-size: 0.76rem !important; }

/* ==== About (split asymmetric) ==== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img::after {
  content: '';
  position: absolute;
  top: 20px; left: -20px;
  width: 100%; height: 100%;
  border: 2px solid var(--terra);
  z-index: -1;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--bark); margin-bottom: 18px; font-size: 1.02rem; line-height: 1.8; }
.about-text p em { font-style: italic; color: var(--terra); }
.about-stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-stat-num { font-family: 'freight-big-pro', Georgia, serif; font-size: 2.2rem; color: var(--umber); line-height: 1; margin-bottom: 6px; font-weight: 300; }
.about-stat-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

/* ==== Philosophy quote block ==== */
.philosophy {
  padding: 100px 0;
  text-align: center;
  background: var(--cream);
  position: relative;
}
.philosophy blockquote {
  font-family: 'freight-big-pro', Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-style: italic;
  font-weight: 300;
  max-width: 820px;
  margin: 0 auto;
  color: var(--umber);
  line-height: 1.45;
  position: relative;
}
.philosophy blockquote::before {
  content: '"';
  font-family: 'freight-big-pro', Georgia, serif;
  font-size: 8rem;
  color: var(--terra);
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-style: italic;
  line-height: 1;
  opacity: 0.5;
}
.philosophy cite {
  display: block;
  font-family: 'neue-haas-grotesk-text', system-ui, sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 30px;
  font-weight: 500;
}

/* ==== Team ==== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.team-card { text-align: left; }
.team-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-img img { transform: scale(1.04); }
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-role { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra); font-weight: 500; }

/* ==== Pricing (unique: horizontal rows not columns) ==== */
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 44px 38px;
  position: relative;
  transition: all 0.3s ease;
}
.price-card.featured {
  background: var(--umber);
  color: var(--cream);
  border-color: var(--umber);
}
.price-card.featured h3, .price-card.featured .price-amount, .price-card.featured .price-period { color: var(--cream); }
.price-card.featured .price-features li { color: var(--cream-warm); border-color: rgba(246,239,227,0.15); }
.price-card.featured .price-tag {
  position: absolute;
  top: -12px; right: 28px;
  background: var(--terra);
  color: var(--paper);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  font-weight: 600;
}
.price-card h3 {
  font-family: 'neue-haas-grotesk-text', system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 16px;
}
.price-amount { font-family: 'freight-big-pro', Georgia, serif; font-size: 3.2rem; font-weight: 300; color: var(--umber); line-height: 1; margin-bottom: 6px; }
.price-period { font-size: 0.84rem; color: var(--muted); margin-bottom: 30px; font-style: italic; font-family: 'freight-big-pro', Georgia, serif; }
.price-features { list-style: none; padding: 0; margin: 0 0 34px; }
.price-features li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--bark);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.price-features li svg { flex-shrink: 0; margin-top: 4px; color: var(--terra); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-grid:has(> :nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-grid:has(> :nth-child(1):last-child) {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
}

/* ==== Testimonials ==== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 32px;
  position: relative;
}
.review-stars { color: var(--terra); margin-bottom: 18px; font-size: 0.95rem; letter-spacing: 2px; }
.review-text {
  font-family: 'freight-big-pro', Georgia, serif;
  font-size: 1.06rem;
  font-style: italic;
  color: var(--bark);
  line-height: 1.65;
  margin-bottom: 24px;
}
.review-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.review-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.review-name { font-weight: 600; font-size: 0.95rem; color: var(--umber); }
.review-location { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; }

/* ==== Trust badges row ==== */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.trust-item svg { flex-shrink: 0; color: var(--terra); }
.trust-item strong {
  display: block;
  font-family: 'freight-big-pro', Georgia, serif;
  font-size: 1.15rem;
  color: var(--umber);
  margin-bottom: 4px;
  font-weight: 500;
}
.trust-item span { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ==== Contact ==== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-info-list { margin-top: 36px; display: flex; flex-direction: column; gap: 26px; }
.contact-detail { display: flex; gap: 18px; align-items: flex-start; }
.contact-detail svg { flex-shrink: 0; color: var(--terra); margin-top: 4px; }
.contact-detail strong {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-detail span, .contact-detail a { font-size: 1rem; color: var(--umber); line-height: 1.5; }
.contact-detail a:hover { color: var(--terra); }

.section-dark .contact-detail strong { color: var(--cream-warm); opacity: 0.75; }
.section-dark .contact-detail span,
.section-dark .contact-detail a { color: var(--cream); }
.section-dark .contact-detail svg { color: var(--terra); }
.section-dark .contact-detail a:hover { color: var(--terra); }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 44px 40px;
}
.contact-form h3 { font-size: 1.6rem; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'neue-haas-grotesk-text', system-ui, sans-serif;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: 0.98rem;
  color: var(--umber);
  transition: border-color 0.2s;
  min-height: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--terra);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%233E342A' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-form button { margin-top: 8px; width: 100%; }

/* ==== Breadcrumb ==== */
.breadcrumb {
  padding: 24px 0;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--terra); }
.breadcrumb .sep { margin: 0 10px; opacity: 0.6; }
.breadcrumb .current { color: var(--umber); font-weight: 500; }

/* ==== Inner page hero ==== */
.inner-hero {
  padding: 90px 0 100px;
  background: var(--cream);
  color: var(--umber);
  position: relative;
}
.inner-hero.dark {
  background: var(--umber);
  color: var(--cream);
}
.inner-hero.dark h1, .inner-hero.dark p { color: var(--cream); }
.inner-hero.dark .chapter { color: var(--terra); }
.inner-hero.dark .chapter-num { color: var(--cream-warm); }
.inner-hero .chapter { margin-bottom: 20px; }
.inner-hero h1 { margin-bottom: 24px; max-width: 800px; }
.inner-hero p { font-size: 1.15rem; color: var(--bark); max-width: 700px; line-height: 1.7; }

.service-hero {
  padding: 130px 0 140px;
  background-size: cover;
  background-position: center;
  color: var(--cream);
  text-align: left;
  position: relative;
}
.service-hero h1, .service-hero p { color: var(--cream); }
.service-hero .chapter { color: var(--terra); }
.service-hero .chapter-num { color: var(--cream-warm); }
.service-hero .breadcrumb {
  background: transparent;
  border: none;
  padding: 0 0 24px;
}
.service-hero .breadcrumb a { color: rgba(246,239,227,0.7); }
.service-hero .breadcrumb a:hover { color: var(--terra); }
.service-hero .breadcrumb .current { color: var(--cream); }
.service-hero .breadcrumb .sep { color: rgba(246,239,227,0.5); }

/* ==== Article content ==== */
.article-full {
  padding: 80px 0 100px;
}
.article-header { margin-bottom: 50px; }
.article-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.article-meta strong { color: var(--umber); font-weight: 600; }
.article-featured-img {
  margin: 0 0 50px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.article-featured-img img { width: 100%; height: 100%; object-fit: cover; }

.article-body h2 { font-size: 1.9rem; margin: 45px 0 18px; }
.article-body h3 { font-size: 1.35rem; margin: 32px 0 14px; color: var(--umber); font-family: 'freight-big-pro', Georgia, serif; }
.article-body p { margin-bottom: 18px; font-size: 1.04rem; line-height: 1.85; color: var(--bark); }
.article-body a { color: var(--terra); border-bottom: 1px solid var(--terra); padding-bottom: 1px; font-weight: 500; }
.article-body a:hover { color: var(--terra-dark); border-color: var(--terra-dark); }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 24px; }
.article-body li { margin-bottom: 10px; font-size: 1.02rem; line-height: 1.75; color: var(--bark); }
.article-body blockquote {
  border-left: 3px solid var(--terra);
  padding: 12px 0 12px 28px;
  margin: 30px 0;
  font-family: 'freight-big-pro', Georgia, serif;
  font-style: italic;
  font-size: 1.18rem;
  color: var(--umber);
  line-height: 1.6;
}

.related {
  background: var(--cream);
  padding: 80px 0;
  margin-top: 60px;
}

/* ==== Hub grid ==== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
}
.article-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.article-card:hover { transform: translateY(-4px); border-color: var(--bark); }
.article-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.article-card:hover .article-card-img img { transform: scale(1.04); }
.article-card-body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.article-card-body .chapter { font-size: 0.7rem; margin-bottom: 14px; }
.article-card-body .chapter::before { width: 24px; }
.article-card-body h3 { font-size: 1.3rem; margin-bottom: 10px; line-height: 1.25; color: var(--umber); }
.article-card-body p { color: var(--bark); font-size: 0.94rem; margin-bottom: 20px; line-height: 1.65; flex: 1; }

/* ==== Footer ==== */
.site-footer {
  background: var(--umber);
  color: var(--cream-warm);
  padding: 80px 0 30px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand .logo { color: var(--cream); }
.footer-brand p {
  margin-top: 18px;
  line-height: 1.7;
  color: var(--cream-warm);
  opacity: 0.8;
  font-size: 0.9rem;
}
.footer-col h4 {
  font-family: 'neue-haas-grotesk-text', system-ui, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--cream-warm); opacity: 0.75; transition: opacity 0.2s, color 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--terra); }
.footer-contact { font-size: 0.88rem; line-height: 1.7; color: var(--cream-warm); opacity: 0.8; }
.footer-contact strong { color: var(--cream); display: block; font-weight: 500; margin-bottom: 4px; }
.footer-contact > div { margin-bottom: 14px; }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(246,239,227,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--cream-warm);
  opacity: 0.6;
}
.footer-bottom a:hover { opacity: 1; }

/* ==== Cookie notice ==== */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 540px;
  background: var(--umber);
  color: var(--cream);
  padding: 20px 24px;
  border-left: 3px solid var(--terra);
  display: none;
  align-items: center;
  gap: 16px;
  z-index: 1000;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.4);
}
.cookie-notice.show { display: flex; }
.cookie-notice p { font-size: 0.88rem; line-height: 1.5; flex: 1; }
.cookie-notice button {
  background: var(--terra);
  color: var(--cream);
  border: none;
  padding: 10px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  font-family: 'neue-haas-grotesk-text', system-ui, sans-serif;
  min-height: 40px;
}
.cookie-notice button:hover { background: var(--terra-dark); }

/* ==== Responsive ==== */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .features-grid, .team-grid, .reviews-grid, .articles-grid, .pricing-grid, .trust-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .hero-side-label { display: none; }
  .about-img::after { display: none; }
  .top-bar { display: none; }

  .burger { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 20px 0;
    justify-content: flex-start;
    z-index: 100;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.15);
  }
  .main-nav.open { display: flex; }
  .main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0 28px;
  }
  .main-nav li { width: 100%; }
  .main-nav a {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }
  .main-nav a::after { display: none; }
  .has-dropdown > a::before {
    content: '';
    display: none;
  }
  .has-dropdown > a::after {
    content: '+';
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    color: var(--terra);
    font-size: 1.2rem;
    margin-left: auto;
  }
  .has-dropdown.open > a::after { content: '−'; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: none;
    padding: 6px 16px 10px;
    background: var(--cream);
    min-width: auto;
    box-shadow: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown a { padding: 10px 0; border-bottom: 1px solid rgba(217,205,184,0.5); }
  .header-cta { display: none; }

  .header-inner { grid-template-columns: 1fr auto; gap: 0; }

  .hero { padding: 60px 0 80px; }
  .section { padding: 70px 0; }
  .philosophy { padding: 70px 0; }
  .philosophy blockquote::before { font-size: 5rem; top: -40px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 24px; }
}

@media (max-width: 576px) {
  .container, .container-narrow { padding: 0 20px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  .hero { padding: 44px 0 60px; }
  .section { padding: 50px 0; }
  .philosophy { padding: 55px 0; }
  .section-head { margin-bottom: 40px; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); padding: 20px 0; gap: 20px 0; border-bottom: 1px solid var(--line); }
  .hero-stat { padding: 12px 14px; border-right: none; border-bottom: 1px solid var(--line); }
  .hero-stat:nth-last-child(-n+2) { border-bottom: none; }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .hero-stat-num { font-size: 1.8rem; }

  .features-grid, .team-grid, .reviews-grid, .articles-grid, .pricing-grid, .trust-row { grid-template-columns: 1fr; gap: 20px; }
  .trust-row { padding: 30px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }

  .feature-card img { height: 220px; }
  .feature-card-body { padding: 24px; }
  .price-card { padding: 30px 24px; }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .btn { padding: 14px 24px; font-size: 0.8rem; }

  .inner-hero, .service-hero { padding: 60px 0 70px; }
  .about-stats { grid-template-columns: 1fr; gap: 18px; }

  .cookie-notice { flex-direction: column; align-items: flex-start; bottom: 10px; left: 10px; right: 10px; padding: 18px 20px; }
  .cookie-notice button { width: 100%; }
}

/* ==== Utilities ==== */
.text-center { text-align: center; }
.mt-xl { margin-top: 80px; }
