@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Dancing+Script:wght@400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap');

/* ============ VARIABLES ============ */
:root {
  --cream: #F7F2EC;
  --off-white: #FDFBF8;
  --light-sage: #EDF0E8;
  --burgundy: #7A1530;
  --burgundy-mid: #9B2545;
  --burgundy-light: rgba(122, 21, 48, 0.06);
  --green: #2D4E1A;
  --green-mid: #3D6826;
  --green-light: rgba(45, 78, 26, 0.07);
  --charcoal: #2C2C2C;
  --warm-gray: #8A8178;
  --border-color: #D4CBBF;
  --border-green: #B8C9A8;
}

/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
}

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(247, 242, 236, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  padding: 0 2.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.nav-brand-tag {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 0.78rem;
  color: var(--warm-gray);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.75rem;
}

.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--burgundy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-inquire {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--off-white) !important;
  background: var(--burgundy);
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  transition: background 0.3s !important;
  flex-shrink: 0;
}

.nav-inquire::after { display: none !important; }

.nav-inquire:hover {
  background: var(--burgundy-mid) !important;
  color: var(--off-white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* ============ LAYOUT ============ */
.page-wrapper { padding-top: 70px; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }

/* ============ ANIMATIONS ============ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ HERO ============ */
.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(122, 21, 48, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(45, 78, 26, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-script {
  font-family: 'Dancing Script', cursive;
  font-size: 1.9rem;
  color: var(--green);
  display: block;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 900;
  color: var(--burgundy);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.55rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}

.hero-divider {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, transparent, var(--burgundy), transparent);
  margin: 0 auto 2rem;
  opacity: 0.4;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  max-width: 460px;
  margin: 0 auto 0.5rem;
}

.hero-detail {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--warm-gray);
  margin-bottom: 2.75rem;
}

/* ============ BUTTONS ============ */
.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--off-white);
}

.btn-primary:hover { background: var(--burgundy-mid); }

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
}

.btn-outline:hover {
  background: var(--burgundy);
  color: var(--off-white);
}

.btn-green {
  background: var(--green);
  color: var(--off-white);
}

.btn-green:hover { background: var(--green-mid); }

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}

.btn-outline-green:hover {
  background: var(--green);
  color: var(--off-white);
}

/* ============ SECTION HEADERS ============ */
.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-script {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: var(--burgundy);
  display: block;
  margin-bottom: 0.4rem;
}

.section-script.green { color: var(--green); }

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--warm-gray);
  max-width: 520px;
  margin: 0 auto;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem auto 1.5rem;
  max-width: 180px;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--burgundy);
  opacity: 0.35;
}

.ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--burgundy);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.ornament.green::before,
.ornament.green::after { background: var(--green); }
.ornament.green .ornament-diamond { background: var(--green); }

/* ============ SERVICES GRID (HOME) ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border-color);
  background: var(--off-white);
  transition: all 0.35s;
}

.service-card:hover {
  border-color: var(--burgundy);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(122, 21, 48, 0.08);
}

.service-icon {
  font-size: 1.5rem;
  color: var(--burgundy);
  margin-bottom: 1.25rem;
  opacity: 0.6;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.service-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* ============ QUOTE ============ */
.quote-section {
  background: var(--burgundy);
  color: var(--cream);
  text-align: center;
  padding: 7rem 2rem;
  position: relative;
}

.quote-section::before,
.quote-section::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: rgba(247, 242, 236, 0.3);
}

.quote-section::before { top: 0; }
.quote-section::after { bottom: 0; }

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0.5;
  color: rgba(247, 242, 236, 0.2);
  margin-bottom: 1rem;
  display: block;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  max-width: 750px;
  margin: 0 auto 1.75rem;
  line-height: 1.5;
}

.quote-attr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  text-align: center;
  padding: 6rem 2rem 5rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--border-color);
}

.page-hero .script {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: var(--green);
  display: block;
  margin-bottom: 0.4rem;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 1.25rem;
}

.page-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--warm-gray);
  max-width: 520px;
  margin: 0 auto;
}

/* ============ ABOUT PAGE ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-placeholder {
  aspect-ratio: 3/4;
  background: var(--burgundy-light);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(122, 21, 48, 0.15);
  pointer-events: none;
}

.about-image-placeholder span {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: rgba(122, 21, 48, 0.4);
}

.about-image-placeholder p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(122, 21, 48, 0.3);
  letter-spacing: 0.1em;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.about-text .script-accent {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--burgundy);
  display: block;
  margin-bottom: 2rem;
}

.about-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

/* ============ SERVICES DETAIL ============ */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-row + .service-row {
  border-top: 1px solid var(--border-color);
}

.service-row:nth-child(even) .service-content { order: 2; }
.service-row:nth-child(even) .service-visual { order: 1; }

.service-content {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-white);
}

.service-row:nth-child(even) .service-content {
  background: var(--light-sage);
}

.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  background: var(--cream);
  border: none;
  position: relative;
  overflow: hidden;
}

.service-visual-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.service-visual-number {
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
  color: var(--burgundy);
  opacity: 0.08;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.service-row:nth-child(2) .service-visual { background: var(--light-sage); }
.service-row:nth-child(3) .service-visual { background: var(--off-white); }
.service-row:nth-child(2) .service-visual-number { color: var(--green); }

.service-visual-label {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: var(--burgundy);
  display: block;
}

.service-row:nth-child(2) .service-visual-label { color: var(--green); }
.service-row:nth-child(3) .service-visual-label { color: var(--burgundy); }

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 1rem;
}

