@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../assets/fonts/dmserif.woff2) format('woff2');
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../assets/fonts/dmserif-italic.woff2) format('woff2');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url(../assets/fonts/mulish.woff2) format('woff2');
}

:root {
  --color-black: #0A0A0A;
  --color-gold: #BB8520;
  --color-champagne: #D3AD62;
  --color-ivory: #F8F5EE;
  --color-sand: #E7DCC8;
  --color-espresso: #30251D;
  --color-white: #FFFFFF;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1DA851;

  --font-display: 'DM Serif Display', serif;
  --font-body: 'Mulish', sans-serif;

  --container-w: 1180px;
  --radius: 10px;
  --shadow-soft: 0 10px 30px rgba(10, 10, 10, 0.08);
  --transition: 0.25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-espresso);
  background: var(--color-ivory);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--dark { background: var(--color-black); color: var(--color-sand); }
.section--sand { background: var(--color-sand); }
.section--white { background: var(--color-white); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  letter-spacing: 0.01em;
  color: var(--color-black);
  margin-bottom: 6px;
  text-wrap: balance;
}
.section--dark .section-head h2 { color: var(--color-white); }
.section-head p { color: var(--color-espresso); opacity: 0.85; font-size: 1.05rem; }
.section--dark .section-head p { color: var(--color-sand); opacity: 0.85; }
#quote .section-head h2 { margin-bottom: 0; }
#events .section-head, #menu .section-head { max-width: 1050px; }
#events .section-head .eyebrow { margin-bottom: 24px; }
#events .section-head h2, #menu .section-head h2 {
  font-size: clamp(2.7rem, 4.8vw, 4rem);
  white-space: nowrap;
  margin-bottom: 0;
}
#menu .section-head h2 { display: inline-block; position: relative; }
#menu .section-head h2::after {
  content: ""; position: absolute; left: 0; bottom: -8px;
  width: 100%; height: 1px; background: #BB8520;
}
#events .section-head p, #menu .section-head p { margin-top: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--color-champagne); outline-offset: 2px; }
.btn-primary { background: var(--color-gold); color: var(--color-white); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--color-champagne); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Placeholder media block ---------- */
.img-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: var(--ratio, 4/3);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, var(--color-sand), var(--color-sand) 10px, var(--color-champagne) 10px, var(--color-champagne) 20px);
  border: 2px dashed var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-placeholder .ph-inner {
  background: rgba(10, 10, 10, 0.72);
  color: var(--color-white);
  padding: 14px 18px;
  border-radius: 8px;
  text-align: center;
  max-width: 85%;
}
.img-placeholder .ph-icon { display: flex; justify-content: center; margin-bottom: 8px; }
.img-placeholder .ph-icon svg { width: 26px; height: 26px; }
.img-placeholder .ph-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; line-height: 1.4; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(248, 245, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(10,10,10,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: var(--container-w);
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 56px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--color-espresso);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: none; }
.btn.nav-cta { padding-left: 52px; padding-right: 52px; }
.btn.nav-cta::after { display: none; }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--color-black); transition: transform var(--transition), opacity var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-cta { display: inline-flex; }
}
@media (max-width: 899px) {
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--color-ivory);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    border-bottom: 1px solid rgba(10,10,10,0.08);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(10,10,10,0.06); }
  .nav-links .nav-cta { display: inline-flex; margin-top: 12px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--color-ivory) url(../assets/hero.jpg) right center / cover no-repeat; overflow: hidden; }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(248,245,238,0.96) 0%, rgba(248,245,238,0.82) 34%, rgba(248,245,238,0.35) 62%, rgba(248,245,238,0.05) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--container-w); margin: 0 auto; padding: 150px 24px 110px; text-align: left; }
.hero-content .eyebrow { color: var(--color-gold); }
.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--color-black);
  max-width: 680px;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-content h1 span { color: var(--color-gold); }
.hero-content p { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--color-espresso); max-width: 500px; margin: 0 0 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-start; }
.hero-ctas .btn { padding-left: 22px; padding-right: 22px; }
.btn-outline-dark { border: 2px solid var(--color-black); color: var(--color-black); }
.btn-outline-dark:hover { background: var(--color-black); color: var(--color-white); }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--color-espresso); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.7;
}
.hero-scroll .line { width: 1px; height: 30px; background: var(--color-gold); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(0.4); opacity: 0.4;} 50% { transform: scaleY(1); opacity: 1;} }
@media (prefers-reduced-motion: reduce) { .hero-scroll .line { animation: none; } }

