/* ============================================================
   511KitchenAmour — Design System
   Colors: Sage #8E9578 | Cream #F5F0E8 | Terracotta #E76B4A | Charcoal #2A2A2A
   ============================================================ */

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --sage:       #8E9578;
  --sage-dark:  #737a5e;
  --cream:      #F5F0E8;
  --terracotta: #E76B4A;
  --terra-dark: #d45535;
  --charcoal:   #2A2A2A;
  --charcoal-light: #4a4a4a;
  --white:      #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --font-script:'Dancing Script', cursive;
  --radius-sm:  0.5rem;
  --radius:     0.75rem;
  --radius-lg:  1.25rem;
  --radius-xl:  1.75rem;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
  --shadow-xl:  0 24px 60px rgba(0,0,0,.18);
  --section-py: clamp(4rem, 10vw, 8rem);
  --transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--charcoal); -webkit-font-smoothing: antialiased; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: rgba(231,107,74,.2); }

/* ─── Typography ────────────────────────────────────────────── */
.serif-heading  { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; }
.script-text    { font-family: var(--font-script); }
h1, h2, h3, h4  { font-family: var(--font-serif); line-height: 1.2; }

.display-xl  { font-size: clamp(2.5rem, 7vw, 5.5rem); line-height: 1.05; letter-spacing: -.02em; }
.display-lg  { font-size: clamp(2rem,   5vw, 3.75rem); line-height: 1.1; }
.display-md  { font-size: clamp(1.6rem, 3.5vw, 2.75rem); }

/* ─── Layout ────────────────────────────────────────────────── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section     { padding: var(--section-py) 0; }
.section-sm  { padding: calc(var(--section-py) * .6) 0; }
.text-center { text-align: center; }

/* ─── Grid helpers ──────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 2rem; background: var(--terracotta); color: #fff;
  border: 2px solid var(--terracotta); border-radius: 3rem;
  font-size: .875rem; font-weight: 500; letter-spacing: .04em;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--terra-dark); border-color: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(231,107,74,.35); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 2rem; background: transparent; color: var(--sage);
  border: 2px solid var(--sage); border-radius: 3rem;
  font-size: .875rem; font-weight: 500; letter-spacing: .04em;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--sage); color: #fff; transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 2rem; background: transparent; color: #fff;
  border: 2px solid #fff; border-radius: 3rem;
  font-size: .875rem; font-weight: 500; letter-spacing: .04em;
  transition: var(--transition);
}
.btn-outline-white:hover { background: #fff; color: var(--charcoal); transform: translateY(-2px); }

.btn-sm { padding: .6rem 1.4rem; font-size: .8rem; }
.btn-xs { padding: .4rem 1rem; font-size: .75rem; }

/* ─── Navigation ────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #898f6e;
  transition: background .4s ease, box-shadow .4s ease;
}
.nav-scrolled { background: #757b5c; box-shadow: 0 2px 20px rgba(0,0,0,.18); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.nav-logo { display: flex; align-items: center; gap: .4rem; }
.logo-script { font-family: var(--font-script); color: #fff; font-size: 1.6rem; line-height: 1; }
.logo-serif  { font-family: var(--font-serif); color: rgba(255,255,255,.9); font-size: 1.1rem; font-weight: 600; letter-spacing: .03em; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-link { font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.85); letter-spacing: .03em; position: relative; padding: .25rem 0; transition: color .2s; background: none; border: none; }
.nav-link::after { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background:#fff; border-radius:1px; transition:width .3s ease; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link--btn { display: flex; align-items: center; gap: .25rem; }
.dropdown-arrow { width: .875rem; height: .875rem; transition: transform .25s; }
.dropdown-arrow.rotated { transform: rotate(180deg); }
.nav-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + .75rem); left: 50%; transform: translateX(-50%); width: 260px; background: #fff; border: 1px solid rgba(137,143,110,.2); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.dropdown-item { display: block; padding: .875rem 1.25rem; font-size: .875rem; color: rgba(42,42,42,.75); border-bottom: 1px solid rgba(137,143,110,.1); transition: background .15s, color .15s; }
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: rgba(137,143,110,.1); color: #757b5c; }
.hamburger { display: none; background: none; border: none; padding: .5rem; color: #fff; }
.ham-icon { width: 1.5rem; height: 1.5rem; }
.mobile-menu { display: none; padding: 1rem 1.5rem 1.5rem; background: #898f6e; border-top: 1px solid rgba(255,255,255,.15); }
.mobile-menu.open { display: block; }
.mobile-link { display: block; padding: .875rem 0; font-size: .9rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.85); transition: color .2s; }
.mobile-link:hover { color: #fff; }
.mobile-link--sub { padding-left: 1rem; font-size: .85rem; color: rgba(255,255,255,.65); }
.mobile-link--cta { color: #fff; font-weight: 600; }
.mobile-group-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); font-weight: 600; padding: .75rem 0 .25rem; }
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .mobile-menu { display: block; }
  .mobile-menu[x-show] { }
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; height: 100vh; display: flex; align-items: center; overflow: hidden; background: #2A2A2A; }
.hero-content { position: relative; z-index: 5; padding: 8rem 0 4rem; width: 100%; }
/* Background slides — ONLY these cross-fade; no text overlap possible */
/* Use explicit TRBL instead of inset shorthand for Android compatibility */
.hero-bg-slide { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; opacity: 0; z-index: 1; transition: opacity 1.2s ease; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-bg-slide.active { opacity: 1; z-index: 2; }
/* Text wrapper transition */
#hero-text { transition: opacity .35s ease; }
.hero-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: .5rem; }
.hero-dot { width: .5rem; height: .5rem; border-radius: 1rem; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: all .3s ease; }
.hero-dot.active { width: 2rem; background: var(--terracotta); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 3rem; height: 3rem; border-radius: 50%; background: rgba(255,255,255,.2); backdrop-filter: blur(4px); border: none; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; }
.hero-arrow:hover { background: rgba(255,255,255,.35); }
.hero-arrow--prev { left: 1.5rem; }
.hero-arrow--next { right: 1.5rem; }
.hero-arrow svg { width: 1.25rem; height: 1.25rem; }

