/* ==========================================================================
   Tent Rentals CT — core stylesheet
   --------------------------------------------------------------------------
   Identity: "a bright afternoon in the backyard." Open sky, cut grass,
   sunshine and a string of pennant bunting. Party-first, not spec-first.

   Deliberate anti-patterns after the first pass read as corporate:
     - no dark hero. Daylight, not a boardroom.
     - no 1px-gap grids. Real gaps and rounded cards, so nothing reads
       like a spreadsheet.
     - colour beyond a single accent. Parties are not monochrome.
     - monospace ONLY inside spec tables where digits must align.
   ========================================================================== */

:root {
  /* daylight */
  --paper:     #FFFDF6;
  --paper-2:   #FDF4E3;
  --paper-3:   #F7EBD5;
  --card:      #FFFFFF;

  /* sky + field */
  --sky:       #5FA8D3;
  --sky-soft:  #CFE7F5;
  --sky-pale:  #EAF4FB;
  --grass:     #4E9C5B;
  --grass-deep:#2F6B45;

  /* celebration */
  --sunshine:  #F2B134;
  --sunshine-2:#FFCB5C;
  --sun-pale:  #FDEFCF;
  --coral:     #C9472F;
  --coral-pale:#FBE0DA;
  --grape:     #7C5B9B;

  /* type */
  --text:      #33302A;
  --text-dim:  #6E675C;
  --text-inv:  #FFFDF6;
  --text-inv-dim: #CFE2D2;

  --rule:      #EADFC9;
  --rule-soft: #F2E9D8;

  --shadow-sm: 0 2px 5px rgba(80,66,40,.06);
  --shadow:    0 4px 10px rgba(80,66,40,.07), 0 14px 34px -18px rgba(80,66,40,.24);
  --shadow-lg: 0 6px 16px rgba(80,66,40,.09), 0 30px 60px -26px rgba(80,66,40,.30);

  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --mono:  ui-monospace, "SF Mono", SFMono-Regular, "Cascadia Mono", Consolas, "Liberation Mono", monospace;

  --measure: 66ch;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --shell: 1140px;

  --r: 16px;
  --r-sm: 11px;

  --bunting: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='26'%3E%3Cpath d='M0 3.5 H112' stroke='%23C9A24A' stroke-width='1.4' fill='none'/%3E%3Cpath d='M0 4 L14 23 L28 4 Z' fill='%23E4614A'/%3E%3Cpath d='M28 4 L42 23 L56 4 Z' fill='%23F2B134'/%3E%3Cpath d='M56 4 L70 23 L84 4 Z' fill='%234E9C5B'/%3E%3Cpath d='M84 4 L98 23 L112 4 Z' fill='%235FA8D3'/%3E%3C/svg%3E");
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #191712; --paper-2: #201D16; --paper-3: #26221A; --card: #221E18;
    --sky: #6FB4DC; --sky-soft: #2A3E4B; --sky-pale: #1C2A33;
    --grass: #5FAE6C; --grass-deep: #2C6440;
    --sunshine: #F5BF4E; --sunshine-2: #FFD478; --sun-pale: #3A2F17;
    --coral: #EE7660; --coral-pale: #3B241E; --grape: #9B79B8;
    --text: #F0E8D8; --text-dim: #ABA292; --text-inv: #FFFDF6; --text-inv-dim: #C6DBCA;
    --rule: #342E24; --rule-soft: #2A251D;
    --shadow-sm: 0 2px 5px rgba(0,0,0,.5);
    --shadow: 0 4px 10px rgba(0,0,0,.45), 0 14px 34px -18px rgba(0,0,0,.8);
    --shadow-lg: 0 6px 16px rgba(0,0,0,.5), 0 30px 60px -26px rgba(0,0,0,.9);
  }
}
:root[data-theme="dark"] {
  --paper: #191712; --paper-2: #201D16; --paper-3: #26221A; --card: #221E18;
  --sky: #6FB4DC; --sky-soft: #2A3E4B; --sky-pale: #1C2A33;
  --grass: #5FAE6C; --grass-deep: #2C6440;
  --sunshine: #F5BF4E; --sunshine-2: #FFD478; --sun-pale: #3A2F17;
  --coral: #EE7660; --coral-pale: #3B241E; --grape: #9B79B8;
  --text: #F0E8D8; --text-dim: #ABA292; --text-inv: #FFFDF6; --text-inv-dim: #C6DBCA;
  --rule: #342E24; --rule-soft: #2A251D;
  --shadow-sm: 0 2px 5px rgba(0,0,0,.5);
  --shadow: 0 4px 10px rgba(0,0,0,.45), 0 14px 34px -18px rgba(0,0,0,.8);
  --shadow-lg: 0 6px 16px rgba(0,0,0,.5), 0 30px 60px -26px rgba(0,0,0,.9);
}
:root[data-theme="light"] {
  --paper: #FFFDF6; --paper-2: #FDF4E3; --paper-3: #F7EBD5; --card: #FFFFFF;
  --sky: #5FA8D3; --sky-soft: #CFE7F5; --sky-pale: #EAF4FB;
  --grass: #4E9C5B; --grass-deep: #2F6B45;
  --sunshine: #F2B134; --sunshine-2: #FFCB5C; --sun-pale: #FDEFCF;
  --coral: #C9472F; --coral-pale: #FBE0DA; --grape: #7C5B9B;
  --text: #33302A; --text-dim: #6E675C; --text-inv: #FFFDF6; --text-inv-dim: #CFE2D2;
  --rule: #EADFC9; --rule-soft: #F2E9D8;
  --shadow-sm: 0 2px 5px rgba(80,66,40,.06);
  --shadow: 0 4px 10px rgba(80,66,40,.07), 0 14px 34px -18px rgba(80,66,40,.24);
  --shadow-lg: 0 6px 16px rgba(80,66,40,.09), 0 30px 60px -26px rgba(80,66,40,.30);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  margin: 0; font-family: var(--serif); font-weight: 700;
  line-height: 1.14; letter-spacing: -0.014em; text-wrap: balance;
}
h4, h5 { margin: 0; font-weight: 700; line-height: 1.3; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

a { color: inherit; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 4px; }

.shell { max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.prose { max-width: var(--measure); }
.stack { display: flex; flex-direction: column; }

.eyebrow {
  font-family: var(--serif); font-style: italic; font-size: 1.02rem;
  letter-spacing: 0; text-transform: none; color: var(--coral); margin: 0;
}
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--sunshine); color: #3A2A06; padding: .7rem 1.1rem; font-weight: 700;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar {
  background: var(--grass-deep); color: #DCEBDF;
  font-size: .79rem;
}
.topbar .shell {
  display: flex; flex-wrap: wrap; gap: .3rem 1.5rem;
  align-items: center; justify-content: space-between; padding-block: .5rem;
}
.topbar a { color: #FFFDF6; text-decoration: none; font-weight: 700; }
.topbar a:hover { color: var(--sunshine-2); }
.topbar .badges { display: flex; flex-wrap: wrap; gap: .25rem 1.1rem; }

.masthead {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.masthead .shell {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .9rem;
}
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--text); }
.brand-mark { flex: none; }
.brand-name { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name b { font-family: var(--serif); font-size: 1.18rem; font-weight: 700; letter-spacing: -0.018em; }
.brand-name span { font-size: .69rem; letter-spacing: .03em; color: var(--text-dim); }

.nav { display: none; gap: 1.75rem; align-items: center; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  text-decoration: none; font-size: .94rem; font-weight: 600; color: var(--text-dim);
  padding-block: .3rem; border-bottom: 2.5px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); border-bottom-color: var(--coral); }

