@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-latin-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/outfit-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
}

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

:root {
  --bone: #f3efe7;
  --paper: #faf7f1;
  --ink: #0a2e30;
  --teal: #0d5c63;
  --brand-copper: #b8734f;
  --action: #995638;
  --action-hover: #7f432c;
  --copper-on-ink: #d9a17d;
  --copper-on-teal: #f6c3a4;
  --muted: #5f6d6c;
  --line: rgba(8, 47, 50, .18);
  --line-light: rgba(243, 239, 231, .22);
  --white: #fff;
  --display: "Newsreader", Georgia, serif;
  --body: "Outfit", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --shell: min(1240px, calc(100vw - 80px));
  --radius: 2px;
  --sheet: #2f5a3c;
}

html { scroll-behavior: smooth; background: var(--bone); color: var(--ink); }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bone);
  color: var(--ink);
  font: 300 17px/1.62 var(--body);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 400; letter-spacing: -.02em; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
fieldset { margin: 0; padding: 0; border: 0; min-width: 0; }
legend { padding: 0; }
button, input, select { font: inherit; color: inherit; }

.fg-skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  padding: 14px 20px; background: var(--ink); color: var(--bone);
  font: 500 14px/1 var(--body); text-decoration: none;
}
.fg-skip:focus { left: 16px; top: 16px; }

.fg-visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.fg-shell { width: var(--shell); margin: 0 auto; }

.fg-eyebrow {
  display: flex; align-items: center; gap: 14px; margin: 0 0 18px;
  font: 600 11px/1 var(--body); letter-spacing: .2em; text-transform: uppercase;
  color: var(--action);
}
.fg-eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; flex: none; }
.fg-eyebrow--light { color: var(--copper-on-ink); }
.fg-eyebrow--teal { color: var(--copper-on-teal); }

.fg-section { padding: 112px 0; }
.fg-section--paper { background: var(--paper); }
.fg-section--ink { background: var(--ink); color: var(--bone); }
.fg-section--teal { background: var(--teal); color: var(--bone); }

.fg-section-head {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 32px 64px; align-items: end; margin-bottom: 56px;
}
.fg-section-head h2, .fg-split h2, .fg-pricing h2, .fg-specs h2 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.1; }
.fg-section-head > p { color: var(--muted); max-width: 50ch; }
.fg-section--teal .fg-section-head > p { color: rgba(243, 239, 231, .82); }
h1 em, h2 em { font-style: italic; color: var(--brand-copper); }
.fg-section--ink h2 em { color: var(--copper-on-ink); }
.fg-section--teal h2 em { color: var(--copper-on-teal); }

/* buttons */
.fg-actions { display: flex; flex-wrap: wrap; gap: 12px 16px; align-items: center; }
.fg-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border: 1px solid transparent; border-radius: var(--radius);
  background: var(--action); color: var(--white); cursor: pointer;
  font: 500 15px/1.2 var(--body); text-decoration: none; text-align: center;
  transition: background .3s var(--ease), transform .3s var(--ease), color .3s var(--ease);
}
.fg-button:hover { background: var(--action-hover); transform: translateY(-2px); }
.fg-button--ghost { background: transparent; color: inherit; border-color: currentColor; }
.fg-button--ghost:hover { background: rgba(10, 46, 48, .06); }
.fg-text-button {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 0 2px;
  background: none; border: 0; border-bottom: 1px solid currentColor; cursor: pointer;
  font: 500 15px/1 var(--body); color: var(--action);
}
.fg-text-button:hover { color: var(--action-hover); }
.fg-link-button { background: none; border: 0; padding: 6px 0; cursor: pointer; font: 500 14px/1 var(--body); color: var(--action); text-decoration: underline; text-underline-offset: 3px; }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, .fg-seg input:focus-visible + span, .fg-swatches input:focus-visible + span, .fg-editions input:focus-visible + span {
  outline: 2px solid var(--action); outline-offset: 3px;
}
.fg-section--ink :focus-visible, .fg-section--teal :focus-visible { outline-color: var(--copper-on-teal) !important; }