/* ─── Hero mobile ───────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero { height: 100svh; min-height: 600px; } /* svh avoids iOS address-bar gap */
  .hero-content { padding: 7rem 1.5rem 5rem; text-align: center; }
  .hero-content h1 { font-size: clamp(2rem, 10vw, 3rem) !important; margin-left: auto !important; margin-right: auto !important; }
  .hero-content p  { margin-left: auto !important; margin-right: auto !important; font-size: 1rem !important; }
  .hero-content .btn-primary { margin: 0 auto; }
  .hero-arrow--prev { left: .75rem; }
  .hero-arrow--next { right: .75rem; }
}

/* ─── Section headers ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .script { font-family: var(--font-script); color: var(--terracotta); font-size: 1.4rem; display: block; margin-bottom: .25rem; }
.section-header h2 { font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 2.75rem); color: var(--charcoal); }
.section-divider { width: 3rem; height: 2px; background: var(--terracotta); margin: 1rem auto 0; border-radius: 1px; }
.section-header p { color: rgba(42,42,42,.6); margin-top: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ─── Cards ─────────────────────────────────────────────────── */
.card { background: #fff; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-img { transform: scale(1.05); }
.card-img-wrap { overflow: hidden; }
.card-body { padding: 1.5rem; }
.card-tag { display: inline-block; padding: .25rem .75rem; background: rgba(142,149,120,.1); color: var(--sage); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; border-radius: 2rem; margin-bottom: .75rem; }

/* Service card - portrait overlay style */
.service-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5; display: block; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.service-card:hover img { transform: scale(1.08); }
.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,42,42,.85) 0%, rgba(42,42,42,.15) 60%, transparent 100%); }
.service-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.75rem; }
.service-card-title { font-family: var(--font-serif); font-size: 1.4rem; color: #fff; font-weight: 600; margin-bottom: .4rem; }
.service-card-text { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: .75rem; opacity: 0; transform: translateY(8px); transition: all .3s ease; }
.service-card:hover .service-card-text { opacity: 1; transform: translateY(0); }
.service-card-link { color: var(--terracotta); font-size: .875rem; font-weight: 500; display: flex; align-items: center; gap: .4rem; }

/* ─── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .875rem; font-weight: 500; color: var(--charcoal); margin-bottom: .4rem; }
.form-input {
  width: 100%; padding: .875rem 1.1rem;
  border: 1.5px solid rgba(142,149,120,.25); border-radius: var(--radius);
  background: rgba(245,240,232,.5); color: var(--charcoal);
  font-size: .9rem; font-family: var(--font-sans);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(142,149,120,.15); }
.form-input::placeholder { color: rgba(42,42,42,.35); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-error { color: var(--terracotta); font-size: .8rem; margin-top: .25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ─── Testimonial card ──────────────────────────────────────── */
.testi-card { background: #fff; border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-sm); }
.testi-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testi-tag { display: inline-block; padding: .2rem .65rem; background: rgba(142,149,120,.1); color: var(--sage); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; border-radius: 2rem; margin-bottom: .75rem; }
.testi-quote { color: rgba(42,42,42,.65); font-size: .9rem; line-height: 1.75; font-style: italic; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; object-fit: cover; background: rgba(142,149,120,.2); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); color: var(--sage); font-size: 1.1rem; font-weight: 600; flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: .9rem; }
.testi-location { font-size: .8rem; color: rgba(42,42,42,.45); }

/* ─── Blog card ─────────────────────────────────────────────── */
.blog-card { background: #fff; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: .75rem; font-size: .78rem; color: rgba(42,42,42,.45); margin-top: auto; padding-top: 1rem; }

/* ─── Page hero (inner pages) ───────────────────────────────── */
.page-hero { position: relative; padding: 7rem 0 3.5rem; background: var(--charcoal); }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .3; }
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 1rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.25); }

