:root {
  --black: #11100e;
  --charcoal: #25221f;
  --white: #ffffff;
  --ivory: #f6f3ee;
  --stone: #d8d0c4;
  --taupe: #8b8176;
  --gold: #b89a67;
  --accent: #d8912a;
  --line: rgba(17, 16, 14, 0.14);
  --content-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--black);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding:
    14px
    max(clamp(22px, 5vw, 74px), calc((100vw - var(--content-max)) / 2));
  background: linear-gradient(180deg, rgba(17, 16, 14, 0.74), rgba(17, 16, 14, 0.16));
  backdrop-filter: blur(10px);
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header::before {
  position: absolute;
  inset: 0;
  background: inherit;
  content: "";
  z-index: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(158px, 13vw, 220px);
  color: #fff;
  filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.42));
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.site-nav .nav-quote {
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-image {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.82) contrast(1.06);
}

.gourmet-hero .hero-image {
  object-position: center 56%;
  filter: saturate(0.96) contrast(1.03) brightness(1.08);
}

.event-hero .hero-image {
  object-position: center 46%;
  filter: saturate(0.9) contrast(1.04) brightness(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 44%, rgba(184, 154, 103, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(17, 16, 14, 0.18), rgba(17, 16, 14, 0.06) 34%, rgba(17, 16, 14, 0.82)),
    linear-gradient(90deg, rgba(17, 16, 14, 0.9), rgba(17, 16, 14, 0.28) 54%, rgba(17, 16, 14, 0.42));
}

.gourmet-hero .hero-overlay {
  background:
    radial-gradient(ellipse at 26% 56%, rgba(17, 16, 14, 0.74), transparent 38%),
    radial-gradient(circle at 72% 58%, rgba(216, 145, 42, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(17, 16, 14, 0.14), rgba(17, 16, 14, 0.02) 38%, rgba(17, 16, 14, 0.56)),
    linear-gradient(90deg, rgba(17, 16, 14, 0.82), rgba(17, 16, 14, 0.2) 48%, rgba(17, 16, 14, 0.16));
}

.event-hero .hero-overlay {
  background:
    radial-gradient(circle at 62% 44%, rgba(184, 154, 103, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(17, 16, 14, 0.12), rgba(17, 16, 14, 0.02) 34%, rgba(17, 16, 14, 0.58)),
    linear-gradient(90deg, rgba(17, 16, 14, 0.72), rgba(17, 16, 14, 0.18) 56%, rgba(17, 16, 14, 0.28));
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34vh;
  background: linear-gradient(180deg, transparent, rgba(17, 16, 14, 0.72));
  content: "";
  pointer-events: none;
}

.event-hero::after {
  height: 26vh;
  background: linear-gradient(180deg, transparent, rgba(17, 16, 14, 0.52));
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: max(clamp(22px, 6vw, 96px), calc((100vw - var(--content-max)) / 2));
  bottom: clamp(132px, 18vh, 204px);
  width: min(800px, calc(100% - 44px));
}

.gourmet-hero .hero-content {
  width: min(620px, calc(100% - 44px));
}

.gourmet-hero h1 {
  max-width: 620px;
  font-size: clamp(3.7rem, 5.2vw, 6.4rem);
}

.gourmet-hero .hero-copy {
  max-width: 560px;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 20px;
  font-size: clamp(4rem, 7.4vw, 8.6rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(1.9rem, 3vw, 3.6rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  line-height: 1;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.55vw, 1.38rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.hero-details {
  position: absolute;
  right: max(clamp(22px, 5vw, 74px), calc((100vw - var(--content-max)) / 2));
  bottom: 34px;
  left: max(clamp(22px, 5vw, 74px), calc((100vw - var(--content-max)) / 2));
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.76);
}

.hero-details span {
  padding: 18px 18px 0 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-cta::after {
  width: 52px;
  height: 1px;
  background: currentColor;
  content: "";
}

.text-cta.dark {
  color: var(--black);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 110px);
  padding: clamp(78px, 11vw, 146px) clamp(22px, 6vw, 96px);
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.intro-main {
  max-width: 980px;
}

.intro-main p,
.place-panel p,
.visual-break p,
.experience-grid p {
  color: var(--taupe);
  font-size: 1.04rem;
}

.place-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  min-height: 720px;
  background: var(--white);
}

.place-image,
.visual-break {
  margin: 0;
  overflow: hidden;
}

.place-image img,
.visual-break img,
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.place-panel,
.visual-break div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(62px, 8vw, 116px) clamp(24px, 6vw, 86px);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.experience-grid article {
  min-height: 360px;
  padding: clamp(38px, 5vw, 66px);
  border-right: 1px solid var(--line);
}

.experience-grid article:last-child {
  border-right: 0;
}

.experience-grid span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.conversion-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.58fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: end;
  padding:
    clamp(62px, 8vw, 112px)
    max(clamp(22px, 6vw, 96px), calc((100vw - var(--content-max)) / 2));
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.conversion-intro > * {
  min-width: 0;
}

.conversion-intro h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  line-height: 1.08;
}

.intro-card {
  border-left: 1px solid var(--line);
  padding-left: clamp(22px, 4vw, 46px);
}

.intro-card p,
.decision-copy p,
.contact p {
  color: var(--taupe);
  font-size: 1.04rem;
}

.intro-card .button {
  margin-top: 18px;
}

.intro-points {
  display: grid;
  gap: 0;
  margin: 26px 0 4px;
  border-top: 1px solid var(--line);
}

.intro-points span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-points span::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.product-menu {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding:
    clamp(66px, 9vw, 118px)
    max(clamp(22px, 6vw, 96px), calc((100vw - var(--content-max)) / 2));
  background: #171513;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.product-menu-copy h2 {
  max-width: 660px;
}

.product-menu-copy p:not(.section-kicker) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.product-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.product-board span {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.1vw, 2.35rem);
  font-weight: 600;
  line-height: 1;
}

.product-board span:nth-child(odd) {
  margin-right: clamp(18px, 3vw, 42px);
}

.product-board span:nth-child(even) {
  margin-left: clamp(18px, 3vw, 42px);
}

.product-board span::after {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.62fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: center;
  padding:
    clamp(62px, 8vw, 112px)
    max(clamp(22px, 6vw, 96px), calc((100vw - var(--content-max)) / 2));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.process-copy h2 {
  max-width: 620px;
}

.process-copy p:not(.section-kicker) {
  max-width: 540px;
  color: var(--taupe);
  font-size: 1.04rem;
}

.process-panel {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 46px);
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.process-list strong {
  color: var(--black);
  font-size: 1.05rem;
}

.choice-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 104px);
  padding:
    clamp(70px, 10vw, 132px)
    max(clamp(22px, 6vw, 96px), calc((100vw - var(--content-max)) / 2));
  background: var(--charcoal);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.choice-copy {
  align-self: center;
}

.choice-copy h2 {
  max-width: 620px;
}

.choice-copy p:not(.section-kicker) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.03rem;
}

.choice-copy .button {
  margin-top: 18px;
}

.choice-list {
  display: grid;
  align-self: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.choice-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 26px;
  padding: clamp(24px, 3vw, 38px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.choice-list span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.choice-list h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
}

.choice-list p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.decision-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  min-height: 720px;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.decision-section figure {
  margin: 0;
  overflow: hidden;
}

.decision-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.04);
}

.decision-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    clamp(62px, 8vw, 116px)
    max(clamp(24px, 6vw, 86px), calc((100vw - var(--content-max)) / 2));
}

