/* ━━━ CampSuite Design System ━━━ */
:root {
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Nunito Sans', system-ui, sans-serif;

  /* Ink & text — deeper, warmer, higher-contrast for readability + a premium feel */
  --night: #0c1f15;
  --ink: #122019;
  --dark: #21332a;
  --text: #3a4843;
  --soft: #5b6a61;
  --muted: #87938b;
  --faint: #b2bcb5;
  --line: #e4ebe7;
  --line-strong: #d4ddd7;

  /* Surfaces — clean, cool and airy (SaaS) */
  --parchment: #f7faf8;
  --linen: #eef4f0;
  --sand: #e3ece7;
  --cream: #f3f8f4;
  --white: #ffffff;

  /* Greens — fresh, vivid meadow */
  --forest: #0f7a43;
  --forest-deep: #0a5531;
  --moss: #168a4d;
  --fern: #2bb56a;
  --sage: #8ad6a4;
  --dew: #d8f3e2;
  --mist: #ecf9f1;

  /* Accent — warm honey, the friendly pop */
  --gold: #bd8410;
  --honey: #f0a818;
  --brass: #e0a72f;
  --buttercup: #fdf1d4;
  --sunset: #f6e6cf;

  /* Layout */
  --topbar-h: 40px;
  --max: 1140px;
  --wide: 1280px;
  --py: clamp(6rem, 12vw, 9rem);
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 100px;

  /* Elevation — layered, soft shadows for depth */
  --sh-sm: 0 1px 2px rgba(15,26,18,.04), 0 2px 8px rgba(15,26,18,.05);
  --sh-md: 0 4px 12px rgba(15,26,18,.05), 0 14px 34px rgba(15,26,18,.07);
  --sh-lg: 0 8px 22px rgba(15,26,18,.07), 0 30px 64px rgba(15,26,18,.10);
  --sh-xl: 0 14px 36px rgba(15,26,18,.09), 0 44px 96px rgba(15,26,18,.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 106.25%; }
body { font-family: var(--sans); color: var(--text); background: var(--parchment); line-height: 1.72; font-size: 1rem; overflow-x: hidden; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--dew); color: var(--forest-deep); }

