/* ===== BASE.CSS – Shared styles for all Steverding pages ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1a3220;
  --green-main:   #2c5530;
  --green-mid:    #3d7044;
  --green-light:  #5a9962;
  --green-pale:   #e8f0e9;
  --cream:        #f7f3ee;
  --cream-dark:   #ede7dd;
  --sand:         #c8a96e;
  --sand-dark:    #a8884e;
  --text-dark:    #181c1a;
  --text-mid:     #3a4040;
  --text-light:   #6b7575;
  --white:        #ffffff;
  --border:       #d5cfc6;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --radius-sm: 6px; --radius-md: 12px; --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(.25,.46,.45,.94);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-label { font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--sand-dark); display: block; margin-bottom: .75rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,3rem); font-weight: 700; line-height: 1.15; color: var(--green-dark); }
.section-title span { color: var(--green-light); }

.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1.25rem; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .88rem; font-weight: 600; cursor: pointer; border: none; transition: all var(--transition); white-space: nowrap; }
.btn-primary { background: var(--green-main); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(44,85,48,.35); }
.btn-outline { background: transparent; color: var(--green-main); border: 2px solid var(--green-main); }
.btn-outline:hover { background: var(--green-main); color: white; }
.btn-lg { padding: .85rem 2rem; font-size: .95rem; }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Announcement Bar */
.announcement-bar { background: var(--green-dark); color: rgba(255,255,255,.88); font-size: .8rem; font-weight: 400; padding: .5rem 1.25rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; text-align: center; }
.announcement-bar a { color: var(--sand); font-weight: 600; }
.ann-sep { opacity: .4; }

/* Header */
header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .9rem 1.25rem; max-width: 1200px; margin: 0 auto; gap: 1rem; }
.logo-wrap { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.logo-icon { width: 44px; height: 44px; background: var(--green-main); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 26px; height: 26px; fill: white; }
.logo-text { line-height: 1.2; }
.logo-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--green-dark); display: block; }
.logo-tagline { font-size: .68rem; font-weight: 500; letter-spacing: .06em; color: var(--text-light); text-transform: uppercase; }
nav a { font-size: .88rem; font-weight: 500; color: var(--text-mid); padding: .45rem .75rem; border-radius: var(--radius-sm); transition: color var(--transition), background var(--transition); }
nav a:hover, nav a.active { color: var(--green-main); background: var(--green-pale); }
nav a.active { font-weight: 600; }
.header-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--white); z-index: 999; flex-direction: column; padding: 5rem 2rem 2rem; gap: .5rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.25rem; font-weight: 600; color: var(--green-dark); padding: .85rem 1rem; border-bottom: 1px solid var(--border); display: block; }

/* Breadcrumb */
.breadcrumb { background: var(--cream); border-bottom: 1px solid var(--border); padding: .75rem 0; }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--text-light); flex-wrap: wrap; }
.breadcrumb-inner a { color: var(--green-main); font-weight: 500; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-sep { opacity: .4; }

/* Page Hero */
.page-hero { background: var(--green-dark); color: white; padding: 4rem 0 3rem; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.page-hero-content h1 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.2rem); font-weight: 900; color: white; margin-bottom: .75rem; }
.page-hero-content p { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 580px; }

/* Footer */
footer { background: var(--green-dark); color: rgba(255,255,255,.8); }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 4rem 1.25rem 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand .logo-name { color: white; }
.footer-brand .logo-tagline { color: rgba(255,255,255,.5); }
.footer-desc { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.6); margin: 1rem 0 1.25rem; }
.footer-contact-items { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact-item { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.7); }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--sand); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.85); }
.footer-contact-item a:hover { color: var(--sand); }
.footer-col h4 { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: white; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--sand); }
.footer-hour { display: flex; justify-content: space-between; font-size: .82rem; margin-bottom: .4rem; }
.footer-hour .day { color: rgba(255,255,255,.55); }
.footer-hour .time { color: rgba(255,255,255,.85); font-weight: 500; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 1.25rem; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.45); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.45); }
.footer-legal a:hover { color: rgba(255,255,255,.75); }

.whatsapp-fab { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.5); transition: all var(--transition); }
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 30px; height: 30px; fill: white; }
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--green-main); color: white; padding: .5rem 1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-size: .85rem; font-weight: 600; z-index: 9999; }
.skip-link:focus { top: 0; }

@media(max-width:768px){
  nav,.header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 3rem 0 2.5rem; }
}
@media(max-width:1024px){
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
