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

* {
  margin: 0;
}

:root {
  --ink: #10110f;
  --ink-2: #171813;
  --paper: #f7efe2;
  --muted: rgba(247, 239, 226, 0.7);
  --line: rgba(247, 239, 226, 0.16);
  --gold: #d7aa48;
  --tomato: #c94f38;
  --olive: #66705c;
  --panel: rgba(18, 19, 16, 0.74);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--paper);
  background: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 30;
  width: min(1180px, calc(100vw - 24px));
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 17, 15, 0.72);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img,
.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(215, 170, 72, 0.62);
}

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

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(247, 239, 226, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--paper);
  background: rgba(247, 239, 226, 0.08);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 239, 226, 0.06);
  color: var(--paper);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.92) 0%, rgba(10, 10, 9, 0.62) 48%, rgba(10, 10, 9, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 10, 9, 0.54) 0%, rgba(10, 10, 9, 0.16) 36%, rgba(10, 10, 9, 0.94) 100%);
}

.hero-content {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 150px 0 76px;
}

.eyebrow,
.mini-label,
.footer-label {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(5rem, 17vw, 13rem);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(247, 239, 226, 0.88);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.hero-actions,
.order-actions,
.gallery-action,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #11120f;
  background: var(--paper);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--paper);
  background: rgba(247, 239, 226, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(215, 170, 72, 0.58);
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
  scroll-margin-top: 96px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section h2 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-header p,
.section-copy p,
.story-text p,
.frozen-layout p,
.location-copy p,
.order-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.intro-band {
  padding: 10px 0 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.intro-grid article,
.craft-card,
.event-details article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink-2);
}

.intro-grid article {
  min-height: 168px;
  padding: 20px;
}

.intro-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 1.12rem;
}

.intro-grid p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.story-section {
  background: linear-gradient(180deg, var(--ink) 0%, #151611 100%);
}

.story-layout,
.events-layout,
.frozen-layout,
.location-layout,
.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
}

.story-layout > *,
.events-layout > *,
.frozen-layout > *,
.location-layout > *,
.order-layout > *,
.intro-grid > *,
.craft-grid > *,
.gallery-grid > *,
.footer-grid > * {
  min-width: 0;
}

.section-copy {
  position: sticky;
  top: 110px;
}

.section-copy h2 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.8vw, 4.6rem);
  line-height: 0.98;
  text-wrap: balance;
}

.section-copy h2 + p {
  margin-top: 16px;
}

.story-text {
  display: grid;
  gap: 20px;
  font-size: 1.04rem;
}

.craft-section {
  background: var(--paper);
  color: #11120f;
}

.craft-section .eyebrow {
  color: var(--tomato);
}

.craft-section .section-header p,
.craft-card p {
  color: rgba(17, 18, 15, 0.68);
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.craft-card {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(17, 18, 15, 0.12);
}

.craft-card i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--paper);
  background: var(--tomato);
}

.craft-card h3 {
  margin-top: 28px;
  font-size: 1.35rem;
}

.craft-card p {
  margin-top: 10px;
  line-height: 1.55;
}

.gallery-section {
  background: #11120f;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 10px;
}

.gallery-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink-2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.events-section {
  background: linear-gradient(135deg, #151611, #202119);
}

.event-details {
  display: grid;
  gap: 10px;
}

.event-details article {
  padding: 20px;
}

.event-details span {
  color: var(--gold);
  font-weight: 800;
}

.event-details strong {
  display: block;
  margin-top: 8px;
  font-size: 1.1rem;
}

.event-details p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.frozen-section {
  background: var(--olive);
}

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

.frozen-layout h2,
.order-layout h2 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
  line-height: 0.98;
  text-wrap: balance;
  word-break: normal;
}

.frozen-layout p + p,
.order-copy p {
  margin-top: 16px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--paper);
  font-weight: 800;
  border-bottom: 1px solid rgba(247, 239, 226, 0.55);
}

.location-section {
  background: #151611;
}

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

.location-copy {
  display: grid;
  gap: 14px;
}

.location-copy strong {
  display: block;
  color: var(--paper);
  font-size: clamp(1.25rem, 2.8vw, 1.8rem);
  line-height: 1.2;
}

.location-actions {
  margin-top: 10px;
}

.order-section {
  background: var(--paper);
  color: #11120f;
}

.order-section .eyebrow {
  color: var(--tomato);
}

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

.order-copy p {
  color: rgba(17, 18, 15, 0.68);
  overflow-wrap: anywhere;
}

.order-copy .eyebrow {
  margin-top: 0;
  overflow-wrap: normal;
}

.order-section .btn-secondary {
  color: #11120f;
  border-color: rgba(17, 18, 15, 0.16);
  background: rgba(17, 18, 15, 0.05);
}

.order-section .btn-primary {
  color: var(--paper);
  background: #11120f;
}

.footer {
  padding: 44px 0 84px;
  border-top: 1px solid var(--line);
  background: #0c0d0b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 30px;
}

.footer p {
  margin-top: 12px;
}

.footer a:not(.footer-brand) {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: rgba(247, 239, 226, 0.72);
}

.footer a:hover {
  color: var(--gold);
}

.floating-order {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  border-radius: 999px;
  color: #11120f;
  background: var(--paper);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1100px) {
  .intro-grid,
  .craft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(16, 17, 15, 0.96);
  }

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

  .site-nav a {
    justify-content: flex-start;
    padding: 0 14px;
  }

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

  .story-layout,
  .events-layout,
  .frozen-layout,
  .location-layout,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .container,
  .hero-content {
    width: min(1180px, calc(100vw - 20px));
  }

  .site-header {
    top: 8px;
    width: min(1180px, calc(100vw - 16px));
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    padding: 132px 0 44px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 10, 9, 0.32) 0%, rgba(10, 10, 9, 0.32) 32%, rgba(10, 10, 9, 0.95) 100%);
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 5rem);
    line-height: 0.84;
  }

  .hero-actions,
  .order-actions,
  .gallery-action,
  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .section h2,
  .section-copy h2,
  .frozen-layout h2,
  .order-layout h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.05rem);
    line-height: 1;
  }

  .section-copy h2 + p {
    margin-top: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .floating-order {
    width: auto;
    height: 52px;
    padding: 0 14px;
  }
}