/* ==========================================================================
   Buttons — round, bright, tactile
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-size: .97rem; font-weight: 700;
  padding: .85rem 1.6rem; border-radius: 100px;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--coral); color: #FFFFFF; border-color: var(--coral);
  box-shadow: 0 4px 0 0 #93321F;
}
.btn-primary:hover { background: #B03D28; border-color: #B03D28; box-shadow: 0 6px 0 0 #93321F; }
.btn-primary:active { box-shadow: 0 2px 0 0 #93321F; }
.btn-ghost { background: var(--card); color: var(--text); border-color: var(--rule); }
.btn-ghost:hover { border-color: var(--grass); color: var(--grass-deep); }
.btn-inv { background: transparent; color: var(--grass-deep); border-color: var(--grass); }
.btn-inv:hover { background: var(--grass); color: #FFFDF6; }
.btn-sm { font-size: .84rem; padding: .55rem 1.15rem; border-width: 2px; box-shadow: none !important; }
.btn-sm:hover { transform: none; }
.btn-block { width: 100%; }

/* ==========================================================================
   Hero — daylight
   ========================================================================== */
.hero {
  background:
    linear-gradient(to bottom, var(--sky-pale) 0%, var(--paper) 62%),
    var(--paper);
  color: var(--text);
  padding-block: clamp(3rem, 7vw, 4.5rem) clamp(2.5rem, 6vw, 4rem);
  position: relative; overflow: hidden;
}
/* pennant bunting strung across the top */
.hero::before {
  content: ""; position: absolute; top: 0; left: -4%; right: -4%; height: 26px;
  background-image: var(--bunting); background-repeat: repeat-x; pointer-events: none;
}
/* grass line along the bottom */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 26px;
  pointer-events: none;
  background-image: radial-gradient(circle at 50% 100%, var(--grass) 13px, transparent 13.5px);
  background-size: 22px 26px; background-repeat: repeat-x; background-position: center bottom;
  opacity: .22;
}
.hero > * { position: relative; z-index: 1; }

