/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; }

:root {
  --cream: #FBF5EC;
  --cream-2: #F4EADB;
  --paper: #FFFCF7;
  --ink: #1F1612;
  --ink-soft: #57463E;
  --ink-mute: #8A776D;
  --caramel: #B87333;
  --caramel-deep: #8A4D1E;
  --gold: #C9A66B;
  --rose: #E8B4B8;
  --rose-soft: #F6E1DF;
  --border: rgba(31, 22, 18, 0.08);
  --shadow-sm: 0 1px 2px rgba(31, 22, 18, .06), 0 4px 12px rgba(31, 22, 18, .04);
  --shadow-md: 0 6px 18px rgba(31, 22, 18, .08), 0 24px 48px rgba(31, 22, 18, .06);
  --shadow-lg: 0 20px 50px rgba(31, 22, 18, .12), 0 40px 80px rgba(31, 22, 18, .08);
  --radius: 18px;
  --radius-sm: 10px;
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --serif-soft: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --maxw: 1200px;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}

p { margin: 0; }

em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--caramel-deep);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 600;
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--gold); }

/* ---------- Animations ---------- */
@keyframes rise {
  from { opacity: 0; transform: translate3d(0, 28px, 0); filter: blur(6px); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(3deg); }
}
@keyframes drift-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20px, -30px) scale(1.05); }
}
@keyframes marquee-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes kenburns {
  from { transform: scale(1.08); }
  to   { transform: scale(1.18); }
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); opacity: .55; }
  50%      { transform: translate(-50%, 10px); opacity: 1; }
}

.reveal {
  opacity: 0;
  animation: rise 1s cubic-bezier(.2, .8, .2, 1) forwards;
  animation-delay: var(--d, 0s);
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; }
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 245, 236, 0.78);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-2);
  box-shadow: inset 0 0 0 1px var(--border);
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.brand__name em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--caramel-deep);
  font-weight: 500;
}
.brand__name--light { color: var(--paper); }
.brand__name--light em { color: var(--rose); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.95rem;
}
.nav__links a {
  text-decoration: none;
  color: var(--ink-soft);
  position: relative;
  transition: color .25s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--caramel);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: background .25s ease, transform .25s ease;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--caramel-deep); transform: translateY(-1px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease, background .3s ease, color .3s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--caramel-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding: 0.4rem 0 0.3rem;
}
.btn--ghost:hover { color: var(--caramel-deep); transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 15% 50%, rgba(251, 245, 236, 0.95) 0%, rgba(251, 245, 236, 0.7) 35%, rgba(251, 245, 236, 0.05) 75%),
    linear-gradient(180deg, rgba(251, 245, 236, .55) 0%, rgba(251, 245, 236, .15) 50%, rgba(251, 245, 236, .65) 100%);
}
.hero__shape {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  animation: drift-slow 14s ease-in-out infinite;
}
.hero__shape--a {
  width: 360px;
  height: 360px;
  background: var(--rose-soft);
  top: -80px;
  right: -60px;
}
.hero__shape--b {
  width: 280px;
  height: 280px;
  background: #F1DCB6;
  bottom: -60px;
  left: 10%;
  animation-delay: -7s;
}
.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
  width: 100%;
}
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 600;
  line-height: 1.02;
  margin: 0.4rem 0 1.6rem;
  max-width: 14ch;
}
.hero__title span { display: block; }
.hero__title--italic {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero__title em {
  color: var(--caramel-deep);
}
.hero__lede {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-bottom: 3.2rem;
}
.hero__meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
  max-width: 540px;
}
.hero__meta > div {
  display: flex;
  flex-direction: column;
}
.hero__meta strong {
  font-family: var(--serif);
  font-size: 1.85rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero__meta span {
  font-size: 0.82rem;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border-radius: 14px;
  border: 1.5px solid var(--ink-soft);
  display: none;
  opacity: .55;
  animation: bob 2.4s ease-in-out infinite;
}
.hero__scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 2px;
  height: 8px;
  background: var(--ink-soft);
  border-radius: 2px;
  transform: translateX(-50%);
}

@media (min-width: 900px) {
  .hero__scroll { display: block; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 1.3rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .04);
}
.marquee__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee-slide 38s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--cream-2);
}
.marquee__track span:nth-child(even) { color: var(--gold); font-size: 1.2rem; }

/* ---------- Sections base ---------- */
section { position: relative; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
}
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}
.section-head__lede {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section-head--light h2,
.section-head--light .section-head__lede { color: var(--paper); }
.section-head--light .section-head__lede { color: rgba(255, 252, 247, 0.78); }

/* ---------- Story ---------- */
.story {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .story { grid-template-columns: 1fr 1fr; gap: 5rem; padding: 9rem 1.5rem 7rem; }
}
.story__media {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.story__media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.story__badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--paper);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  box-shadow: var(--shadow-md);
  animation: drift 6s ease-in-out infinite;
}
.story__badge span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  margin-bottom: 0.25rem;
}
.story__badge strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--caramel-deep);
  line-height: 1.15;
}
.story__copy h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 1.4rem;
}
.story__copy p {
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
}
.story__bullets {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--ink-soft);
}
.story__bullets li { display: flex; gap: 0.6rem; }
.story__bullets span { color: var(--caramel); font-weight: 700; }