.proof-list {
  display: grid;
  gap: 18px;
  margin-top: 12px;
}

.proof-list p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.proof-list strong {
  color: var(--black);
}

.visual-break {
  position: relative;
  min-height: 640px;
  background: var(--black);
  color: var(--white);
}

.visual-break::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 16, 14, 0.76), rgba(17, 16, 14, 0.18) 58%, rgba(17, 16, 14, 0.28));
  content: "";
}

.visual-break img {
  position: absolute;
  inset: 0;
}

.visual-break div {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 44px));
  margin-left: max(clamp(22px, 6vw, 96px), calc((100vw - var(--content-max)) / 2));
  padding-left: 0;
  padding-right: 0;
}

.visual-break p {
  color: rgba(255, 255, 255, 0.76);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px;
  width: min(var(--content-max), calc(100% - 44px));
  margin-inline: auto;
  gap: 1px;
  background: var(--black);
}

.gallery figure {
  margin: 0;
  overflow: hidden;
}

.gallery-tall {
  grid-row: auto;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  min-height: 680px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.product-feature figure {
  margin: 0;
  overflow: hidden;
}

.product-feature img,
.store-section img,
.home-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.product-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    clamp(62px, 8vw, 116px)
    max(clamp(24px, 6vw, 86px), calc((100vw - var(--content-max)) / 2));
}