/* ━━━ TOP UTILITY BAR ━━━ */
.topbar { position: fixed; top: 0; left: 0; right: 0; height: var(--topbar-h); z-index: 101; background: var(--night); color: rgba(255,255,255,.72); display: flex; align-items: center; }
.topbar-w { max-width: var(--wide); margin: 0 auto; width: 100%; padding: 0 1.75rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar-left { display: flex; align-items: center; gap: 1.5rem; min-width: 0; }
.topbar-left a { color: rgba(255,255,255,.82); display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; font-weight: 700; letter-spacing: .005em; transition: color .2s; white-space: nowrap; }
.topbar-left a:hover { color: #fff; }
.topbar-left svg { width: 15px; height: 15px; opacity: .85; flex-shrink: 0; }
.tb-note { font-size: .8rem; color: rgba(255,255,255,.5); white-space: nowrap; }
.topbar-right { display: flex; align-items: center; gap: 1.25rem; }
/* language/region selector adapted for the dark bar */
.topbar .lang-btn { background: none; border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.85); padding: .28rem .65rem; }
.topbar .lang-btn:hover { border-color: rgba(255,255,255,.5); color: #fff; }
@media(max-width:768px) { .tb-note { display: none; } }
@media(max-width:560px) { .topbar-left .tb-email-label { display: none; } }

/* ━━━ NAV ━━━ */
.nav { position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 100; background: rgba(247,250,248,.85); backdrop-filter: blur(24px) saturate(140%); -webkit-backdrop-filter: blur(24px) saturate(140%); transition: box-shadow .3s, background .3s; }
.nav.scrolled { box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(15,26,18,.05); background: rgba(247,250,248,.94); }
.nav-w { max-width: var(--wide); margin: 0 auto; padding: 0 1.75rem; display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { display: flex; align-items: center; }
.logo img { height: 32px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; list-style: none; }
.nav-links a { font-size: .86rem; font-weight: 600; color: var(--text); transition: color .2s; letter-spacing: .005em; }
.nav-links a:hover { color: var(--forest); }
.btn-nav { background: var(--forest); color: #fff !important; padding: .6rem 1.4rem; border-radius: 100px; font-weight: 700; font-size: .84rem; letter-spacing: .01em; transition: all .3s; }
.btn-nav:hover { background: var(--moss); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,94,52,.18); }
.nav-si { display: inline-flex !important; align-items: center; color: var(--ink) !important; font-size: .84rem !important; background: var(--white); border: 1.5px solid var(--line); padding: .55rem 1.2rem; border-radius: 100px; font-weight: 600 !important; transition: all .3s; }
.nav-si:hover { border-color: var(--dark); background: var(--parchment); }

/* ━━━ LANGUAGE SELECTOR ━━━ */
.lang-sel { position: relative; }
.lang-btn { display: flex; align-items: center; gap: .35rem; background: none; border: 1.5px solid var(--line); border-radius: 100px; padding: .35rem .7rem; cursor: pointer; font-family: var(--sans); font-size: .78rem; font-weight: 600; color: var(--text); transition: all .2s; }
.lang-btn:hover { border-color: var(--dark); color: var(--ink); }
.lang-btn svg { width: 14px; height: 14px; transition: transform .2s; }
.lang-sel.open .lang-btn svg { transform: rotate(180deg); }
.lang-dd { display: none; position: absolute; top: calc(100% + 6px); right: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); box-shadow: 0 8px 24px rgba(0,0,0,.08); min-width: 140px; z-index: 200; overflow: hidden; }
.lang-sel.open .lang-dd { display: block; }
.lang-dd a { display: flex; align-items: center; gap: .5rem; padding: .6rem .9rem; font-size: .84rem; color: var(--text); transition: all .15s; }
.lang-dd a:hover { background: var(--mist); color: var(--ink); }
.lang-dd a.active { color: var(--forest); font-weight: 700; }
.flag { width: 20px; height: 15px; border-radius: 2px; flex-shrink: 0; display: inline-block; vertical-align: middle; box-shadow: 0 0 0 .5px rgba(0,0,0,.1); }
.flag-sm { width: 16px; height: 12px; }
/* ���━━ MEGA-MENU ━━━ */
.has-mega { position: static; }
.mega-trigger {
  background: none; border: none; cursor: pointer; font-family: var(--sans);
  font-size: .88rem; font-weight: 500; color: var(--text);
  display: flex; align-items: center; gap: .3rem; padding: 0; transition: color .2s;
}
.mega-trigger:hover, .has-mega.open .mega-trigger { color: var(--ink); }
.mega-trigger .chevron { width: 12px; height: 12px; transition: transform .25s; flex-shrink: 0; }
.has-mega.open .mega-trigger .chevron { transform: rotate(180deg); }
.mega-trigger:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; border-radius: 4px; }

.mega-panel {
  position: absolute; top: calc(var(--topbar-h) + 74px); left: 0; right: 0; z-index: 150;
  background: var(--white); border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(0,0,0,.06);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  pointer-events: none;
}
.has-mega.open .mega-panel {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.mega-inner {
  max-width: var(--max); margin: 0 auto; padding: 2rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 2rem;
}
.mega-inner-sm { grid-template-columns: 1fr; max-width: 380px; }
.mega-card {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .85rem 1rem; border-radius: var(--r); transition: background .2s;
  text-decoration: none; color: inherit;
}
.mega-card:hover { background: var(--mist); }
.mega-card:focus-visible { outline: 2px solid var(--forest); outline-offset: -2px; border-radius: var(--r); }
.mc-icon { line-height: 1; flex-shrink: 0; margin-top: .05rem; color: var(--forest); display: inline-flex; }
.mc-icon svg { width: 22px; height: 22px; display: block; }
.mc-text { display: flex; flex-direction: column; }
.mc-text strong { font-size: .88rem; color: var(--ink); font-weight: 600; }
.mc-desc { font-size: .78rem; color: var(--soft); margin-top: .15rem; line-height: 1.5; }
.mega-foot {
  grid-column: 1 / -1; border-top: 1px solid var(--line);
  padding-top: .85rem; margin-top: .5rem;
}
.mega-viewall { font-weight: 700; color: var(--forest); font-size: .84rem; display: inline-flex; align-items: center; gap: .35rem; transition: gap .2s; }
.mega-viewall:hover { gap: .6rem; }

/* Mega backdrop overlay */
body.mega-open::after {
  content: ''; position: fixed; inset: 0; background: rgba(0,0,0,.06);
  z-index: 99; pointer-events: none;
}

/* Footer company info */
.ft-company {
  padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.06);
  margin-bottom: 1rem; font-size: .76rem; line-height: 1.7; color: rgba(255,255,255,.3);
}
.ft-company p { margin-bottom: .15rem; }

.mob-btn { display: none; background: none; border: none; cursor: pointer; }
.mob-btn span { display: block; width: 21px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: all .3s; }
.mob-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mob-btn.open span:nth-child(2) { opacity: 0; }
.mob-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ━━━ BUTTONS ━━━ */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1rem 2.1rem; border-radius: var(--r-pill);
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  border: none; cursor: pointer; transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s, background .3s, border-color .3s;
  letter-spacing: .01em; line-height: 1;
}
.btn-go { background: linear-gradient(160deg, var(--moss), var(--forest) 70%); color: #fff; box-shadow: 0 2px 10px rgba(15,60,34,.22), 0 10px 28px -8px rgba(15,60,34,.4); }
.btn-go:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(15,60,34,.26), 0 16px 40px -10px rgba(15,60,34,.46); }
.btn-go svg { width: 18px; height: 18px; transition: transform .25s; }
.btn-go:hover svg { transform: translateX(3px); }
.btn-lt { background: rgba(255,255,255,.8); backdrop-filter: blur(8px); color: var(--ink); border: 1.5px solid var(--line-strong); box-shadow: var(--sh-sm); }
.btn-lt:hover { background: var(--white); border-color: var(--forest); color: var(--forest); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-white { display: inline-flex; align-items: center; gap: .55rem; background: #fff; color: var(--forest); padding: 1rem 2.1rem; border-radius: var(--r-pill); font-weight: 700; font-size: .95rem; border: none; cursor: pointer; transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s; line-height: 1; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.16); }
.arrow-link { font-weight: 700; color: var(--forest); font-size: .92rem; display: inline-flex; align-items: center; gap: .4rem; transition: gap .25s; }
.arrow-link:hover { gap: .7rem; }

/* ━━━ HERO — home page ━━━ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg,
      rgba(247,250,248,.62) 0%,
      rgba(247,250,248,.22) 34%,
      rgba(247,250,248,0) 58%
    ),
    linear-gradient(180deg,
      rgba(247,250,248,0) 0%,
      rgba(247,250,248,.05) 30%,
      rgba(247,250,248,.45) 62%,
      rgba(247,250,248,.84) 82%,
      var(--parchment) 96%
    ),
    url('images/hero-caravan-park.webp') center 25%/cover no-repeat;
}
.hero-w {
  max-width: var(--wide); margin: 0 auto; width: 100%;
  padding: 0 1.75rem clamp(4rem, 8vw, 6rem);
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: end;
}
.hero-text { padding-bottom: 1rem; }
.hero-label {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1px solid rgba(255,255,255,.9);
  padding: .5rem 1.05rem; border-radius: var(--r-pill);
  font-size: .82rem; font-weight: 800; color: var(--forest); letter-spacing: .01em;
  margin-bottom: 1.75rem; animation: up .7s ease both;
  box-shadow: 0 2px 12px rgba(15,26,18,.08);
}
.hero-label-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--fern); animation: pulse 2s ease infinite; }
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.9rem, 6vw, 4.8rem);
  line-height: 1.04; letter-spacing: -.025em;
  color: var(--ink); margin-bottom: 1.5rem;
  animation: up .7s ease .1s both;
}
.hero h1 em { font-style: italic; color: var(--forest); }
.hero-p {
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
  color: var(--dark); line-height: 1.7; max-width: 500px;
  margin-bottom: 2.25rem; animation: up .7s ease .2s both;
}
.hero-btns { display: flex; gap: .65rem; flex-wrap: wrap; margin-bottom: 2rem; animation: up .7s ease .3s both; }
.hero-proof { display: flex; gap: .6rem; flex-wrap: wrap; animation: up .7s ease .4s both; }
.hp-i { font-size: .82rem; color: var(--dark); display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; background: rgba(255,255,255,.82); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.9); padding: .5rem .95rem; border-radius: var(--r-pill); box-shadow: 0 2px 10px rgba(15,26,18,.07); }
.hp-i::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--fern); flex-shrink: 0; }

/* Hero app card */
.hero-app {
  background: var(--white); border-radius: var(--r-xl);
  padding: 1.75rem; box-shadow: var(--sh-xl);
  border: 1px solid rgba(255,255,255,.6); animation: up .8s ease .35s both;
  position: relative;
}
.ha-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.35rem; }
.ha-title { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); font-weight: 500; }
.ha-today { font-size: .75rem; font-weight: 700; color: var(--forest); background: var(--mist); padding: .25rem .65rem; border-radius: 100px; }
.ha-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin-bottom: 1.35rem; }
.ha-col { text-align: center; background: var(--parchment); border-radius: 14px; padding: .75rem .5rem; }
.ha-col-n { font-family: var(--serif); font-size: 1.65rem; font-weight: 600; color: var(--ink); line-height: 1; }
.ha-col-l { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; margin-top: .2rem; }
.ha-rows { display: flex; flex-direction: column; gap: .4rem; }
.ha-row {
  display: flex; align-items: center; gap: .7rem;
  padding: .8rem .9rem; background: var(--parchment); border-radius: 14px;
  transition: background .2s;
}
.ha-row:hover { background: var(--mist); }
.ha-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-g { background: var(--fern); }
.dot-b { background: #4a90d9; }
.dot-a { background: var(--honey); }
.ha-info { flex: 1; min-width: 0; }
.ha-name { font-weight: 600; font-size: .88rem; color: var(--ink); }
.ha-meta { font-size: .75rem; color: var(--muted); }
.ha-badge { font-size: .68rem; font-weight: 700; padding: .15rem .5rem; border-radius: 100px; white-space: nowrap; }
.hb-g { background: var(--dew); color: var(--forest); }
.hb-b { background: #e3eefa; color: #2563eb; }
.hb-a { background: var(--buttercup); color: var(--gold); }
.ha-float {
  position: absolute; top: -18px; right: -18px;
  background: var(--white); border-radius: 14px; padding: .7rem 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.08); border: 1px solid rgba(0,0,0,.04);
  display: flex; align-items: center; gap: .55rem;
  animation: float 5s ease-in-out infinite;
  font-size: .78rem;
}
.ha-float-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--fern); flex-shrink: 0; }
.ha-float strong { color: var(--ink); }

