@font-face {
  font-family: "Krub";
  src: url("/fonts/krub-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Krub";
  src: url("/fonts/krub-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Krub";
  src: url("/fonts/krub-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Zen Kaku Gothic Antique";
  src: url("/fonts/zen-kaku-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Zen Kaku Gothic Antique";
  src: url("/fonts/zen-kaku-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Zen Kaku Gothic Antique";
  src: url("/fonts/zen-kaku-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Kalam";
  src: url("/fonts/kalam-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --grape: #501745;
  --grape-deep: #35102f;
  --grape-soft: #f5eef4;
  --leaf: #469c35;
  --leaf-dark: #286f27;
  --cream: #fffaf4;
  --white: #ffffff;
  --ink: #2d1b2a;
  --muted: #695d66;
  --line: #e3d5df;
  --title-font: "Krub", system-ui, sans-serif;
  --body-font: "Zen Kaku Gothic Antique", system-ui, sans-serif;
  --hand-font: "Kalam", cursive;
  --shadow: 0 22px 55px rgba(53, 16, 47, 0.14);
  --radius-small: 0.75rem;
  --radius-large: 1.75rem;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 1.0625rem;
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--grape);
  font-family: var(--title-font);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  font-weight: 700;
}

h2 {
  max-width: 16ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.15rem, 4.8vw, 4rem);
  font-weight: 700;
}

p {
  margin-bottom: 1.35rem;
}

.container {
  width: min(100% - 2.5rem, 74rem);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border-radius: 0.4rem;
  background: var(--grape);
  color: var(--white);
  font-family: var(--title-font);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(80, 23, 69, 0.1);
  background: var(--cream);
}

.header-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 9.5rem;
}

.brand {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

.brand-image {
  width: 8.75rem;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  font-family: var(--title-font);
  font-size: 0.94rem;
  font-weight: 600;
}

.primary-nav a {
  position: relative;
  padding-block: 0.8rem;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--leaf);
  content: "";
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-order {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: var(--grape);
  color: var(--white);
  font-family: var(--title-font);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 82% 22%, rgba(70, 156, 53, 0.12), transparent 24rem),
    var(--cream);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(19rem, 0.78fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--leaf-dark);
  font-family: var(--title-font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #b8e3aa;
}

.hero-lead {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1.35rem;
  border: 2px solid var(--grape);
  border-radius: 999px;
  font-family: var(--title-font);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--grape);
  color: var(--white);
}

.button-primary:hover {
  background: var(--grape-deep);
}

.button-secondary {
  background: transparent;
  color: var(--grape);
}

.button-secondary:hover {
  background: var(--grape-soft);
}

.hours-note {
  display: flex;
  max-width: 35rem;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.status-dot {
  width: 0.65rem;
  height: 0.65rem;
  flex: 0 0 auto;
  margin-top: 0.48rem;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 0.3rem rgba(70, 156, 53, 0.15);
}

.hero-visual {
  position: relative;
  width: min(100%, 29rem);
  justify-self: end;
}

.hero-visual::before {
  position: absolute;
  z-index: 0;
  top: -1.15rem;
  right: -1.15rem;
  width: 78%;
  height: 70%;
  border: 3px solid var(--leaf);
  border-radius: var(--radius-large);
  content: "";
}

.photo-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: #eadde6;
  box-shadow: var(--shadow);
}

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

.photo-frame-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  right: -1rem;
  bottom: 2.25rem;
  display: grid;
  width: 9.5rem;
  min-height: 9.5rem;
  align-content: center;
  padding: 1rem;
  border: 0.45rem solid var(--cream);
  border-radius: 50%;
  background: var(--leaf-dark);
  color: var(--white);
  text-align: center;
  transform: rotate(5deg);
}

.hero-stamp strong {
  font-family: var(--title-font);
  font-size: 1.45rem;
  line-height: 1.1;
}

.hero-stamp span {
  font-size: 0.78rem;
  line-height: 1.2;
}

.fact-band {
  padding-block: 1.6rem;
  background: var(--white);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-facts li {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4rem;
  padding-inline: clamp(0.7rem, 2vw, 2rem);
  border-right: 1px solid var(--line);
}

.quick-facts li:first-child {
  padding-left: 0;
}

.quick-facts li:last-child {
  padding-right: 0;
  border-right: 0;
}

.fact-number {
  color: var(--leaf-dark);
  font-family: var(--title-font);
  font-size: 0.8rem;
  font-weight: 700;
}

.quick-facts strong {
  display: block;
  color: var(--grape);
  font-family: var(--title-font);
  font-weight: 700;
}

.brand-pattern {
  height: 3.6rem;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='58' viewBox='0 0 160 58'%3E%3Cg fill='none' stroke-width='10'%3E%3Cpath d='M-80 5 0 42 80 5l80 37 80-37' stroke='%23501745'/%3E%3Cpath d='M-80 30 0 67l80-37 80 37 80-37' stroke='%23469c35'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-repeat: repeat-x;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  scroll-margin-top: 2rem;
}

.section-dark,
.section-order {
  background: var(--grape);
  color: var(--white);
}

.section-dark h2,
.section-order h2 {
  color: var(--white);
}

.split-layout,
.story-layout,
.store-layout,
.order-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 7vw, 7rem);
}

.section-intro > p:last-child {
  max-width: 35rem;
  color: #e7dbe4;
  font-size: 1.12rem;
}

.claim-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.claim-grid li {
  display: flex;
  min-height: 4.2rem;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 500;
}

.claim-grid span {
  color: #b8e3aa;
  font-family: var(--title-font);
  font-weight: 700;
}

.claim-disclaimer {
  margin-top: 1.25rem;
  margin-bottom: 0;
  color: #d8cad5;
  font-size: 0.83rem;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.55fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: 3.25rem;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-heading-row > p {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.cream-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-rows: repeat(2, minmax(13rem, 1fr));
  gap: 1rem;
}

.cream-card {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-small);
  background: var(--grape-soft);
}

.cream-card-tall {
  grid-row: 1 / 3;
}

.cream-card-wide {
  grid-column: 2 / 4;
}

.cream-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.cream-card:hover img {
  transform: scale(1.025);
}

.cream-card figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.55rem;
  background: rgba(255, 250, 244, 0.94);
  color: var(--grape);
  box-shadow: 0 8px 24px rgba(53, 16, 47, 0.12);
}

.cream-card figcaption span {
  color: var(--leaf-dark);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cream-card figcaption strong {
  font-family: var(--title-font);
  font-size: 1.05rem;
}

.section-soft {
  background: var(--grape-soft);
}

.story-layout {
  align-items: center;
}

.brand-panel {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-large);
  background: var(--grape);
}

.brand-panel::after {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 4.5rem;
  height: 4.5rem;
  border-right: 0.8rem solid var(--leaf);
  border-bottom: 0.8rem solid var(--leaf);
  content: "";
}

.brand-reserve {
  display: grid;
  min-height: 20rem;
  place-items: center;
  padding: 2.5rem;
  border-radius: 1rem;
  background: var(--white);
}

.brand-reserve img {
  width: min(100%, 17.5rem);
}

.handwritten {
  margin: 1.6rem 0 0;
  color: var(--white);
  font-family: var(--hand-font);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.3;
}

.story-copy > p:not(.eyebrow) {
  max-width: 35rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.symbol-list {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
}

.symbol-list div {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  padding-block: 1rem;
  border-top: 1px solid var(--line);
}

.symbol-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.symbol-list dt {
  color: var(--grape);
  font-family: var(--title-font);
  font-weight: 700;
}

.symbol-list dd {
  margin: 0;
  color: var(--muted);
}

.store-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1.15fr);
  align-items: center;
}