.product-feature-copy p:not(.section-kicker),
.store-copy p {
  color: var(--taupe);
  font-size: 1.04rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.product-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--black);
  background: var(--ivory);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.occasion-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  padding:
    clamp(66px, 9vw, 118px)
    max(clamp(22px, 6vw, 96px), calc((100vw - var(--content-max)) / 2));
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.occasion-copy h2 {
  max-width: 640px;
}

.occasion-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.occasion-list article {
  min-height: 300px;
  padding: clamp(26px, 3.5vw, 42px);
  background: var(--white);
}

.occasion-list span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.occasion-list h3 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.15vw, 2.35rem);
}

.occasion-list p {
  margin-bottom: 0;
  color: var(--taupe);
  font-size: 1rem;
}

.product-choice {
  background: #211f1b;
}

.store-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: center;
  padding:
    clamp(70px, 10vw, 132px)
    max(clamp(22px, 6vw, 96px), calc((100vw - var(--content-max)) / 2));
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.store-copy h2 {
  max-width: 620px;
}

.store-copy p:not(.section-kicker) {
  max-width: 540px;
}

.store-section figure {
  height: clamp(360px, 44vw, 620px);
  margin: 0;
  overflow: hidden;
}

.social-proof {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  padding:
    clamp(70px, 9vw, 118px)
    max(clamp(22px, 6vw, 96px), calc((100vw - var(--content-max)) / 2));
  background: var(--white);
  color: var(--black);
  border-bottom: 1px solid var(--line);
}

.social-proof-copy {
  align-self: center;
}

.social-proof-copy h2 {
  max-width: 640px;
}

.social-proof-copy p:not(.section-kicker) {
  max-width: 540px;
  color: var(--taupe);
  font-size: 1.04rem;
}

.social-proof-copy .button {
  margin-top: 18px;
}

.social-proof-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.social-proof-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 26px;
  border-bottom: 1px solid var(--line);
  padding: clamp(24px, 3vw, 36px) 0;
}

.social-proof-list span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.social-proof-list h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
}

.social-proof-list p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--taupe);
  font-size: 1rem;
}

.product-gallery {
  grid-template-rows: 320px;
}

.home-page {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
}

.home-header {
  position: absolute;
}

.home-hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.home-hero-bg {
  width: 100%;
  height: 92vh;
  min-height: 680px;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.9) contrast(1.04);
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 16, 14, 0.22), rgba(17, 16, 14, 0.06) 30%, rgba(17, 16, 14, 0.78)),
    linear-gradient(90deg, rgba(17, 16, 14, 0.88), rgba(17, 16, 14, 0.26) 54%, rgba(17, 16, 14, 0.52));
}

.home-hero-shell {
  position: absolute;
  right: max(clamp(22px, 6vw, 96px), calc((100vw - var(--content-max)) / 2));
  bottom: clamp(44px, 7vw, 78px);
  left: max(clamp(22px, 6vw, 96px), calc((100vw - var(--content-max)) / 2));
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(330px, 0.42fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.home-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 6vw, 6.8rem);
}

.home-hero-copy p:not(.section-kicker) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.36vw, 1.25rem);
}