/* hero */
.fg-hero { position: relative; display: flex; align-items: center; min-height: clamp(640px, 88vh, 900px); background: var(--bone); overflow: hidden; }
.fg-hero__media { position: absolute; inset: 0; }
.fg-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 68% 55%; }
.fg-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(243, 239, 231, .94) 0%, rgba(243, 239, 231, .82) 30%, rgba(243, 239, 231, .2) 52%, rgba(243, 239, 231, 0) 62%);
}
.fg-hero__inner { position: relative; z-index: 2; width: var(--shell); margin: 0 auto; padding: 128px 0 72px; }
.fg-hero__title, .fg-hero__body { max-width: 540px; }
.fg-crumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; font: 400 13px/1.4 var(--body); color: var(--muted); }
.fg-crumbs a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; }
.fg-crumbs a:hover { border-color: currentColor; }
.fg-hero h1 { font-size: clamp(40px, 5.6vw, 76px); line-height: 1.02; margin-bottom: 26px; }
.fg-hero__lead { font-size: clamp(17px, 1.45vw, 20px); line-height: 1.55; margin-bottom: 24px; max-width: 46ch; }
.fg-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.fg-facts li { padding: 8px 12px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(250, 247, 241, .7); font: 400 14px/1.2 var(--body); }
.fg-price { display: grid; gap: 4px; margin-bottom: 26px; font-size: 16px; }
.fg-price strong { font: 400 clamp(28px, 2.6vw, 36px)/1 var(--display); color: var(--ink); }
.fg-price span { font-size: 14px; color: var(--muted); font-variant-numeric: tabular-nums; }
.fg-hero__meta { margin-top: 26px; font: 500 12px/1.6 var(--body); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* two lives */
.fg-lives { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 72px; align-items: center; }
.fg-hotspots__frame { position: relative; background: #fff; }
.fg-hotspots img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.fg-hotspots figcaption { margin-top: 14px; font-size: 13px; color: rgba(243, 239, 231, .64); }
.fg-hotspot {
  position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%);
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bone);
  background: var(--action); color: var(--white); cursor: pointer;
  font: 600 14px/1 var(--body); box-shadow: 0 6px 18px rgba(10, 46, 48, .35);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.fg-hotspot:hover, .fg-hotspot.is-active { transform: translate(-50%, -50%) scale(1.14); background: var(--ink); }
.fg-lives h2 { font-size: clamp(30px, 3.8vw, 50px); line-height: 1.08; margin-bottom: 36px; }
.fg-lives__pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; padding-bottom: 32px; border-bottom: 1px solid var(--line-light); }
.fg-lives__pair h3 { font-size: 22px; margin-bottom: 10px; color: var(--copper-on-ink); }
.fg-lives__pair p { font-size: 15.5px; color: rgba(243, 239, 231, .84); }
.fg-key { display: grid; gap: 2px; margin: 28px 0; }
.fg-key li { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 14px; align-items: baseline; padding: 8px 10px; border-radius: var(--radius); font-size: 15px; color: rgba(243, 239, 231, .82); transition: background .3s var(--ease); }
.fg-key li.is-active { background: rgba(243, 239, 231, .08); }
.fg-key b { font: 600 13px/1 var(--body); color: var(--copper-on-ink); }
.fg-key strong { font-weight: 500; color: var(--bone); }
.fg-pull { font-family: var(--display); font-size: clamp(20px, 2vw, 26px); line-height: 1.35; color: var(--bone); max-width: 36ch; }

