:root {
  --bg: #f8f1e8;
  --bg-soft: #fffaf5;
  --card: rgba(255, 251, 246, 0.82);
  --text: #35231a;
  --muted: #7d675b;
  --line: rgba(89, 58, 42, 0.12);
  --accent: #6d3c26;
  --accent-soft: #b97856;
  --cocoa: #4b2d1f;
  --shadow: 0 24px 60px rgba(86, 57, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(191, 135, 103, 0.18), transparent 20%),
    linear-gradient(180deg, #fdf8f2 0%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 72%);
}

.page-shell {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 4rem;
}

.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;
}

.site-header,
.section,
.highlight-card,
.product-card,
.story__panel,
.story__notes,
.visit__card,
.visit__details {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: calc(100vw - 2rem);
  margin-left: calc(50% - 50vw + 1rem);
  margin-right: calc(50% - 50vw + 1rem);
  padding: 0.9rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 250, 245, 0.72);
  box-shadow: 0 12px 30px rgba(71, 48, 36, 0.08);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark__icon {
  width: clamp(62px, 6vw, 84px);
  height: clamp(62px, 6vw, 84px);
  overflow: hidden;
  border-radius: 50%;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(89, 58, 42, 0.08);
}

.brand-mark__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-mark__text {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav {
  display: inline-flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

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

.site-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.section {
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 3.2rem 0 2.4rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.5rem, 9vw, 6.4rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.hero__copy {
  max-width: 54ch;
  margin-top: 1.3rem;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--dark {
  color: #fff7ef;
  background: linear-gradient(135deg, #70432b, #4c2d1f);
  box-shadow: 0 14px 30px rgba(75, 45, 31, 0.2);
}

.button--light {
  color: var(--text);
  background: rgba(255, 251, 246, 0.78);
  border-color: var(--line);
}

.hero__visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-platter {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  border-radius: 36px;
  border: 1px solid rgba(89, 58, 42, 0.1);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.72), transparent 42%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.95), rgba(246, 236, 225, 0.92));
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  z-index: 3;
  width: 220px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(89, 58, 42, 0.08);
  border-radius: 20px;
  background: rgba(255, 250, 246, 0.82);
  box-shadow: 0 12px 26px rgba(68, 44, 33, 0.1);
}

.hero-card--large {
  top: 2rem;
  right: 0.5rem;
}

.hero-card span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.hero-card strong {
  font-size: 1rem;
  line-height: 1.5;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.hero-orb--one {
  width: 180px;
  height: 180px;
  top: 2rem;
  left: 0;
  background: rgba(193, 157, 130, 0.18);
}

.hero-orb--two {
  width: 140px;
  height: 140px;
  right: 2rem;
  bottom: 1rem;
  background: rgba(113, 65, 42, 0.14);
}

.truffle {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  box-shadow:
    inset 0 -12px 24px rgba(0, 0, 0, 0.12),
    inset 0 10px 16px rgba(255, 255, 255, 0.18),
    0 18px 28px rgba(75, 45, 31, 0.16);
}

.truffle::after {
  content: "";
  position: absolute;
  inset: 18% 18% auto auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  filter: blur(2px);
}

.truffle--cocoa {
  top: 21%;
  left: 20%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.14), transparent 24%),
    #543121;
}

.truffle--hazelnut {
  top: 18%;
  right: 21%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.16), transparent 24%),
    #8a5e45;
}

.truffle--coconut {
  bottom: 28%;
  left: 18%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.2), transparent 24%),
    #d7c3b0;
}

.truffle--caramel {
  bottom: 18%;
  right: 23%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.16), transparent 24%),
    #b7794e;
}

.truffle--matcha {
  top: 40%;
  left: 39%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.16), transparent 24%),
    #9ba483;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.highlight-card,
