:root {
  --ink: #203b2a;
  --forest: #24452f;
  --forest-deep: #183322;
  --leaf: #638257;
  --leaf-light: #8ba274;
  --rust: #a85b32;
  --rust-light: #c67b49;
  --gold: #dda92d;
  --cream: #f5ead5;
  --paper: #fbf5e8;
  --sand: #d8c39b;
  --white: #fffdf7;
  --line: rgba(32, 59, 42, .18);
  --shadow: 0 20px 55px rgba(29, 48, 34, .13);
  --radius: 26px;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Nunito Sans", system-ui, sans-serif;
  --script: "Caveat", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 105px 0; }
.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  margin: 10px;
  padding: 10px 16px;
  background: var(--white);
  z-index: 100;
}

.announcement {
  min-height: 34px;
  padding: 7px 18px;
  background: var(--forest-deep);
  color: var(--cream);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.announcement i { color: var(--gold); font-style: normal; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(251, 245, 232, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--forest); }
.brand-mark { width: 50px; flex: 0 0 50px; }
.brand-text { display: grid; line-height: .92; }
.brand-text small { font-family: var(--script); font-size: 1rem; margin-left: 2px; }
.brand-text strong { font-family: var(--serif); font-size: 1.47rem; font-weight: 400; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a:not(.button) { text-decoration: none; font-size: .9rem; font-weight: 800; }
.site-nav > a:not(.button):hover { color: var(--rust); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle > span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px; background: var(--forest); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 23px;
  border: 2px solid var(--forest);
  background: var(--forest);
  color: var(--white);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--sand);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--sand); background: var(--forest-deep); }
