:root {
  --color-forest: #1f3d32;
  --color-forest-muted: #3d5c4f;
  --color-orange: #f3703f;
  --color-orange-hover: #e05f2e;
  --color-peach: #f6b28b;
  --color-cream: #fdf8f1;
  --color-sand: #e8ddcc;
  --color-sage: #a7b79f;
  --color-sage-soft: #e7eee4;
  --color-white: #ffffff;
  --color-star: #e8b84a;
  --font-display: "Nunito", ui-rounded, sans-serif;
  --font-body: "Manrope", ui-sans-serif, sans-serif;
  --font-accent: "Caveat", cursive;
  --radius-card: 24px;
  --radius-image: 16px;
  --radius-pill: 999px;
  --shadow-card: 0 12px 32px rgba(31, 61, 50, 0.08);
  --width-content: 1120px;
  --button-height: 48px;
  --nav-h: 72px;
}

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

html {
  background: var(--color-cream);
  color: var(--color-forest);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-cream);
  background-image:
    radial-gradient(ellipse 70% 42% at 0% -8%, rgba(246, 178, 139, 0.28), transparent 58%),
    radial-gradient(ellipse 55% 38% at 100% 4%, rgba(167, 183, 159, 0.32), transparent 52%),
    radial-gradient(ellipse 45% 28% at 72% 100%, rgba(232, 184, 74, 0.1), transparent 55%);
}

main { flex: 1; }

::selection {
  background: var(--color-peach);
  color: var(--color-forest);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 40;
  background: var(--color-forest);
  color: var(--color-cream);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-orange); }

:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}

.word-accent { color: var(--color-orange); }

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: var(--button-height);
  font-weight: 600;
  color: var(--color-forest);
  text-decoration: none;
  text-underline-offset: 3px;
}

.text-link:hover {
  color: var(--color-orange);
  text-decoration: underline;
}

h1, h2, h3 { margin: 0 0 0.5em; }

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.15rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  line-height: 1.25;
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
}

.wrap {
  width: min(var(--width-content), calc(100% - 32px));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sage);
}

.accent {
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--color-orange);
}

.muted { color: var(--color-forest-muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 248, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-sand);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-forest);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.logo img { width: 48px; height: auto; }
.logo:hover { color: var(--color-forest); }

.nav-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 6px;
  margin-left: 4px;
  border-radius: var(--radius-pill);
  background: var(--color-peach);
  color: var(--color-forest);
  font-size: 0.75rem;
  font-weight: 700;
  vertical-align: 1px;
}

.date-row {
  display: grid;
  gap: 14px;
}

@media (min-width: 600px) {
  .date-row { grid-template-columns: 1fr 1fr; }
}

.logo .dk { color: var(--color-orange); }

.nav-toggle {
  display: inline-flex;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 600;
  color: var(--color-forest);
  cursor: pointer;
  padding: 8px 12px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--nav-h);
  background: var(--color-cream);
  padding: 8px 16px 20px;
  border-bottom: 1px solid var(--color-sand);
}

.nav-links a {
  color: var(--color-forest);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 8px;
}

.nav-links a:hover { color: var(--color-orange); }
.nav-links .btn-primary:hover { color: var(--color-white); background: var(--color-orange-hover); }

body.nav-open .nav-links { display: flex; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--button-height);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  line-height: 1;
}

.btn { transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease; }
.btn-primary { background: var(--color-orange); color: var(--color-white); }
.btn-primary:hover { background: var(--color-orange-hover); color: var(--color-white); }
.btn-secondary {
  background: var(--color-white);
  color: var(--color-forest);
  border-color: var(--color-forest);
}
.btn-secondary:hover { border-color: var(--color-orange); color: var(--color-orange); }
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; }

.hero {
  padding: 40px 0 24px;
}

.hero-grid {
  display: grid;
  gap: 28px;
}

.hero-copy p { font-size: 1.05rem; max-width: 36rem; }

.hero-note {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  color: var(--color-orange);
  margin: 8px 0 20px;
}

.hero-visual {
  position: relative;
}

.hero-visual img,
.hero-visual .photo-fallback {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  min-height: 220px;
  object-fit: cover;
  object-position: center 45%;
}