.home-hero-actions {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.home-hero-actions a {
  display: grid;
  gap: 10px;
  min-height: 132px;
  align-content: center;
  padding: 24px;
  background: rgba(17, 16, 14, 0.78);
  backdrop-filter: blur(10px);
}

.home-hero-actions span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-hero-actions strong {
  max-width: 280px;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  font-weight: 600;
  line-height: 1;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: end;
  padding:
    clamp(70px, 9vw, 124px)
    max(clamp(22px, 6vw, 96px), calc((100vw - var(--content-max)) / 2));
  background: var(--ivory);
  color: var(--black);
  border-bottom: 1px solid var(--line);
}

.home-intro h2 {
  max-width: 820px;
}

.home-intro > p {
  color: var(--taupe);
  font-size: 1.05rem;
}

.home-services {
  display: grid;
  background: var(--white);
  color: var(--black);
}

.home-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  min-height: 620px;
  border-bottom: 1px solid var(--line);
}

.home-service-reverse {
  grid-template-columns: minmax(360px, 0.74fr) minmax(0, 1fr);
}

.home-service-reverse figure {
  order: 2;
}

.home-service figure {
  margin: 0;
  overflow: hidden;
}

.home-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.home-service div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    clamp(54px, 7vw, 96px)
    max(clamp(24px, 6vw, 86px), calc((100vw - var(--content-max)) / 2));
}

.home-service h2 {
  max-width: 640px;
}

.home-service p:not(.section-kicker) {
  max-width: 540px;
  color: var(--taupe);
  font-size: 1.04rem;
}

.home-proof {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 104px);
  padding:
    clamp(70px, 10vw, 132px)
    max(clamp(22px, 6vw, 96px), calc((100vw - var(--content-max)) / 2));
  background: #1f1d19;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-proof-copy h2 {
  max-width: 680px;
}

.home-proof-copy p:not(.section-kicker) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.home-proof-list {
  display: grid;
  align-self: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.home-proof-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(24px, 3vw, 38px) 0;
}

.home-proof-list span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.home-proof-list h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
}

.home-proof-list p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  padding:
    clamp(66px, 9vw, 118px)
    max(clamp(22px, 6vw, 96px), calc((100vw - var(--content-max)) / 2));
  background: var(--ivory);
  color: var(--black);
  border-bottom: 1px solid var(--line);
}

.location-copy h2 {
  max-width: 520px;
  font-size: clamp(2rem, 3vw, 3.8rem);
}

.location-copy p:not(.section-kicker) {
  max-width: 540px;
  color: var(--taupe);
  font-size: 1.04rem;
}

.location-copy strong {
  color: var(--black);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button.secondary.dark {
  border-color: var(--black);
  color: var(--black);
}

.location-map {
  position: relative;
  min-height: clamp(420px, 48vw, 620px);
  overflow: hidden;
  background: var(--stone);
  box-shadow: 0 24px 80px rgba(17, 16, 14, 0.12);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: saturate(0.88) contrast(1.02);
}

.location-map::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(17, 16, 14, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  content: "";
  pointer-events: none;
}

.location-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 8px;
  width: min(380px, calc(100% - 36px));
  border: 1px solid rgba(17, 16, 14, 0.12);
  background: rgba(246, 243, 238, 0.96);
  padding: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(17, 16, 14, 0.16);
}

.location-card span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.location-card strong {
  color: var(--black);
  font-size: 1rem;
}

.location-card a {
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-contact {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding:
    clamp(66px, 9vw, 112px)
    max(clamp(22px, 8vw, 120px), calc((100vw - var(--content-max)) / 2));
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}

.home-contact > * {
  width: min(980px, 100%);
}

.home-contact p:not(.section-kicker) {
  color: var(--taupe);
  font-size: 1.04rem;
}

.home-split {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.home-door {
  position: relative;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  align-items: flex-end;
  color: var(--white);
}

.home-door + .home-door {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.home-door img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 480ms ease;
}

.home-door-events img {
  object-position: center 44%;
}

.home-door-gourmet img {
  object-position: center 42%;
}

.home-door::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 16, 14, 0.06), rgba(17, 16, 14, 0.22) 42%, rgba(17, 16, 14, 0.84)),
    linear-gradient(90deg, rgba(17, 16, 14, 0.38), rgba(17, 16, 14, 0.08));
  content: "";
}

.home-door-gourmet::after {
  background:
    linear-gradient(180deg, rgba(17, 16, 14, 0.06), rgba(17, 16, 14, 0.22) 42%, rgba(17, 16, 14, 0.84)),
    linear-gradient(270deg, rgba(17, 16, 14, 0.38), rgba(17, 16, 14, 0.08));
}