/* ━━━ TRUST / CREDIBILITY BAND ━━━ */
.trust-bar { padding: clamp(1.9rem,3.2vw,2.6rem) 1.5rem; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-w { max-width: var(--wide); margin: 0 auto; }
.trust-kicker { text-align: center; font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; color: var(--muted); margin-bottom: 1.5rem; }
.trust-pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.1rem 1.5rem; align-items: center; }
.trust-pillar { display: flex; align-items: center; gap: .75rem; justify-content: center; font-size: .92rem; font-weight: 700; color: var(--dark); line-height: 1.35; }
.trust-pillar svg { width: 24px; height: 24px; color: var(--forest); flex-shrink: 0; }
.trust-pillar span { max-width: 16ch; }
@media(max-width:860px){ .trust-pillars { grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; } }
@media(max-width:480px){ .trust-pillars { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; } .trust-pillar { justify-content: flex-start; } }

/* ━━━ EXPRESS ━━━ */
.express { background: var(--linen); }
.ex-card {
  max-width: 920px; margin: 0 auto;
  background: linear-gradient(150deg, #16341f 0%, #0d1c12 42%, #18301f 100%);
  border-radius: var(--r-xl); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; box-shadow: var(--sh-xl);
}
.ex-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(69,160,102,.1), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(184,134,11,.06), transparent 50%);
}
.ex-left { padding: clamp(2.5rem, 5vw, 3.5rem); position: relative; z-index: 1; }
.ex-right { padding: clamp(2.5rem, 5vw, 3.5rem); position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; }
.ex-eyebrow { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--sage); margin-bottom: 1.5rem; }
.ex-price { font-family: var(--serif); font-size: clamp(3.5rem, 6vw, 5rem); color: #fff; line-height: .95; font-weight: 400; margin-bottom: .35rem; }
.ex-sub { color: rgba(255,255,255,.35); font-size: .92rem; margin-bottom: 2rem; }
.ex-card h2 { font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 1.75rem); color: #fff; font-weight: 500; line-height: 1.3; margin-bottom: 1rem; }
.ex-desc { color: rgba(255,255,255,.5); font-size: .95rem; line-height: 1.8; margin-bottom: 2rem; }
.ex-list { display: flex; flex-direction: column; gap: .4rem; }
.ex-item {
  display: flex; align-items: center; gap: .85rem;
  padding: .95rem 1rem; border-radius: 12px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}
.ex-item:hover { background: rgba(255,255,255,.07); }
.ex-tick { color: var(--sage); font-weight: 800; font-size: .85rem; flex-shrink: 0; width: 22px; text-align: center; }
.ex-item span { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; }

/* ━━━ SECTIONS ━━━ */
.sec { padding: var(--py) 1.5rem; }
.sec-w { max-width: var(--max); margin: 0 auto; }
.sec-hdr { text-align: center; max-width: 660px; margin: 0 auto clamp(3rem, 6vw, 5rem); }
.sec-hdr .eyebrow { text-align: center; }
.sec-hdr h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.1rem, 4.2vw, 3.1rem); line-height: 1.14; color: var(--ink); margin-bottom: 1rem; letter-spacing: -.018em; }
.sec-hdr h2 em { font-style: italic; color: var(--forest); }
.sec-hdr p { font-size: 1.12rem; line-height: 1.8; color: var(--soft); }

/* ━━━ PAGE HERO (inner pages) ━━━ */
.page-hero {
  padding: calc(var(--topbar-h) + 74px + clamp(4.5rem, 8vw, 6.5rem)) 1.5rem clamp(3.5rem, 6vw, 5.5rem);
  text-align: center; background: linear-gradient(180deg, var(--cream) 0%, var(--linen) 55%, var(--sand) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero-w { max-width: 720px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08; color: var(--ink); margin-bottom: 1.1rem;
  letter-spacing: -.025em;
}
.page-hero h1 em { font-style: italic; color: var(--forest); }
.page-hero p { font-size: clamp(1.08rem, 1.4vw, 1.22rem); line-height: 1.7; max-width: 560px; margin: 0 auto; color: var(--soft); }

/* ━━━ BREADCRUMBS ━━━ */
.breadcrumbs {
  padding: calc(var(--topbar-h) + 74px + 1rem) 1.5rem 0; font-size: .82rem; color: var(--muted);
  max-width: var(--max); margin: 0 auto;
}
.breadcrumbs a { color: var(--soft); transition: color .2s; }
.breadcrumbs a:hover { color: var(--forest); }
.breadcrumbs span { margin: 0 .4rem; }

/* ━━━ BENEFITS GRID ━━━ */
.ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ben-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2.6rem 2.25rem; border: 1px solid var(--line);
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s, border-color .45s;
  position: relative; overflow: hidden; box-shadow: var(--sh-sm);
}
.ben-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--moss), var(--sage));
  transform: scaleX(0); transform-origin: left; transition: transform .5s;
}
.ben-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.ben-card:hover::after { transform: scaleX(1); }
.ben-num {
  font-family: var(--serif); font-style: italic; font-size: 2.5rem; font-weight: 400;
  color: var(--brass); line-height: 1; margin-bottom: 1.1rem; display: inline-block;
}
.ben-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--ink); margin-bottom: .65rem; line-height: 1.25; }
.ben-card p { font-size: .98rem; line-height: 1.75; }