/* studio */
.fg-studio { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: 56px; align-items: start; }
.fg-stage { position: relative; container-type: inline-size; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.fg-stage__photo { width: 100%; aspect-ratio: 1; }

.fg-stack {
  position: absolute; left: 17.385%; top: 11.962%; width: 64.274%; height: 45.215%;
  perspective: 180cqw;
}
.fg-stack::before {
  content: ""; position: absolute; inset: 0; border-radius: 3.4% / 4.8%;
  background: #ebe5d8;
  box-shadow: -.28cqw .32cqw 0 #e4ddcd, -.56cqw .64cqw 0 #d9d1c0, -.9cqw 1.1cqw 1.4cqw rgba(0, 0, 0, .28);
}
.fg-sheet {
  position: absolute; inset: 0; display: grid; grid-template-columns: 43.4% 1fr;
  border-radius: 3.4% / 4.8%; overflow: hidden;
  background-color: #f7f3ea;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(120, 102, 70, .35) 0 .12cqw, transparent .16cqw),
    radial-gradient(circle at 64% 18%, rgba(120, 102, 70, .3) 0 .1cqw, transparent .14cqw),
    radial-gradient(circle at 78% 71%, rgba(120, 102, 70, .32) 0 .12cqw, transparent .16cqw),
    radial-gradient(circle at 91% 38%, rgba(120, 102, 70, .28) 0 .1cqw, transparent .14cqw),
    radial-gradient(circle at 56% 88%, rgba(120, 102, 70, .3) 0 .11cqw, transparent .15cqw),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .45 0 0 0 0 .4 0 0 0 0 .3 0 0 0 .22 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  transform-origin: 50% 10.8%;
  backface-visibility: hidden;
  transition: transform .75s var(--ease), opacity .45s ease .2s;
}
.fg-sheet::before, .fg-sheet::after {
  content: ""; position: absolute; top: 10.8%; width: 4.4%; aspect-ratio: 1; border-radius: 50%;
  transform: translate(-50%, -50%); z-index: 3;
  background: radial-gradient(circle at 50% 38%, #120d0a 55%, #2b211b 100%);
  box-shadow: inset 0 .15cqw .2cqw rgba(0, 0, 0, .6), 0 0 0 .08cqw rgba(255, 255, 255, .4);
}
.fg-sheet::before { left: 17.6%; }
.fg-sheet::after { left: 80.5%; }
.fg-sheet.is-turned { transform: rotateX(172deg); opacity: 0; pointer-events: none; }

.fg-sheet__art {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 3.2cqw 2.4cqw; color: #fbf6ec;
  background-color: var(--sheet);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .16 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  transition: background-color .4s var(--ease);
}
.fg-sheet__num { position: absolute; top: 16%; left: 3.2cqw; font: 600 1.25cqw/1 var(--body); letter-spacing: .18em; opacity: .75; }
.fg-sheet__msg { font: italic 400 2.45cqw/1.22 var(--display); margin-bottom: 2.6cqw; max-width: 22cqw; text-wrap: balance; }
.fg-sheet__year { position: absolute; left: 3cqw; top: 28%; font: 400 6.6cqw/1 var(--display); letter-spacing: -.02em; }
.fg-sheet__seed {
  align-self: flex-start; padding: .45cqw 1.1cqw; border-radius: 1cqw;
  background: rgba(255, 255, 255, .9); color: var(--sheet);
  font: 500 1.28cqw/1.1 var(--body); white-space: nowrap;
}
.fg-sheet__cal { padding: 14.4cqw 3.4cqw 0 4.2cqw; color: var(--sheet); }
.fg-sheet__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.7cqw; }
.fg-sheet__head b { font: 600 4.2cqw/1 var(--body); letter-spacing: .02em; }
.fg-sheet__head span { font: 400 3.9cqw/1 var(--body); }
.fg-sheet__dow, .fg-sheet__days { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; }
.fg-sheet__dow { padding-bottom: .9cqw; margin-bottom: 1cqw; border-bottom: .14cqw dotted currentColor; font: 500 1.65cqw/1 var(--body); }
.fg-sheet__days { row-gap: 1.05cqw; font: 400 1.95cqw/1 var(--body); color: #26302d; font-variant-numeric: tabular-nums; }
.fg-sheet__days .is-key { color: var(--sheet); font-weight: 600; }
.fg-sheet__cover { padding-top: 13cqw; display: flex; flex-direction: column; gap: 1cqw; }
.fg-sheet__kicker { font: 600 1.2cqw/1 var(--body); letter-spacing: .2em; text-transform: uppercase; }
.fg-sheet__company { font: 400 3.6cqw/1.08 var(--display); color: #1f2725; overflow-wrap: anywhere; }
.fg-sheet__tag { font: italic 400 2.1cqw/1.2 var(--display); }
.fg-sheet__count { margin-top: auto; padding-bottom: 3cqw; font: 500 1.3cqw/1 var(--body); color: #4c5654; }

.fg-rings { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 4; filter: drop-shadow(.1cqw .25cqw .25cqw rgba(0, 0, 0, .35)); }

.fg-plate {
  position: absolute; left: 25.8%; top: 79.6%; width: 48.6%; height: 8.8%;
  display: flex; align-items: center; justify-content: center; gap: 2.2cqw; padding: 0 2.4cqw;
  z-index: 3;
}
.fg-plate__logo { max-height: 72%; max-width: 30%; width: auto; height: auto; object-fit: contain; }
.fg-plate__text { display: grid; gap: .5cqw; min-width: 0; text-align: left; }
.fg-plate__logo[hidden] + .fg-plate__text { text-align: center; }
.fg-plate strong { font: 600 calc(2.7cqw * var(--k, 1))/1 var(--body); letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.fg-plate__text span { font: 400 calc(1.45cqw * var(--kl, 1))/1.1 var(--body); letter-spacing: .04em; white-space: nowrap; }
.fg-plate.is-engraved .fg-plate__text { color: #2a170d; opacity: .84; mix-blend-mode: multiply; }
.fg-plate.is-engraved .fg-plate__logo { mix-blend-mode: multiply; opacity: .9; }
.fg-plate.is-colour strong { color: var(--sheet); }
.fg-plate.is-colour .fg-plate__text span { color: #33241b; }
.fg-plate.is-colour .fg-plate__logo { mix-blend-mode: multiply; }

.fg-flip { display: grid; grid-template-columns: 48px minmax(0, 1fr) 48px; align-items: center; gap: 12px; margin-top: 16px; }
.fg-flip__btn {
  width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: var(--white);
  cursor: pointer; font-size: 18px; color: var(--ink); transition: background .3s var(--ease), color .3s var(--ease);
}
.fg-flip__btn:hover:not(:disabled) { background: var(--ink); color: var(--bone); }
.fg-flip__btn:disabled { opacity: .35; cursor: default; }
.fg-flip__label { text-align: center; font: 500 15px/1.2 var(--body); font-variant-numeric: tabular-nums; }
.fg-studio__note { margin-top: 14px; font-size: 13.5px; color: var(--muted); }

.fg-studio__controls { display: grid; gap: 30px; }
.fg-studio__controls legend, .fg-builder legend {
  margin-bottom: 14px; font: 600 11px/1 var(--body); letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.fg-studio__controls fieldset { display: grid; gap: 14px; padding-top: 22px; border-top: 1px solid var(--line); }
.fg-field { display: grid; gap: 6px; }
.fg-field > span { font: 500 14px/1.3 var(--body); }
.fg-field small { font-weight: 400; opacity: .78; }
.fg-builder .fg-field small { opacity: 1; color: rgba(243, 239, 231, .92); }
.fg-field input, .fg-field select {
  width: 100%; min-height: 48px; padding: 10px 14px; border: 1px solid #687574; border-radius: var(--radius);
  background: var(--white); font: 400 16px/1.3 var(--body); color: var(--ink);
}
.fg-upload { display: grid; gap: 8px; justify-items: start; }
.fg-upload__label { font: 500 14px/1.3 var(--body); }
.fg-upload__label small { display: block; font-weight: 400; color: var(--muted); }
.fg-upload input[type="file"] { font-size: 14px; max-width: 100%; }
.fg-upload input[type="file"]::file-selector-button {
  min-height: 44px; margin-right: 12px; padding: 0 16px; border: 1px solid var(--ink); border-radius: var(--radius);
  background: transparent; color: var(--ink); cursor: pointer; font: 500 14px/1 var(--body);
}
.fg-seg { display: flex; flex-wrap: wrap; gap: 6px; }
.fg-seg label { position: relative; }
.fg-seg input, .fg-swatches input:not([type="color"]), .fg-editions input, .fg-checks input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.fg-seg span {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--white); cursor: pointer; font: 500 14px/1 var(--body);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.fg-seg input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.fg-swatches { display: flex; flex-wrap: wrap; gap: 10px 12px; }
.fg-swatches label { position: relative; display: grid; justify-items: center; gap: 6px; cursor: pointer; }
.fg-swatches span { width: 40px; height: 40px; border-radius: 50%; background: var(--c); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12); transition: box-shadow .25s var(--ease); }
.fg-swatches input:checked + span { box-shadow: 0 0 0 3px var(--paper), 0 0 0 5px var(--ink); }
.fg-swatches em { font: normal 400 12px/1 var(--body); color: var(--muted); }
.fg-swatches__custom input[type="color"] {
  width: 40px; height: 40px; padding: 0; border: 0; border-radius: 50%; background: none; cursor: pointer; overflow: hidden;
}
.fg-swatches__custom input[type="color"]::-webkit-color-swatch-wrapper { padding: 0; }
.fg-swatches__custom input[type="color"]::-webkit-color-swatch { border: 0; border-radius: 50%; }
.fg-swatches__custom input[type="color"]::-moz-color-swatch { border: 0; border-radius: 50%; }
.fg-swatches__custom.is-active input[type="color"] { box-shadow: 0 0 0 3px var(--paper), 0 0 0 5px var(--ink); }
.fg-studio__actions { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line); }
.fg-studio__fine { font-size: 13.5px; color: var(--muted); }

/* plant */
.fg-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; align-items: center; }
.fg-split__media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.fg-split__media figcaption, .fg-garden figcaption { margin-top: 12px; font-size: 13px; color: var(--muted); }
.fg-split h2 { margin-bottom: 20px; }
.fg-lede { color: var(--muted); max-width: 52ch; margin-bottom: 28px; }
.fg-steps { counter-reset: step; display: grid; border-top: 1px solid var(--line); }
.fg-steps li { counter-increment: step; display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 8px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; color: var(--muted); }
.fg-steps li::before { content: counter(step, decimal-leading-zero); font: 500 13px/1.8 var(--body); color: var(--action); font-variant-numeric: tabular-nums; }
.fg-steps strong { font-weight: 500; color: var(--ink); }
.fg-seeds { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
.fg-seeds div { display: grid; gap: 4px; padding: 14px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.fg-seeds strong { font: 400 20px/1.1 var(--display); }
.fg-seeds span { font-size: 13px; color: var(--muted); }

/* garden */
.fg-garden { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, .9fr); gap: 40px; align-items: start; }
.fg-garden__macro img, .fg-garden__after img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.fg-garden__after img { object-position: 50% 70%; }
.fg-garden__after figcaption strong { color: var(--ink); font-weight: 500; }
.fg-care { display: grid; border-top: 1px solid var(--ink); }
.fg-care div { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.fg-care dt { font: 600 11px/1.9 var(--body); letter-spacing: .16em; text-transform: uppercase; color: var(--action); }
.fg-care dd { margin: 0; font-size: 15.5px; }
.fg-note { margin-top: 24px; font-size: 14.5px; color: var(--muted); }

/* customisation */
.fg-zones { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.fg-zones li { padding: 24px 28px 26px 0; border-bottom: 1px solid var(--line); }
.fg-zones li:not(:nth-child(3n + 1)) { padding-left: 28px; border-left: 1px solid var(--line); }
.fg-zones h3 { font-size: 21px; margin-bottom: 6px; }
.fg-zones p { font-size: 15px; color: var(--muted); }
.fg-print-note { margin: 24px 0 48px; max-width: 80ch; font-size: 14.5px; color: var(--muted); }
.fg-print-note strong { color: var(--ink); font-weight: 500; }
.fg-concepts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.fg-concept { display: grid; gap: 12px; align-content: start; }
.fg-concept img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--paper); border: 1px solid var(--line); }
.fg-concept--wide { grid-column: span 2; }
.fg-concept--wide img { aspect-ratio: auto; height: 100%; max-height: none; }
.fg-concept figcaption { font-size: 14px; color: var(--muted); }
.fg-concept figcaption strong { display: block; font: 400 19px/1.25 var(--display); color: var(--ink); }
.fg-concepts__note { margin-top: 18px; font-size: 13px; color: var(--muted); }

/* audiences */
.fg-audiences { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.fg-aud { display: grid; grid-template-rows: auto 1fr; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.fg-aud img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.fg-aud__body { display: grid; gap: 10px; align-content: start; padding: 24px 26px 26px; }
.fg-aud h3 { font-size: 24px; }
.fg-aud p { font-size: 15.5px; color: var(--muted); }
.fg-aud__setup { font: 500 12px/1.5 var(--body) !important; letter-spacing: .08em; text-transform: uppercase; color: var(--ink) !important; }
.fg-aud .fg-text-button { justify-self: start; margin-top: 4px; }

/* quote builder */
.fg-builder { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 48px; align-items: start; }
.fg-builder__form { display: grid; gap: 30px; }
.fg-builder legend { color: rgba(243, 239, 231, .92); }
.fg-editions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.fg-editions legend { grid-column: 1 / -1; }
.fg-editions label { position: relative; display: flex; }
.fg-editions span {
  flex: 1; display: grid; gap: 4px; padding: 16px 18px; border: 1px solid rgba(243, 239, 231, .32);
  border-radius: var(--radius); cursor: pointer; transition: background .25s var(--ease), border-color .25s var(--ease);
}
.fg-editions strong { font: 400 21px/1.15 var(--display); }
.fg-editions em { font: normal 400 14px/1.35 var(--body); color: rgba(243, 239, 231, .9); }
.fg-editions b { font: 500 13px/1 var(--body); color: var(--copper-on-teal); margin-top: 4px; }
.fg-editions input:checked + span { background: var(--bone); border-color: var(--bone); color: var(--ink); }
.fg-editions input:checked + span em { color: var(--muted); }
.fg-editions input:checked + span b { color: var(--action); }
.fg-builder .fg-field > span { color: var(--bone); }
.fg-builder .fg-field input, .fg-builder .fg-field select { border-color: rgba(243, 239, 231, .45); background: rgba(6, 45, 49, .35); color: var(--bone); }
.fg-builder .fg-field select option { color: var(--ink); background: var(--white); }
.fg-builder .fg-field input[type="date"] { color-scheme: dark; }
.fg-builder__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.fg-qty { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.fg-qty .fg-field { width: 140px; }
.fg-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.fg-chips button {
  min-height: 44px; min-width: 64px; padding: 0 14px; border: 1px solid rgba(243, 239, 231, .4); border-radius: var(--radius);
  background: transparent; color: var(--bone); cursor: pointer; font: 500 14px/1 var(--body); font-variant-numeric: tabular-nums;
}
.fg-chips button.is-active { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.fg-hint { margin-top: 10px; font-size: 13.5px; color: rgba(243, 239, 231, .92); }
.fg-hint.is-warning { color: var(--copper-on-teal); }
.fg-checks { display: flex; flex-wrap: wrap; gap: 10px; }
.fg-checks legend { width: 100%; }
.fg-checks label { position: relative; }
.fg-checks span {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 16px;
  border: 1px solid rgba(243, 239, 231, .4); border-radius: var(--radius); cursor: pointer; font-size: 14.5px;
}
.fg-checks span::before { content: ""; width: 16px; height: 16px; border: 1px solid currentColor; border-radius: 2px; }
.fg-checks input:checked + span { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.fg-checks input:checked + span::before { background: var(--action); border-color: var(--action); box-shadow: inset 0 0 0 3px var(--bone); }
.fg-checks input:focus-visible + span { outline: 2px solid var(--copper-on-teal); outline-offset: 3px; }

.fg-summary { position: sticky; top: 104px; display: grid; gap: 20px; padding: 28px; background: var(--paper); color: var(--ink); border-radius: var(--radius); box-shadow: 0 30px 70px -40px rgba(0, 0, 0, .55); }
.fg-summary h3 { font-size: 26px; }
.fg-summary__list { display: grid; margin: 0; border-top: 1px solid var(--line); }
.fg-summary__list div { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.fg-summary__list dt { color: var(--muted); }
.fg-summary__list dd { margin: 0; }
.fg-summary__price { display: grid; gap: 4px; }
.fg-summary__est { font: 400 34px/1.05 var(--display); font-variant-numeric: tabular-nums; }
.fg-summary__per { font-size: 14px; color: var(--muted); }
.fg-summary__next { counter-reset: nx; display: grid; gap: 6px; }
.fg-summary__next li { counter-increment: nx; display: grid; grid-template-columns: 26px minmax(0, 1fr); font-size: 14px; }
.fg-summary__next li::before { content: counter(nx); font-weight: 600; color: var(--action); }
.fg-summary__actions { display: grid; gap: 8px; justify-items: start; }
.fg-summary__actions .fg-button { width: 100%; }
.fg-copy-status { min-height: 1.4em; font-size: 13.5px; color: var(--teal); }
.fg-summary__fine { font-size: 12.5px; color: var(--muted); }

/* pricing */
.fg-pricing { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 72px; align-items: start; }
.fg-pricing h2 { margin-bottom: 28px; }
.fg-table-wrap { overflow-x: auto; margin-bottom: 20px; }
.fg-table { width: 100%; border-collapse: collapse; }
.fg-table caption { text-align: left; font-size: 14px; color: var(--muted); padding-bottom: 14px; caption-side: top; }
.fg-table th, .fg-table td { text-align: left; padding: 16px 18px 16px 0; border-bottom: 1px solid var(--line); font-size: 16px; font-variant-numeric: tabular-nums; }
.fg-table thead th { font: 600 11px/1 var(--body); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); border-bottom-color: var(--ink); }
.fg-table td:nth-child(2) { font: 400 22px/1 var(--display); }
.fg-muted { font-size: 15px; color: var(--muted); max-width: 60ch; }
.fg-timeline { counter-reset: tl; display: grid; border-top: 1px solid var(--ink); }
.fg-timeline li { counter-increment: tl; display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 2px 8px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.fg-timeline li::before { content: counter(tl, decimal-leading-zero); grid-row: span 2; font: 400 26px/1 var(--display); color: var(--brand-copper); }
.fg-timeline strong { font: 400 21px/1.2 var(--display); }
.fg-timeline span { font-size: 15px; color: var(--muted); }

/* specs + faq */
.fg-specs { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: start; }
.fg-specs h2 { margin-bottom: 24px; }
.fg-spec-list { margin: 0; display: grid; border-top: 1px solid var(--ink); }
.fg-spec-list div { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.fg-spec-list dt { color: var(--muted); }
.fg-spec-list dd { margin: 0; }
.fg-faq__item { border-bottom: 1px solid var(--line); }
.fg-faq__item:first-of-type { border-top: 1px solid var(--ink); }
.fg-faq summary {
  position: relative; display: block; padding: 18px 40px 18px 0; cursor: pointer; list-style: none;
  font: 400 19px/1.35 var(--display);
}
.fg-faq summary::-webkit-details-marker { display: none; }
.fg-faq summary::after { content: "+"; position: absolute; right: 4px; top: 16px; font: 300 24px/1 var(--body); color: var(--action); transition: transform .3s var(--ease); }
.fg-faq details[open] summary::after { transform: rotate(45deg); }
.fg-faq details p { padding: 0 0 20px; font-size: 15.5px; color: var(--muted); max-width: 64ch; }

/* closing */
.fg-closing { position: relative; display: flex; align-items: center; min-height: 560px; overflow: hidden; background: var(--bone); }
.fg-closing__media { position: absolute; inset: 0; }
.fg-closing__media img { width: 100%; height: 100%; object-fit: cover; object-position: 75% 50%; }
.fg-closing::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(243, 239, 231, .95) 0%, rgba(243, 239, 231, .8) 38%, rgba(243, 239, 231, 0) 64%); }
.fg-closing__inner { position: relative; z-index: 2; padding: 96px 0; }
.fg-closing h2 { font-size: clamp(34px, 4.4vw, 60px); line-height: 1.06; max-width: 14ch; margin-bottom: 18px; }
.fg-closing__inner > p:not(.fg-eyebrow):not(.fg-closing__links) { max-width: 42ch; margin-bottom: 28px; font-size: 18px; }
.fg-closing__links { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 32px; font-size: 14.5px; }
.fg-closing__links a { color: var(--ink); text-underline-offset: 4px; }

/* sticky mobile dock */
.fg-dock { display: none; }

@media (max-width: 1080px) {
  .fg-studio, .fg-builder { grid-template-columns: minmax(0, 1fr); }
  .fg-summary { position: static; }
  .fg-garden { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .fg-garden__facts { grid-column: 1 / -1; grid-row: 1; }
  .fg-concepts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fg-concept--wide { grid-column: 1 / -1; }
  .fg-concept--wide img { height: auto; }
}

@media (max-width: 900px) {
  .fg-section { padding: 80px 0; }
  .fg-section-head, .fg-lives, .fg-split, .fg-pricing, .fg-specs { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .fg-section-head { margin-bottom: 40px; }
  .fg-lives { gap: 40px; }
  .fg-zones { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fg-zones li:not(:nth-child(3n + 1)) { padding-left: 0; border-left: 0; }
  .fg-zones li:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
  .fg-builder__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 32px); }
  .fg-hero { display: flex; flex-direction: column; align-items: stretch; min-height: 0; }
  .fg-hero::before { display: none; }
  .fg-hero__inner { display: contents; }
  .fg-hero__title { order: 1; padding: 92px 16px 22px; max-width: none; }
  .fg-hero__media { order: 2; position: relative; inset: auto; }
  .fg-hero__media img { aspect-ratio: 1; height: auto; object-position: 50% 78%; }
  .fg-hero__body { order: 3; padding: 26px 16px 56px; max-width: none; }
  .fg-crumbs { margin-bottom: 18px; }
  .fg-hero h1 { font-size: clamp(36px, 10vw, 46px); margin-bottom: 0; }
  .fg-actions .fg-button { width: 100%; }
  .fg-lives__pair { grid-template-columns: minmax(0, 1fr); }
  .fg-hotspot { width: 30px; height: 30px; font-size: 13px; }
  .fg-seeds { grid-template-columns: minmax(0, 1fr); }
  .fg-garden { grid-template-columns: minmax(0, 1fr); }
  .fg-garden__facts { grid-column: auto; grid-row: auto; }
  .fg-zones { grid-template-columns: minmax(0, 1fr); }
  .fg-zones li:nth-child(even) { padding-left: 0; border-left: 0; }
  .fg-zones li { padding-right: 0; }
  .fg-concepts {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    margin-inline: -16px; padding: 0 16px 8px; scrollbar-width: thin;
  }
  .fg-concept { flex: 0 0 78%; scroll-snap-align: start; }
  .fg-concept--wide { flex-basis: 92%; }
  .fg-concept--wide img { aspect-ratio: 1400 / 804; }
  .fg-audiences { grid-template-columns: minmax(0, 1fr); }
  .fg-editions { grid-template-columns: minmax(0, 1fr); }
  .fg-builder__grid { grid-template-columns: minmax(0, 1fr); }
  .fg-summary { padding: 22px; }
  .fg-spec-list div, .fg-summary__list div { grid-template-columns: 110px minmax(0, 1fr); }
  .fg-closing { flex-direction: column; align-items: stretch; min-height: 0; }
  .fg-closing::before { display: none; }
  .fg-closing__media { position: relative; order: 2; }
  .fg-closing__media img { aspect-ratio: 16 / 10; height: auto; }
  .fg-closing__inner { order: 1; padding: 72px 0 40px; }
  .fg-dock {
    position: fixed; left: 12px; right: 84px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); z-index: 150;
    display: block; transform: translateY(0); transition: transform .35s var(--ease), opacity .35s var(--ease);
  }
  .fg-dock[hidden] { display: block; transform: translateY(140%); opacity: 0; pointer-events: none; }
  .fg-dock .fg-button { width: 100%; min-height: 50px; box-shadow: 0 12px 30px -12px rgba(10, 46, 48, .6); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .fg-button:hover { transform: none; }
}
