:root {
  --wine: #4b1726;
  --wine-dark: #2a0b14;
  --rose: #d9a7ad;
  --blush: #f6e9e5;
  --cream: #fffaf2;
  --gold: #c49a56;
  --ink: #241b1d;
  --white: #ffffff;
  --line: rgba(36, 27, 29, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

/* Scroll reveal — only active once JS opts in, so no-JS visitors see everything */
body.js-reveal .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
body.js-reveal .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  body.js-reveal .reveal { opacity: 1; transform: none; transition: none; }
  .g-item img, .g-item::after, .g-item figcaption { transition: none; }
}

.announcement {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  padding: .65rem 1.25rem;
  background: var(--wine-dark);
  color: var(--white);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.announcement a { color: #f6d7a8; font-weight: 700; }

.site-header {
  min-height: 90px;
  padding: 1rem clamp(1.25rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,250,242,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(75,23,38,.08);
}
.brand { display: flex; gap: .8rem; align-items: center; }
.brand-crown { color: var(--gold); font-size: 1.8rem; line-height: 1; }
.brand strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  letter-spacing: .15em;
}
.brand small {
  display: block;
  font-size: .55rem;
  letter-spacing: .28em;
  color: #74666a;
}
.nav-links { display: flex; gap: 2rem; align-items: center; font-size: .88rem; font-weight: 600; }
.nav-links > a:not(.nav-button):hover { color: var(--wine); }
.nav-button {
  background: var(--wine);
  color: white;
  padding: .8rem 1.25rem;
  border-radius: 100px;
}
.menu-toggle { display: none; }

.hero {
  min-height: 760px;
  padding: clamp(3rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(196,154,86,.28);
  border-radius: 50%;
  left: -240px;
  top: 130px;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--wine);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.05;
  margin-top: 0;
}
h1 {
  font-size: clamp(4rem, 7vw, 7.4rem);
  margin-bottom: 1.6rem;
  letter-spacing: -.05em;
}
h1 em { color: var(--wine); font-weight: 600; }
.hero-text { max-width: 610px; font-size: 1.08rem; color: #62565a; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9rem 1.45rem;
  border-radius: 999px;
  font-size: .87rem;
  font-weight: 700;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--wine); }
.button-secondary { border: 1px solid var(--wine); color: var(--wine); }
.hero-notes { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 2.4rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }

.hero-visual { position: relative; max-width: 620px; margin: auto; }
.hero-frame {
  position: relative;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 35px 80px rgba(54, 15, 28, .18);
  border-radius: 300px 300px 24px 24px;
}
.hero-frame img {
  height: 620px;
  object-fit: cover;
  border-radius: 280px 280px 12px 12px;
}
.floating-card {
  position: absolute;
  right: -45px;
  bottom: 45px;
  width: 235px;
  padding: 1.25rem;
  background: rgba(255,250,242,.96);
  box-shadow: 0 18px 35px rgba(42,11,20,.16);
  border-left: 3px solid var(--gold);
}
.floating-card span, .floating-card small { display: block; color: #75686c; font-size: .7rem; }
.floating-card strong { display: block; font-family: "Playfair Display", serif; font-size: 1.2rem; margin: .35rem 0; }
.seal {
  position: absolute;
  left: -36px;
  top: 80px;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: var(--wine);
  color: white;
  border: 6px solid var(--cream);
  display: grid;
  place-content: center;
  text-align: center;
  font-size: .62rem;
  letter-spacing: .18em;
  line-height: 1.45;
  transform: rotate(-8deg);
}
.marquee {
  overflow: hidden;
  padding: 1.15rem 0;
  background: var(--wine);
  color: #f4dba9;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  letter-spacing: .08em;
  white-space: nowrap;
}
.marquee div { width: max-content; animation: slide 25s linear infinite; }
@keyframes slide { to { transform: translateX(-50%); } }

.section { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 5vw, 5rem); }
.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}
.section-heading h2, .story h2, .occasions h2, .order h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
  letter-spacing: -.04em;
  margin-bottom: 0;
}
.section-heading > p { color: #6d6064; max-width: 480px; }

.treat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.treat-card {
  background: #f8eee9;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 340px;
  border-radius: 18px;
  overflow: hidden;
  transition: .25s ease;
}
.treat-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(75,23,38,.1); }
.treat-image { min-height: 340px; position: relative; overflow: hidden; }
.treat-image img { height: 100%; object-fit: cover; transition: .5s ease; }
.treat-card:hover img { transform: scale(1.035); }
.treat-image span {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--cream);
  color: var(--wine);
  border-radius: 100px;
  padding: .4rem .75rem;
  text-transform: uppercase;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.treat-content { padding: clamp(1.5rem, 3vw, 2.5rem); display: flex; flex-direction: column; justify-content: center; }