/* ━━━ FEATURE GRID (for inner pages) ━━━ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feat-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2.35rem 2.1rem; border: 1px solid var(--line);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s;
  box-shadow: var(--sh-sm);
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.feat-icon {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; background: var(--mist); color: var(--forest);
}
.feat-card h3 { font-family: var(--serif); font-size: 1.28rem; font-weight: 500; color: var(--ink); margin-bottom: .55rem; line-height: 1.25; }
.feat-card p { font-size: .96rem; line-height: 1.7; }

/* ━━━ SITES / SOLUTIONS GRID ━━━ */
.sites-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.s-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2.5rem; display: flex; gap: 1.5rem;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s;
  box-shadow: var(--sh-sm);
}
.s-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.s-icon {
  width: 60px; height: 60px; border-radius: 18px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--forest);
}
.si-1 { background: var(--mist); }
.si-2 { background: var(--buttercup); }
.si-3 { background: #e8f0fd; }
.si-4 { background: #f0ebfa; }
.s-body h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); font-weight: 500; margin-bottom: .45rem; }
.s-body p { font-size: .96rem; line-height: 1.7; margin-bottom: .7rem; }
.s-link { font-weight: 700; color: var(--forest); font-size: .85rem; display: inline-flex; align-items: center; gap: .35rem; transition: gap .2s; }
.s-link:hover { gap: .6rem; }

/* ━━━ SECTION BACKGROUNDS ━━━ */
.benefits { background: var(--parchment); }
.sites { background: var(--linen); }

/* ━━━ STORY SECTIONS ━━━ */
.story {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
}
.story-img { position: relative; overflow: hidden; }
.story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.story-img:hover img { transform: scale(1.05); }
.story-text { display: flex; align-items: center; padding: clamp(3rem, 6vw, 5.5rem); }
.story-inner { max-width: 460px; }
.story-eyebrow {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .18em;
  font-weight: 800; color: var(--gold); margin-bottom: 1.25rem;
  display: inline-flex; align-items: center; gap: .65rem;
}
.story-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--brass); border-radius: 2px; }
.story-inner h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.18; color: var(--ink); margin-bottom: 1.1rem; letter-spacing: -.018em;
}
.story-inner p { font-size: 1.08rem; line-height: 1.8; margin-bottom: 1.5rem; color: var(--soft); }
.story.flip { direction: rtl; }
.story.flip > * { direction: ltr; }
.bg-linen { background: var(--linen); }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }

/* ━━━ STATEMENT ━━━ */
.statement {
  background: linear-gradient(180deg, var(--linen), var(--sand)); text-align: center; padding: var(--py) 1.5rem;
}
.statement-w { max-width: 780px; margin: 0 auto; }
.statement-w::before { content: ''; display: block; width: 42px; height: 3px; border-radius: 3px; background: var(--brass); margin: 0 auto 2.25rem; }
.statement h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2; color: var(--ink); margin-bottom: 1.5rem; letter-spacing: -.018em;
}
.statement h2 em { font-style: italic; color: var(--forest); }
.statement p { font-size: 1.18rem; line-height: 1.8; max-width: 600px; margin: 0 auto; color: var(--soft); }

/* ━━━ FAQ ━━━ */
.faq { background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1.6rem 0; border: none; background: none;
  cursor: pointer; text-align: left; font-family: var(--sans);
  font-size: 1.1rem; font-weight: 700; color: var(--ink); gap: 1.25rem;
  transition: color .2s;
}
.faq-q:hover { color: var(--forest); }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all .35s; color: var(--muted);
}
.faq-item.open .faq-icon { background: var(--forest); border-color: var(--forest); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s ease, padding .4s ease; }
.faq-item.open .faq-a { max-height: 420px; padding-bottom: 1.6rem; }
.faq-a p { font-size: 1.02rem; line-height: 1.8; max-width: 620px; color: var(--soft); }

/* ━━━ CTA END ━━━ */
.cta-end {
  position: relative; text-align: center; overflow: hidden;
  padding: clamp(7rem, 13vw, 10rem) 1.5rem;
}
.cta-end-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,28,18,.8) 0%, rgba(13,28,18,.66) 50%, rgba(15,34,21,.84) 100%),
    url('images/campsite-dusk.webp') center/cover no-repeat;
}
.cta-end-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 30%, rgba(13,22,15,.35) 100%);
}
.cta-end-w { max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
.cta-end h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  color: #fff; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -.018em;
}
.cta-end h2 em { font-style: italic; color: var(--sage); }
.cta-end p { font-size: 1.15rem; margin-bottom: 2.25rem; line-height: 1.7; color: rgba(255,255,255,.82); }
.cta-btns { display: flex; justify-content: center; gap: .65rem; flex-wrap: wrap; }

/* ━━━ QUOTE ━━━ */
.qt { background: var(--parchment); text-align: center; }
.qt-w { max-width: 780px; margin: 0 auto; }
.qt-marks { font-family: var(--serif); font-size: 6rem; color: var(--brass); line-height: .4; margin-bottom: 1.5rem; }
.qt-text {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 400; font-style: italic; color: var(--ink);
  line-height: 1.5; margin-bottom: 2.25rem; letter-spacing: -.01em;
}
.qt-who { display: flex; align-items: center; justify-content: center; gap: .85rem; }
.qt-av {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--dew), var(--sage));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .82rem; color: var(--forest);
}
.qt-name { text-align: left; }
.qt-name strong { display: block; font-size: .95rem; color: var(--ink); font-weight: 700; }
.qt-name span { font-size: .82rem; color: var(--muted); }

/* ━━━ HOW ━━━ */
.how { background: var(--parchment); }
.how-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.how-card {
  text-align: center; padding: 2.5rem 1.5rem;
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--line); transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s;
  box-shadow: var(--sh-sm);
}
.how-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.how-n {
  font-family: var(--serif); font-size: 2.6rem; font-style: italic;
  color: var(--brass); margin-bottom: .85rem;
}
.how-card h3 { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; color: var(--ink); margin-bottom: .4rem; }
.how-card p { font-size: .9rem; line-height: 1.65; }