.button-small { min-height: 42px; padding: 8px 17px; box-shadow: none; }
.button-rust { background: var(--rust); border-color: var(--rust); box-shadow: 5px 5px 0 rgba(24, 51, 34, .35); }
.button-rust:hover { background: #8e492a; box-shadow: 8px 8px 0 rgba(24, 51, 34, .35); }
.text-link { font-weight: 900; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.eyebrow {
  margin: 0 0 13px;
  color: var(--rust);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.light { color: #f2c779; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.06; }
h1, h2 { font-family: var(--serif); font-weight: 400; }
h1 { margin-bottom: 24px; font-size: clamp(3.35rem, 7vw, 6.7rem); letter-spacing: -.045em; }
h2 { margin-bottom: 22px; font-size: clamp(2.65rem, 5vw, 4.65rem); letter-spacing: -.035em; }
h1 em, h2 em { color: var(--rust); font-weight: 400; }
h3 { margin-bottom: 14px; font-size: 1.42rem; }

.hero { position: relative; padding: 82px 0 95px; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -250px;
  top: -140px;
  border-radius: 50%;
  border: 1px solid rgba(99, 130, 87, .16);
  box-shadow: 0 0 0 70px rgba(99, 130, 87, .04), 0 0 0 140px rgba(99, 130, 87, .025);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 58px; }
.hero-copy { position: relative; z-index: 2; }
.hero-text { max-width: 690px; margin-bottom: 29px; font-size: 1.15rem; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 52px; border-top: 1px solid var(--line); }
.hero-proof div { padding: 22px 18px 0 0; }
.hero-proof div + div { padding-left: 22px; border-left: 1px solid var(--line); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { margin-bottom: 2px; color: var(--forest); font-size: .92rem; }
.hero-proof span { color: rgba(32, 59, 42, .68); font-size: .76rem; line-height: 1.35; }
.hero-leaf { position: absolute; color: var(--leaf); opacity: .18; font-size: 5rem; }
.hero-leaf-one { left: 2.5%; top: 12%; transform: rotate(-18deg); }
.hero-leaf-two { left: 45%; bottom: 4%; transform: rotate(20deg); }

.poster-card {
  position: relative;
  padding: 22px 23px 18px;
  background: #e6c77c;
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 18px 18px 0 var(--forest), var(--shadow);
  transform: rotate(1.2deg);
  overflow: hidden;
}
.poster-card::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 16px, rgba(64, 58, 34, .025) 16px 17px); }
.poster-topline, .poster-caption { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.poster-topline { padding-bottom: 10px; border-bottom: 3px solid var(--ink); font-size: .67rem; }
.poster-caption { padding-top: 11px; border-top: 3px solid var(--ink); font-size: .7rem; }
.poster-caption strong { font-size: .86rem; }
.sun { position: absolute; top: 75px; right: 45px; width: 120px; height: 120px; border-radius: 50%; background: #e9af2d; opacity: .72; }
.garden-illustration { position: relative; z-index: 1; width: 100%; }

.marquee { overflow: hidden; background: var(--rust); color: var(--white); border-block: 3px solid var(--ink); transform: rotate(-.5deg) scale(1.01); }
.marquee-track { display: flex; width: max-content; gap: 28px; align-items: center; padding: 12px 0; animation: marquee 28s linear infinite; font-family: var(--serif); font-size: 1.14rem; }
.marquee-track i { color: #f2c779; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.intro-section { padding-bottom: 35px; }
.intro-grid { max-width: 900px; text-align: center; }
.intro-grid p:last-child { max-width: 720px; margin: 0 auto; font-size: 1.1rem; }

.section-heading { display: grid; grid-template-columns: 1.2fr .65fr; gap: 70px; align-items: end; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 400px; margin-bottom: 8px; color: rgba(32, 59, 42, .72); font-size: 1.05rem; }

.services-section { padding-top: 70px; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.service-card {
  position: relative;
  grid-column: span 2;
  min-height: 360px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .7);
  box-shadow: 0 12px 35px rgba(29, 48, 34, .06);
  overflow: hidden;
}
.service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 3; min-height: 315px; }
.service-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -45px; bottom: -45px; border-radius: 50%; background: rgba(99, 130, 87, .09); }
.service-featured { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.service-number { position: absolute; top: 28px; right: 29px; color: var(--rust); font-family: var(--serif); font-size: 1.15rem; }
.service-featured .service-number { color: #f2c779; }
.service-card h3 { margin-top: 29px; font-size: 1.55rem; }
.service-card p { color: rgba(32, 59, 42, .76); }
.service-featured p { color: rgba(245, 234, 213, .78); }
.service-card ul { padding-left: 18px; margin: 19px 0 0; font-size: .9rem; font-weight: 800; }
.service-card li { margin: 4px 0; }
.service-icon { width: 68px; height: 68px; display: grid; place-items: center; color: var(--forest); background: #ead9b8; border: 2px solid var(--ink); border-radius: 50%; font-size: 2rem; }
.service-featured .service-icon { background: #e9c86f; }
.icon-build { position: relative; border-radius: 10px; }
.icon-build span { width: 42px; height: 24px; background: var(--rust); border: 2px solid var(--ink); }
.icon-build i { position: absolute; width: 5px; height: 18px; bottom: 8px; background: var(--ink); }
.icon-build i:nth-child(2) { left: 19px; }
.icon-build i:nth-child(3) { right: 19px; }
.icon-tower { position: relative; }
.icon-tower span { width: 19px; height: 47px; border: 2px solid var(--ink); background: var(--white); clip-path: polygon(10% 0, 90% 0, 75% 100%, 25% 100%); }
.icon-tower i, .icon-tower b { position: absolute; color: var(--leaf); font-style: normal; }
.icon-tower i { left: 8px; top: 14px; transform: rotate(-35deg); }
.icon-tower b { right: 7px; bottom: 12px; transform: rotate(35deg); }
.icon-plants { display: flex; gap: 1px; align-items: center; font-size: 1.55rem; }
.icon-plants span:nth-child(2) { transform: translateY(-7px); color: var(--leaf); }
.icon-care { font-size: 2.8rem; font-weight: 900; }

.path-section { background: #ead9b8; border-block: 1px solid var(--line); }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.path-card { display: flex; flex-direction: column; min-height: 300px; padding: 32px; background: var(--paper); border: 2px solid var(--ink); border-radius: 6px; box-shadow: 8px 8px 0 rgba(32, 59, 42, .14); }
.path-card > span { color: var(--rust); font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.path-card h3 { margin-top: 60px; font-family: var(--serif); font-weight: 400; font-size: 2rem; }
.path-card p { color: rgba(32, 59, 42, .75); }
.path-card a { margin-top: auto; font-weight: 900; }
.path-card-dark { background: var(--forest); color: var(--cream); box-shadow: 8px 8px 0 var(--rust); }
.path-card-dark > span { color: #f2c779; }
.path-card-dark p { color: rgba(245, 234, 213, .76); }

.garden-day-section { background: var(--forest); color: var(--cream); overflow: hidden; }
.garden-day-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.garden-day-copy h2 { font-size: clamp(3.1rem, 6vw, 5.5rem); }
.garden-day-lead { max-width: 620px; color: rgba(245, 234, 213, .78); font-size: 1.14rem; }
.garden-day-list { margin: 34px 0 38px; }
.garden-day-list > div { display: grid; grid-template-columns: 45px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(245, 234, 213, .17); }
.garden-day-list span { color: #f2c779; font-family: var(--serif); }
.garden-day-list p { margin: 0; color: rgba(245, 234, 213, .72); }
.garden-day-list strong { display: block; margin-bottom: 2px; color: var(--cream); }
.garden-day-poster { position: relative; padding: 55px 28px 30px; background: var(--cream); color: var(--ink); border: 4px solid var(--ink); box-shadow: 16px 16px 0 var(--rust); transform: rotate(-1.2deg); }
.scribble { position: absolute; top: -28px; right: 18px; color: #f2c779; font-family: var(--script); font-size: 2.8rem; transform: rotate(7deg); }
.before-after { display: grid; grid-template-columns: 1fr 42px 1fr; align-items: center; gap: 10px; }
.before, .after { min-height: 260px; display: flex; flex-direction: column; padding: 20px; border: 2px solid var(--ink); }
.before small, .after small { font-weight: 900; letter-spacing: .12em; }
.before p, .after p { margin-top: auto; margin-bottom: 0; font-weight: 800; line-height: 1.3; }
.arrow { text-align: center; font-size: 2.2rem; }
.yard-line { height: 90px; margin-top: 45px; border-bottom: 7px solid var(--leaf); position: relative; }
.yard-line::before, .yard-line::after { content: ""; position: absolute; bottom: -5px; width: 45px; height: 12px; border-top: 3px solid var(--leaf); border-radius: 50%; }
.yard-line::before { left: 5px; transform: rotate(-7deg); }
.yard-line::after { right: 5px; transform: rotate(8deg); }
.tiny-garden { position: relative; height: 145px; margin-top: 18px; display: flex; justify-content: center; align-items: flex-start; gap: 2px; color: var(--leaf); font-size: 2rem; }
.tiny-garden i { position: absolute; left: 8%; right: 8%; bottom: 30px; height: 63px; background: var(--rust-light); border: 3px solid var(--ink); }
.tiny-garden b { position: absolute; left: 18%; right: 18%; bottom: 5px; height: 30px; border-inline: 7px solid var(--ink); }
.tiny-garden span { position: relative; z-index: 2; }
.stamp { margin-top: 24px; padding: 10px; border: 3px solid var(--rust); color: var(--rust); font-weight: 900; text-align: center; letter-spacing: .08em; transform: rotate(.5deg); }

.florida-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }
.calendar-card { width: min(420px, 100%); aspect-ratio: 1 / 1.08; padding: 35px; display: flex; flex-direction: column; justify-content: space-between; background: #e7ca7e; border: 4px solid var(--ink); box-shadow: 15px 15px 0 var(--forest); transform: rotate(1.5deg); }
.calendar-card > span { font-weight: 900; letter-spacing: .13em; }
.calendar-card > strong { max-width: 280px; font-family: var(--serif); font-size: 3.2rem; font-weight: 400; line-height: .94; }
.season-dial { position: relative; width: 210px; height: 210px; margin: 0 auto; border: 4px solid var(--ink); border-radius: 50%; }
.season-dial::before, .season-dial::after { content: ""; position: absolute; background: var(--ink); }
.season-dial::before { width: 3px; top: 0; bottom: 0; left: 50%; }
.season-dial::after { height: 3px; left: 0; right: 0; top: 50%; }
.season-dial i { position: absolute; font-size: .62rem; font-style: normal; font-weight: 900; z-index: 2; }
.season-dial i:nth-child(1) { top: 34px; left: 82px; }
.season-dial i:nth-child(2) { right: 14px; top: 98px; }
.season-dial i:nth-child(3) { bottom: 33px; left: 89px; }
.season-dial i:nth-child(4) { left: 12px; top: 98px; }
.season-dial b { position: absolute; width: 7px; height: 75px; left: calc(50% - 3px); bottom: 50%; transform-origin: bottom; transform: rotate(120deg); background: var(--rust); border-radius: 8px; z-index: 3; }
.florida-copy > p:not(.eyebrow) { max-width: 650px; font-size: 1.08rem; }
.mini-benefits { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 29px; }
.mini-benefits span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-size: .82rem; font-weight: 800; }

.process-section { background: rgba(216, 195, 155, .28); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.process-grid article { padding: 30px; min-height: 240px; background: var(--white); border-top: 5px solid var(--rust); box-shadow: 0 12px 35px rgba(29, 48, 34, .07); }
.process-grid span { color: var(--rust); font-family: var(--serif); font-size: 2.2rem; }
.process-grid h3 { margin-top: 34px; }
.process-grid p { margin-bottom: 0; color: rgba(32, 59, 42, .72); }

.about-section { overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.about-art { display: grid; place-items: center; }
.about-portrait { display: block; width: min(470px, 100%); height: auto; aspect-ratio: 1; object-fit: cover; border-radius: 50%; box-shadow: 17px 17px 0 var(--rust); }
.about-copy p:not(.eyebrow) { max-width: 690px; font-size: 1.05rem; }
.about-note { padding: 20px 22px; margin: 27px 0; border-left: 5px solid var(--rust); background: rgba(216, 195, 155, .24); font-weight: 800; }

.quote-section { background: var(--forest-deep); color: var(--cream); }
.quote-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.quote-intro > p:not(.eyebrow) { max-width: 520px; color: rgba(245, 234, 213, .75); }
.form-only-note { display: grid; gap: 8px; margin-top: 35px; max-width: 520px; }
.form-only-note strong { font-weight: 900; }
.form-only-note span { color: rgba(245, 234, 213, .72); line-height: 1.6; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.quote-form { padding: 34px; background: var(--cream); color: var(--ink); border-radius: var(--radius); box-shadow: 13px 13px 0 var(--rust); }
.quote-form label { display: grid; gap: 7px; margin-bottom: 19px; font-size: .78rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid rgba(32, 59, 42, .28); border-radius: 10px; padding: 13px 14px; background: var(--white); color: var(--ink); outline: none; letter-spacing: 0; text-transform: none; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--rust); box-shadow: 0 0 0 3px rgba(168, 91, 50, .12); }
.quote-form textarea { resize: vertical; }
.form-note { margin: 17px 0 0; color: rgba(32, 59, 42, .64); font-size: .76rem; }

.site-footer { padding: 62px 0 28px; background: #14291c; color: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 65px; align-items: start; }
.footer-brand { color: var(--cream); }
.footer-links, .footer-social { display: grid; gap: 9px; }
.footer-links a, .footer-social a { color: rgba(245, 234, 213, .78); font-size: .9rem; font-weight: 800; text-decoration: none; }
.footer-links a:hover, .footer-social a:hover { color: #f2c779; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(245, 234, 213, .16); color: rgba(245, 234, 213, .52); font-size: .77rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .text-link span { transition: none; }
}

@media (max-width: 980px) {
  .hero-grid, .garden-day-grid, .florida-grid, .about-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-art { max-width: 690px; margin: 10px auto 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 3; }
  .garden-day-grid, .florida-grid, .about-grid, .quote-grid { gap: 58px; }
  .garden-day-poster { max-width: 660px; margin-inline: auto; }
  .calendar-card, .about-portrait { margin-inline: auto; }
}

@media (max-width: 780px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .nav-toggle { display: block; }
  .hero { padding-top: 55px; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div, .hero-proof div + div { padding: 15px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .path-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 6; min-height: auto; }
  .path-card { min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .wrap { width: min(100% - 26px, 1180px); }
  .section { padding: 78px 0; }
  .announcement { flex-wrap: wrap; gap: 4px 10px; font-size: .63rem; }
  .nav-wrap { min-height: 72px; }
  .brand-mark { width: 44px; flex-basis: 44px; }
  .brand-text strong { font-size: 1.25rem; }
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.65rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .poster-card { padding: 14px; box-shadow: 9px 9px 0 var(--forest); }
  .poster-topline { font-size: .5rem; }
  .poster-caption { font-size: .5rem; }
  .poster-caption strong { font-size: .56rem; }
  .sun { width: 75px; height: 75px; top: 50px; right: 25px; }
  .before-after { grid-template-columns: 1fr; }
  .arrow { transform: rotate(90deg); }
  .before, .after { min-height: 220px; }
  .garden-day-poster { padding: 45px 17px 22px; box-shadow: 9px 9px 0 var(--rust); }
  .calendar-card { padding: 22px; }
  .calendar-card > strong { font-size: 2.45rem; }
  .season-dial { width: 180px; height: 180px; }
  .season-dial i:nth-child(1) { left: 67px; }
  .season-dial i:nth-child(2) { top: 83px; }
  .season-dial i:nth-child(3) { left: 74px; }
  .season-dial i:nth-child(4) { top: 83px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 23px; box-shadow: 8px 8px 0 var(--rust); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}


/* --- Giveaway campaign --- */
.announcement-campaign a { color: var(--cream); font-weight: 900; text-underline-offset: 3px; }
.announcement-campaign a:hover { color: #f2c779; }
.nav-giveaway { color: var(--rust); }
.nav-giveaway::after { content: "✦"; margin-left: 5px; color: var(--gold); font-size: .68rem; vertical-align: 2px; }

.giveaway-strip { padding: 72px 0; background: #e7ca7e; border-block: 2px solid var(--ink); overflow: hidden; }
.giveaway-strip-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: center; }
.giveaway-strip-art { display: grid; place-items: center; }
.ticket-card { position: relative; width: min(420px, 100%); min-height: 370px; padding: 34px; display: flex; flex-direction: column; align-items: flex-start; background: var(--paper); border: 4px solid var(--ink); box-shadow: 14px 14px 0 var(--rust); transform: rotate(-2deg); overflow: hidden; }
.ticket-card::before, .ticket-card::after { content: ""; position: absolute; width: 38px; height: 38px; top: calc(50% - 19px); border-radius: 50%; background: #e7ca7e; border: 3px solid var(--ink); }
.ticket-card::before { left: -23px; } .ticket-card::after { right: -23px; }
.ticket-card .ticket-kicker { color: var(--rust); font-size: .72rem; font-weight: 900; letter-spacing: .15em; }
.ticket-card > strong { margin-top: 26px; font-family: var(--serif); font-size: clamp(2.3rem, 5vw, 4rem); line-height: .9; font-weight: 400; }
.ticket-card > em { color: var(--rust); font-family: var(--script); font-size: 2.2rem; }
.ticket-card > small { margin-top: auto; font-size: .72rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.mini-bed { position: relative; width: 100%; height: 105px; margin: 22px 0 12px; }
.mini-bed i { position: absolute; left: 4%; right: 4%; bottom: 17px; height: 50px; background: var(--rust-light); border: 3px solid var(--ink); }
.mini-bed b { position: absolute; left: 12%; right: 12%; bottom: -2px; height: 24px; border-inline: 7px solid var(--ink); }
.mini-bed-plants { position: relative; z-index: 2; display: block; text-align: center; color: var(--leaf); font-size: 2rem; letter-spacing: .2em; }
.giveaway-strip-copy > p:not(.eyebrow) { max-width: 720px; font-size: 1.05rem; }
.giveaway-strip-points { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 29px; }
.giveaway-strip-points span { padding: 8px 12px; background: rgba(255,253,247,.55); border: 1px solid rgba(32,59,42,.25); border-radius: 999px; font-size: .78rem; font-weight: 900; }

.giveaway-page { background: var(--paper); }
.giveaway-hero { position: relative; padding: 76px 0 88px; overflow: hidden; background: linear-gradient(180deg, #f9f0df 0%, var(--paper) 100%); }
.giveaway-hero::after { content:""; position:absolute; width:660px; height:660px; right:-260px; top:-210px; border:1px solid rgba(168,91,50,.17); border-radius:50%; box-shadow:0 0 0 75px rgba(168,91,50,.035),0 0 0 150px rgba(99,130,87,.035); }
.giveaway-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .96fr; gap: 70px; align-items: center; }
.campaign-badge { display: inline-block; margin-bottom: 24px; padding: 8px 13px; background: #e7ca7e; border: 2px solid var(--ink); border-radius: 2px; font-size: .7rem; font-weight: 900; letter-spacing: .13em; box-shadow: 4px 4px 0 var(--ink); transform: rotate(-1deg); }
.giveaway-lead { max-width: 700px; font-size: 1.17rem; }
.giveaway-legal-callout { display: grid; gap: 3px; max-width: 720px; margin: 28px 0; padding: 17px 20px; border-left: 5px solid var(--rust); background: rgba(216,195,155,.28); }
.giveaway-legal-callout strong { font-size: .88rem; letter-spacing: .08em; }
.giveaway-legal-callout span { color: rgba(32,59,42,.72); font-size: .88rem; }
.giveaway-confetti { position:absolute; color:var(--rust); opacity:.15; font-size:5rem; }
.giveaway-confetti-one { left:3%; top:8%; transform:rotate(-10deg); } .giveaway-confetti-two { left:48%; bottom:3%; transform:rotate(12deg); }
.giveaway-prize-poster { position: relative; padding: 17px; background: var(--rust); border: 4px solid var(--ink); box-shadow: 16px 16px 0 var(--forest); transform: rotate(1.25deg); }
.prize-poster-inner { position: relative; padding: 19px; background: #e7ca7e; border: 2px solid var(--ink); overflow: hidden; }
.prize-poster-top { display:flex; justify-content:space-between; gap:14px; font-size:.57rem; font-weight:900; letter-spacing:.13em; }
.prize-burst { position:absolute; right:20px; top:45px; width:88px; height:88px; display:grid; place-items:center; z-index:3; background:var(--rust); color:var(--cream); border:3px solid var(--ink); border-radius:50%; font-family:var(--serif); font-size:2rem; transform:rotate(9deg); box-shadow:5px 5px 0 var(--ink); }
.prize-poster-caption { display:grid; gap:2px; padding:13px 4px 3px; border-top:2px solid var(--ink); }
.prize-poster-caption span { font-size:.6rem; font-weight:900; letter-spacing:.12em; }
.prize-poster-caption strong { font-family:var(--serif); font-size:1.35rem; font-weight:400; }

.giveaway-factbar { background: var(--forest); color: var(--cream); }
.giveaway-factbar-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.giveaway-factbar-grid div { padding:25px 22px; text-align:center; border-inline-start:1px solid rgba(245,234,213,.16); }
.giveaway-factbar-grid div:last-child { border-inline-end:1px solid rgba(245,234,213,.16); }
.giveaway-factbar-grid strong,.giveaway-factbar-grid span { display:block; }
.giveaway-factbar-grid strong { color:#f2c779; font-family:var(--serif); font-size:1.75rem; font-weight:400; }
.giveaway-factbar-grid span { color:rgba(245,234,213,.68); font-size:.72rem; font-weight:800; text-transform:uppercase; letter-spacing:.06em; }

.giveaway-prize-grid { display:grid; grid-template-columns:1.04fr .96fr; gap:85px; align-items:center; }
.giveaway-prize-grid > div:first-child > p:not(.eyebrow) { max-width:690px; font-size:1.07rem; }
.prize-note { margin-top:28px; padding:20px 22px; border-left:5px solid var(--rust); background:rgba(216,195,155,.24); }
.prize-checklist { position:relative; padding:43px 32px 26px; background:var(--white); border:3px solid var(--ink); box-shadow:12px 12px 0 #e7ca7e; }
.prize-checklist .scribble { top:-34px; right:16px; color:var(--rust); }
.prize-checklist > div { display:grid; grid-template-columns:40px 1fr; gap:15px; padding:17px 0; border-top:1px solid var(--line); }
.prize-checklist > div:first-of-type { border-top:0; }
.prize-checklist b { color:var(--rust); font-family:var(--serif); font-size:1.45rem; font-weight:400; }
.prize-checklist p { margin:0; color:rgba(32,59,42,.72); }
.prize-checklist strong { display:block; color:var(--ink); }

.how-giveaway-section { background: var(--forest-deep); color: var(--cream); }
.how-giveaway-section .section-heading > p { color:rgba(245,234,213,.72); }
.giveaway-step-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:17px; }
.giveaway-step-grid article { min-height:280px; padding:27px; border:1px solid rgba(245,234,213,.2); background:rgba(245,234,213,.055); }
.giveaway-step-grid span { color:#f2c779; font-family:var(--serif); font-size:2.1rem; }
.giveaway-step-grid h3 { margin-top:48px; }
.giveaway-step-grid p { margin-bottom:0; color:rgba(245,234,213,.7); }

.entry-design-section { background:#ead9b8; border-block:1px solid var(--line); }
.entry-design-grid { display:grid; grid-template-columns:1fr 1fr; gap:75px; align-items:center; }
.entry-design-copy > p:not(.eyebrow) { max-width:680px; }
.entry-warning { padding:17px 19px; background:var(--paper); border-left:5px solid var(--rust); }
.entry-example { display:grid; grid-template-columns:1fr 48px 1fr; align-items:stretch; gap:10px; }
.entry-route { min-height:245px; padding:27px; display:flex; flex-direction:column; background:var(--paper); border:3px solid var(--ink); box-shadow:8px 8px 0 rgba(32,59,42,.12); }
.entry-route-free { background:var(--forest); color:var(--cream); box-shadow:8px 8px 0 var(--rust); }
.entry-route small { margin-bottom:45px; color:var(--rust); font-weight:900; letter-spacing:.12em; }
.entry-route-free small { color:#f2c779; }
.entry-route strong { font-family:var(--serif); font-size:1.75rem; font-weight:400; line-height:1.05; }
.entry-route p { margin-top:13px; margin-bottom:0; color:rgba(32,59,42,.7); }
.entry-route-free p { color:rgba(245,234,213,.7); }
.entry-route-arrow { display:grid; place-items:center; font-family:var(--serif); font-size:2.5rem; }

.giveaway-alert-section { background:var(--forest-deep); color:var(--cream); }
.checkbox-label { grid-template-columns:auto 1fr !important; align-items:start; gap:10px !important; text-transform:none !important; letter-spacing:0 !important; font-size:.82rem !important; }
.checkbox-label input { width:auto !important; margin-top:4px; }

.faq-grid { display:grid; grid-template-columns:.74fr 1.26fr; gap:85px; align-items:start; }
.faq-list { border-top:2px solid var(--ink); }
.faq-list details { border-bottom:1px solid var(--line); padding:0; }
.faq-list summary { position:relative; padding:21px 42px 21px 0; cursor:pointer; list-style:none; font-weight:900; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:"+"; position:absolute; right:4px; top:16px; font-family:var(--serif); font-size:1.6rem; }
.faq-list details[open] summary::after { content:"−"; }
.faq-list details p { padding:0 34px 21px 0; margin:0; color:rgba(32,59,42,.72); }

.giveaway-final-cta { position:relative; padding:92px 0; text-align:center; background:#e7ca7e; border-top:2px solid var(--ink); overflow:hidden; }
.giveaway-final-cta .wrap { position:relative; }
.giveaway-final-cta .scribble { top:-44px; left:50%; right:auto; transform:translateX(-50%) rotate(-3deg); color:var(--rust); }
.giveaway-final-cta h2 { margin-inline:auto; max-width:900px; }
.giveaway-final-cta p { margin-bottom:27px; font-weight:800; }

.rules-hero { padding:90px 0 80px; background:#e7ca7e; border-bottom:2px solid var(--ink); }
.rules-hero-inner { max-width:870px; }
.rules-hero-inner > p:not(.eyebrow) { max-width:750px; font-size:1.1rem; }
.rules-status { display:flex; flex-wrap:wrap; gap:8px 22px; margin-top:28px; padding:16px 19px; background:var(--paper); border:2px solid var(--ink); box-shadow:6px 6px 0 var(--rust); }
.rules-status strong { color:var(--rust); letter-spacing:.08em; }
.rules-layout { display:grid; grid-template-columns:250px 1fr; gap:70px; align-items:start; }
.rules-sidebar { position:sticky; top:115px; display:grid; gap:10px; padding:24px; background:rgba(216,195,155,.22); border-top:4px solid var(--rust); }
.rules-sidebar strong { margin-bottom:6px; }
.rules-sidebar a { font-size:.86rem; font-weight:800; }
.rules-content { min-width:0; }
.rules-block { padding-bottom:75px; margin-bottom:75px; border-bottom:1px solid var(--line); }
.rules-checklist { margin-top:36px; }
.rules-checklist > div { display:grid; grid-template-columns:55px 1fr; gap:18px; padding:20px 0; border-top:1px solid var(--line); }
.rules-checklist span { color:var(--rust); font-family:var(--serif); font-size:1.6rem; }
.rules-checklist p { margin:0; color:rgba(32,59,42,.72); }
.rules-checklist strong { display:block; color:var(--ink); }
.rules-block-dark { padding:45px; background:var(--forest-deep); color:var(--cream); border-bottom:0; box-shadow:12px 12px 0 var(--rust); }
.principle-list { display:grid; gap:14px; padding-left:19px; color:rgba(245,234,213,.76); }
.principle-list strong { color:var(--cream); }

@media (max-width: 1050px) {
  .giveaway-step-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 980px) {
  .giveaway-strip-grid, .giveaway-hero-grid, .giveaway-prize-grid, .entry-design-grid, .faq-grid { grid-template-columns:1fr; }
  .giveaway-strip-grid, .giveaway-hero-grid, .giveaway-prize-grid, .entry-design-grid, .faq-grid { gap:55px; }
  .giveaway-prize-poster { max-width:700px; margin-inline:auto; }
  .giveaway-strip-art { order:2; }
  .rules-layout { grid-template-columns:1fr; gap:40px; }
  .rules-sidebar { position:static; grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 700px) {
  .giveaway-factbar-grid { grid-template-columns:repeat(2,1fr); }
  .giveaway-step-grid { grid-template-columns:1fr; }
  .entry-example { grid-template-columns:1fr; }
  .entry-route-arrow { min-height:38px; }
  .ticket-card { min-height:330px; }
  .rules-sidebar { grid-template-columns:1fr; }
  .rules-block-dark { padding:28px 22px; box-shadow:8px 8px 0 var(--rust); }
}
@media (max-width: 580px) {
  .giveaway-hero { padding-top:52px; }
  .giveaway-prize-poster { padding:11px; box-shadow:9px 9px 0 var(--forest); }
  .prize-poster-inner { padding:12px; }
  .prize-burst { width:68px; height:68px; right:10px; top:36px; font-size:1.45rem; }
  .giveaway-factbar-grid div { padding:20px 12px; }
  .giveaway-factbar-grid strong { font-size:1.4rem; }
  .giveaway-strip { padding:60px 0; }
  .ticket-card { padding:26px; box-shadow:9px 9px 0 var(--rust); }
}


/* --- Photoreal asset integration update --- */
.hero-visual-card { position: relative; }
.hero-photo-frame {
  margin: 0;
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 18px 18px 0 var(--forest), var(--shadow);
  transform: rotate(1.2deg);
}
.hero-photo-frame img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.hero-product-chip {
  position: absolute;
  right: -18px;
  bottom: -30px;
  width: min(320px, 62%);
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: rgba(255,253,247,.98);
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(29,48,34,.16);
}
.hero-product-chip img { width: 100%; }
.hero-product-chip span,
.giveaway-strip-overlay span,
.giveaway-product-float span,
.about-photo-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--rust);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-product-chip strong,
.giveaway-product-float strong,
.about-photo-note strong { line-height: 1.25; font-size: .98rem; }

.service-card-media { padding-top: 170px; }
.service-card-image {
  position: absolute;
  inset: 18px 18px auto auto;
  width: 168px;
  max-width: 43%;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.16));
}
.service-featured .service-card-image { background: rgba(255,255,255,.08); border-radius: 16px; }

.giveaway-strip-card {
  position: relative;
  min-height: 360px;
  border: 4px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 16px 16px 0 rgba(32,59,42,.18);
  background: var(--ink);
}
.giveaway-strip-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.giveaway-strip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,51,34,.08) 0%, rgba(24,51,34,.75) 100%);
}
.giveaway-strip-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(251,245,232,.94);
  border: 2px solid var(--ink);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
}
.giveaway-strip-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: var(--cream);
}
.giveaway-strip-overlay strong { display: block; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem); line-height: .95; }
.giveaway-strip-overlay em { display: block; margin-top: 4px; font-style: normal; font-size: 1.2rem; color: #f2c779; }

.garden-day-visuals { display: grid; gap: 18px; }
.garden-day-shot {
  margin: 0;
  padding: 16px;
  background: var(--white);
  border: 3px solid var(--ink);
}
.garden-day-shot figcaption {
  margin-bottom: 10px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .11em;
}
.garden-day-shot-product img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.garden-day-shot-live img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 8px; }

.about-photo-stack { position: relative; width: min(500px, 100%); }
.about-photo-main {
  margin: 0;
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 16px 16px 0 var(--rust);
  transform: rotate(-1.5deg);
}
.about-photo-main img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.about-photo-note {
  position: absolute;
  right: -18px;
  bottom: -26px;
  width: min(290px, 72%);
  padding: 18px;
  background: rgba(251,245,232,.98);
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(29,48,34,.14);
}

.giveaway-photo-showcase { position: relative; }
.giveaway-photo-main {
  margin: 0;
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 16px 16px 0 rgba(168,91,50,.22), var(--shadow);
}
.giveaway-photo-main img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.giveaway-product-float {
  position: absolute;
  left: -26px;
  bottom: -42px;
  width: min(360px, 70%);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255,253,247,.98);
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(29,48,34,.16);
}
.giveaway-product-float img { width: 100%; }
.prize-cutout {
  margin: 0 0 8px;
  padding: 14px;
  background: rgba(255,253,247,.92);
  border: 2px solid var(--ink);
  border-radius: 18px;
}
.prize-cutout img { width: min(100%, 420px); margin-inline: auto; }

@media (max-width: 950px) {
  .hero-product-chip,
  .giveaway-product-float,
  .about-photo-note {
    position: static;
    width: auto;
    margin-top: 16px;
  }
  .hero-product-chip,
  .giveaway-product-float { grid-template-columns: 100px 1fr; }
}

@media (max-width: 720px) {
  .service-card-media { padding-top: 145px; }
  .service-card-image { width: 140px; max-width: 40%; }
  .giveaway-strip-card { min-height: 300px; }
  .hero-photo-frame,
  .about-photo-main,
  .giveaway-photo-main { transform: none; box-shadow: 10px 10px 0 rgba(32,59,42,.16), var(--shadow); }
  .hero-product-chip,
  .giveaway-product-float { grid-template-columns: 84px 1fr; }
}


/* --- 2026 refreshed branding + product family update --- */
.brand { gap: 13px; }
.brand-badge { width: 60px; flex: 0 0 60px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--serif); font-size: 1.38rem; font-weight: 400; letter-spacing: -.02em; }
.brand-text small { margin-top: 5px; font-family: var(--sans); font-size: .62rem; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; color: rgba(32,59,42,.68); }
.footer-brand .brand-badge { width: 64px; flex-basis: 64px; }
.footer-brand .brand-text strong { color: var(--cream); }
.footer-brand .brand-text small { color: rgba(245,234,213,.75); }

.lineup-section { padding-top: 55px; }
.lineup-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.lineup-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  background: rgba(255,253,247,.84);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(29,48,34,.06);
}
.lineup-card-wide { grid-column: span 3; }
.lineup-card-media { margin: 0; background: linear-gradient(180deg, #faf7f0 0%, #efe5d2 100%); }
.lineup-card-media img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.lineup-card-copy { padding: 22px 22px 24px; }
.lineup-card-copy h3 { margin-bottom: 8px; }
.lineup-card-copy p { margin-bottom: 0; color: rgba(32,59,42,.74); }
.lineup-spec { margin-bottom: 10px !important; color: var(--rust) !important; font-size: .88rem; font-weight: 900; letter-spacing: .03em; }
.lineup-tag {
  display: inline-flex; margin-bottom: 14px; padding: 7px 11px; border-radius: 999px; background: rgba(168,91,50,.08);
  border: 1px solid rgba(168,91,50,.2); color: var(--rust); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
}

.root-feature-section { background: var(--forest-deep); color: var(--cream); }
.root-feature-section .mini-benefits span {
  color: var(--forest-deep);
  background: var(--cream);
  border: 2px solid rgba(245, 234, 213, .35);
  padding: 9px 15px;
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .01em;
}
.root-feature-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 60px; align-items: center; }
.root-feature-copy p:not(.eyebrow) { color: rgba(245,234,213,.82); max-width: 620px; }
.root-feature-art { margin: 0; }
.root-feature-art img { width: 100%; border-radius: 26px; border: 3px solid rgba(245,234,213,.14); box-shadow: 0 18px 50px rgba(0,0,0,.25); }

.giveaway-lineup-section { padding-top: 30px; }
.lineup-grid-giveaway .lineup-card { background: var(--white); }

.site-footer { background: var(--forest-deep); }
.footer-links a, .footer-social a, .footer-bottom { color: var(--cream); }
.footer-links a { opacity: .9; }
.footer-links a:hover, .footer-social a:hover { color: #f2c779; }

@media (max-width: 950px) {
  .lineup-card, .lineup-card-wide { grid-column: span 3; }
  .root-feature-grid { grid-template-columns: 1fr; gap: 38px; }
}
@media (max-width: 720px) {
  .brand-badge { width: 54px; flex-basis: 54px; }
  .brand-text strong { font-size: 1.2rem; }
  .brand-text small { font-size: .55rem; letter-spacing: .13em; }
  .lineup-grid { grid-template-columns: 1fr; }
  .lineup-card, .lineup-card-wide { grid-column: auto; }
}

/* --- Centered scrolling logo watermark treatment --- */
.hero,
.giveaway-hero {
  isolation: isolate;
}

.hero::before,
.giveaway-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1050px, 84vw);
  aspect-ratio: 1142 / 643;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  background: url("assets/logo-watermark.png") center / contain no-repeat;
  opacity: .06;
  filter: saturate(.75);
}

.giveaway-hero::before {
  width: min(980px, 82vw);
  opacity: .05;
}

.hero-grid,
.giveaway-hero-grid {
  position: relative;
  z-index: 1;
}

@media (max-width: 950px) {
  .hero::before,
  .giveaway-hero::before {
    width: min(900px, 118vw);
    top: 45%;
    opacity: .045;
  }
}

@media (max-width: 720px) {
  .hero::before,
  .giveaway-hero::before {
    width: 135vw;
    top: 39%;
    opacity: .032;
  }
}
