@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;600;700&display=swap');

:root {
  --primary: #8B1A1A;
  --primary-dark: #6B1313;
  --primary-light: #A82020;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --olive: #4A6741;
  --olive-light: #5C7A4E;
  --cream: #FAF5EC;
  --cream-dark: #F2EAD8;
  --text: #2C2C2C;
  --text-light: #666;
  --white: #fff;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

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

/* ── TOPBAR ── */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,.9);
  text-align: center;
  padding: 9px 20px;
  font-size: .82em;
  font-weight: 400;
  letter-spacing: .03em;
}
.topbar span { margin: 0 18px; }
.topbar i { margin-right: 5px; color: var(--gold-light); }

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
}
.logo-text { line-height: 1.2; }
.logo-text .brand { font-family: 'Playfair Display', serif; font-size: 1.3em; font-weight: 700; color: var(--primary); }
.logo-text .sub { font-size: .72em; color: var(--text-light); letter-spacing: .08em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  font-size: .88em;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all .2s;
  letter-spacing: .02em;
}
.nav-links a:hover { color: var(--primary); background: rgba(139,26,26,.06); }
.nav-links a.active { color: var(--primary); }
.nav-links .cta-btn {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 25px;
  margin-left: 8px;
}
.nav-links .cta-btn:hover { background: var(--primary-dark) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .9em;
  transition: all .25s;
  cursor: pointer;
  border: none;
  letter-spacing: .03em;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,26,26,.35); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b8943e; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-olive { background: var(--olive); color: var(--white); }
.btn-olive:hover { background: #3d5735; transform: translateY(-2px); }
.btn-lg { padding: 16px 38px; font-size: 1em; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 580px;
  background: url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1400&q=85') center/cover no-repeat;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(139,26,26,.9) 0%, rgba(139,26,26,.5) 50%, rgba(0,0,0,.2) 100%);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  color: var(--white);
  max-width: 620px;
  margin-left: 8%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,.25);
  border: 1px solid rgba(201,168,76,.5);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .78em;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3em;
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 700;
}
.hero p {
  color: rgba(255,255,255,.82);
  font-size: 1.05em;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.97);
  display: flex;
  justify-content: center;
  gap: 0;
  backdrop-filter: blur(10px);
}
.stat-item {
  padding: 18px 50px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,.08);
}
.stat-item:last-child { border-right: none; }
.stat-item .num { font-family: 'Playfair Display', serif; font-size: 1.8em; font-weight: 700; color: var(--primary); }
.stat-item .label { font-size: .78em; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; }

/* ── SECTIONS ── */
.section { padding: 80px 20px; }
.section-sm { padding: 50px 20px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: .8em;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-header p { color: var(--text-light); max-width: 560px; margin: 0 auto; font-weight: 300; font-size: 1.02em; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--gold)); margin: 16px auto 0; border-radius: 2px; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 30px;
  box-shadow: var(--shadow);
  transition: all .3s;
  border-top: 4px solid transparent;
  text-align: center;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-top-color: var(--primary); }
.service-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(139,26,26,.1), rgba(201,168,76,.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6em;
  margin: 0 auto 20px;
}
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2em; margin-bottom: 10px; color: var(--text); }
.service-card p { color: var(--text-light); font-size: .92em; line-height: 1.7; }

/* ── MENU CARDS ── */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.menu-card:hover { transform: translateY(-5px); }
.menu-card img { width: 100%; height: 190px; object-fit: cover; }
.menu-card-body { padding: 22px; }
.menu-tag {
  display: inline-block;
  background: rgba(139,26,26,.08);
  color: var(--primary);
  font-size: .72em;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.menu-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1em; margin-bottom: 6px; }