.store-copy > p:not(.eyebrow) {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.store-details {
  margin-block: 2rem;
  border-top: 1px solid var(--line);
  font-style: normal;
}

.store-details > div {
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.store-details span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--leaf-dark);
  font-family: var(--title-font);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-details strong,
.store-details a {
  color: var(--grape);
  font-family: var(--title-font);
  font-weight: 700;
}

.store-details p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.store-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(16rem, 1.2fr) minmax(12rem, 0.8fr);
  gap: 0.85rem;
}

.store-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-small);
}

.store-main-photo {
  grid-column: 1 / 3;
}

.section-order {
  background:
    radial-gradient(circle at 12% 88%, rgba(70, 156, 53, 0.16), transparent 25rem),
    var(--grape);
}

.order-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(24rem, 1.2fr);
  align-items: start;
}

.order-intro p:last-child {
  max-width: 34rem;
  color: #dfd2dc;
  font-size: 1.08rem;
}

.order-links {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.order-links > a {
  display: flex;
  min-height: 6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.order-links > a {
  color: var(--white);
  text-decoration: none;
  transition: padding 160ms ease, color 160ms ease;
}

.order-links > a:hover {
  padding-left: 0.75rem;
  color: #c7e9bd;
}

.order-links small,
.order-links strong {
  display: block;
}

.order-links small {
  margin-bottom: 0.15rem;
  color: #cdbfca;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-links strong {
  font-family: var(--title-font);
  font-size: 1.55rem;
}

.order-links > a > span:last-child {
  font-family: var(--title-font);
  font-size: 1.8rem;
}

.site-footer {
  padding-block: 4rem 1.5rem;
  background: var(--grape-deep);
  color: var(--white);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  width: 8.75rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem;
  border-radius: 0.7rem;
  background: var(--white);
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: #b8e3aa;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p {
  color: #dfd2dc;
}

.site-footer a {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .primary-nav {
    display: none;
  }

  .header-layout {
    grid-template-columns: 1fr auto;
  }

  .hero-layout,
  .split-layout,
  .story-layout,
  .store-layout,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(100% - 1rem, 32rem);
    justify-self: center;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .cream-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, minmax(17rem, 1fr));
  }

  .cream-card-tall,
  .cream-card-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .store-copy {
    max-width: 43rem;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 1rem;
  }

  .container {
    width: min(100% - 2rem, 74rem);
  }

  .header-layout {
    min-height: 8.4rem;
    gap: 1rem;
  }

  .brand-image {
    width: 8.75rem;
  }

  .header-order {
    min-height: 2.85rem;
    padding-inline: 1rem;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .hero-layout {
    gap: 3.5rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .quick-facts li,
  .quick-facts li:first-child,
  .quick-facts li:last-child {
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-facts li:last-child {
    border-bottom: 0;
  }

  .claim-grid,
  .cream-grid {
    grid-template-columns: 1fr;
  }

  .cream-grid {
    grid-template-rows: none;
  }

  .cream-card {
    min-height: 21rem;
  }

  .brand-panel {
    padding: 1.25rem;
  }

  .brand-reserve {
    min-height: 17rem;
    padding: 2rem;
  }

  .symbol-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .store-gallery {
    grid-template-rows: minmax(14rem, 1.15fr) minmax(10rem, 0.85fr);
  }

  .hero-stamp {
    right: -0.65rem;
    bottom: 1.2rem;
    width: 8.2rem;
    min-height: 8.2rem;
    border-width: 0.35rem;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.error-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(70, 156, 53, 0.14), transparent 25rem),
    var(--grape-soft);
}

.error-main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.error-card {
  width: min(100%, 42rem);
  padding: clamp(2rem, 6vw, 5rem);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow);
}

.error-card img {
  width: 8.75rem;
  margin-bottom: 2rem;
}

.error-card h1 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 7vw, 4.75rem);
}

.error-card > p:not(.eyebrow) {
  max-width: 31rem;
  color: var(--muted);
}