.hero-grid { display: grid; gap: clamp(2rem, 4vw, 3.25rem); align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.02fr .98fr; } }

.hero .eyebrow { color: var(--coral); }
.hero h1 { font-size: clamp(2.1rem, 5.6vw, 3.6rem); margin-top: .55rem; max-width: 16ch; }
.hero .lede {
  margin-top: 1.05rem; color: var(--text-dim);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 52ch;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: .55rem .8rem; margin-top: 1.7rem;
  font-size: .86rem; color: var(--text-dim);
}
.hero-trust span {
  display: flex; align-items: center; gap: .45rem;
  background: var(--card); border: 1px solid var(--rule);
  padding: .34rem .85rem; border-radius: 100px;
}
.hero-trust span::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: var(--sunshine);
}
.hero-trust span:nth-child(2)::before { background: var(--grass); }
.hero-trust span:nth-child(3)::before { background: var(--sky); }
.hero-figure { margin-top: .5rem; }

/* tent drawings — sunlit canvas, striped valance, blue-sky annotation */
.dwg .fill    { fill: #FFFFFF; }
.dwg .fill-2  { fill: #E8EFE9; }
.dwg .edge    { fill: none; stroke: var(--grass-deep); stroke-width: 2; stroke-linejoin: round; }
.dwg .pole    { stroke: #9AA79B; stroke-width: 1.4; }
.dwg .guy     { stroke: rgba(228,97,74,.45); stroke-width: 1.2; stroke-dasharray: 4 3; }
.dwg .dim     { stroke: var(--sky); stroke-width: 1.2; }
.dwg .dimtext { fill: var(--sky); font-family: var(--sans); font-size: 11.5px; font-weight: 700; }
.dwg .ground  { stroke: rgba(78,156,91,.45); stroke-width: 1.5; }
.dwg .figure  { fill: var(--coral); }
.dwg .tables  { stroke: var(--sky); }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding-block: clamp(3rem, 6.5vw, 5rem); }
.section-alt { background: var(--paper-2); }
.section-sky { background: var(--sky-pale); }

/* the one dark section — kept for rhythm, warmed to field green */
.section-ink {
  background: var(--grass-deep); color: var(--text-inv); position: relative;
}
.section-ink::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 20px;
  background-image: radial-gradient(circle at 50% 100%, var(--paper) 11.5px, transparent 12px);
  background-size: 28px 20px; background-repeat: repeat-x; background-position: center bottom;
}
.section-ink > * { position: relative; z-index: 1; }
.section-ink .section-head p { color: var(--text-inv-dim); }
.section-ink .section-head h2 { color: var(--text-inv); }
.section-ink .eyebrow { color: var(--sunshine-2); }

.section-head { display: flex; flex-direction: column; gap: .5rem; margin-bottom: clamp(1.9rem, 3.5vw, 2.75rem); }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.section-head p { color: var(--text-dim); max-width: var(--measure); }

/* ==========================================================================
   Tent capacity tables — softened, striped, rounded
   ========================================================================== */
.tentgroup + .tentgroup { margin-top: 2.5rem; }
.tentgroup-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .35rem .9rem;
  margin-bottom: .9rem;
}
.tentgroup-head h3 { font-size: 1.45rem; }
.tentgroup-head p { font-size: .88rem; color: var(--text-dim); font-style: italic; }