/* ---------- Event Types ---------- */
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.event-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(10,10,10,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(10,10,10,0.12); }
.event-card .event-icon {
  width: 54px; height: 54px; border-radius: 50%; background: var(--color-sand);
  display: flex; align-items: center; justify-content: center; color: var(--color-gold); margin-bottom: 18px;
}
.event-card .event-icon svg { width: 26px; height: 26px; }
.event-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.3rem; color: var(--color-black); margin-bottom: 10px; letter-spacing: 0.01em; }
.event-card p { font-size: 0.92rem; color: var(--color-espresso); opacity: 0.85; margin-bottom: 20px; flex-grow: 1; }
.event-card .event-link { font-weight: 800; font-size: 0.85rem; color: var(--color-gold); letter-spacing: 0.02em; }
.event-card .event-link:hover { color: var(--color-espresso); }

/* ---------- Story ---------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-text .eyebrow { color: var(--color-gold); }
.story-text h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 3.6vw, 2.6rem); color: var(--color-black); margin-bottom: 20px; text-wrap: balance; }
.story-text p { margin-bottom: 16px; color: var(--color-espresso); opacity: 0.9; max-width: 62ch; }
.story-text p:last-of-type { margin-bottom: 26px; }
.story-signature { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 1.5rem; color: var(--color-gold); }
.story-image {
  display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-soft);
}

/* ---------- Menu ---------- */
.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.menu-tab {
  padding: 11px 22px; border-radius: 999px; border: 2px solid var(--color-black);
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.02em; color: var(--color-black);
  transition: all var(--transition);
}
.menu-tab.active, .menu-tab:hover { background: var(--color-black); color: var(--color-white); }
.menu-tab:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 2px; }
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }
@media (prefers-reduced-motion: reduce) { .menu-panel.active { animation: none; } }