.home-door:hover img {
  transform: scale(1.035);
}

.home-door div {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 44px));
  margin: 0 auto;
  padding-bottom: clamp(92px, 12vh, 136px);
}

.home-door span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-door h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 4.2vw, 5.2rem);
  line-height: 0.94;
}

.home-door p {
  max-width: 520px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.home-door strong {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  padding: 0 22px;
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-split-contact {
  position: absolute;
  right: max(22px, calc((100vw - var(--content-max)) / 2));
  bottom: 18px;
  left: max(22px, calc((100vw - var(--content-max)) / 2));
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-split-contact span {
  color: var(--gold);
}

.home-split-contact a {
  color: var(--white);
}

.home-gateway {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr) minmax(0, 1fr);
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.gateway-panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
}

.gateway-panel img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 500ms ease;
}

.gateway-panel::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 16, 14, 0.1), rgba(17, 16, 14, 0.78)),
    linear-gradient(90deg, rgba(17, 16, 14, 0.52), rgba(17, 16, 14, 0.08));
  content: "";
}

.gateway-gourmet::after {
  background:
    linear-gradient(180deg, rgba(17, 16, 14, 0.1), rgba(17, 16, 14, 0.78)),
    linear-gradient(270deg, rgba(17, 16, 14, 0.52), rgba(17, 16, 14, 0.08));
}

.gateway-panel:hover img {
  transform: scale(1.035);
}

.gateway-panel div {
  position: absolute;
  right: clamp(22px, 4vw, 56px);
  bottom: clamp(48px, 6vh, 76px);
  left: clamp(22px, 4vw, 56px);
  z-index: 1;
}

.gateway-panel span,
.gateway-location span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gateway-panel strong {
  display: block;
  max-width: 480px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.65rem);
  font-weight: 600;
  line-height: 0.98;
}

.gateway-brand {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 100vh;
  padding: clamp(92px, 10vw, 124px) clamp(24px, 4vw, 56px) clamp(64px, 6vw, 86px);
  background:
    radial-gradient(circle at 50% 38%, rgba(216, 145, 42, 0.16), transparent 28%),
    #171512;
  text-align: center;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.48);
}

.gateway-brand img {
  width: min(190px, 58vw);
  margin-bottom: clamp(20px, 3vw, 30px);
  filter: drop-shadow(0 10px 34px rgba(0, 0, 0, 0.46));
}

.gateway-brand h1 {
  max-width: 480px;
  margin-bottom: 12px;
  font-size: clamp(2.45rem, 3.7vw, 4.5rem);
  line-height: 0.92;
}

.gateway-brand p:not(.section-kicker) {
  max-width: 390px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.04rem;
}

.gateway-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(430px, 100%);
  background: rgba(255, 255, 255, 0.18);
}

.gateway-actions a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gateway-actions a:first-child {
  background: var(--accent);
  color: var(--black);
}

.gateway-contact {
  display: grid;
  gap: 9px;
  width: min(430px, 100%);
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
}

.gateway-contact span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gateway-contact a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gateway-location {
  position: absolute;
  right: max(22px, calc((100vw - var(--content-max)) / 2));
  bottom: 14px;
  left: max(22px, calc((100vw - var(--content-max)) / 2));
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gateway-location span {
  margin: 0;
}

.gateway-location a {
  color: var(--white);
}

.home-choice {
  display: grid;
  min-height: 100vh;
  gap: clamp(28px, 5vw, 56px);
  align-content: center;
  padding:
    clamp(34px, 6vw, 72px)
    max(clamp(22px, 6vw, 96px), calc((100vw - var(--content-max)) / 2));
}

.home-logo {
  width: min(260px, 64vw);
  margin-inline: auto;
  filter: drop-shadow(0 10px 34px rgba(0, 0, 0, 0.48));
}

.home-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.home-tile {
  position: relative;
  min-height: clamp(360px, 44vw, 560px);
  overflow: hidden;
  padding: clamp(24px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.home-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 16, 14, 0.08), rgba(17, 16, 14, 0.78));
  content: "";
}

