/* ── TOKENS (green / light beige / dark blue — James Fekete direction, PROTOTYPE) ── */
:root {
  --bone:    #f6f2e8;  /* light beige — page background */
  --sand:    #ece5d3;  /* beige — card surface */
  --sand2:   #e2dac4;  /* deeper beige */
  --line:    #d6cab0;  /* borders */
  --clay:    #1f7a52;  /* PRIMARY — clean fresh green */
  --clay-dk: #18603f;  /* green hover */
  --ochre:   #2f9468;  /* secondary — fresher green */
  --espresso:#15314e;  /* dark blue — serious / contrast panel */
  --ink:     #18222e;  /* headings — dark blue charcoal */
  --body:    #4a4e4b;  /* body text */
  --muted:   #857f70;  /* muted / dim */
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── UTILITY ─────────────────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.label-tag { font-size: 9.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--clay); }
em { font-style: normal; color: var(--clay); }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; background: var(--clay); color: #fff; padding: 10px 16px; font-size: 12px; letter-spacing: 0.5px; border-radius: 0 0 6px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,241,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-ando { font-size: 19px; font-weight: 800; color: var(--ink); letter-spacing: -0.5px; }
.nav-systems { font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.menu { position: relative; }
.menu summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--body); padding: 9px 15px; border: 1px solid var(--line); border-radius: 7px; transition: border-color 0.2s, color 0.2s; user-select: none; }
.menu summary::-webkit-details-marker { display: none; }
.menu summary:hover { border-color: var(--clay); color: var(--clay); }
.menu[open] summary { border-color: var(--clay); color: var(--clay); }
.menu-caret { font-size: 10px; transition: transform 0.2s; }
.menu[open] .menu-caret { transform: rotate(180deg); }
.menu-panel { position: absolute; right: 0; top: calc(100% + 9px); width: 264px; background: var(--bone); border: 1px solid var(--line); border-radius: 12px; padding: 8px; box-shadow: 0 1px 2px rgba(53,42,32,0.05), 0 18px 42px -18px rgba(53,42,32,0.30); display: flex; flex-direction: column; gap: 2px; z-index: 120; }
.menu-panel a { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: 8px; transition: background 0.15s; }
.menu-panel a:hover { background: var(--sand); }
.m-w { font-size: 14px; font-weight: 700; color: var(--ink); }
.m-d { font-size: 12px; color: var(--muted); }
.nav-cta { background: var(--clay); color: #fff !important; padding: 9px 18px; border-radius: 7px; font-size: 13px; font-weight: 600; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--clay-dk); }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary { display: inline-block; background: var(--clay); color: #fff; padding: 13px 26px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: background 0.2s, transform 0.05s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--clay-dk); color: #fff; }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost { display: inline-block; background: transparent; color: var(--body); padding: 13px 26px; border-radius: 8px; font-size: 14px; font-weight: 600; border: 1px solid var(--line); transition: border-color 0.2s, color 0.2s; cursor: pointer; }
.btn-ghost:hover { border-color: var(--clay); color: var(--clay); }

/* ── SECTION SHELL ───────────────────────────────────── */
section.band { padding: 72px 0; border-bottom: 1px solid var(--line); }
.section-header { margin-bottom: 36px; }
.section-header .label-tag { display: block; margin-bottom: 14px; }
.section-headline { font-size: clamp(27px, 3.4vw, 40px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; color: var(--ink); max-width: 720px; }
.prose { max-width: 660px; }
.prose p { font-size: 15px; color: var(--body); line-height: 1.85; margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 600; }
.lead { font-size: 16px; color: var(--body); line-height: 1.8; max-width: 620px; margin-bottom: 30px; }

/* ── HERO ────────────────────────────────────────────── */
.hero { padding: 84px 0 72px; border-bottom: 1px solid var(--line); }
.hero-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.12fr 1fr; gap: 56px; align-items: center; }
.hero-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--clay); margin-bottom: 18px; }
.hero-headline { font-size: clamp(34px, 4.8vw, 54px); font-weight: 900; line-height: 1.08; letter-spacing: -2px; color: var(--ink); margin-bottom: 20px; }
.hero-sub { font-size: 16px; color: var(--body); line-height: 1.8; margin-bottom: 30px; max-width: 500px; }
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── HERO CARD ───────────────────────────────────────── */
.hero-card { background: var(--sand); border: 1px solid var(--line); border-radius: 14px; padding: 10px 24px 16px; box-shadow: 0 1px 2px rgba(53,42,32,0.04), 0 12px 32px -16px rgba(53,42,32,0.15); }
.hero-card-label { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); padding: 16px 0 6px; }
.hero-card-row { display: block; padding: 15px 0; border-top: 1px solid var(--line); }
.hero-card-row .hc-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 3px; transition: color 0.2s; }
.hero-card-row:hover .hc-title { color: var(--clay); }
.hero-card-row .hc-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── CARD GRID (services / room) ─────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.service-card { background: var(--sand); border: 1px solid var(--line); border-top: 3px solid var(--clay); border-radius: 12px; padding: 24px 22px; display: flex; flex-direction: column; }
.service-card.accent-ochre { border-top-color: var(--ochre); }
.service-card.accent-espresso { border-top-color: var(--espresso); }
.service-num { font-size: 13px; font-weight: 700; color: var(--ochre); margin-bottom: 14px; }
.service-tag { font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.service-title { font-size: 20px; font-weight: 800; letter-spacing: -0.4px; color: var(--ink); margin-bottom: 11px; line-height: 1.2; }
.service-body { font-size: 14px; color: var(--body); line-height: 1.75; }

/* ── WHY ─────────────────────────────────────────────── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 22px; }
.compare-card { background: var(--sand); border: 1px solid var(--line); border-radius: 12px; padding: 24px 22px; }
.compare-kicker { font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.compare-title { font-size: 18px; font-weight: 800; letter-spacing: -0.4px; color: var(--ink); margin-bottom: 10px; }
.compare-body { font-size: 14px; color: var(--body); line-height: 1.75; }
.highlight-panel { background: var(--espresso); border-radius: 14px; padding: 32px; margin-bottom: 24px; }
.highlight-label { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ochre); margin-bottom: 14px; }
.highlight-text { font-size: clamp(18px, 2.2vw, 25px); font-weight: 700; color: var(--bone); line-height: 1.45; letter-spacing: -0.4px; }

/* ── IN THE ROOM ─────────────────────────────────────── */
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.room-card { background: var(--sand); border: 1px solid var(--line); border-left: 3px solid var(--ochre); border-radius: 10px; padding: 20px; }
.room-card .rc-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.room-card .rc-body { font-size: 13px; color: var(--body); line-height: 1.7; }

/* ── ABOUT ───────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start; }
.about-portrait { width: 100%; }
.portrait { position: relative; width: 100%; aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: var(--sand2); box-shadow: 0 1px 2px rgba(53,42,32,0.04), 0 18px 42px -22px rgba(53,42,32,0.28); }
.portrait-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, var(--sand) 0%, var(--sand2) 55%, #e6d2bc 100%); }
.portrait-monogram { font-size: 66px; font-weight: 800; letter-spacing: -3px; color: var(--clay); opacity: 0.5; }
.portrait-photo { position: absolute; inset: 0; background-size: cover; background-position: center 22%; background-repeat: no-repeat; }
.portrait-cap { margin-top: 13px; font-size: 12px; font-weight: 500; letter-spacing: 0.3px; color: var(--muted); text-align: center; }
.about-body .section-header { margin-bottom: 24px; }

/* ── PRICING ─────────────────────────────────────────── */
.price-list { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin-top: 8px; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; padding: 22px 24px; background: var(--sand); border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: none; }
.price-row.featured { background: var(--sand2); }
.price-name { font-size: 17px; font-weight: 800; letter-spacing: -0.3px; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.price-pill { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; background: var(--clay); padding: 3px 8px; border-radius: 20px; }
.price-desc { font-size: 13px; color: var(--body); line-height: 1.6; margin-top: 5px; max-width: 460px; }
.price-fig { font-size: 20px; font-weight: 800; color: var(--clay); white-space: nowrap; text-align: right; letter-spacing: -0.5px; }
.price-fig small { display: block; font-size: 10px; font-weight: 500; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; margin-top: 4px; }
.price-foot { font-size: 14px; color: var(--body); line-height: 1.75; margin-top: 20px; max-width: 660px; }
.price-foot strong { color: var(--ink); font-weight: 600; }

/* ── CTA ─────────────────────────────────────────────── */
.section-cta { padding: 84px 0; text-align: center; }
.cta-headline { font-size: clamp(30px, 4.2vw, 48px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.08; color: var(--ink); margin-bottom: 18px; }
.cta-sub { font-size: 16px; color: var(--body); margin: 0 auto 30px; line-height: 1.8; max-width: 620px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.cta-note { font-size: 13px; color: var(--muted); }

/* ── FOOTER ──────────────────────────────────────────── */
footer { border-top: 1px solid var(--line); padding: 34px 0; }
.footer-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-nav { display: flex; gap: 18px; list-style: none; align-items: center; flex-wrap: wrap; }
.footer-nav a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--clay); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 56px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .card-grid, .compare-grid, .room-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 26px; }
  .about-portrait { max-width: 280px; }
  .price-row { grid-template-columns: 1fr; }
  .price-fig { text-align: left; }
  .menu-panel { width: calc(100vw - 48px); max-width: 300px; } /* dropdown fits small screens */
  .footer-inner { flex-direction: column; align-items: flex-start; }
}


/* ── INTERIOR PAGE HEADER ─────────────────────────────── */
.page-head { padding: 56px 0 4px; }
.page-head .label-tag { display: block; margin-bottom: 14px; }
.page-title { font-family: inherit; font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.1; color: var(--ink); max-width: 760px; }
.page-intro { font-size: 15px; color: var(--body); line-height: 1.75; max-width: 640px; margin-top: 16px; }

/* ── POST LIST (insights index) ───────────────────────── */
.post-list { margin-top: 28px; border-top: 1px solid var(--line); }
.post-item { display: block; padding: 26px 0; border-bottom: 1px solid var(--line); }
.post-item:hover .post-title { color: var(--clay); }
.post-meta { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.post-title { font-size: 23px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.25; color: var(--ink); margin-bottom: 9px; transition: color 0.2s; }
.post-excerpt { font-size: 14.5px; color: var(--body); line-height: 1.7; max-width: 680px; }
.post-more { display: inline-block; margin-top: 12px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--clay); }

/* ── ARTICLE ──────────────────────────────────────────── */
.article { max-width: 680px; margin: 0 auto; padding: 44px 0 8px; }
.article-back { display: inline-block; margin-bottom: 22px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); transition: color 0.2s; }
.article-back:hover { color: var(--clay); }
.article-meta { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--clay); margin-bottom: 14px; }
.article h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; color: var(--ink); margin-bottom: 28px; }
.article-body p { font-size: 16.5px; color: var(--body); line-height: 1.8; margin-bottom: 20px; }
.article-body h2 { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.3px; margin: 34px 0 10px; }
.article-body ul { margin: 0 0 20px; padding-left: 20px; }
.article-body li { font-size: 16.5px; color: var(--body); line-height: 1.7; margin-bottom: 8px; }
.article-body strong { color: var(--ink); font-weight: 700; }

/* ── END-OF-POST CTA ──────────────────────────────────── */
.post-cta { max-width: 680px; margin: 44px auto 0; padding: 30px 28px; background: var(--espresso); border-radius: 14px; text-align: center; }
.post-cta h3 { color: #fff; font-size: 20px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 8px; }
.post-cta p { color: #cdd6e2; font-size: 14px; line-height: 1.65; margin-bottom: 18px; max-width: 460px; margin-left: auto; margin-right: auto; }
