:root {
  color-scheme: light;
  --ink: #332a22;
  --soft-ink: #5d5147;
  --paper: #fbf6ed;
  --paper-deep: #f2e5d3;
  --kraft: #b78958;
  --kraft-dark: #7a5435;
  --eucalyptus: #657760;
  --sage: #aeb79a;
  --dusty-blue: #8da6ad;
  --blush: #c48273;
  --clay: #a55f3d;
  --line: rgba(51, 42, 34, 0.18);
  --shadow: 0 18px 50px rgba(64, 48, 34, 0.16);
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, rgba(183, 137, 88, 0.035) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, var(--paper) 0%, #f8efe4 42%, #edf0ea 100%);
  font-family: "Nunito", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Laila", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  margin-bottom: 18px;
  font-family: "Style Script", "Moontime", "Breathing", "Malibu", cursive;
  font-size: 7.2rem;
  font-weight: 400;
}

h2 {
  margin-bottom: 22px;
  font-size: 3rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

p {
  color: var(--soft-ink);
  font-size: 1.02rem;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.logo-intro {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 48px 20px;
  background:
    linear-gradient(120deg, rgba(251, 246, 237, 0.82), rgba(237, 240, 234, 0.76)),
    url("assets/joy-unexpected.jpeg") center / cover;
}

.logo-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 250, 241, 0.78), rgba(255, 250, 241, 0.28) 42%, rgba(51, 42, 34, 0.18)),
    linear-gradient(180deg, rgba(255, 250, 241, 0.1), rgba(101, 119, 96, 0.22));
}

.logo-enter {
  position: relative;
  display: inline-flex;
  width: clamp(340px, 38vw, 520px);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(255, 250, 241, 0.88);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.64);
  box-shadow: 0 28px 90px rgba(64, 48, 34, 0.2);
  text-decoration: none;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.logo-enter:hover,
.logo-enter:focus-visible {
  transform: translateY(-3px) scale(1.015);
  outline: none;
}

.logo-enter img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.intro-scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  min-width: 174px;
  padding: 10px 20px;
  border: 1px solid rgba(51, 42, 34, 0.22);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.66);
  font-family: "Laila", Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.intro-scroll span {
  color: #8b4b35;
  font-size: 0.9em;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: rgba(251, 246, 237, 0.92);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(251, 246, 237, 0.92);
  border-color: var(--line);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}

.brand-mark img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(101, 119, 96, 0.12);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.nav-open .site-nav a:hover,
.site-header.nav-open .site-nav a:focus-visible {
  background: rgba(101, 119, 96, 0.12);
}

.site-nav .nav-order {
  margin-left: 4px;
  color: #fffaf1;
  background: var(--eucalyptus);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 82px 0;
  color: #fffaf1;
  background-image: url("assets/moodboard.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(41, 31, 22, 0.76), rgba(41, 31, 22, 0.42) 50%, rgba(41, 31, 22, 0.1)),
    linear-gradient(180deg, rgba(36, 29, 22, 0.18), rgba(36, 29, 22, 0.34));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: max(32px, calc((100% - 1120px) / 2));
  text-shadow: 0 2px 16px rgba(34, 27, 22, 0.45);
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 250, 241, 0.92);
  font-size: 1.18rem;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--eucalyptus);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4d3b9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 10px 24px rgba(51, 42, 34, 0.18);
}

.button.primary {
  color: #fffaf1;
  background: var(--clay);
}

.button.secondary {
  color: #fffaf1;
  border-color: rgba(255, 250, 241, 0.7);
  background: rgba(255, 250, 241, 0.08);
}

.section .button.secondary,
.closing-section .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.intro-band {
  padding: 26px 0;
  color: var(--ink);
  background: var(--eucalyptus);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 28px;
}

.intro-grid p {
  max-width: 660px;
  margin: 0;
  color: #fffaf1;
  font-family: "Laila", Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.35;
}

.intro-note {
  justify-self: end;
  max-width: 360px;
  color: rgba(255, 250, 241, 0.78);
  font-family: "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  text-align: right;
}

.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 250, 241, 0.34);
  border-radius: 6px;
  color: #fffaf1;
  background: rgba(255, 250, 241, 0.09);
  font-size: 0.9rem;
}

.section {
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: 96px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 64px;
}

.section-copy {
  max-width: 670px;
}

.section-copy p:last-child,
.section-heading p:last-child {
  margin-bottom: 0;
}

.image-panel {
  margin: 0;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 250, 241, 0.85);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.experience-section {
  background:
    linear-gradient(180deg, rgba(141, 166, 173, 0.12), rgba(174, 183, 154, 0.12)),
    rgba(255, 255, 255, 0.3);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-heading.narrow {
  max-width: 700px;
}

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

.feature-grid article {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.78);
}

.feature-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-grid p {
  margin-bottom: 0;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr;
  gap: 14px;
}

.gallery-strip img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-strip img:nth-child(2) {
  object-position: center;
}

.releases-section {
  background:
    linear-gradient(135deg, rgba(196, 130, 115, 0.1), rgba(141, 166, 173, 0.14)),
    var(--paper);
}

.release-coming-soon {
  max-width: 620px;
  text-align: center;
}

.release-coming-soon .button {
  margin-top: 10px;
}

.release-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: 56px;
}

.release-card {
  padding: 30px;
  border: 1px solid rgba(101, 119, 96, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.88), rgba(242, 229, 211, 0.78)),
    var(--paper-deep);
  box-shadow: var(--shadow);
}