/* ━━━ PRICING TABLE ━━━ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 960px; margin: 0 auto; }
.price-grid.price-grid-5 { grid-template-columns: repeat(5, 1fr); max-width: 1140px; gap: 1rem; }
.price-grid-5 .price-card { padding: 2rem 1.5rem; }
.price-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2.5rem 2rem; border: 1px solid var(--line);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s;
  position: relative; box-shadow: var(--sh-sm);
}
.price-card.featured { border-color: var(--forest); box-shadow: 0 8px 32px rgba(27,94,52,.1); }
.price-card.featured::before {
  content: 'Most popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--forest); color: #fff; font-size: .7rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 100px; text-transform: uppercase; letter-spacing: .05em;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.06); }
.price-name { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); font-weight: 500; margin-bottom: .5rem; }
.price-amt { font-family: var(--serif); font-size: 2.8rem; color: var(--ink); font-weight: 400; line-height: 1; margin-bottom: .25rem; }
.price-per { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }
.price-desc { font-size: .9rem; line-height: 1.75; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.price-list { list-style: none; margin-bottom: 2rem; }
.price-list li { font-size: .88rem; padding: .45rem 0; display: flex; align-items: flex-start; gap: .6rem; }
.price-list li::before { content: '✓'; color: var(--fern); font-weight: 800; flex-shrink: 0; }

/* Pricing page extras */
.price-head { margin-bottom: 1.5rem; }
.price-head h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); font-weight: 500; margin-bottom: .5rem; }
.price-amount { font-family: var(--serif); font-size: 2.6rem; color: var(--ink); font-weight: 400; line-height: 1; margin-bottom: .25rem; }
.price-amount span { font-size: .9rem; font-weight: 400; color: var(--muted); }
.price-for { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.price-btn { display: block; text-align: center; width: 100%; margin-top: auto; }
.price-pop { border-color: var(--forest); box-shadow: 0 8px 32px rgba(27,94,52,.1); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--forest); color: #fff; font-size: .68rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 100px; text-transform: uppercase; letter-spacing: .06em;
  white-space: nowrap;
}
.price-note { text-align: center; margin-top: 2rem; font-size: .9rem; color: var(--soft); max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.price-card { display: flex; flex-direction: column; }

/* Section alt background */
.sec-alt { background: var(--linen); }

/* ━━━ FEATURE/SERVICE PAGE SECTIONS ━━━ */
.feat-hero {
  padding: calc(var(--topbar-h) + 74px + clamp(4.5rem, 8vw, 6.5rem)) 1.5rem clamp(3.5rem, 6vw, 5.5rem);
  text-align: center; background: linear-gradient(180deg, var(--cream) 0%, var(--linen) 55%, var(--sand) 100%);
  border-bottom: 1px solid var(--line);
}
.feat-hero-w { max-width: 720px; margin: 0 auto; }
.feat-hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08; color: var(--ink); margin-bottom: 1.1rem;
  letter-spacing: -.025em;
}
.feat-hero h1 em { font-style: italic; color: var(--forest); }
.feat-hero-sub { font-size: clamp(1.08rem, 1.4vw, 1.22rem); line-height: 1.7; max-width: 560px; margin: 0 auto; color: var(--soft); }

.feat-cards { padding: var(--py) 1.5rem; }
.feat-cards-w {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.feat-story { padding: var(--py) 1.5rem; background: var(--white); }
.feat-story-w {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.feat-story-img { border-radius: var(--r-xl); overflow: hidden; }
.feat-story-img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--r-xl); }
.feat-story-text h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.25; color: var(--ink); margin-bottom: 1rem;
}
.feat-story-text p { font-size: 1rem; line-height: 1.85; margin-bottom: 1rem; }

.feat-faq { padding: var(--py) 1.5rem; background: var(--parchment); }
.feat-faq-w { max-width: 660px; margin: 0 auto; }
.feat-faq-w h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--ink); text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* ━━━ BLOG CARDS ━━━ */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.blog-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--line); overflow: hidden;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s;
  box-shadow: var(--sh-sm);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 1.85rem 2rem; }
.blog-card-tag { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; color: var(--gold); margin-bottom: .7rem; }
.blog-card h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); font-weight: 500; margin-bottom: .55rem; line-height: 1.3; }
.blog-card p { font-size: .94rem; line-height: 1.65; margin-bottom: 1rem; }
.blog-card-link { font-weight: 700; color: var(--forest); font-size: .85rem; }

/* ━━━ ARTICLE (blog posts) ━━━ */
.article-hero {
  padding: clamp(2rem, 4vw, 3rem) 1.5rem clamp(2.5rem, 4.5vw, 3.5rem);
  background: linear-gradient(180deg, var(--cream), var(--linen));
  border-bottom: 1px solid var(--line);
}
.article-hero-w { max-width: 740px; margin: 0 auto; }
.article-hero .blog-card-tag { margin-bottom: 1rem; }
.article-hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.2rem, 4.2vw, 3.1rem);
  line-height: 1.12; color: var(--ink); margin-bottom: 1rem; letter-spacing: -.02em;
}
.article-meta { font-size: .9rem; color: var(--muted); }
.article-body { max-width: 720px; margin: 0 auto; padding: clamp(2rem, 4vw, 3rem) 1.5rem; }
.article-body h2 { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); font-weight: 500; margin: 2.5rem 0 1rem; }
.article-body h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); font-weight: 500; margin: 2rem 0 .75rem; }
.article-body p { font-size: 1.02rem; line-height: 1.85; margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { font-size: 1rem; line-height: 1.85; margin-bottom: .35rem; }
.article-body blockquote {
  border-left: 3px solid var(--sage); padding: 1rem 1.5rem; margin: 1.5rem 0;
  background: var(--mist); border-radius: 0 var(--r) var(--r) 0;
  font-style: italic; color: var(--dark);
}

/* ━━━ CONTACT / FORMS ━━━ */
.form-wrap { max-width: 560px; margin: 0 auto; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--ink); margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line);
  border-radius: var(--r); font-family: var(--sans); font-size: .95rem;
  color: var(--ink); background: var(--white); transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--forest);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ━━━ LEGAL PAGES ━━━ */
.legal-body { max-width: 720px; margin: 0 auto; padding: clamp(2rem, 4vw, 3rem) 1.5rem; }
.legal-body h2 { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); font-weight: 500; margin: 2.5rem 0 .75rem; }
.legal-body h3 { font-size: 1.1rem; color: var(--ink); font-weight: 600; margin: 1.5rem 0 .5rem; }
.legal-body p { font-size: .95rem; line-height: 1.85; margin-bottom: 1rem; }
.legal-body ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-body li { font-size: .95rem; line-height: 1.85; margin-bottom: .25rem; }
.legal-body .updated { font-size: .85rem; color: var(--muted); margin-bottom: 2rem; }

/* ━━━ FOOTER ━━━ */
footer { background: var(--night); color: rgba(255,255,255,.46); padding: 5rem 1.75rem 2.5rem; border-top: 4px solid var(--forest); }
.ft-w { max-width: var(--wide); margin: 0 auto; }
.ft-top { display: grid; grid-template-columns: 1.5fr repeat(4,1fr); gap: 2.5rem; margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.ft-logo { margin-bottom: .85rem; }
.ft-logo img { height: 28px; width: auto; filter: brightness(0) invert(1); }
.ft-desc { font-size: .92rem; line-height: 1.8; max-width: 300px; }
.ft-col h4 { color: rgba(255,255,255,.7); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; margin-bottom: .9rem; }
.ft-col a { display: block; font-size: .9rem; padding: .32rem 0; transition: color .2s; }
.ft-col a:hover { color: #fff; }
.ft-btm { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; flex-wrap: wrap; gap: 1rem; }
.ft-legal { display: flex; gap: 1.5rem; }
.ft-legal a:hover { color: #fff; }

/* ━━━ EYEBROW / SECTION LABELS ━━━ */
.eyebrow { font-size: .74rem; text-transform: uppercase; letter-spacing: .2em; font-weight: 800; color: var(--gold); display: block; margin-bottom: 1rem; }
.sec-title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--ink); text-align: center; margin-bottom: 2.5rem; letter-spacing: -.018em; }
.page-sub { font-size: clamp(1.05rem, 1.4vw, 1.18rem); line-height: 1.8; max-width: 560px; margin: .85rem auto 0; color: var(--soft); }

/* ━━━ VALUES GRID (about page) ━━━ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card { background: var(--white); border-radius: var(--r-lg); padding: 2.35rem 2.1rem; border: 1px solid var(--line); box-shadow: var(--sh-sm); transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.value-card h3 { font-family: var(--serif); font-size: 1.28rem; font-weight: 500; color: var(--ink); margin-bottom: .6rem; }
.value-card p { font-size: .96rem; line-height: 1.7; }
.company-info { max-width: 560px; margin: 0 auto; text-align: center; }
.company-info p { font-size: 1rem; line-height: 1.85; }

/* ━━━ TRIO CARDS (book a demo) ━━━ */
.trio-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.trio-card { background: var(--white); border-radius: var(--r-lg); padding: 2.35rem 2.1rem; border: 1px solid var(--line); text-align: center; transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s; box-shadow: var(--sh-sm); }
.trio-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.trio-icon { width: 62px; height: 62px; border-radius: 18px; background: var(--mist); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--forest); }
.trio-card h3 { font-family: var(--serif); font-size: 1.28rem; font-weight: 500; color: var(--ink); margin-bottom: .5rem; }
.trio-card p { font-size: .96rem; line-height: 1.7; }