.tablewrap {
  overflow-x: auto; border: 1px solid var(--rule);
  border-radius: var(--r); background: var(--card); box-shadow: var(--shadow-sm);
}
table.spec { border-collapse: collapse; width: 100%; min-width: 640px; font-size: .93rem; }
table.spec th, table.spec td { padding: .82rem 1rem; text-align: left; border-bottom: 1px solid var(--rule-soft); }
table.spec thead th {
  font-size: .78rem; color: var(--text-dim); font-weight: 700;
  background: var(--paper-2); white-space: nowrap;
}
table.spec thead th:first-child { border-top-left-radius: var(--r); }
table.spec thead th:last-child { border-top-right-radius: var(--r); }
table.spec tbody th[scope="row"] { font-weight: 700; color: var(--text-dim); font-size: .89rem; }
table.spec tbody tr:nth-child(even) { background: color-mix(in srgb, var(--paper-2) 45%, transparent); }
table.spec tbody tr:last-child td, table.spec tbody tr:last-child th { border-bottom: 0; }
table.spec tbody tr:hover { background: var(--sun-pale); }
table.spec td.size { font-weight: 700; white-space: nowrap; font-size: .98rem; }
table.spec td.size a { text-decoration: none; }
table.spec td.size a:hover { color: var(--coral); text-decoration: underline; }
table.spec td.cap { font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: .88rem; }
table.spec td.price { font-family: var(--mono); font-variant-numeric: tabular-nums; font-weight: 700; color: var(--grass-deep); }
table.spec td.act { text-align: right; white-space: nowrap; }

.pill {
  display: inline-block; font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em;
  background: var(--sunshine); color: #3A2A06;
  padding: .22rem .6rem; border-radius: 100px; margin-left: .5rem; vertical-align: middle;
}
.table-note { font-size: .88rem; color: var(--text-dim); margin-top: 1rem; line-height: 1.7; }

/* ==========================================================================
   Steps — free-standing cards, coloured dots, no grid lines
   ========================================================================== */