.menu-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px 40px; }
.menu-item { display: flex; justify-content: space-between; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--color-sand); }
.menu-item-name { font-weight: 800; color: var(--color-black); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.menu-item-desc { font-size: 0.85rem; color: var(--color-espresso); opacity: 0.75; margin-top: 4px; }
.menu-item-price { display: none; }
.diet-tag { font-size: 0.62rem; font-weight: 800; padding: 3px 7px; border-radius: 5px; background: var(--color-sand); color: var(--color-espresso); letter-spacing: 0.03em; }
.menu-note { display: none; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.menu-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
.menu-photo-card { background: var(--color-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.menu-photo-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; display: block; background: #000; }
.menu-photo-card h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; line-height: 1.25;
  color: var(--color-black); text-align: center; padding: 18px 18px 8px;
}
.menu-photo-card p {
  color: var(--color-espresso); font-size: 0.88rem; line-height: 1.55;
  text-align: center; padding: 0 20px 22px;
}

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--color-white); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.testimonial-stars { color: var(--color-gold); letter-spacing: 3px; margin-bottom: 16px; font-size: 1rem; }
.testimonial-quote { font-style: italic; color: var(--color-espresso); margin-bottom: 22px; flex-grow: 1; }
.testimonial-author { font-weight: 800; color: var(--color-black); font-size: 0.92rem; }
.testimonial-meta { font-size: 0.78rem; color: var(--color-gold); font-weight: 700; margin-top: 2px; }

/* ---------- Quote form ---------- */
.quote-wrap { background: var(--color-white); border-radius: 16px; box-shadow: var(--shadow-soft); padding: 56px 56px; max-width: 780px; margin: 0 auto; text-align: center; }
.quote-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--color-sand); color: var(--color-espresso);
  font-size: 0.8rem; font-weight: 700; padding: 8px 16px; border-radius: 999px; margin-bottom: 28px;
}
.quote-badge svg { width: 15px; height: 15px; color: var(--color-gold); flex-shrink: 0; }
.quote-wrap h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; color: var(--color-black); margin-bottom: 12px; }
.quote-wrap > p { color: var(--color-espresso); opacity: 0.85; max-width: 42ch; margin: 0 auto 28px; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; text-align: left; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { color: var(--color-black); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.02em; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 1px solid rgba(10,10,10,0.18); border-radius: 8px; padding: 13px 14px;
  background: var(--color-ivory); color: var(--color-espresso);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-status { grid-column: 1 / -1; color: var(--color-espresso); font-size: 0.9rem; text-align: center; min-height: 1.5em; }

/* ---------- Contact / Location ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .ci-icon {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--color-gold);
}
.contact-info-item .ci-icon svg { width: 19px; height: 19px; }
.contact-info-item h4 { font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-gold); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--color-sand); font-size: 0.95rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid rgba(248,245,238,0.12); font-size: 0.9rem; color: var(--color-sand); }
.hours-table td:last-child { text-align: right; color: var(--color-champagne); font-weight: 700; }
.map-embed { width: 100%; min-height: 360px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-black); color: var(--color-sand); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(248,245,238,0.1); }
.footer-logo-chip { background: var(--color-ivory); border-radius: 12px; padding: 10px 14px; display: inline-block; margin-bottom: 16px; }
.footer-logo-chip img { height: 48px; }
.footer-col p { font-size: 0.88rem; opacity: 0.7; line-height: 1.7; }
.footer-col h5 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-gold); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.9rem; opacity: 0.8; transition: opacity var(--transition), color var(--transition); }
.footer-col ul a:hover { opacity: 1; color: var(--color-champagne); }
.footer-address ul { gap: 2px; }
.footer-address li { font-size: 0.9rem; line-height: 1.25; opacity: 0.8; }
.contact-icon { display: none; }
.footer-location { display: flex; align-items: flex-start; gap: 7px; margin-top: 10px; }
.footer-location .contact-icon { display: inline-flex; width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; }
.footer-location span { display: flex; flex-direction: column; gap: 1px; }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(248,245,238,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--color-gold); border-color: var(--color-gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding: 24px 0; font-size: 0.8rem; opacity: 0.6; }

/* ---------- Cookie preferences ---------- */
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 1200;
  max-width: 1120px; margin: 0 auto; padding: 20px 22px;
  background: var(--color-black); color: var(--color-white);
  border: 1px solid rgba(248,245,238,0.16); border-radius: 14px;
  box-shadow: 0 16px 48px rgba(10,10,10,0.28);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.cookie-banner[hidden] { display: none; }
.cookie-copy { max-width: 720px; }
.cookie-copy h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; margin-bottom: 4px; }
.cookie-copy p { color: var(--color-sand); font-size: 0.86rem; line-height: 1.5; opacity: 0.85; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { border: 1px solid var(--color-gold); border-radius: 999px; padding: 10px 18px; font-size: 0.8rem; font-weight: 800; cursor: pointer; }
.cookie-btn--accept { background: var(--color-gold); color: var(--color-white); }
.cookie-btn--decline { background: transparent; color: var(--color-white); }
.cookie-btn:hover { transform: translateY(-1px); }

/* ---------- Dev / preview banner ---------- */
.dev-banner { background: var(--color-gold); color: var(--color-white); text-align: center; font-size: 0.82rem; font-weight: 700; padding: 9px 16px; letter-spacing: 0.01em; }
.dev-banner strong { text-decoration: underline; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-photo-grid { grid-template-columns: repeat(2, 1fr); }
  #events .section-head h2, #menu .section-head h2 { white-space: normal; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .quote-wrap { padding: 28px 22px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > .footer-col:first-child { grid-column: 1 / -1; text-align: center; }
  .footer-grid > .footer-col:nth-child(2),
  .footer-grid > .footer-col:nth-child(3) { display: none; }
  .footer-logo-chip { display: none; }
  .footer-address { grid-column: 1 / -1; text-align: center; }
  .footer-address ul { align-items: center; }
  .footer-address h5 { margin-bottom: 8px; }
  .footer-address a { display: inline-flex; align-items: center; justify-content: center; gap: 7px; }
  .footer-location { justify-content: center; }
  .contact-icon { display: inline-flex; width: 15px; height: 15px; flex-shrink: 0; }
  .footer-bottom { flex-direction: column-reverse; justify-content: center; text-align: center; }
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; padding: 18px; flex-direction: column; align-items: stretch; gap: 16px; text-align: center; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; padding: 11px 10px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .menu-photo-grid { grid-template-columns: 1fr; gap: 22px; }
  .quote-form { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .hero { min-height: 78svh; align-items: flex-start; }
  .hero-content { text-align: center; padding: 138px 24px 64px; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-ctas { flex-wrap: nowrap; justify-content: center; gap: 10px; }
  .hero-ctas .btn { flex: 1; justify-content: center; padding: 13px 8px; font-size: 0.78rem; }
  .hero-scroll { display: none; }
  .story-text { text-align: center; }
  #events .section-head h2 { line-height: 1.05; }
  #story .story-text h2 { line-height: 1.08; }
  .story-text p { margin-left: auto; margin-right: auto; }
  .hero { background-position: 72% center; }
  .hero::after {
    background: linear-gradient(180deg, rgba(248,245,238,0.95) 0%, rgba(248,245,238,0.85) 55%, rgba(248,245,238,0.55) 100%);
  }
}
/* Optimized hero image */
.hero { background-image: url("../assets/hero.jpg"); }