/* ━━━ CONTACT GRID ━━━ */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: start; }
.contact-side { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card { background: var(--white); border-radius: var(--r); border: 1px solid var(--line); padding: 1.65rem 1.85rem; box-shadow: var(--sh-sm); }
.contact-info-card h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--ink); margin-bottom: .35rem; }
.contact-info-card p { font-size: .9rem; line-height: 1.75; }
.contact-info-card a { color: var(--forest); font-weight: 600; }

/* ━━━ FORM FIELD / EXTRAS ━━━ */
.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--r); font-family: var(--sans); font-size: .95rem; color: var(--ink); background: var(--white); transition: border-color .2s; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--forest); }
.form-field textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-wrap-narrow { max-width: 500px; margin: 0 auto; }
.form-heading { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); font-weight: 500; margin-bottom: 1.5rem; }
.optional { font-weight: 400; color: var(--muted); font-size: .8rem; }

/* ━━━ SOLUTION PAGES ━━━ */

/* Hero */
.sol-hero {
  padding: calc(var(--topbar-h) + 74px + clamp(4.5rem, 8vw, 6.5rem)) 1.5rem clamp(3.5rem, 6vw, 5.5rem);
  text-align: center; background: linear-gradient(180deg, var(--cream) 0%, var(--linen) 55%, var(--sand) 100%);
  border-bottom: 1px solid var(--line);
}
.sol-hero-w { max-width: 720px; margin: 0 auto; }
.sol-hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08; color: var(--ink); margin-bottom: 1.1rem;
  letter-spacing: -.025em;
}
.sol-hero h1 em { font-style: italic; color: var(--forest); }
.sol-hero-sub {
  font-size: clamp(1.08rem, 1.4vw, 1.22rem); line-height: 1.7;
  max-width: 560px; margin: 0 auto 2rem; color: var(--soft);
}
.sol-hero .cta-btns { justify-content: center; }

/* Statement */
.sol-statement {
  background: var(--white); text-align: center; padding: var(--py) 1.5rem;
}
.sol-statement-w { max-width: 620px; margin: 0 auto; }
.sol-statement-text {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.6; color: var(--ink);
}

/* Benefits cards */
.sol-benefits {
  background: var(--parchment); padding: var(--py) 1.5rem;
}
.sol-benefits-w {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.sol-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2.35rem 2.1rem; border: 1px solid var(--line);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s;
  position: relative; overflow: hidden; box-shadow: var(--sh-sm);
}
.sol-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--moss), var(--sage));
  transform: scaleX(0); transform-origin: left; transition: transform .5s;
}
.sol-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.sol-card:hover::after { transform: scaleX(1); }
.sol-card h3 {
  font-family: var(--serif); font-size: 1.28rem; font-weight: 500;
  color: var(--ink); margin-bottom: .6rem; line-height: 1.25;
}
.sol-card p { font-size: .96rem; line-height: 1.7; margin-bottom: 1rem; }
.sol-card a { font-weight: 700; color: var(--forest); font-size: .85rem; display: inline-flex; align-items: center; gap: .35rem; transition: gap .2s; }
.sol-card a:hover { gap: .6rem; }

/* Story (image + text) */
.sol-story {
  background: var(--linen); padding: var(--py) 1.5rem;
}
.sol-story-w {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.sol-story-img { border-radius: var(--r-xl); overflow: hidden; }
.sol-story-img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--r-xl); }
.sol-story-text h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.25; color: var(--ink); margin-bottom: 1rem;
}
.sol-story-text p { font-size: 1rem; line-height: 1.85; margin-bottom: 1rem; }
.sol-story-text a { font-weight: 700; color: var(--forest); font-size: .9rem; display: inline-flex; align-items: center; gap: .4rem; transition: gap .25s; }
.sol-story-text a:hover { gap: .7rem; }

/* Steps */
.sol-steps {
  background: var(--white); padding: var(--py) 1.5rem;
}
.sol-steps-w { max-width: var(--max); margin: 0 auto; }
.sol-steps-w > h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--ink); text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem);
}
.sol-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.sol-step {
  text-align: center; padding: 2.25rem 1.5rem;
  background: var(--parchment); border-radius: var(--r-xl);
  border: 1px solid var(--line); transition: all .4s;
}
.sol-step:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.05); border-color: transparent; }
.sol-step-num {
  display: block; font-family: var(--serif); font-size: 2.6rem; font-style: italic;
  color: var(--brass); margin-bottom: .85rem;
}
.sol-step h3 { font-family: var(--serif); font-size: 1.08rem; font-weight: 500; color: var(--ink); margin-bottom: .35rem; }
.sol-step p { font-size: .85rem; line-height: 1.7; }

/* FAQ (details/summary) */
.sol-faq {
  background: var(--parchment); padding: var(--py) 1.5rem;
}
.sol-faq-w { max-width: 660px; margin: 0 auto; }
.sol-faq-w > h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--ink); text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem);
}
.sol-faq-item {
  border-bottom: 1px solid var(--line); background: none;
}
.sol-faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; cursor: pointer; list-style: none;
  font-family: var(--sans); font-size: 1.02rem; font-weight: 600;
  color: var(--ink); transition: color .2s;
}
.sol-faq-item summary:hover { color: var(--forest); }
.sol-faq-item summary::-webkit-details-marker { display: none; }
.sol-faq-item summary::marker { display: none; content: ''; }
.sol-faq-item summary::after {
  content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--muted);
  width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all .35s;
}
.sol-faq-item[open] summary::after {
  content: '−'; background: var(--forest); border-color: var(--forest); color: #fff;
}
.sol-faq-item p {
  font-size: .95rem; line-height: 1.85; max-width: 560px;
  padding-bottom: 1.5rem;
}