/* ─── About split ───────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-xl); }
.about-accent { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 140px; height: 140px; background: var(--sage); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.about-accent .script { font-family: var(--font-script); font-size: 1.3rem; line-height: 1.3; }

/* ─── Timeline ──────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 2rem; border-left: 2px solid rgba(142,149,120,.35); }
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -2.55rem; top: .2rem; width: 1rem; height: 1rem; border-radius: 50%; background: var(--terracotta); border: 2px solid var(--charcoal); box-shadow: 0 0 0 3px var(--terracotta); }
.timeline-year { color: var(--terracotta); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.timeline-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: #fff; margin: .2rem 0 .5rem; }
.timeline-body { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.7; }

/* ─── Flash messages ────────────────────────────────────────── */
.flash-msg { position: fixed; top: 6rem; right: 1.5rem; z-index: 200; max-width: 360px; padding: 1rem 1.25rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: flex; align-items: flex-start; gap: 1rem; font-size: .875rem; }
.flash-success { background: var(--sage); color: #fff; }
.flash-error   { background: var(--terracotta); color: #fff; }
.flash-close   { background: none; border: none; color: rgba(255,255,255,.65); font-size: 1.2rem; line-height: 1; margin-left: auto; flex-shrink: 0; }

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer { background: var(--charcoal); color: #fff; }
.footer-newsletter { background: var(--sage); padding: 3.5rem 0; }
.newsletter-form { display: flex; flex-wrap: wrap; gap: .625rem; max-width: 540px; margin: 0 auto; justify-content: center; }
.nl-input { flex: 1; min-width: 160px; padding: .75rem 1rem; border-radius: .5rem; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.15); color: #fff; font-size: .875rem; outline: none; }
.nl-input::placeholder { color: rgba(255,255,255,.55); }
.nl-input:focus { border-color: rgba(255,255,255,.6); }
.footer-main { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-heading { font-family: var(--font-serif); color: #fff; font-weight: 600; margin-bottom: 1.25rem; font-size: 1.05rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .65rem; }
.footer-links a { color: rgba(255,255,255,.45); font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: var(--terracotta); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .625rem; color: rgba(255,255,255,.45); font-size: .875rem; margin-bottom: .75rem; }
.footer-contact-item a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-contact-item a:hover { color: var(--terracotta); }
.footer-social { display: flex; gap: .5rem; }
.social-btn { width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.55); transition: background .2s, color .2s; }
.social-btn:hover { background: var(--terracotta); color: #fff; }
.social-btn-sm { width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgba(142,149,120,.15); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; color: var(--sage); transition: background .2s, color .2s; }
.social-btn-sm:hover { background: var(--sage); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; font-size: .8rem; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.25); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ─── Admin tables (reused in admin panel) ──────────────────── */
.admin-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.admin-table th { background: rgba(142,149,120,.1); padding: .75rem 1rem; text-align: left; font-weight: 600; color: var(--charcoal); border-bottom: 2px solid rgba(142,149,120,.2); }
.admin-table td { padding: .75rem 1rem; border-bottom: 1px solid rgba(142,149,120,.1); color: var(--charcoal); vertical-align: middle; }
.admin-table tr:hover td { background: rgba(245,240,232,.6); }
.badge { display: inline-block; padding: .2rem .65rem; border-radius: 2rem; font-size: .75rem; font-weight: 600; }
.badge-new      { background: rgba(255,193,7,.2);  color: #856404; }
.badge-contacted{ background: rgba(13,110,253,.15); color: #0d6efd; }
.badge-confirmed{ background: rgba(25,135,84,.15);  color: #198754; }
.badge-completed{ background: rgba(108,117,125,.15);color: #6c757d; }
.badge-cancelled{ background: rgba(220,53,69,.15);  color: #dc3545; }
.badge-active   { background: rgba(25,135,84,.15);  color: #198754; }
.badge-inactive { background: rgba(108,117,125,.15);color: #6c757d; }

/* ─── CTA strip ─────────────────────────────────────────────── */
.cta-strip { background: var(--charcoal); padding: 4rem 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

/* ─── Prose (rich text body) ────────────────────────────────── */
.prose { color: rgba(42,42,42,.72); line-height: 1.85; }
.prose h2, .prose h3 { font-family: var(--font-serif); color: var(--charcoal); margin: 1.75rem 0 .75rem; }
.prose p  { margin-bottom: 1.1rem; }
.prose ul { padding-left: 1.25rem; margin-bottom: 1.1rem; }
.prose li { margin-bottom: .4rem; }
.prose a  { color: var(--terracotta); }
.prose blockquote { border-left: 4px solid var(--terracotta); padding-left: 1.25rem; color: rgba(42,42,42,.55); font-style: italic; margin: 1.5rem 0; }
.prose img { border-radius: var(--radius-lg); margin: 1.5rem 0; }

/* ─── Pagination ────────────────────────────────────────────── */
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: .5rem; font-size: .875rem; font-weight: 500; border: 1.5px solid rgba(142,149,120,.25); color: var(--charcoal); transition: var(--transition); }
.pagination a:hover { background: var(--sage); color: #fff; border-color: var(--sage); }
.pagination .current { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }

/* ─── Event card ────────────────────────────────────────────── */
.event-card { background: #fff; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.event-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.event-date-badge { background: rgba(231,107,74,.1); border-radius: var(--radius); padding: .5rem .75rem; text-align: center; flex-shrink: 0; }
.event-date-badge .month { display: block; font-size: .7rem; font-weight: 700; color: var(--terracotta); text-transform: uppercase; letter-spacing: .07em; }
.event-date-badge .day   { display: block; font-family: var(--font-serif); font-size: 1.75rem; color: var(--terracotta); font-weight: 700; line-height: 1; }

/* ─── Value card ────────────────────────────────────────────── */
.value-card { background: #fff; border-radius: var(--radius-xl); padding: 2rem; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-title { font-family: var(--font-serif); font-size: 1.2rem; color: var(--charcoal); margin-bottom: .5rem; }
.value-text  { color: rgba(42,42,42,.6); font-size: .875rem; line-height: 1.65; }

/* ─── Misc helpers ──────────────────────────────────────────── */
.divider { width: 3rem; height: 2px; background: var(--terracotta); border-radius: 1px; margin: 1rem 0 1.5rem; }
.divider-center { margin: 1rem auto 1.5rem; }
.text-sage        { color: var(--sage); }
.text-terracotta  { color: var(--terracotta); }
.text-charcoal    { color: var(--charcoal); }
.text-muted       { color: rgba(42,42,42,.55); }
.text-white       { color: #fff; }
.bg-cream         { background: var(--cream); }
.bg-white         { background: #fff; }
.bg-charcoal      { background: var(--charcoal); }
.bg-sage          { background: var(--sage); }
.bg-sage-light    { background: rgba(142,149,120,.08); }
.serif            { font-family: var(--font-serif); }
.script           { font-family: var(--font-script); }
.mt-auto          { margin-top: auto; }
.gap-1            { gap: .5rem; }
.gap-2            { gap: 1rem; }
.gap-3            { gap: 1.5rem; }
.pt-nav           { padding-top: 5rem; }

/* ─── Lazy-load fade-in ─────────────────────────────────────── */
img.lazy { opacity: 0; transition: opacity .4s ease; }
img.lazy.loaded { opacity: 1; }

/* ─── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 3px; }

/* ─── Print ─────────────────────────────────────────────────── */
@media print {
  .site-nav, .site-footer, .flash-msg { display: none !important; }
  body { background: #fff; }
}