.treat-content .number { color: var(--gold); font-size: .73rem; letter-spacing: .18em; }
.treat-content h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: .75rem; }
.treat-content p { color: #6c5d61; }
.treat-content a { color: var(--wine); font-weight: 700; font-size: .84rem; margin-top: .5rem; }
.treat-card.featured { background: var(--wine); color: white; }
.treat-card.featured .treat-content p { color: #eadadd; }
.treat-card.featured .treat-content a { color: #f5d8a0; }

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  background: var(--blush);
}
.story-image { position: relative; }
.story-image img { height: 680px; object-fit: cover; border-radius: 280px 280px 12px 12px; }
.story-quote {
  position: absolute;
  right: -40px;
  bottom: 70px;
  max-width: 260px;
  padding: 1.3rem 1.5rem;
  background: var(--cream);
  color: var(--wine);
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-style: italic;
  box-shadow: 0 18px 40px rgba(75,23,38,.14);
}
.story-copy .lead { font-family: "Playfair Display", serif; font-size: 1.42rem; color: var(--wine); }
.story-copy > p:not(.eyebrow) { max-width: 600px; color: #605357; }
.story-points { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.story-points div { display: grid; grid-template-columns: 70px 1fr; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.story-points strong { color: var(--gold); }
.story-points span { font-weight: 600; }
.owner-note {
  margin-top: 2.5rem;
  padding: 1.6rem 1.8rem;
  background: var(--cream);
  border-radius: 4px 20px 20px 20px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 14px 34px rgba(75,23,38,.10);
}
.owner-note .eyebrow { margin-bottom: .6rem; }
.owner-note p:not(.eyebrow) {
  margin: 0;
  max-width: 600px;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--wine);
}

.gallery { background: var(--cream); }
.gallery-heading { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.gallery-heading .eyebrow { color: var(--wine); }
.gallery-heading h2 { font-size: clamp(2.6rem, 4.5vw, 4.6rem); letter-spacing: -.04em; margin-bottom: 1rem; }
.gallery-heading > p:not(.eyebrow) { color: #6d6064; margin: 0 auto; max-width: 540px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(150px, 15vw, 210px);
  gap: 1rem;
}
.g-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(75,23,38,.10);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,11,20,.55), rgba(42,11,20,0) 55%);
  opacity: 0;
  transition: opacity .35s ease;
}
.g-item figcaption {
  position: absolute;
  left: 1.15rem;
  bottom: 1.1rem;
  z-index: 2;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  letter-spacing: .01em;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after { opacity: 1; }
.g-item:hover figcaption { transform: translateY(0); opacity: 1; }
.g1 { grid-column: span 2; grid-row: span 2; }
.g2 { grid-column: span 2; grid-row: span 1; }
.g3 { grid-column: span 2; grid-row: span 2; }
.g4 { grid-column: span 2; grid-row: span 1; }
.g5 { grid-column: span 3; grid-row: span 1; }
.g6 { grid-column: span 3; grid-row: span 1; }

.occasions { background: var(--cream); }
.occasions > h2 { max-width: 850px; margin-bottom: 3rem; }
.occasion-list { border-top: 1px solid var(--line); }
.occasion-item {
  display: grid;
  grid-template-columns: 70px 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}
.occasion-item > span { color: var(--gold); font-size: .76rem; }
.occasion-item h3 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.6rem); }
.occasion-item p { color: #6b5d61; }

.testimonial {
  text-align: center;
  padding: clamp(5rem, 10vw, 9rem) 1.25rem;
  background: var(--wine-dark);
  color: white;
}
.stars { color: #efc57e; letter-spacing: .4em; }
.testimonial blockquote {
  max-width: 900px;
  margin: 1.5rem auto;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.18;
}
.testimonial p { color: #cbb9be; }

.order {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--wine);
  color: white;
  align-items: center;
}
.order .eyebrow { color: #f0cc8e; }
.order-copy > p:not(.eyebrow) { max-width: 650px; color: #eadde0; }
.order-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button-light { background: var(--cream); color: var(--wine); }
.button-outline-light { border: 1px solid rgba(255,255,255,.6); color: white; }
.order-card {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(24,4,10,.25);
}
.mini-title { text-transform: uppercase; font-size: .72rem; letter-spacing: .18em; color: var(--wine); font-weight: 700; }
.order-card ol { list-style: none; padding: 0; margin: 1.5rem 0; }
.order-card li { padding: 1rem 0; border-bottom: 1px solid var(--line); font-weight: 600; }
.order-card li span { color: var(--gold); margin-right: 1rem; font-size: .74rem; }
.location { margin-top: 2rem; padding: 1.25rem; background: var(--blush); }
.location small, .location strong { display: block; }
.location small { color: #806f73; font-size: .65rem; letter-spacing: .16em; }
.location strong { font-family: "Playfair Display", serif; font-size: 1.35rem; margin-top: .2rem; }

footer {
  padding: 4rem clamp(1.25rem, 5vw, 5rem) 1.5rem;
  background: #18070c;
  color: white;
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr;
  gap: 2rem;
}
.footer-brand strong { display: block; font-family: "Playfair Display", serif; font-size: 1.7rem; }
.footer-brand p { color: #aa979d; }
.footer-links, .footer-social { display: flex; flex-direction: column; gap: .75rem; font-size: .85rem; }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.25rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  color: #8e7c82;
  font-size: .75rem;
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .hero-notes { justify-content: center; }
  .hero-visual { width: min(90%, 620px); }
  .treat-card { grid-template-columns: 1fr; }
  .treat-image { min-height: 300px; }
}

@media (max-width: 780px) {
  .announcement { justify-content: space-between; gap: .75rem; font-size: .59rem; }
  .site-header { min-height: 76px; }
  .menu-toggle {
    display: block;
    border: 1px solid var(--wine);
    background: transparent;
    border-radius: 100px;
    padding: .55rem .85rem;
    color: var(--wine);
    font-weight: 700;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: var(--cream);
    padding: 1.25rem;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .hero { padding-top: 4rem; min-height: auto; }
  .hero-frame img { height: 480px; }
  .floating-card { right: -10px; width: 210px; }
  .seal { left: -18px; }
  .section-heading, .story, .order { grid-template-columns: 1fr; }
  .treat-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g1, .g3 { grid-column: span 2; grid-row: span 2; }
  .g2, .g4, .g5, .g6 { grid-column: span 1; grid-row: span 1; }
  .g-item figcaption { opacity: 1; transform: none; }
  .g-item::after { opacity: .35; }
  .story-image img { height: 520px; }
  .story-quote { right: -5px; }
  .occasion-item { grid-template-columns: 40px 1fr; gap: 1rem; }
  .occasion-item p { grid-column: 2; margin-top: 0; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  h1 { font-size: 3.6rem; }
  .hero-frame img { height: 390px; }
  .floating-card { position: relative; inset: auto; width: 100%; margin-top: -5px; }
  .seal { top: 45px; }
  .hero-notes { font-size: .64rem; }
  .section { padding-block: 4.5rem; }
  .story-image img { height: 430px; }
  .story-quote { bottom: 25px; max-width: 220px; }
  footer { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: .35rem; }
}