.service-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.service-content > p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.service-includes {
  list-style: none;
  margin-bottom: 2.5rem;
}

.service-includes li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  padding: 0.45rem 0;
  padding-left: 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.service-includes li:first-child { border-top: 1px solid var(--border-color); }

.service-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--burgundy);
}

.service-row:nth-child(2) .service-includes li::before { color: var(--green); }

/* ============ MENUS PAGE ============ */
.menus-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 5rem;
}

.menus-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--warm-gray);
  line-height: 1.8;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Chef's Menu Card */
.menu-card {
  background: var(--off-white);
  border: 2px solid var(--burgundy);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(122, 21, 48, 0.2);
  pointer-events: none;
}

.menu-card.sage {
  background: var(--light-sage);
  border-color: var(--green);
}

.menu-card.sage::before {
  border-color: rgba(45, 78, 26, 0.2);
}

.menu-card-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.5rem;
}

.menu-card-title {
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem;
  color: var(--burgundy);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.menu-card.sage .menu-card-title { color: var(--green); }

.menu-card-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}

/* Sample badge for menu cards */
.sample-badge {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burgundy);
  border: 1px solid rgba(122, 21, 48, 0.4);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  margin-bottom: 1.25rem;
}

.menu-card.sage .sample-badge {
  color: var(--green);
  border-color: rgba(45, 78, 26, 0.4);
}

.menu-ornament-line {
  width: 50px;
  height: 1px;
  background: var(--burgundy);
  margin: 0 auto 1.75rem;
  opacity: 0.35;
}

.menu-card.sage .menu-ornament-line { background: var(--green); }

.menu-category {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 1.5rem 0 0.75rem;
}

.menu-card.sage .menu-category { color: var(--green); }

.menu-list {
  list-style: none;
}

.menu-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(122, 21, 48, 0.08);
}

.menu-list li:last-child { border-bottom: none; }
.menu-card.sage .menu-list li { border-color: rgba(45, 78, 26, 0.1); }

.menu-list .item-sub {
  display: block;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--warm-gray);
}

.menu-list .item-count {
  color: var(--burgundy);
  font-weight: 600;
}

.menu-card.sage .menu-list .item-count { color: var(--green); }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-info-sticky {
  position: sticky;
  top: 100px;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.contact-info p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.contact-divider {
  width: 40px;
  height: 1px;
  background: var(--burgundy);
  opacity: 0.4;
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 1.25rem;
}

.contact-detail-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.2rem;
}

.contact-detail-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--charcoal);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-top: 2rem;
  transition: color 0.3s;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--border-color);
}

.contact-social:hover {
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.contact-social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Form Styles */
.contact-form-wrapper {
  background: var(--off-white);
  padding: 3.5rem;
  border: 1px solid var(--border-color);
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(122, 21, 48, 0.1);
  pointer-events: none;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.form-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--warm-gray);
  margin-bottom: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group:last-of-type { margin-bottom: 0; }

label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
}

input,
select,
textarea {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

input::placeholder,
textarea::placeholder {
  color: rgba(138, 129, 120, 0.5);
  font-style: italic;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--burgundy);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '›';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: var(--warm-gray);
  pointer-events: none;
  font-size: 1.2rem;
}

.form-submit {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.form-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--warm-gray);
}

.form-success {
  display: none;
  background: var(--light-sage);
  border: 1px solid var(--border-green);
  padding: 1.25rem;
  margin-top: 1.5rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--green);
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--light-sage);
  text-align: center;
  padding: 7rem 2rem;
  border-top: 1px solid var(--border-green);
}

.cta-section .cta-script {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: var(--green);
  display: block;
  margin-bottom: 0.5rem;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.cta-section p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--warm-gray);
  max-width: 460px;
  margin: 0 auto 2.75rem;
}

/* ============ FOOTER ============ */
footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.35rem;
  color: var(--warm-gray);
  margin-bottom: 2.5rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-divider {
  width: 50px;
  height: 1px;
  background: rgba(247, 242, 236, 0.2);
  margin: 0 auto 1.75rem;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--warm-gray);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  transition: color 0.3s;
  margin-bottom: 2rem;
}

.footer-instagram:hover { color: var(--cream); }
.footer-instagram svg { width: 16px; height: 16px; }

.footer-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  color: rgba(138, 129, 120, 0.6);
}

/* ============ MOBILE OVERLAY ============ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.75rem;
}

.mobile-overlay.active { display: flex; }

.mobile-overlay a {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-overlay a:hover { color: var(--burgundy); }

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--charcoal);
  line-height: 1;
  font-weight: 300;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-links,
  .nav-inquire { display: none; }
  .hamburger { display: flex; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .menu-grid { grid-template-columns: 1fr; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info-sticky { position: static; }

  .service-row { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-content,
  .service-row:nth-child(even) .service-visual { order: unset; }
  .service-visual { min-height: 260px; }
  .service-content { padding: 4rem 2.5rem; }
}

@media (max-width: 640px) {
  nav { padding: 0 1.25rem; }
  .section { padding: 5rem 0; }
  .hero h1 { font-size: 3.5rem; }
  .page-hero { padding: 4.5rem 1.25rem 3.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 2.5rem 1.75rem; }
  .menu-card { padding: 2.5rem 1.5rem; }
  .form-submit { flex-direction: column; align-items: flex-start; }
  .service-content { padding: 3.5rem 1.75rem; }
}