/* ---------- Menu ---------- */
.menu {
  background: var(--paper);
  padding: 6rem 1.5rem 7rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.menu__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.8rem;
}
.card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2, .8, .2, 1);
}
.card:hover .card__img img { transform: scale(1.07); }
.card__body {
  padding: 1.5rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--caramel-deep);
  background: var(--cream-2);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
  align-self: flex-start;
  font-weight: 600;
}
.tag--gold { background: #F0E2C2; color: #7A5A1E; }
.tag--rose { background: var(--rose-soft); color: #9C5A5E; }
.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}
.card__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
}
.card__foot span {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 500;
}
.card__foot em {
  font-style: italic;
  color: var(--ink-mute);
  font-size: 0.85rem;
}

/* ---------- Process ---------- */
.process {
  background: linear-gradient(160deg, #2A1D17 0%, #1F1612 60%, #2D1A0E 100%);
  color: var(--paper);
  padding: 7rem 1.5rem 8rem;
  position: relative;
  overflow: hidden;
}
.process::before, .process::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}
.process::before {
  width: 420px; height: 420px;
  background: var(--caramel);
  top: -120px; left: -120px;
  animation: drift-slow 18s ease-in-out infinite;
}
.process::after {
  width: 360px; height: 360px;
  background: var(--rose);
  bottom: -100px; right: -100px;
  animation: drift-slow 22s ease-in-out infinite reverse;
}
.process__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.step {
  padding: 2.2rem 2rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), border-color .5s ease, background .5s ease;
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 166, 107, 0.4);
  background: rgba(255, 255, 255, 0.05);
}
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.step h3 {
  color: var(--paper);
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
}
.step p {
  color: rgba(255, 252, 247, 0.72);
  font-size: 1rem;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 7rem 1.5rem;
  background: var(--cream);
}
.testimonials__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.quote {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  margin: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}
.quote:hover { transform: translateY(-4px); }
.quote::before {
  content: "\201C";
  position: absolute;
  top: -12px;
  left: 22px;
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--caramel);
  opacity: 0.35;
}
.quote blockquote {
  margin: 0 0 1.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
}
.quote figcaption {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.quote--feature {
  background: linear-gradient(160deg, var(--rose-soft) 0%, var(--cream-2) 100%);
  border: none;
}
.quote--feature blockquote { font-size: 1.3rem; }

@media (min-width: 1024px) {
  .quote--feature { grid-row: span 1; grid-column: span 2; }
}

/* ---------- Order ---------- */
.order {
  background: linear-gradient(170deg, #1F1612 0%, #2A1D17 100%);
  color: var(--paper);
  padding: 7rem 1.5rem 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.order::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 20% 20%, rgba(184, 115, 51, 0.18) 0%, transparent 70%),
    radial-gradient(50% 50% at 90% 90%, rgba(232, 180, 184, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.order__inner { position: relative; max-width: 900px; margin: 0 auto; }
.order h2 {
  color: var(--paper);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1.2rem;
}
.order h2 em { color: var(--rose); }
.order__lede {
  color: rgba(255, 252, 247, 0.78);
  font-size: 1.1rem;
  max-width: 56ch;
  margin: 0 auto 3rem;
}
.order__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.order-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--paper);
  text-decoration: none;
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), background .4s ease, border-color .4s ease;
}
.order-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 166, 107, 0.45);
}
.order-card__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 166, 107, 0.18);
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.order-card strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  font-style: italic;
}
.order-card span {
  font-size: 0.92rem;
  color: rgba(255, 252, 247, 0.72);
}
.order__fine {
  font-size: 0.88rem;
  color: rgba(255, 252, 247, 0.55);
  letter-spacing: 0.06em;
}

/* ---------- Footer ---------- */
.foot {
  background: #15100D;
  color: var(--paper);
  padding: 4rem 1.5rem 1.5rem;
}
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 720px) {
  .foot__inner { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
}
.foot__brand p {
  margin-top: 0.8rem;
  color: rgba(255, 252, 247, 0.6);
  max-width: 36ch;
  font-size: 0.95rem;
}
.foot__col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}
.foot__col p {
  color: rgba(255, 252, 247, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}
.foot__col a {
  color: rgba(255, 252, 247, 0.85);
  text-decoration: none;
  transition: color .25s ease;
}
.foot__col a:hover { color: var(--rose); }
.foot__base {
  max-width: var(--maxw);
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 252, 247, 0.45);
}
.foot__base a {
  color: var(--rose);
  text-decoration: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .nav__links { gap: 1rem; font-size: 0.88rem; }
  .nav__links a:not(.nav__cta) { display: none; }
  .nav__cta { display: inline-flex; }
  .story__media img { height: 380px; }
  .story__badge { width: 120px; height: 120px; bottom: -18px; right: -10px; }
  .story__badge strong { font-size: 1rem; }
  .hero__meta { gap: 1.6rem; }
  .hero__meta strong { font-size: 1.5rem; }
}
