:root {
  --cream: #f6f0e6;
  --paper: #fffaf3;
  --ink: #261f1c;
  --muted: #6f625b;
  --maroon: #7f2228;
  --maroon-dark: #5d171c;
  --line: #ded2c5;
  --tan: #cdb9a3;
  --shadow: 0 18px 46px rgba(65, 42, 31, 0.11);
  --radius: 22px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.shell { width: min(var(--shell), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 243, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(127, 34, 40, 0.08);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; min-width: 0; }
.brand-mark { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 2vw, 1.8rem); color: var(--maroon-dark); }
.brand-copy small { margin-top: 6px; font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; font-weight: 700; font-size: .95rem; }
.nav a:hover { color: var(--maroon); }
.nav-shop { border-left: 1px solid var(--line); padding-left: 26px; color: var(--maroon); }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--paper); border-radius: 999px; padding: 9px 13px; font-weight: 800; color: var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(127, 34, 40, .10), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(121, 91, 64, .12), transparent 30%),
    linear-gradient(180deg, #fbf7f0, #f4ebde);
  border-bottom: 1px solid var(--line);

}
.hero-grid { min-height: 610px; display: grid; grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr); align-items: center; gap: clamp(46px, 7vw, 92px); padding: 72px 0; position: relative; z-index: 1; }
.hero-art-wrap { display: flex; justify-content: center; }
.hero-art { width: min(455px, 100%); aspect-ratio: 1; object-fit: cover; border-radius: 50%; box-shadow: 0 28px 60px rgba(42, 25, 20, .22); }
.eyebrow { margin: 0 0 12px; color: var(--maroon); font-size: .78rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.light { color: #f0cbc7; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.03; margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(3.2rem, 6.6vw, 6.25rem); letter-spacing: -.04em; }
.hero-copy .lede { max-width: 690px; margin: 0; color: #4b403a; font-size: clamp(1.05rem, 1.5vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 20px; border-radius: 11px; font-weight: 850; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--maroon), var(--maroon-dark)); box-shadow: 0 14px 28px rgba(127,34,40,.18); }
.button-secondary { color: var(--maroon-dark); background: rgba(255,255,255,.65); border: 1px solid rgba(127,34,40,.28); }
.handoff-note { margin: 20px 0 0; max-width: 670px; font-size: .9rem; color: var(--muted); }

.section { padding: 88px 0; }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading h2, .nimbus-intro h2, .about-grid h2, .cta-wrap h2 { font-size: clamp(2.5rem, 5vw, 4.4rem); letter-spacing: -.035em; margin-bottom: 12px; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 1.05rem; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.product-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; background: var(--paper); border: 1px solid rgba(121,91,64,.17); border-radius: var(--radius); box-shadow: var(--shadow); }
.product-media { position: relative; padding: 16px 16px 0; }
.image-button { display: block; width: 100%; padding: 0; border: 0; background: #fff; cursor: zoom-in; border-radius: 16px; overflow: hidden; }
.product-image { width: 100%; aspect-ratio: 1; object-fit: contain; background: #fff; transition: transform .25s ease, opacity .18s ease; }
.image-button:hover .product-image { transform: scale(1.025); }
.view-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 10px 0 0; padding: 5px; background: #eee5d9; border-radius: 12px; }
.switch { border: 0; border-radius: 9px; padding: 7px 8px; color: #62544d; background: transparent; cursor: pointer; font-size: .78rem; font-weight: 800; }
.switch.active { color: var(--maroon-dark); background: var(--paper); box-shadow: 0 2px 8px rgba(73,50,38,.08); }
.product-copy { display: flex; flex-direction: column; flex: 1; padding: 19px 18px 18px; }
.product-copy h3 { margin-bottom: 8px; font-size: 1.4rem; }
.product-copy p { flex: 1; margin: 0 0 20px; color: var(--muted); font-size: .94rem; }
.product-link { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 12px 14px; background: var(--maroon); color: #fff; text-decoration: none; border-radius: 10px; font-weight: 850; }
.product-link:hover { background: var(--maroon-dark); }

.nimbus-section { background: #eee4d7; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.nimbus-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: end; margin-bottom: 38px; }
.nimbus-intro p:last-child { margin: 0 0 14px; color: #554a44; font-size: 1.06rem; max-width: 700px; }
.nimbus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.about-section { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.about-copy { font-size: 1.08rem; color: #4f443f; }
.about-copy p:first-child { margin-top: 6px; }
.about-copy p:last-child { margin-bottom: 0; }

.cta-section { color: #fff; background: linear-gradient(135deg, #681a20, #8f2d33); padding: 58px 0; }
.cta-wrap { display: flex; justify-content: space-between; align-items: center; gap: 38px; }
.cta-wrap h2 { margin-bottom: 8px; }
.cta-wrap p:last-child { margin: 0; color: #f1dddd; max-width: 700px; }
.button-light { background: #fffaf3; color: var(--maroon-dark); flex: none; }

.site-footer { padding: 38px 0 28px; background: #efe5d9; }
.footer-grid { display: grid; grid-template-columns: .8fr 1.3fr 1fr; gap: 34px; align-items: center; }
.footer-brand { display: grid; }
.footer-brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; color: var(--maroon-dark); }
.footer-brand span { margin-top: 2px; color: var(--muted); letter-spacing: .08em; }
.footer-grid p { margin: 0; color: var(--muted); }
.footer-links { display: flex; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.footer-links a { font-weight: 800; color: var(--maroon-dark); }
.footer-fineprint { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }

.lightbox[hidden] { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 34px; background: rgba(24,18,16,.88); }
.lightbox img { max-width: min(980px, 92vw); max-height: 86vh; object-fit: contain; border-radius: 16px; background: #fff; box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.lightbox-close { position: fixed; top: 18px; right: 22px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: #fff; color: #2e2320; font-size: 2rem; line-height: 1; cursor: pointer; }

:focus-visible { outline: 3px solid #d56d6d; outline-offset: 3px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; gap: 40px; padding: 56px 0 64px; }
  .hero-art { width: min(420px, 84vw); }
  .hero-copy { text-align: center; }
  .hero-copy .lede, .handoff-note { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nimbus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .nimbus-intro, .about-grid { grid-template-columns: 1fr; gap: 18px; }
  .cta-wrap { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1.4fr; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, var(--shell)); }
  .nav-wrap { min-height: 72px; }
  .brand-copy small { display: none; }
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; left: 14px; right: 14px; top: 64px; padding: 12px; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 10px; }
  .nav-shop { border-left: 0; border-top: 1px solid var(--line); }
  h1 { font-size: clamp(2.85rem, 13vw, 4.7rem); }
  .hero-grid { padding-top: 36px; }
  .section { padding: 66px 0; }
  .product-grid, .nimbus-grid { grid-template-columns: 1fr; }
  .product-card { max-width: 560px; width: 100%; margin-inline: auto; }
  .nimbus-intro { margin-bottom: 30px; }
  .cta-wrap { flex-direction: column; }
  .button-light { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