.steps { display: grid; gap: 1rem; list-style: none; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(5, 1fr); } }
.step {
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--r);
  padding: 1.5rem 1.3rem; display: flex; flex-direction: column; gap: .5rem;
  box-shadow: var(--shadow-sm);
}
.step .n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sun-pale); color: #7A5410;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700; margin-bottom: .35rem;
}
.step:nth-child(2) .n { background: var(--coral-pale); color: #9C3823; }
.step:nth-child(3) .n { background: var(--sky-soft); color: #2C627F; }
.step:nth-child(4) .n { background: #DCEDDF; color: var(--grass-deep); }
.step:nth-child(5) .n { background: #EBE2F2; color: #5B3F76; }
.step h4 { font-size: 1.05rem; }
.step p { font-size: .89rem; color: var(--text-dim); }

/* ==========================================================================
   Credentials
   ========================================================================== */
.creds { display: grid; gap: 1.75rem; }
@media (min-width: 780px) { .creds { grid-template-columns: repeat(3, 1fr); } }
.cred-col h4 {
  font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  color: var(--sunshine-2); font-weight: 700;
  padding-bottom: .55rem; border-bottom: 2px solid rgba(255,203,92,.3); margin-bottom: 1rem;
}
.cred-col ul { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.cred-col li b { display: block; font-size: 1rem; font-weight: 700; }
.cred-col li span { font-size: .87rem; color: var(--text-inv-dim); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { display: flex; flex-direction: column; gap: .75rem; }
.faq details {
  border: 1px solid var(--rule); border-radius: var(--r);
  background: var(--card); box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq details[open] { border-color: var(--sunshine); box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 1.35rem;
  font-weight: 700; font-size: 1.04rem;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.5rem; line-height: .9; color: var(--coral); flex: none; font-weight: 400;
}
.faq details[open] summary::after { content: "\2013"; }
.faq .answer { padding: 0 1.35rem 1.3rem; color: var(--text-dim); font-size: .97rem; }
.faq .answer strong { color: var(--text); font-weight: 700; }
.faq .answer p + p { margin-top: .75rem; }
.faq .answer a { color: var(--coral); }

/* ==========================================================================
   Local content
   ========================================================================== */
.localgrid { display: grid; gap: clamp(1.75rem, 3vw, 2.75rem); }
@media (min-width: 900px) { .localgrid { grid-template-columns: 1.15fr .85fr; } }

.chipset { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .9rem; }
.chip {
  font-size: .85rem; padding: .34rem .85rem; border: 1px solid var(--rule);
  border-radius: 100px; color: var(--text-dim); background: var(--card);
}
.chip:nth-child(4n+1) { background: var(--sun-pale); border-color: transparent; color: #7A5410; }
.chip:nth-child(4n+2) { background: var(--sky-pale); border-color: transparent; color: #2C627F; }
.chip:nth-child(4n+3) { background: #E5F1E7; border-color: transparent; color: var(--grass-deep); }
.chip:nth-child(4n+4) { background: var(--coral-pale); border-color: transparent; color: #9C3823; }

.usecases { display: grid; gap: 1rem; }
@media (min-width: 640px) { .usecases { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .usecases { grid-template-columns: repeat(3, 1fr); } }
.usecase {
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--r);
  padding: 1.4rem; box-shadow: var(--shadow-sm);
}
.usecase h4 { font-size: 1.06rem; margin-bottom: .3rem; }
.usecase p { font-size: .89rem; color: var(--text-dim); }

.callout {
  background: var(--card); border: 1px solid var(--rule);
  border-radius: var(--r); padding: 1.35rem 1.5rem; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.callout::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: linear-gradient(var(--sunshine), var(--coral));
}
.callout h4 { font-size: 1.06rem; margin-bottom: .4rem; }
.callout p { font-size: .93rem; color: var(--text-dim); }
.callout a { color: var(--coral); text-underline-offset: 2px; }

/* ==========================================================================
   Stat strip
   ========================================================================== */
.stats { display: grid; gap: 1rem; }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat {
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--r);
  padding: 1.75rem 1.25rem; text-align: center; box-shadow: var(--shadow-sm);
}
.stat b {
  display: block; font-family: var(--serif); font-size: clamp(2.1rem, 4.4vw, 2.9rem);
  font-weight: 700; color: var(--coral); font-variant-numeric: tabular-nums;
}
.stat:nth-child(2) b { color: var(--sunshine); }
.stat:nth-child(3) b { color: var(--grass); }
.stat span { display: block; margin-top: .3rem; font-size: .89rem; color: var(--text-dim); }

/* ==========================================================================
   Final CTA — sunset field
   ========================================================================== */
.finalcta {
  background: linear-gradient(150deg, var(--grass-deep) 0%, #24543A 100%);
  color: var(--text-inv); position: relative; overflow: hidden;
}
.finalcta::before {
  content: ""; position: absolute; top: 0; left: -4%; right: -4%; height: 26px;
  background-image: var(--bunting); background-repeat: repeat-x; pointer-events: none;
}
.finalcta > * { position: relative; z-index: 1; }
.finalcta .eyebrow { color: var(--sunshine-2); }
.finalcta h2 { font-size: clamp(1.85rem, 4vw, 2.7rem); color: var(--text-inv); }
.finalcta p { color: var(--text-inv-dim); margin-top: .85rem; max-width: 58ch; }
.finalcta .btn-inv { color: var(--text-inv); border-color: rgba(255,253,246,.5); background: transparent; }
.finalcta .btn-inv:hover { background: rgba(255,253,246,.15); border-color: #FFFDF6; color: var(--text-inv); }
.finalcta .fineprint {
  margin-top: 1.6rem; font-size: .8rem; color: var(--text-inv-dim); line-height: 1.9;
}

/* ==========================================================================
   Cross-sell
   ========================================================================== */
.crosssell { display: grid; gap: 1rem; }
@media (min-width: 700px) { .crosssell { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .crosssell { grid-template-columns: repeat(4, 1fr); } }
.xs {
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--r);
  padding: 1.45rem; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: .35rem;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.xs:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.xs h4 { font-size: 1.06rem; }
.xs p { font-size: .88rem; color: var(--text-dim); }
.xs .go { font-size: .88rem; color: var(--coral); font-weight: 700; margin-top: auto; padding-top: .65rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--grass-deep); color: var(--text-inv-dim); padding-block: clamp(2.75rem, 5vw, 3.75rem); font-size: .92rem; }
.footer-grid { display: grid; gap: 2.25rem; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer h5 {
  font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  color: var(--sunshine-2); margin-bottom: .8rem; font-weight: 700;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer a { color: var(--text-inv-dim); text-decoration: none; }
.footer a:hover { color: #FFFDF6; }
.footer .legal {
  margin-top: 2.4rem; padding-top: 1.35rem; border-top: 1px solid rgba(255,253,246,.16);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .79rem;
}

/* ==========================================================================
   Sticky mobile call bar
   ========================================================================== */
.callbar {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  box-shadow: 0 -6px 22px -8px rgba(80,66,40,.3);
}
@media (min-width: 900px) { .callbar { display: none; } }
.callbar a {
  background: var(--card); color: var(--text); text-decoration: none;
  padding: .95rem .5rem; text-align: center; font-weight: 700; font-size: .92rem;
  border-top: 1px solid var(--rule);
}
.callbar a.primary { background: var(--coral); color: #FFFFFF; border-top-color: var(--coral); }
@media (max-width: 899px) { body { padding-bottom: 3.8rem; } }

/* ==========================================================================
   Tent photography
   ========================================================================== */
.photo { margin: 0; }
.photo picture { display: block; }
.photo img {
  width: 100%; height: auto; display: block;
  border-radius: var(--r);
  border: 5px solid var(--card);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; object-fit: cover;
  background: var(--paper-2);
}

/* index-table thumbnails */
table.spec td.thumb { padding: .5rem .5rem .5rem 1rem; width: 92px; }
.thumb-link { display: block; width: 76px; }
.thumb-link img {
  width: 76px; height: 57px; object-fit: cover;
  border-radius: var(--r-sm); display: block;
  border: 1px solid var(--rule); background: var(--paper-2);
}
.thumb-none {
  display: block; width: 76px; height: 57px; border-radius: var(--r-sm);
  background: var(--sky-pale); border: 1px dashed var(--rule);
}

/* the scale drawing, demoted from hero to a supporting figure */
.specdrawing {
  background: var(--sky-pale); border: 1px solid var(--rule);
  border-radius: var(--r); padding: 1.35rem 1.35rem 1rem;
  margin-bottom: 1.35rem;
}
.specdrawing svg { margin-inline: auto; max-width: 520px; }
.specdrawing figcaption {
  margin-top: .7rem; text-align: center;
  font-size: .86rem; font-style: italic; color: var(--text-dim);
}

/* ==========================================================================
   Tent detail — spec callouts
   ========================================================================== */
.specgrid { gap: 1rem !important; }
@media (min-width: 780px) { .specgrid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Size calculator
   ========================================================================== */
.calcwrap { display: grid; gap: 1.75rem; align-items: start; }
@media (min-width: 900px) { .calcwrap { grid-template-columns: 380px 1fr; } }

.calc {
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--r);
  padding: 1.6rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 1.5rem;
  position: sticky; top: 5.5rem;
}
@media (max-width: 899px) { .calc { position: static; } }

.calc .field { display: flex; flex-direction: column; gap: .65rem; border: 0; padding: 0; margin: 0; }
.calc label[for], .calc legend {
  font-family: var(--serif); font-style: italic; font-size: 1.12rem;
  color: var(--coral); font-weight: 700; padding: 0;
}
.calc input[type="number"] {
  font-family: var(--serif); font-size: 2.1rem; font-variant-numeric: tabular-nums;
  padding: .45rem .9rem; width: 100%;
  border: 2px solid var(--rule); border-radius: var(--r-sm);
  background: var(--paper); color: var(--text);
}
.calc input[type="number"]:focus { border-color: var(--sky); outline: none; }

.opt {
  display: flex; align-items: center; gap: .7rem;
  padding: .68rem .9rem; border: 2px solid var(--rule); border-radius: var(--r-sm);
  cursor: pointer; font-size: .93rem; background: var(--paper);
  transition: border-color .15s ease, background-color .15s ease;
}
.opt:hover { border-color: var(--sky); }
.opt:has(input:checked) { border-color: var(--coral); background: var(--coral-pale); }
.opt input { accent-color: var(--coral); flex: none; width: 18px; height: 18px; }
.opt span { flex: 1; }
.opt em { font-style: normal; font-size: .79rem; color: var(--text-dim); white-space: nowrap; }

.result { display: block; }
.result-head {
  background: var(--sun-pale); border-radius: var(--r);
  padding: 1.25rem 1.4rem; margin-bottom: 1.4rem;
}
.result-head .eyebrow { color: #9C3823; }
.result-sum { font-size: 1.08rem; margin-top: .35rem; }
.result-sum b { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: #7A5410; }
.result-breakdown { display: block; margin-top: .4rem; font-size: .88rem; color: var(--text-dim); }

.result-picks { display: grid; gap: 1.15rem; }
@media (min-width: 640px) { .result-picks { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); } }

.pick {
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--r);
  padding: 1.4rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .55rem; position: relative;
}
.pick-lead { border: 2px solid var(--coral); box-shadow: var(--shadow); }
.pick-flag {
  position: absolute; top: -.75rem; left: 1.2rem;
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  background: var(--coral); color: #FFFFFF; padding: .26rem .7rem; border-radius: 100px;
}
.pick h3 { font-size: 1.18rem; }
.pick h3 a { text-decoration: none; }
.pick h3 a:hover { color: var(--coral); }
.pick-group { font-size: .84rem; font-style: italic; color: var(--text-dim); }
.pick-specs { display: flex; flex-direction: column; gap: .32rem; margin: .35rem 0 0; }
.pick-specs > div { display: flex; justify-content: space-between; gap: 1rem; font-size: .88rem; padding-bottom: .32rem; border-bottom: 1px dotted var(--rule); }
.pick-specs dt { color: var(--text-dim); }
.pick-specs dd { margin: 0; font-weight: 700; font-family: var(--mono); font-size: .84rem; }
.pick-cta { display: flex; gap: .5rem; margin-top: auto; padding-top: .7rem; }

.result-none {
  background: var(--sun-pale); border: 2px solid var(--sunshine); border-radius: var(--r);
  padding: 1.6rem;
}
.result-none h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.result-none p { color: var(--text-dim); font-size: .95rem; margin-bottom: 1.1rem; }
.result-note { margin-top: 1.35rem; font-size: .89rem; color: var(--text-dim); }
.result-note a { color: var(--coral); }

/* ==========================================================================
   Third-party chat widget — layout accommodation
   The bundle mounts a full-viewport pointer-events:none overlay and floats
   its launcher bottom-right, which is exactly where our sticky mobile call
   bar sits. Lift it clear on small screens.
   ========================================================================== */
@media (max-width: 899px) {
  .widget-fab-wrapper { transform: translateY(-3.9rem); }
}