/* Pricing note */
.sol-pricing-note {
  background: var(--linen); text-align: center; padding: var(--py) 1.5rem;
}
.sol-pricing-note-w { max-width: 580px; margin: 0 auto; }
.sol-pricing-note-w h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--ink); margin-bottom: 1rem;
}
.sol-pricing-note-w p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.5rem; }
.sol-pricing-note-w a { font-weight: 700; color: var(--forest); font-size: .9rem; display: inline-flex; align-items: center; gap: .4rem; transition: gap .25s; }
.sol-pricing-note-w a:hover { gap: .7rem; }

/* ━━━ PRODUCT SHOTS ━━━ */
.shot-section { padding: var(--py) 1.5rem; background: var(--parchment); }
.shot-section.bg-linen { background: var(--linen); }
.shot-section.bg-mist { background: linear-gradient(180deg, var(--parchment) 0%, var(--mist) 100%); }
.shot-w { max-width: var(--max); margin: 0 auto; }
.shot-hdr { text-align: center; max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.shot-hdr .eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; color: var(--forest); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.shot-hdr h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--ink); margin-bottom: 1rem; line-height: 1.2; }
.shot-hdr h2 em { font-style: italic; color: var(--forest); }
.shot-hdr p { font-size: 1.05rem; line-height: 1.8; color: var(--text); }

.product-shot { position: relative; border-radius: var(--r-xl); overflow: hidden; background: #fff; box-shadow: 0 30px 80px -20px rgba(15,26,18,.18), 0 12px 32px -12px rgba(15,26,18,.12), 0 0 0 1px var(--line); transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s; }
.product-shot:hover { transform: translateY(-4px); box-shadow: 0 40px 100px -20px rgba(15,26,18,.22), 0 16px 40px -12px rgba(15,26,18,.14), 0 0 0 1px var(--line); }
.product-shot::before { content: ""; display: block; height: 32px; background: linear-gradient(180deg, var(--linen), var(--cream)); border-bottom: 1px solid var(--line); }
.product-shot::after { content: ""; position: absolute; top: 11px; left: 14px; width: 10px; height: 10px; border-radius: 50%; background: #ff5f56; box-shadow: 16px 0 0 #ffbd2e, 32px 0 0 #27c93f; }
.product-shot img { width: 100%; height: auto; display: block; }

.shot-frame { max-width: 980px; margin: 0 auto; }
.shot-caption { text-align: center; margin-top: 1.25rem; font-size: .9rem; color: var(--soft); font-style: italic; max-width: 640px; margin-left: auto; margin-right: auto; }

.shot-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; max-width: var(--max); margin: 0 auto; }
.shot-split.flip { direction: rtl; }
.shot-split.flip > * { direction: ltr; }
.shot-split-text .eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; color: var(--forest); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.shot-split-text h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--ink); margin-bottom: 1.25rem; line-height: 1.2; }
.shot-split-text h2 em { font-style: italic; color: var(--forest); }
.shot-split-text p { font-size: 1.02rem; line-height: 1.85; margin-bottom: 1rem; color: var(--text); }
.shot-split-text .arrow-link { margin-top: .5rem; }

.shot-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); max-width: var(--max); margin: 0 auto; }
.shot-step { display: flex; flex-direction: column; }
.shot-step .product-shot { flex: 1; }
.shot-step-label { display: flex; align-items: center; gap: .65rem; margin-bottom: 1rem; }
.shot-step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--forest); color: #fff; font-size: .82rem; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.shot-step-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--ink); }
.shot-step p { font-size: .92rem; line-height: 1.7; color: var(--text); margin-top: .85rem; }

@media(max-width:900px) {
  .shot-split { grid-template-columns: 1fr; gap: 2rem; }
  .shot-split.flip { direction: ltr; }
  .shot-grid-3 { grid-template-columns: 1fr; max-width: 520px; }
}