.home-tile img {
  position: absolute;
  inset: 0;
}

.home-tile span,
.home-tile strong {
  position: relative;
  z-index: 1;
}

.home-tile span {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-tile strong {
  max-width: 520px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 4rem);
  font-weight: 600;
  line-height: 1;
}

.contact {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding:
    clamp(66px, 9vw, 112px)
    max(clamp(22px, 8vw, 120px), calc((100vw - var(--content-max)) / 2));
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}

.contact > * {
  width: min(980px, 100%);
}

.contact h2 {
  max-width: 980px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  border-radius: 999px;
  padding: 0 24px;
  color: var(--black);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button-accent {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--black);
  box-shadow: 0 14px 42px rgba(216, 145, 42, 0.34);
}

.button.secondary {
  color: var(--white);
  background: transparent;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(22px, 6vw, 96px);
  background: var(--black);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero-image {
    min-height: 640px;
  }

  .hero-content {
    bottom: 128px;
  }

  .hero-details {
    grid-template-columns: 1fr;
    gap: 6px;
    bottom: 26px;
  }

  .hero-details span {
    padding-top: 0;
  }

  .intro-section,
  .place-story,
  .experience-grid,
  .conversion-intro,
  .product-menu,
  .choice-section,
  .decision-section,
  .process-section,
  .product-feature,
  .occasion-section,
  .occasion-list,
  .store-section,
  .social-proof,
  .home-intro,
  .home-service,
  .home-service-reverse,
  .home-proof,
  .location-section,
  .home-choice-grid {
    grid-template-columns: 1fr;
  }

  .choice-section {
    gap: 34px;
  }

  .place-story,
  .decision-section,
  .product-feature {
    min-height: 0;
  }

  .place-image,
  .decision-section figure,
  .product-feature figure {
    min-height: 460px;
  }

  .experience-grid article,
  .intro-card {
    border-left: 0;
    padding-left: 0;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-tall {
    grid-row: auto;
  }

  .gallery img {
    height: 240px;
  }

  .product-gallery {
    grid-template-rows: none;
  }

  .product-board span:nth-child(odd),
  .product-board span:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
  }

  .home-service,
  .home-service-reverse {
    min-height: 0;
  }

  .home-service-reverse figure {
    order: 0;
  }

  .home-service figure {
    min-height: 420px;
  }

  .home-gateway {
    grid-template-columns: 1fr;
  }

  .gateway-brand {
    order: -1;
    min-height: 72vh;
  }

  .gateway-panel,
  .gateway-panel img {
    min-height: 520px;
  }

  .gateway-location {
    position: static;
    display: grid;
    justify-items: center;
    background: var(--black);
    padding: 18px 20px 24px;
  }

  .home-split {
    grid-template-columns: 1fr;
  }

  .home-door,
  .home-door img {
    min-height: 520px;
  }

  .home-door + .home-door {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-door div {
    padding-bottom: 82px;
  }

  .home-split-contact {
    position: static;
    display: grid;
    justify-items: center;
    background: var(--black);
    padding: 18px 20px 24px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 20px;
  }

  .brand {
    width: 166px;
  }

  .hero-content {
    left: 20px;
    bottom: 132px;
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 4.1rem);
  }

  .hero-image {
    min-height: 620px;
    object-position: center 16%;
  }

  .gourmet-hero .hero-image {
    object-position: 66% center;
  }

  .event-hero .hero-image {
    object-position: 68% center;
  }

  .hero-details {
    left: 20px;
    right: 20px;
  }

  .intro-section,
  .place-panel,
  .visual-break div,
  .experience-grid article,
    .conversion-intro,
    .product-menu,
    .choice-section,
    .choice-list article,
    .decision-copy,
    .process-section,
    .product-feature-copy,
    .occasion-section,
    .store-section,
    .social-proof,
    .home-intro,
    .home-service div,
    .home-proof,
    .location-section,
    .home-contact,
    .home-choice {
    padding-left: 20px;
    padding-right: 20px;
  }

  .place-image,
  .decision-section figure,
  .product-feature figure {
    min-height: 360px;
  }

  .store-section figure,
  .home-tile {
    min-height: 320px;
  }

  .occasion-list article {
    min-height: 0;
  }

  .visual-break {
    min-height: 500px;
  }

  .gallery img {
    height: 220px;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
  }

  .button {
    width: 100%;
  }

  .product-board {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 720px;
  }

  .home-hero-bg {
    height: 720px;
    min-height: 720px;
    object-position: center 36%;
  }

  .home-hero-shell {
    left: 20px;
    right: 20px;
    grid-template-columns: 1fr;
    gap: 20px;
    bottom: 28px;
  }

  .home-hero-copy h1 {
    font-size: clamp(3.05rem, 14vw, 4.3rem);
  }

  .home-hero-actions a {
    min-height: 96px;
    padding: 18px;
  }

  .home-service figure {
    min-height: 340px;
  }

  .location-actions {
    display: grid;
  }

  .location-map {
    min-height: 420px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .text-cta {
    width: 100%;
    justify-content: center;
  }

  .footer {
    flex-direction: column;
  }

  .gateway-brand {
    min-height: 680px;
    padding: 92px 20px 46px;
  }

  .gateway-brand h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .gateway-actions {
    grid-template-columns: 1fr;
  }

  .gateway-panel,
  .gateway-panel img {
    min-height: 440px;
  }

  .gateway-panel div {
    bottom: 44px;
  }

  .gateway-location {
    gap: 12px;
  }

  .home-door,
  .home-door img {
    min-height: 430px;
  }

  .home-door div {
    padding-bottom: 44px;
  }

  .home-door h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }
}

