:root {
  --ink: #231915;
  --muted: #6f6259;
  --paper: #fff9f2;
  --panel: #f6eadb;
  --flour: #fffdf8;
  --crust: #a84f26;
  --crust-dark: #79361e;
  --sage: #5e7359;
  --charcoal: #2e2925;
  --line: rgba(35, 25, 21, 0.16);
  --shadow: 0 24px 70px rgba(65, 38, 20, 0.16);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 249, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--ink);
  color: var(--flour);
  border-radius: 50%;
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--crust);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--flour);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section-band {
  padding: clamp(34px, 5.5vw, 72px) clamp(18px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  min-height: calc(100svh - 72px);
  background:
    linear-gradient(120deg, rgba(255, 249, 242, 0.98), rgba(255, 249, 242, 0.74)),
    var(--paper);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--crust);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.85rem, 5.4vw, 4.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.hero-text {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--crust);
  color: #fff;
  box-shadow: 0 12px 26px rgba(168, 79, 38, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--crust-dark);
}

.button-secondary,
.button-light {
  border-color: var(--line);
  background: var(--flour);
  color: var(--ink);
}

.button-light {
  background: rgba(255, 253, 248, 0.78);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.trust-strip div {
  padding: 18px;
  background: var(--flour);
}

.trust-strip dt {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.trust-strip dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 540px;
}

.hero-media img {
  height: min(66svh, 620px);
  min-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.drop-card {
  position: absolute;
  right: 26px;
  bottom: 26px;
  max-width: 360px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 253, 248, 0.7);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(35, 25, 21, 0.2);
}

.drop-card-label {
  margin: 0 0 6px;
  color: var(--sage);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.drop-card h2 {
  font-size: 1.55rem;
}

.drop-card p {
  margin: 10px 0 12px;
  color: var(--muted);
}

.drop-card a,
.text-link {
  color: var(--crust-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: clamp(24px, 6vw, 90px);
  padding: clamp(42px, 7vw, 86px) clamp(18px, 4vw, 56px);
  background: var(--charcoal);
  color: rgba(255, 253, 248, 0.84);
}

.intro h2,
.intro .eyebrow {
  color: var(--flour);
}

.intro p:last-child {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 56px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 720px;
}

.centered {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  background: var(--flour);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(65, 38, 20, 0.08);
}

.product-card.feature {
  grid-column: span 2;
}

.product-card img {
  height: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card.feature img {
  height: 360px;
}

.product-card div {
  padding: 20px;
}

.product-card span {
  color: var(--sage);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  margin-top: 5px;
}

.product-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.shed-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--panel);
}

.shed-media img {
  height: 620px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.shed-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.schedule {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.schedule div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(35, 25, 21, 0.18);
}

.schedule strong {
  color: var(--ink);
}

.schedule span {
  color: var(--muted);
}

.reviews {
  background: var(--flour);
}

.updates {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 500px);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: var(--flour);
}

.updates-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.facebook-frame {
  overflow: hidden;
  min-height: 620px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.facebook-frame iframe {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

figure {
  margin: 0;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

blockquote {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.18;
}

figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.order-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(18px, 4vw, 56px);
  padding: clamp(30px, 6vw, 64px);
  background: var(--sage);
  color: rgba(255, 253, 248, 0.9);
  border-radius: var(--radius);
}

.order-panel h2,
.order-panel .eyebrow {
  color: var(--flour);
}

.order-panel h2 {
  max-width: 820px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 940px;
}

details {
  background: var(--flour);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 56px);
  background: var(--charcoal);
  color: rgba(255, 253, 248, 0.88);
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 253, 248, 0.62);
}

address {
  display: grid;
  gap: 4px;
  font-style: normal;
}

address a {
  color: rgba(255, 253, 248, 0.88);
  font-weight: 700;
  text-decoration: none;
}

.copyright {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .shed-section,
  .updates {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 13ch;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media img {
    height: 560px;
  }

  .product-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card.feature {
    grid-column: span 2;
  }

  .shed-media img {
    height: 460px;
  }

  .order-panel,
  .site-footer {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .order-panel {
    flex-direction: column;
  }

  .facebook-frame {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 66px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--flour);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .hero {
    min-height: 0;
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .trust-strip,
  .product-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    display: none;
  }

  .hero-media img {
    height: 430px;
    min-height: 360px;
  }

  .drop-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .text-link {
    display: inline-block;
    margin-top: 14px;
  }

  .product-card.feature {
    grid-column: auto;
  }

  .product-card img,
  .product-card.feature img {
    height: 255px;
  }

  .facebook-frame,
  .facebook-frame iframe {
    min-height: 560px;
  }

  .facebook-frame iframe {
    height: 560px;
  }

  .schedule div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (max-width: 460px) {
  .brand small {
    display: none;
  }

  .hero-actions,
  .inline-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .shed-media img {
    height: 360px;
  }
}