.photo-fallback {
  background:
    radial-gradient(circle at 20% 20%, #f6b28b 0, transparent 40%),
    radial-gradient(circle at 80% 10%, #e8b84a 0, transparent 28%),
    linear-gradient(160deg, #3d5c4f, #1f3d32);
  display: grid;
  place-items: center;
  color: var(--color-cream);
  padding: 32px;
  text-align: center;
}

.sticker {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--color-peach);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  line-height: 1.15;
  color: var(--color-forest);
  transform: rotate(-8deg);
  box-shadow: var(--shadow-card);
  padding: 12px;
}

section { padding: 56px 0; }

.section-head { margin-bottom: 28px; }
.section-head h2 { margin-bottom: 8px; }

.hero--list { padding-bottom: 8px; }

.cards {
  display: grid;
  gap: 20px;
}

.card {
  display: block;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card h3 { color: var(--color-forest); }

.card-cta {
  display: inline-block;
  margin-top: 4px;
  font-weight: 600;
  color: var(--color-orange);
}

.card-body { padding: 20px 22px 24px; }

.card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--color-sage-soft);
}

.card-media .badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
}

.card-media.product-shot {
  height: auto;
  aspect-ratio: 4 / 3;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-shot {
  overflow: hidden;
  background: var(--color-sage-soft);
}

.product-shot > img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  transition: transform 0.45s ease;
}

.hero-visual.product-shot {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.hero-visual.product-shot img,
.hero-visual.product-shot .photo-fallback {
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
}

.gallery .product-shot {
  border-radius: var(--radius-image);
  aspect-ratio: 4 / 3;
}

.card-media-empty {
  height: 100%;
  background: var(--color-sage-soft);
}

.gallery {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.gallery img,
.page-photo {
  width: 100%;
  border-radius: var(--radius-image);
  object-fit: cover;
}

.page-photo { margin: 8px 0 24px; max-height: 420px; width: 100%; box-shadow: var(--shadow-card); }

.price-estimate {
  font-weight: 600;
  color: var(--color-forest);
}

@media (min-width: 800px) {
  .gallery { grid-template-columns: 1fr 1fr; }
}

.badge {
  display: inline-flex;
  background: var(--color-peach);
  color: var(--color-forest);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.9rem;
  color: var(--color-forest-muted);
  margin: 12px 0;
}

.info-grid {
  display: grid;
  gap: 16px;
}

.info-card {
  background: var(--color-sage-soft);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  height: 100%;
}

.info-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--color-forest);
  font-family: var(--font-display);
  font-weight: 800;
}

.quote {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
}

.quote .mark {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-orange);
  line-height: 1;
}

.cta-band {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 36px 28px;
}

.cta-band h2 { max-width: 28rem; }

.origin { max-width: 36rem; }
.origin h2 { margin-bottom: 16px; }
.origin p { margin-bottom: 12px; }
.origin p:last-child { margin-bottom: 0; }

.origin-photos { margin-top: 28px; }

.origin-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 38%;
  border-radius: var(--radius-image);
  box-shadow: var(--shadow-card);
  margin-bottom: 12px;
}

.origin-photos .gallery img {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.origin-photos .gallery img.shot-high { object-position: 50% 0%; }
.origin-photos .gallery img.shot-low { object-position: 50% 70%; }

.site-footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--color-sand);
  margin-top: 8px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.footer-tag {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--color-sage);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 16px 0;
}

.footer-links a {
  color: var(--color-forest-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-sister a {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: 600;
}

.footer-sign {
  font-family: var(--font-accent);
  font-size: 1.55rem;
  color: var(--color-forest);
  margin: 20px 0 0;
}

.form {
  display: grid;
  gap: 14px;
  max-width: 36rem;
}

label { font-weight: 600; font-size: 0.92rem; display: grid; gap: 6px; }

input, select, textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1.5px solid var(--color-sand);
  background: var(--color-white);
  color: var(--color-forest);
  width: 100%;
}

textarea { min-height: 120px; resize: vertical; }

input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 0;
  border-color: var(--color-orange);
}

.check { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; }
.check input { width: auto; margin-top: 4px; }

.hp { position: absolute; left: -9999px; }

.alert {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fde8e0;
}

.weekend-list {
  display: grid;
  gap: 10px;
}

.weekend {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  background: var(--color-white);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
}

.weekend.is-busy { opacity: 0.45; pointer-events: none; }

.pill-ok { color: #2f6b4f; font-weight: 700; font-size: 0.85rem; }
.pill-no { color: #a65b3a; font-weight: 700; font-size: 0.85rem; }

.prose { max-width: 40rem; }
.prose p { color: var(--color-forest-muted); }

.legal-doc { max-width: 42rem; }
.legal-doc h2 {
  margin: 2rem 0 0.6rem;
  font-size: 1.15rem;
}
.legal-doc ul,
.legal-doc ol {
  margin: 0.4rem 0 1rem 1.2rem;
  color: var(--color-forest-muted);
}
.legal-doc li { margin: 0.35rem 0; }
.legal-doc code {
  font-size: 0.9em;
}

.details {
  background: var(--color-white);
  border-radius: 16px;
  padding: 4px 16px;
  box-shadow: var(--shadow-card);
  margin: 10px 0;
}

.details summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-sand);
  vertical-align: top;
}