.minimal-home {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  min-height: 100svh;
  background:
    radial-gradient(circle at 78% 18%, rgba(216, 145, 42, 0.14), transparent 28%),
    linear-gradient(135deg, #15130f, #232018);
  color: var(--white);
}

.minimal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 54px;
  padding:
    10px
    max(clamp(20px, 5vw, 72px), calc((100vw - var(--content-max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.minimal-logo {
  width: clamp(118px, 9vw, 154px);
}

.minimal-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.38));
}

.minimal-nav nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.minimal-nav nav a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--white);
}

.minimal-hero {
  display: grid;
  align-content: center;
  padding:
    clamp(16px, 3vh, 28px)
    max(clamp(20px, 7vw, 98px), calc((100vw - var(--content-max)) / 2))
    clamp(12px, 2vh, 20px);
}

.minimal-hero h1 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(2.25rem, 4.25vw, 4.65rem);
  line-height: 0.94;
}

.minimal-hero p:not(.section-kicker) {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(0.94rem, 1.2vw, 1.08rem);
}

.minimal-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.minimal-choices a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 30px);
  min-height: clamp(128px, 16vh, 172px);
  align-items: center;
  align-content: center;
  padding:
    clamp(16px, 2.4vw, 26px)
    max(clamp(20px, 7vw, 98px), calc((100vw - var(--content-max)) / 2));
  overflow: hidden;
}

.minimal-choices img {
  width: 100%;
  height: clamp(96px, 13vh, 136px);
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.minimal-choices div {
  min-width: 0;
}

.minimal-choices a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.minimal-choices a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.minimal-choices a:hover::after {
  transform: scaleX(1);
}

.minimal-choices span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
}

.minimal-choices h2 {
  margin-bottom: 2px;
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.minimal-choices p {
  max-width: 520px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.minimal-choices strong {
  color: var(--accent);
  font-size: 0.74rem;
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.minimal-actions {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.minimal-actions a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.minimal-actions a:last-child {
  border-right: 0;
}

.minimal-actions .primary {
  background: var(--accent);
  color: var(--black);
}

@media (max-width: 820px) {
  .minimal-home {
    min-height: auto;
  }

  .minimal-nav nav {
    display: none;
  }

  .minimal-hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.8rem);
  }

  .minimal-choices,
  .minimal-actions {
    grid-template-columns: 1fr;
  }

  .minimal-choices a {
    grid-template-columns: 1fr;
  }

  .minimal-choices img {
    height: 150px;
  }

  .minimal-choices a + a,
  .minimal-actions a {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