.menu-card p { color: var(--text-light); font-size: .88em; line-height: 1.6; }
.menu-price { margin-top: 12px; font-weight: 700; color: var(--primary); font-size: 1.05em; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item { overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.wide img { height: 300px; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5em;
  color: rgba(139,26,26,.1);
  position: absolute;
  top: 10px;
  left: 22px;
  line-height: 1;
}
.stars { color: var(--gold); font-size: .9em; margin-bottom: 14px; }
.testimonial-card p { color: var(--text-light); font-size: .93em; line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .9em;
}
.author-info .name { font-weight: 700; font-size: .9em; }
.author-info .role { color: var(--text-light); font-size: .8em; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #4A0E0E 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1400&q=60') center/cover;
  opacity: .12;
}
.cta-banner .container { position: relative; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: 2.4em; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.8); max-width: 540px; margin: 0 auto 30px; font-weight: 300; font-size: 1.05em; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: #1a1a1a;
  color: rgba(255,255,255,.75);
  padding: 60px 20px 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .brand-name { font-family: 'Playfair Display', serif; font-size: 1.5em; color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: .88em; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .9em;
  transition: .2s;
}
.social-btn:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: .9em; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .88em; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: .88em; }
.footer-contact-item i { color: var(--gold); width: 16px; margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82em;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 70px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1200&q=60') center/cover;
  opacity: .1;
}
.page-header .container { position: relative; }
.page-header .eyebrow { color: var(--gold-light); font-size: .8em; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: 2.6em; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 20px; font-weight: 300; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; font-size: .83em; color: rgba(255,255,255,.6); }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { opacity: .5; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .years { font-family: 'Playfair Display', serif; font-size: 2.2em; font-weight: 700; line-height: 1; }
.about-badge .text { font-size: .65em; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; line-height: 1.3; margin-top: 4px; opacity: .9; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 2em; margin-bottom: 16px; color: var(--text); }
.about-text .lead { font-size: 1.05em; color: var(--text-light); margin-bottom: 20px; line-height: 1.8; }
.about-text p { color: var(--text-light); margin-bottom: 16px; font-weight: 300; line-height: 1.8; }
.features-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 28px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-item .check { color: var(--olive); font-size: 1.1em; margin-top: 2px; flex-shrink: 0; }
.feature-item span { font-size: .95em; color: var(--text-light); }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5em; margin-bottom: 20px; }
.contact-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 30px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(139,26,26,.1), rgba(201,168,76,.15));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1em;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-item .detail .label { font-size: .78em; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; margin-bottom: 3px; }
.contact-item .detail .value { font-weight: 600; font-size: .95em; }
.hours-box { background: var(--cream-dark); border-radius: var(--radius); padding: 22px; }
.hours-box h4 { font-weight: 700; margin-bottom: 12px; font-size: .9em; text-transform: uppercase; letter-spacing: .06em; }
.hours-row { display: flex; justify-content: space-between; font-size: .88em; color: var(--text-light); padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.hours-row:last-child { border-bottom: none; }

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 { font-family: 'Playfair Display', serif; font-size: 1.5em; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85em; font-weight: 700; color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Lato', sans-serif;
  font-size: .93em;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card img { width: 100%; height: 210px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; gap: 14px; font-size: .78em; color: var(--text-light); margin-bottom: 10px; }
.blog-meta i { color: var(--gold); }
.blog-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1em; margin-bottom: 8px; line-height: 1.35; }
.blog-card p { color: var(--text-light); font-size: .88em; line-height: 1.65; margin-bottom: 16px; }
.blog-card a.read-more { color: var(--primary); font-weight: 700; font-size: .85em; display: inline-flex; align-items: center; gap: 5px; }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1em;
  color: var(--text);
  gap: 16px;
}
.faq-question:hover { color: var(--primary); }
.faq-question .icon { font-size: 1.2em; color: var(--primary); flex-shrink: 0; transition: transform .3s; }
.faq-question.open .icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; color: var(--text-light); font-size: .95em; line-height: 1.8; }
.faq-answer.show { display: block; }

/* ── MAP ── */
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-placeholder {
  background: linear-gradient(135deg, #e8f0e8 0%, #d4e4d4 100%);
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--olive);
}
.map-placeholder .map-icon { font-size: 3em; }
.map-placeholder p { font-size: 1.1em; font-weight: 600; }
.map-placeholder small { color: var(--text-light); }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 860px; margin: 0 auto; background: var(--white); border-radius: var(--radius); padding: 50px; box-shadow: var(--shadow); }
.legal-content h2 { font-family: 'Playfair Display', serif; font-size: 1.4em; color: var(--primary); margin: 32px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-light); font-size: .95em; line-height: 1.85; margin-bottom: 14px; }
.legal-content ul { margin: 10px 0 14px 20px; color: var(--text-light); font-size: .95em; line-height: 1.8; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content .last-updated { font-size: .82em; color: var(--text-light); margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,.08); }

/* ── TABS ── */
.tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.tab-btn {
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  font-size: .88em;
  cursor: pointer;
  border: 2px solid rgba(0,0,0,.1);
  background: var(--white);
  color: var(--text-light);
  transition: all .2s;
}
.tab-btn:hover, .tab-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ── EVENT CARDS ── */
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.event-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform .3s;
}
.event-card:hover { transform: translateY(-4px); }
.event-card img { height: 100%; min-height: 220px; object-fit: cover; }
.event-card-body { padding: 28px; }
.event-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2em; margin-bottom: 10px; }
.event-card p { color: var(--text-light); font-size: .9em; line-height: 1.7; margin-bottom: 16px; }
.event-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.event-features li { display: flex; align-items: center; gap: 8px; font-size: .85em; color: var(--text-light); list-style: none; }
.event-features li i { color: var(--olive); width: 14px; }

/* ── PROCESS ── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}
.step { text-align: center; position: relative; }
.step-num {
  width: 70px;
  height: 70px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4em;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  background: var(--cream);
}
.step h3 { font-size: 1em; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-light); font-size: .87em; line-height: 1.65; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: linear-gradient(135deg, rgba(139,26,26,.06), rgba(201,168,76,.08));
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
}
.highlight-box p { color: var(--text); font-size: .95em; margin: 0; }

/* ── WHATSAPP BTN ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  background: #25D366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 12px 16px; }
  .hero h1 { font-size: 2em; }
  .services-grid, .menu-grid, .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.wide img { height: 200px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .events-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; }
  .event-card img { height: 220px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats .stat-item { padding: 14px 20px; }
  .stat-item .num { font-size: 1.4em; }
  .legal-content { padding: 30px 20px; }
}

@media (max-width: 600px) {
  .hero { height: auto; padding: 80px 0 130px; }
  .hero-content { margin-left: 0; padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 55px 15px; }
  .page-header h1 { font-size: 1.8em; }
  .section-header h2 { font-size: 1.6em; }
}