.admin-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px; }

@media (min-width: 800px) {
  .wrap { width: min(var(--width-content), calc(100% - 48px)); }
  .nav-toggle { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    padding: 0;
    border: 0;
    background: none;
    gap: 8px 20px;
  }
  .hero { padding: 72px 0 48px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 48px; }
  .cards { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .info-grid { grid-template-columns: repeat(3, 1fr); }
  section { padding: 88px 0; }
  .cta-band { padding: 44px 40px; }
  .sticker { width: 120px; height: 120px; font-size: 1.3rem; right: 16px; bottom: 16px; }
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(31, 61, 50, 0.12);
  }
  .card:hover .product-shot > img {
    transform: scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card,
  .product-shot > img,
  .btn,
  .cmp-banner { transition: none; }
}

.cart-board {
  display: grid;
  gap: 24px;
  margin: 8px 0 28px;
}

.cart-dates {
  max-width: none;
  padding: 20px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.cart-dates .date-row {
  margin-bottom: 8px;
}

.cart-summary {
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.cart-summary h2 {
  margin: 0 0 16px;
}

.cart-summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.cart-summary-table th,
.cart-summary-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-sand);
  text-align: left;
  vertical-align: top;
}

.cart-summary-table th:nth-child(2),
.cart-summary-table td:nth-child(2),
.cart-summary-table th:nth-child(3),
.cart-summary-table td:nth-child(3),
.cart-summary-table tfoot th,
.cart-summary-table tfoot td {
  text-align: right;
}

.cart-summary-table thead th {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-sage);
  font-weight: 700;
  border-bottom: 1px solid var(--color-sand);
}

.cart-summary-table tfoot th,
.cart-summary-table tfoot td {
  border-bottom: 0;
  padding-top: 14px;
  font-size: 1.05rem;
  color: var(--color-forest);
}

.cart-summary-save td {
  color: var(--color-forest-muted);
}

.cart-lines {
  display: grid;
  gap: 16px;
  margin: 0;
}

.cart-line {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.cart-qty {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}

.cart-qty input[type="number"] { max-width: 6rem; }

.cart-bundles { margin: 8px 0 24px; }

.cart-bundle {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--color-sand);
}

.add-form {
  margin-top: 20px;
  max-width: 28rem;
}

@media (min-width: 700px) {
  .cart-line {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }
}

.cmp-banner {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(31, 61, 50, 0.42);
  backdrop-filter: blur(6px);
  opacity: 1;
  transition: opacity 0.25s ease;
}

.cmp-banner.cmp-hidden {
  opacity: 0;
  pointer-events: none;
}

.cmp-inner {
  background: var(--color-cream);
  color: var(--color-forest);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-card);
  padding: 28px 28px 24px;
  max-width: 32rem;
  width: 100%;
  max-height: calc(100dvh - 32px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.cmp-text { flex: 1; overflow-y: auto; min-height: 0; }

.cmp-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cmp-text p {
  margin: 0;
  color: var(--color-forest-muted);
  line-height: 1.6;
}

.cmp-policy-link {
  margin-left: 4px;
  font-weight: 600;
  color: var(--color-forest);
  white-space: nowrap;
}

.cmp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cmp-btn {
  flex: 1;
  min-width: 140px;
  min-height: var(--button-height);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--color-white);
  color: var(--color-forest);
  border: 1.5px solid var(--color-forest);
}

.cmp-btn:hover { border-color: var(--color-orange); color: var(--color-orange); }

.cmp-details { margin-top: 12px; }

.cmp-details-summary {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-forest-muted);
  cursor: pointer;
  list-style: none;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cmp-details-summary::-webkit-details-marker,
.cmp-details-summary::marker { display: none; }

.cmp-cookie-groups {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-x: auto;
}

.cmp-group-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-forest-muted);
  margin: 0 0 6px;
}

.cmp-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.cmp-cookie-table th,
.cmp-cookie-table td {
  text-align: left;
  padding: 6px 10px 6px 0;
  vertical-align: top;
  border-bottom: 1px solid var(--color-sand);
}

.cmp-cookie-table code {
  font-size: 0.85em;
  background: var(--color-sage-soft);
  color: var(--color-forest);
  padding: 0.1em 0.35em;
  border-radius: 6px;
  white-space: nowrap;
}

@media (max-width: 479px) {
  .cmp-actions { flex-direction: column; }
  .cmp-btn { flex: none; width: 100%; min-width: 0; }
}