/* ━━━ WHY CAMPSUITE / COMPARE ━━━ */
.why { background: var(--linen); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.why-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2.1rem 1.9rem; box-shadow: var(--sh-sm);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s;
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.why-ic {
  width: 50px; height: 50px; border-radius: 14px; background: var(--mist); color: var(--forest);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.15rem;
}
.why-ic svg { width: 25px; height: 25px; }
.why-item h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--ink); margin-bottom: .5rem; line-height: 1.25; }
.why-item p { font-size: .96rem; line-height: 1.7; }
.compare-strip {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: .65rem 1rem; margin-top: clamp(2.5rem,4vw,3.25rem); padding-top: clamp(2.25rem,4vw,3rem);
  border-top: 1px solid var(--line-strong);
}
.compare-label { font-weight: 800; font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.compare-strip a {
  font-weight: 700; color: var(--forest); font-size: .9rem; padding: .5rem 1.1rem;
  border: 1.5px solid var(--line-strong); border-radius: var(--r-pill); background: var(--white);
  transition: color .25s, background .25s, border-color .25s, transform .25s;
}
.compare-strip a:hover { border-color: var(--forest); background: var(--forest); color: #fff; transform: translateY(-1px); }
@media(max-width:900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .why-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ━━━ ANIMATIONS ━━━ */
@keyframes up { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.reveal { opacity:0; transform:translateY(30px); transition: all .8s cubic-bezier(.16,1,.3,1); }
.reveal.vis { opacity:1; transform:translateY(0); }

/* ━━━ RESPONSIVE ━━━ */
@media(max-width:1024px) {
  .hero-w { grid-template-columns:1fr; gap:2.5rem; }
  .hero { align-items:center; }
  .hero-w { padding-top:calc(var(--topbar-h) + 74px + 3rem); }
  .hero-app { max-width:400px; }
  .ex-card { grid-template-columns:1fr; }
  .story { grid-template-columns:1fr; }
  .story-img { min-height:380px; }
  .story.flip { direction:ltr; }
  .ben-grid { grid-template-columns:1fr; max-width:480px; margin:0 auto; }
  .feat-grid { grid-template-columns:1fr 1fr; }
  .how-row { grid-template-columns:repeat(2,1fr); }
  .ft-top { grid-template-columns:repeat(3,1fr); }
  .price-grid { grid-template-columns:1fr; max-width:400px; margin:0 auto; }
  .price-grid.price-grid-5 { grid-template-columns:repeat(2,1fr); max-width:700px; }
  .feat-cards-w { grid-template-columns:1fr 1fr; }
  .feat-story-w { grid-template-columns:1fr; }
  .blog-grid { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr 1fr; }
  .trio-cards { grid-template-columns:1fr; max-width:420px; margin:0 auto; }
  .contact-grid { grid-template-columns:1fr; gap:2.5rem; }
  .sol-benefits-w { grid-template-columns:1fr; max-width:480px; margin:0 auto; }
  .sol-story-w { grid-template-columns:1fr; }
  .sol-steps-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px) {
  :root { --topbar-h: 36px; }
  .topbar-w { padding:0 1.25rem; }
  .topbar-left { gap:1rem; }
  .nav-links { display:none; }
  .nav-links.open {
    display:flex; flex-direction:column; position:absolute; top:74px; left:0; right:0;
    background:var(--parchment); border-bottom:1px solid var(--line);
    padding:.25rem 1.5rem 1.25rem; gap:0; box-shadow:0 16px 40px rgba(0,0,0,.07);
    text-align:left;
    max-height:calc(100vh - 110px);
    max-height:calc(100dvh - var(--topbar-h) - 74px);
    overflow-y:auto; -webkit-overflow-scrolling:touch; overscroll-behavior:contain;
  }
  .nav-links.open > li { width:100%; border-bottom:1px solid var(--line); }
  .nav-links.open > li:last-child { border-bottom:none; }
  .nav-links.open > li > a:not(.btn-nav) { display:block; text-align:left; padding:.95rem .15rem; font-size:1.05rem; font-weight:600; color:var(--ink); }
  .nav-links.open .nav-si { background:none; border:none; box-shadow:none; padding:.95rem .15rem; color:var(--ink) !important; }
  .nav-links.open .btn-nav { text-align:center; width:100%; display:block; margin:1rem 0 .25rem; padding:.95rem 1.4rem; }
  .mob-btn { display:block; }
  .has-mega { display:flex; flex-direction:column; width:100%; }
  .mega-trigger { width:100%; justify-content:space-between; padding:.95rem .15rem; font-size:1.05rem; font-weight:600; color:var(--ink); }
  .mega-panel { position:static; visibility:visible; opacity:1; transform:none; display:none; background:transparent; box-shadow:none; border:none; pointer-events:auto; z-index:auto; }
  .has-mega.mob-open .mega-panel { display:block; }
  .mega-inner { padding:.1rem 0 .75rem .25rem; display:flex; flex-direction:column; gap:0; }
  .mega-inner-sm { max-width:none; }
  .mega-col { display:flex; flex-direction:column; }
  .mega-card { padding:.7rem .5rem; text-align:left; }
  .mega-card:active { background:var(--mist); }
  .mega-foot { margin-top:.25rem; padding-top:.6rem; border-top:1px solid var(--line); }
  body.mega-open::after { display:none; }
  .hero-app { max-width:100%; }
  .ha-float { display:none; }
  .hero-proof { flex-direction:row; flex-wrap:wrap; gap:.45rem; }
  .hp-i { font-size:.78rem; padding:.45rem .8rem; }
  .sites-grid { grid-template-columns:1fr; }
  .s-card { flex-direction:column; }
  .how-row { grid-template-columns:1fr;max-width:340px;margin:0 auto; }
  .feat-grid { grid-template-columns:1fr; }
  .feat-cards-w { grid-template-columns:1fr; }
  .price-grid.price-grid-5 { grid-template-columns:1fr; max-width:400px; margin:0 auto; }
  .ft-top { grid-template-columns:1fr; }
  .ft-btm { flex-direction:column;text-align:center; }
  .values-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .sol-steps-grid { grid-template-columns:1fr; max-width:340px; margin:0 auto; }
}

/* ━━━ ACCESSIBILITY ━━━ */
/* Visible keyboard focus on all interactive elements */
a:focus-visible, button:focus-visible, .btn:focus-visible, .btn-nav:focus-visible,
.nav-si:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible,
select:focus-visible, .faq-q:focus-visible, .compare-strip a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--moss); outline-offset: 3px; border-radius: 6px;
}
/* On dark backgrounds, use a light ring */
.btn-go:focus-visible, .cta-end .btn:focus-visible, .ex-left .btn-white:focus-visible,
footer a:focus-visible { outline-color: #fff; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .story-img img { transition: none !important; }
  .ha-float, .hero-label-dot { animation: none !important; }
}

/* ━━━ WordPress booking plugin ━━━ */
.wp-blue { color: #21759b; }

/* Small WordPress badge used on pricing, web design and feature pages */
.wp-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(33,117,155,.1); color: #21759b;
  font-weight: 800; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .4rem .85rem; border-radius: 999px; margin-bottom: 1rem;
}
.wp-badge img { width: 16px; height: 16px; display: block; }

/* Highlight strip that promotes the plugin from the pricing + web design pages */
.wp-strip { padding: 0 1.5rem var(--py); }
.wp-strip-w {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  background: linear-gradient(135deg, rgba(33,117,155,.06), rgba(15,122,67,.06));
  border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem); box-shadow: var(--sh-sm);
}
.wp-strip-logo { width: clamp(72px, 12vw, 104px); height: auto; flex-shrink: 0; }
.wp-strip h2 {
  font-family: var(--serif); font-weight: 500; color: var(--ink);
  font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.2; margin-bottom: .7rem;
}
.wp-strip p { font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 1.25rem; }
@media (max-width: 680px) {
  .wp-strip-w { grid-template-columns: 1fr; text-align: center; }
  .wp-strip-logo { margin: 0 auto; }
}

/* Pricing list: the WordPress line in each plan */
.price-list li.pl-wp strong { color: var(--forest); }
.price-list li.pl-addon::before { content: '+'; color: var(--muted); font-weight: 800; }
.price-list li.pl-addon { color: var(--muted); }
.price-list li.pl-no::before { content: '✕'; color: var(--muted); font-weight: 800; }
.price-list li.pl-no { color: var(--muted); }

/* Inline WordPress mark next to headings on the feature page */
.wp-inline { width: 1.1em; height: 1.1em; vertical-align: -.18em; }

/* ── Developers page ───────────────────────────────────────────── */
.dev-code {
  background: #0c1813; color: #e6efe9; border-radius: 16px;
  padding: 1.4rem 1.6rem; overflow-x: auto; margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .85rem; line-height: 1.7; box-shadow: 0 18px 50px -28px rgba(10,40,25,.55);
  border: 1px solid rgba(255,255,255,.06);
}
.dev-code .c-cmt { color: #6f8a7b; }
.dev-code .c-verb { color: #7fd6a3; font-weight: 700; }
.dev-code .c-str { color: #f0c987; }
.dev-code .c-key { color: #9ad7ff; }
.dev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; }
.dev-res {
  background: #fff; border: 1px solid var(--sand); border-radius: 16px; padding: 1.5rem;
  transition: transform .3s, box-shadow .3s;
}
.dev-res:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -30px rgba(10,40,25,.4); }
.dev-res h3 { font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: 1.12rem; margin-bottom: .5rem; }
.dev-res p { font-size: .92rem; line-height: 1.65; color: var(--text); }
.dev-res .verb {
  display: inline-block; font-family: ui-monospace, Menlo, Consolas, monospace; font-size: .72rem;
  font-weight: 700; letter-spacing: .04em; color: var(--forest); background: var(--dew);
  border-radius: 6px; padding: .12rem .5rem; margin-bottom: .7rem;
}
.dev-note {
  display: flex; gap: .9rem; align-items: flex-start; background: var(--linen);
  border-left: 3px solid var(--forest); border-radius: 12px; padding: 1.1rem 1.3rem;
  font-size: .95rem; line-height: 1.7; color: var(--text); margin-top: 1.6rem;
}
.dev-note strong { color: var(--ink); }