.product-card,
.story__panel,
.story__notes,
.visit__card,
.visit__details,
.experience {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.highlight-card {
  min-height: 220px;
  padding: 1.5rem;
  border-radius: 28px;
}

.highlight-card__label {
  margin-bottom: 1rem;
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.highlight-card h2 {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.collection,
.story,
.experience,
.visit {
  margin-top: 1.1rem;
}

.section-heading {
  margin-bottom: 1rem;
  padding: 0.4rem 0 0.2rem;
}

.section-heading h2 {
  max-width: none;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.15;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  padding: 1.6rem;
  border-radius: 28px;
}

.product-card__index {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-soft);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.story__panel,
.story__notes,
.visit__card,
.visit__details {
  padding: 1.8rem;
  border-radius: 30px;
}

.story__panel h2,
.visit__card h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 2.6vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.story__panel p:not(.eyebrow),
.experience__copy p:not(.eyebrow) {
  max-width: 34ch;
  font-size: 1.05rem;
}

.story__notes,
.visit__details {
  display: grid;
  gap: 1rem;
}

.note,
.detail {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.note:first-child,
.detail:first-child {
  padding-top: 0;
  border-top: 0;
}

.note span,
.detail span {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-weight: 700;
}

.experience {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.8rem;
  border-radius: 30px;
}

.experience__copy h2 {
  max-width: 12ch;
  font-size: clamp(1.85rem, 2.7vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.experience__copy p {
  max-width: 36ch;
  margin-top: 0.75rem;
}

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

.experience__stats div {
  min-width: 0;
  padding: 1rem 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(89, 58, 42, 0.08);
}

.experience__stats strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: var(--cocoa);
}

.visit__details .detail span,
.visit__details .detail p,
.experience__stats span {
  font-size: 0.95rem;
}

.visit {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.page-hero,
.catalog-card,
.split-callout__panel,
.split-callout__list,
.order-panel,
.order-sidebar,
.contact-panel,
.contact-form-panel,
.site-footer {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.page-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: end;
  padding: 2rem;
  margin-top: 0.4rem;
  border-radius: 32px;
}

.page-title {
  max-width: 11ch;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
}

.page-intro {
  max-width: 44ch;
  justify-self: end;
}

.page-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: end;
  padding: 0.35rem 0 0.25rem;
  margin-top: 0.35rem;
}

.page-hero--compact {
  padding: 1.45rem 1.6rem;
  align-items: center;
}

.page-hero--compact .page-title {
  max-width: 16ch;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.02;
}

.page-hero--compact .page-intro {
  max-width: 38ch;
  font-size: 1rem;
}

.page-header .page-title {
  max-width: 16ch;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 0.98;
}

.page-header .page-intro {
  max-width: 38ch;
  font-size: 1rem;
  justify-self: end;
}

.catalog-hero .page-title {
  max-width: 8ch;
  font-size: clamp(2.15rem, 4.2vw, 3.4rem);
  line-height: 0.98;
}

.catalog-hero .page-intro {
  max-width: 34ch;
  font-size: 1rem;
}

.catalog-grid,
.order-layout,
.contact-layout,
.split-callout,
.catalog-gallery,
.feature-banner,
.contact-card-showcase,
.home-showcase {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.catalog-gallery {
  grid-template-columns: 1.35fr 0.65fr 0.65fr;
  grid-auto-rows: 250px;
}

.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-card,
.order-panel,
.order-sidebar,
.contact-panel,
.contact-form-panel,
.split-callout__panel,
.split-callout__list,
.gallery-shot,
.feature-banner,
.contact-card-showcase,
.home-showcase__image,
.home-showcase__copy {
  padding: 1.7rem;
  border-radius: 30px;
}

.gallery-shot,
.feature-banner,
.contact-card-showcase,
.home-showcase__image,
.home-showcase__copy {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gallery-shot {
  overflow: hidden;
  padding: 0;
}

.gallery-shot--wide {
  grid-row: span 2;
}

.gallery-shot img,
.feature-banner__image img,
.contact-card-showcase__image img,
.hero-photo-frame img,
.home-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-card__tag {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(185, 120, 86, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
  max-width: 8ch;
}

.catalog-card p {
  max-width: 26ch;
  font-size: 0.98rem;
}

.catalog-card strong {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--cocoa);
  font-size: 0.98rem;
}

.catalog-card {
  padding: 1.45rem;
  min-height: 0;
}

.split-callout {
  grid-template-columns: 1.05fr 0.95fr;
}

.feature-banner,
.contact-card-showcase {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.home-showcase {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  margin-top: 1.1rem;
}

.feature-banner__image,
.contact-card-showcase__image,
.home-showcase__image {
  overflow: hidden;
  border-radius: 22px;
  min-height: 320px;
}

.feature-banner__content h2,
.contact-card-showcase__copy h2,
.home-showcase__copy h2 {
  max-width: 11ch;
  margin-bottom: 1rem;
}

.hero__visual--photo {
  min-height: 540px;
}

.hero-photo-frame {
  width: min(100%, 470px);
  margin: 0;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(89, 58, 42, 0.1);
  background: rgba(255, 250, 244, 0.95);
  box-shadow: var(--shadow);
}

.hero-photo-frame img {
  aspect-ratio: 4 / 5;
}

.split-callout__panel h2 {
  max-width: 11ch;
  margin-bottom: 1rem;
}

.split-callout__list {
  display: grid;
  gap: 1rem;
}

.order-layout,
.contact-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.order-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.order-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 600;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(89, 58, 42, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
}

.order-form textarea {
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: 2px solid rgba(109, 60, 38, 0.18);
  outline-offset: 2px;
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.4rem;
  border-radius: 999px;
}

.site-footer p {
  color: var(--text);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button {
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .story,
  .visit,
  .experience,
  .page-hero,
  .page-header,
  .split-callout,
  .feature-banner,
  .contact-card-showcase,
  .home-showcase,
  .order-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .highlights,
  .collection-grid,
  .experience__stats,
  .catalog-grid,
  .catalog-gallery {
    grid-template-columns: 1fr;
  }

  .catalog-gallery {
    grid-auto-rows: auto;
  }

  .gallery-shot--wide {
    grid-row: span 1;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero__visual {
    min-height: 420px;
    order: -1;
  }

  .experience__stats div {
    min-width: 0;
  }

  .page-intro {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 1rem, 1160px);
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    width: calc(100vw - 1rem);
    margin-left: calc(50% - 50vw + 0.5rem);
    margin-right: calc(50% - 50vw + 0.5rem);
    border-radius: 14px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
  }

  .brand-mark__text {
    font-size: 1.5rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  h1 {
    max-width: 12ch;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero-card--large {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 1rem;
    width: min(100%, 260px);
  }

  .hero-platter {
    width: 100%;
  }

  .truffle {
    width: 76px;
    height: 76px;
  }
}
