:root {
  --maroon: #6d0f1e;
  --maroon-dark: #4d0a15;
  --maroon-deep: #3a0710;
  --cream: #f3e3d0;
  --cream-soft: #faf1e6;
  --ink: #2b0a0f;
  --gold: #c99a5b;
  --radius: 18px;
  --shadow: 0 20px 40px rgba(61, 10, 20, 0.12);
  --font-display: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--maroon);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(109, 15, 30, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(109, 15, 30, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
}
.btn-outline:hover { background: var(--maroon); color: var(--cream); transform: translateY(-2px); }
.btn-cream {
  background: var(--cream);
  color: var(--maroon);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
.btn-cream:hover { transform: translateY(-2px); }
.btn.full { width: 100%; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

/* Top bar */
.topbar {
  background: var(--maroon-deep);
  color: var(--cream);
  text-align: center;
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  letter-spacing: 0.02em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 241, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(109,15,30,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.brand-mark.small { width: 34px; height: 34px; font-size: 0.85rem; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.05;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav {
  display: flex;
  gap: 1.8rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a {
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.nav a:hover { color: var(--maroon); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--maroon);
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }
.nav-cta { flex-shrink: 0; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  background: var(--maroon);
  color: var(--cream);
  padding: 4.5rem 0 6rem;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.2rem;
}
.hero-copy em {
  font-style: italic;
  color: var(--gold);
}
.hero-copy p {
  font-size: 1.05rem;
  color: rgba(243, 227, 208, 0.85);
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .btn-outline { color: var(--cream); border-color: var(--cream); }
.hero .btn-outline:hover { background: var(--cream); color: var(--maroon); }

.hero-art { display: flex; justify-content: center; align-items: center; }
.hero-badge {
  width: min(360px, 80vw);
  aspect-ratio: 1;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.badge-svg { width: 100%; height: 100%; }
.badge-scallop { fill: var(--cream); }
.badge-vt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  fill: var(--maroon);
}

.hero-scallop {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--cream-soft);
  clip-path: polygon(
    0% 100%, 0% 40%,
    2.5% 60%, 5% 40%, 7.5% 60%, 10% 40%, 12.5% 60%, 15% 40%, 17.5% 60%, 20% 40%,
    22.5% 60%, 25% 40%, 27.5% 60%, 30% 40%, 32.5% 60%, 35% 40%, 37.5% 60%, 40% 40%,
    42.5% 60%, 45% 40%, 47.5% 60%, 50% 40%, 52.5% 60%, 55% 40%, 57.5% 60%, 60% 40%,
    62.5% 60%, 65% 40%, 67.5% 60%, 70% 40%, 72.5% 60%, 75% 40%, 77.5% 60%, 80% 40%,
    82.5% 60%, 85% 40%, 87.5% 60%, 90% 40%, 92.5% 60%, 95% 40%, 97.5% 60%, 100% 40%,
    100% 100%
  );
}

/* Strip */
.strip {
  background: var(--cream);
  border-bottom: 1px solid rgba(109,15,30,0.08);
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--maroon-dark);
}
.strip-item .icon { font-size: 1.3rem; color: var(--maroon); stroke-width: 1.6; }

/* About */
.about { padding: 6rem 0; background: var(--cream-soft); }
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.about-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-circle {
  width: min(320px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  box-shadow: var(--shadow);
}
.about-emoji {
  position: absolute;
  font-size: 5.5rem;
  color: var(--cream);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.25));
}
.about-emoji .icon { stroke-width: 1.2; }
.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--maroon);
  margin-bottom: 1.1rem;
}
.about-copy p {
  color: #4a2a30;
  margin-bottom: 1rem;
  max-width: 560px;
}
.link-arrow {
  color: var(--maroon);
  font-weight: 600;
  display: inline-block;
  margin-top: 0.6rem;
  transition: gap 0.2s ease;
}
.link-arrow:hover { text-decoration: underline; }

/* Section head */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--maroon);
  margin-bottom: 0.8rem;
}
.section-head p { color: #5a3a40; }
.section-head.light h2 { color: var(--cream); }
.section-head.light .eyebrow { color: var(--gold); }
.section-head.light p { color: rgba(243,227,208,0.8); }

/* Menu */
.menu { padding: 6rem 0; background: var(--cream); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.menu-card {
  background: var(--cream-soft);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(109,15,30,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(109,15,30,0.06);
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.menu-icon {
  font-size: 2.4rem;
  color: var(--maroon);
  margin-bottom: 1rem;
}
.menu-icon .icon { stroke-width: 1.4; }
.menu-card h3 {
  font-family: var(--font-display);
  color: var(--maroon);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.menu-card p {
  color: #5a3a40;
  font-size: 0.92rem;
}

/* Gallery */
.gallery { padding: 6rem 0; background: var(--maroon); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--cream);
  background: rgba(243, 227, 208, 0.1);
  border: 1px solid rgba(243, 227, 208, 0.18);
  transition: transform 0.3s ease, background 0.3s ease;
}
.gallery-item .icon { stroke-width: 1.3; }
.gallery-item:hover {
  transform: scale(1.05) rotate(-2deg);
  background: rgba(243, 227, 208, 0.18);
}

/* Reviews */
.reviews { padding: 6rem 0; background: var(--cream-soft); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 10px 24px rgba(109,15,30,0.06);
}
.review-card p {
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1rem;
}
.review-card cite {
  font-weight: 600;
  color: var(--maroon);
  font-style: normal;
  font-size: 0.9rem;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: var(--cream);
  padding: 4.5rem 0;
  text-align: center;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
}
.cta p { color: rgba(243,227,208,0.85); margin-bottom: 1.8rem; }

/* Contact */
.contact { padding: 6rem 0; background: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--maroon);
  margin-bottom: 1.6rem;
}
.info-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-list strong {
  display: block;
  color: var(--maroon-dark);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.info-list p { color: #4a2a30; font-size: 0.92rem; }
.info-list a:hover { text-decoration: underline; color: var(--maroon); }

.socials { display: flex; gap: 0.8rem; margin-top: 1.6rem; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--maroon);
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease;
}
.socials a:hover { background: var(--maroon); color: var(--cream); }

.contact-form {
  background: var(--cream-soft);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: var(--font-display);
  color: var(--maroon);
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(109,15,30,0.18);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  margin-bottom: 1rem;
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--maroon);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-note {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--maroon);
  font-weight: 600;
  min-height: 1.2em;
}

/* Footer */
.site-footer {
  background: var(--maroon-deep);
  color: rgba(243,227,208,0.75);
  padding: 2.2rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
}
.footer-links { display: flex; gap: 1.2rem; }
.footer-links a:hover { color: var(--cream); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 90;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .about-art { order: -1; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .site-header.open .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-soft);
    flex-direction: column;
    padding: 1.2rem 6%;
    gap: 1rem;
    border-bottom: 1px solid rgba(109,15,30,0.1);
  }
  .site-header.open .nav-cta {
    display: inline-block;
    position: absolute;
    top: calc(100% + 220px);
    left: 6%;
  }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-inner { justify-content: center; text-align: center; }
}