.release-card h3 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.release-card p:last-of-type {
  margin-bottom: 20px;
}

.release-status {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 6px;
  color: #fffaf1;
  background: var(--eucalyptus);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.release-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.release-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(101, 119, 96, 0.24);
  border-radius: 6px;
  color: var(--soft-ink);
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
}

.ordering-section {
  background: var(--paper);
}

.split-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  padding: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(174, 183, 154, 0.2)),
    var(--paper-deep);
}

.split-band .button {
  margin-top: 8px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.area-list span {
  color: var(--ink);
  border-color: rgba(101, 119, 96, 0.28);
  background: rgba(255, 250, 241, 0.62);
}

.faq-section {
  background: linear-gradient(180deg, rgba(196, 130, 115, 0.1), rgba(255, 255, 255, 0.24));
}

.accordion-list,
.policy-grid {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.76);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  color: var(--ink);
  font-family: "Laila", Georgia, "Times New Roman", serif;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--eucalyptus);
  font-size: 1.25rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.policies-section {
  background: rgba(237, 240, 234, 0.72);
}

.policy-grid {
  grid-template-columns: 1fr;
}

.policy-copy {
  padding-bottom: 6px;
}

.policy-copy p {
  margin-bottom: 16px;
  padding-bottom: 0;
}

.policy-copy p:last-child {
  margin-bottom: 0;
}

.closing-section {
  padding: 96px 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.86), rgba(237, 240, 234, 0.86)),
    url("assets/product-grid.jpeg") center / cover;
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 360px;
  align-items: center;
  gap: 56px;
}

.closing-content {
  max-width: 720px;
}

.closing-content .eyebrow {
  color: var(--eucalyptus);
}

.closing-content p {
  color: var(--soft-ink);
}

.closing-image {
  margin: 0;
}

.closing-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 250, 241, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.release-page {
  min-height: 100svh;
  background:
    repeating-linear-gradient(0deg, rgba(183, 137, 88, 0.03) 0 1px, transparent 1px 8px),
    linear-gradient(180deg, var(--paper) 0%, #edf0ea 100%);
}

.release-detail-hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 76px 0;
  color: #fffaf1;
  background: url("assets/gift-note.jpeg") center / cover;
}

.release-detail-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(41, 31, 22, 0.78), rgba(41, 31, 22, 0.5)),
    linear-gradient(180deg, rgba(101, 119, 96, 0.16), rgba(41, 31, 22, 0.22));
}

.release-detail-content {
  position: relative;
  max-width: 760px;
}

.release-detail-content h1 {
  margin-bottom: 18px;
}

.release-detail-content p {
  max-width: 640px;
  color: rgba(255, 250, 241, 0.92);
  font-size: 1.12rem;
}

.release-logo-link {
  display: inline-flex;
  width: 96px;
  height: 96px;
  margin-bottom: 28px;
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(38, 29, 20, 0.28);
}

.release-logo-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 250, 241, 0.9);
  border-radius: 50%;
}

.release-detail-section {
  background: rgba(255, 250, 241, 0.5);
}

.release-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 24px;
}

.release-info-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.82);
}

.release-info-card.accent {
  background:
    linear-gradient(135deg, rgba(141, 166, 173, 0.16), rgba(174, 183, 154, 0.16)),
    rgba(255, 250, 241, 0.76);
}

.release-detail-list p {
  margin: 0 0 10px;
  padding: 0;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: rgba(251, 246, 237, 0.94);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 28px;
  color: var(--ink);
}

.footer-grid img {
  width: 82px;
  height: 82px;
  margin-bottom: 12px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: var(--soft-ink);
}

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

@media (max-width: 980px) {
  h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .two-column,
  .split-band,
  .intro-grid,
  .release-layout,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 18px;
  }

  .intro-note {
    justify-self: start;
    text-align: left;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: auto;
  }

  .release-layout {
    gap: 32px;
  }

  .closing-grid {
    gap: 34px;
  }

  .release-detail-grid {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-strip img:first-child {
    grid-column: 1 / -1;
  }
}

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

  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 0 14px;
  }

  .brand-mark span {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(251, 246, 237, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav .nav-order {
    margin-left: 0;
  }

  .hero {
    min-height: 78svh;
    padding: 56px 0;
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(41, 31, 22, 0.82), rgba(41, 31, 22, 0.5)),
      linear-gradient(180deg, rgba(36, 29, 22, 0.2), rgba(36, 29, 22, 0.36));
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    margin: 0 auto;
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy,
  .intro-grid p {
    font-size: 1.06rem;
  }

  .logo-enter {
    width: min(82vw, 340px);
  }

  .intro-scroll {
    bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .two-column {
    gap: 36px;
  }

  .split-band {
    padding: 28px 18px;
  }

  .release-card {
    padding: 24px 18px;
  }

  .closing-section {
    padding: 68px 0;
  }

  .closing-image {
    max-width: 340px;
  }

  .release-detail-hero {
    min-height: 70svh;
    padding: 54px 0;
  }

  .release-info-card {
    padding: 24px 18px;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip img,
  .gallery-strip img:first-child {
    grid-column: auto;
    height: 280px;
  }

  summary {
    padding: 18px 16px;
  }

  details p {
    padding: 0 16px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.98rem;
  }

  .area-list span {
    width: 100%;
  }

  .logo-enter {
    width: min(84vw, 318px);
  }

  .intro-scroll {
    min-width: 166px;
    font-size: 0.9rem;
  }
}
