/* ==========================================================================
   Mobile Pferdepraxis Wedemark — Theme Stylesheet
   Brand: Rot (#CC2020) + Anthrazit (#383838) + Gold (#D4A830)
   ========================================================================== */

/* --- Custom Properties --- */
:root {
    --c-bg:       #FAFAFA;
    --c-bg-alt:   #F2F2F2;
    --c-dark:     #383838;
    --c-red:      #CC2020;
    --c-red-dk:   #A51A1A;
    --c-gold:     #D4A830;
    --c-text:     #3A3A3A;
    --c-text-lt:  #6E6E6E;
    --c-border:   #E0E0E0;
    --f-display:  Georgia, 'Times New Roman', 'Noto Serif', serif;
    --f-body:     system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --max-w:      1200px;
    --gap:        clamp(40px, 6vw, 80px);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--f-body); color: var(--c-text); background: var(--c-bg); line-height: 1.7; font-weight: 300; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-red); text-decoration: none; transition: color .3s; }
a:hover { color: var(--c-red-dk); }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.2; color: var(--c-dark); }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding-inline: clamp(20px, 5vw, 60px); }

/* --- Skip Link --- */
.skip-link { position: absolute; top: -100px; left: 0; background: var(--c-red); color: #fff; padding: 12px 24px; z-index: 10000; font-size: 1rem; }
.skip-link:focus { top: 0; }

/* --- Animations --- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }

.js-enabled .animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.js-enabled .animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: .1s; }
.animate-delay-2 { transition-delay: .2s; }
.animate-delay-3 { transition-delay: .3s; }
.animate-delay-4 { transition-delay: .4s; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(56,56,56,.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.06); transition: background .4s, box-shadow .4s;
}
.site-header.scrolled { background: rgba(56,56,56,.97); box-shadow: 0 4px 30px rgba(0,0,0,.15); }

.site-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 clamp(20px, 5vw, 60px); height: 72px; max-width: var(--max-w); margin: 0 auto;
}

.site-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.site-brand img { height: 52px; width: auto; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.site-brand__text { font-family: var(--f-display); color: var(--c-bg-alt); font-size: 1.1rem; letter-spacing: .02em; }
.site-brand__text small { display: block; font-family: var(--f-body); font-size: .7rem; font-weight: 300; color: var(--c-gold); letter-spacing: .15em; text-transform: uppercase; margin-top: 2px; }

.site-nav__links { display: flex; list-style: none; gap: 6px; align-items: center; }
.site-nav__links a { color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 400; letter-spacing: .04em; padding: 8px 16px; border-radius: 6px; transition: all .3s; text-transform: uppercase; }
.site-nav__links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.site-nav__cta { background: var(--c-red) !important; color: #fff !important; font-weight: 500 !important; padding: 10px 22px !important; border-radius: 50px !important; }
.site-nav__cta:hover { background: var(--c-red-dk) !important; }

.site-nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.site-nav__toggle span { display: block; width: 24px; height: 2px; background: var(--c-bg-alt); transition: all .3s; border-radius: 2px; }
.site-nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.site-nav__toggle.active span:nth-child(2) { opacity: 0; }
.site-nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--c-dark); }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(56,56,56,.85) 0%, rgba(56,56,56,.5) 40%, rgba(56,56,56,.3) 100%); z-index: 1; }

.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: saturate(.7); animation: scaleIn 1.5s ease forwards; }

.hero__content { position: relative; z-index: 2; padding: 120px 0 80px; width: 100%; }

.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(204,32,32,.15); border: 1px solid rgba(204,32,32,.3); color: var(--c-red); padding: 6px 18px; border-radius: 50px; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 28px; animation: fadeUp .8s ease .2s both; }
.hero__badge::before { content: ''; width: 6px; height: 6px; background: var(--c-red); border-radius: 50%; }

.hero__title { font-size: clamp(2.6rem, 6vw, 4.8rem); color: var(--c-bg-alt); margin-bottom: 20px; max-width: 700px; animation: fadeUp .8s ease .4s both; }
.hero__title em { color: var(--c-gold); font-style: italic; }

.hero__subtitle { font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(242,242,242,.75); max-width: 520px; margin-bottom: 40px; line-height: 1.8; animation: fadeUp .8s ease .6s both; }

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp .8s ease .8s both; }

.hero__brand { display: flex; align-items: center; gap: 20px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 20px 28px; margin-top: 40px; max-width: 500px; animation: fadeUp .8s ease 1s both; }
.hero__brand img { height: 60px; width: auto; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.hero__brand figcaption { color: rgba(255,255,255,.8); font-size: .88rem; line-height: 1.5; }
.hero__brand figcaption strong { color: #fff; display: block; font-size: .95rem; margin-bottom: 2px; }

.hero__infobar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; background: rgba(56,56,56,.65); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,.08); }
.hero__infobar-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-block: 18px; }
.hero__infobar p { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.7); font-size: .85rem; margin: 0; }
.hero__infobar p a { color: rgba(255,255,255,.7); }
.hero__infobar p a:hover { color: #fff; }
.hero__infobar svg { width: 18px; height: 18px; fill: var(--c-gold); flex-shrink: 0; }
.hero__infobar strong { color: #fff; font-weight: 500; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-family: var(--f-body); font-size: .9rem; font-weight: 500; border-radius: 50px; border: none; cursor: pointer; transition: all .35s ease; letter-spacing: .03em; text-decoration: none; }
.btn--primary { background: var(--c-red); color: #fff; }
.btn--primary:hover { background: var(--c-red-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(204,32,32,.35); }
.btn--outline { background: transparent; color: var(--c-bg-alt); border: 1.5px solid rgba(242,242,242,.35); }
.btn--outline:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.5); }
.btn--submit { width: 100%; padding: 14px; background: var(--c-red); color: #fff; border: none; border-radius: 10px; font-family: var(--f-body); font-size: .95rem; font-weight: 500; cursor: pointer; transition: all .3s; letter-spacing: .03em; }
.btn--submit:hover { background: var(--c-red-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(204,32,32,.3); }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: clamp(60px, 10vw, 120px) 0; }
.section--alt { padding: clamp(60px, 10vw, 120px) 0; background: var(--c-bg-alt); position: relative; }
.section--dark { padding: clamp(60px, 10vw, 120px) 0; background: var(--c-dark); color: var(--c-bg-alt); position: relative; overflow: hidden; }
.section--dark::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,168,48,.06) 0%, transparent 70%); border-radius: 50%; }
.section--accent { padding: clamp(60px, 10vw, 120px) 0; background: var(--c-red); color: #fff; position: relative; overflow: hidden; }
.section--accent::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.1), transparent); }

.section__label { display: inline-flex; align-items: center; gap: 10px; font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--c-red); margin-bottom: 16px; }
.section__label::before { content: ''; width: 30px; height: 2px; background: var(--c-red); border-radius: 1px; }
.section--dark .section__label { color: var(--c-gold); }
.section--dark .section__label::before { background: var(--c-gold); }
.section--dark .section__title { color: var(--c-bg-alt); }
.section--dark .section__subtitle { color: rgba(242,242,242,.6); }
.section--accent .section__label { color: rgba(255,255,255,.8); }
.section--accent .section__label::before { background: rgba(255,255,255,.6); }
.section--accent .section__title { color: #fff; }

.section__title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.section__subtitle { font-size: 1.05rem; color: var(--c-text-lt); max-width: 560px; line-height: 1.8; margin-bottom: 20px; }

.section__header { text-align: center; margin-bottom: clamp(40px, 6vw, 70px); }
.section__header .section__subtitle { margin-inline: auto; }
.section__header--center { text-align: center; margin-bottom: 10px; }
.section__header--center .section__label { justify-content: center; }

/* --- Grid --- */
.grid--2col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: center; }

/* ==========================================================================
   Cards (Services)
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.card { background: #fff; border-radius: 16px; padding: clamp(28px, 3vw, 40px); border: 1px solid var(--c-border); transition: all .4s ease; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--c-red), var(--c-gold)); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(56,56,56,.08); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card__icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--c-bg-alt), rgba(212,168,48,.12)); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card__icon svg { width: 24px; height: 24px; fill: var(--c-red); }
.card__title { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--c-text-lt); font-size: .92rem; line-height: 1.7; }

/* ==========================================================================
   Checklist (Full Services)
   ========================================================================== */
.checklist { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; margin-top: clamp(30px, 5vw, 50px); }
.checklist li { display: flex; align-items: flex-start; gap: 12px; padding: 16px 20px; background: rgba(255,255,255,.04); border-radius: 10px; border: 1px solid rgba(255,255,255,.06); transition: all .3s; font-size: .92rem; color: rgba(242,242,242,.85); }
.checklist li:hover { background: rgba(255,255,255,.08); border-color: rgba(212,168,48,.2); }
.checklist svg { width: 18px; height: 18px; fill: var(--c-gold); flex-shrink: 0; margin-top: 3px; }

/* ==========================================================================
   Gallery (Images)
   ========================================================================== */
.gallery img { border-radius: 12px; object-fit: cover; width: 100%; }

.gallery--mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gallery--mosaic img:first-child { grid-row: span 2; height: 100%; min-height: 300px; }
.gallery--mosaic img:nth-child(2),
.gallery--mosaic img:nth-child(3) { height: calc(50% - 8px); min-height: 140px; }

.gallery--side { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gallery--side img { height: 100%; min-height: 200px; }

/* ==========================================================================
   Features (dl/dt/dd)
   ========================================================================== */
.features { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.features__item { display: flex; gap: 14px; align-items: flex-start; }
.features__item dt { display: flex; align-items: center; gap: 10px; font-family: var(--f-display); font-size: 1rem; font-weight: 400; color: var(--c-dark); white-space: nowrap; }
.features__item dt svg { width: 20px; height: 20px; fill: var(--c-red); flex-shrink: 0; background: rgba(204,32,32,.1); padding: 8px; width: 36px; height: 36px; border-radius: 10px; }
.features__item dd { font-size: .88rem; color: var(--c-text-lt); margin-top: 4px; }

/* ==========================================================================
   Team
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; max-width: 900px; margin: 0 auto; }
.team-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--c-border); transition: all .4s; }
.team-card:hover { box-shadow: 0 16px 48px rgba(56,56,56,.08); transform: translateY(-4px); }

.team-card__image { position: relative; padding-top: 75%; overflow: hidden; background: var(--c-bg-alt); }
.team-card__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.team-card:hover .team-card__image img { transform: scale(1.05); }

.team-card__body { padding: clamp(24px, 3vw, 32px); }
.team-card__body h3 { font-size: 1.4rem; margin-bottom: 4px; }
.team-card__role { font-size: .85rem; color: var(--c-red); font-weight: 500; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 14px; }
.team-card__body > p { font-size: .9rem; color: var(--c-text-lt); line-height: 1.7; }

.team-card__cv { margin-top: 16px; }
.team-card__cv summary { cursor: pointer; font-size: .85rem; font-weight: 500; color: var(--c-red); list-style: none; display: flex; align-items: center; gap: 6px; }
.team-card__cv summary::-webkit-details-marker { display: none; }
.team-card__cv summary::after { content: '→'; transition: transform .3s; }
.team-card__cv[open] summary::after { transform: rotate(90deg); }
.team-card__cv ul { margin-top: 12px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.team-card__cv li { font-size: .82rem; color: var(--c-text-lt); padding-left: 16px; position: relative; }
.team-card__cv li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--c-text-lt); position: absolute; left: 0; top: 8px; }

/* ==========================================================================
   Membership Badge
   ========================================================================== */
.membership { text-align: center; padding: 40px 0; background: var(--c-bg); }
.membership img { max-width: 180px; margin: 0 auto; opacity: .7; transition: opacity .3s; }
.membership img:hover { opacity: 1; }
.membership p { font-size: .85rem; color: var(--c-text-lt); margin-top: 12px; }

/* ==========================================================================
   Hours
   ========================================================================== */
.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 40px; position: relative; z-index: 1; }
.hours-card { background: rgba(255,255,255,.12); border-radius: 12px; padding: 24px; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.1); text-align: center; }
.hours-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.hours-card p { font-size: .92rem; opacity: .85; }
.hours-card--emergency { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.25); }
.hours-card--emergency h3 { color: #FFD54F; }
.hours-card--emergency a { color: #fff; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-info { font-style: normal; display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.contact-info__item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info__item svg { width: 44px; height: 44px; padding: 12px; border-radius: 12px; background: rgba(204,32,32,.1); fill: var(--c-red); flex-shrink: 0; }
.contact-info__item strong { display: block; font-family: var(--f-display); font-size: .95rem; margin-bottom: 4px; color: var(--c-dark); }
.contact-info__item p { font-size: .92rem; color: var(--c-text-lt); margin: 0; }
.contact-info__item a { color: var(--c-text-lt); }
.contact-info__item a:hover { color: var(--c-red); }

/* --- Contact Form --- */
.form-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.contact-form { background: #fff; border-radius: 16px; padding: clamp(28px, 4vw, 40px); border: 1px solid var(--c-border); }
.contact-form h3 { font-size: 1.5rem; 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: .82rem; font-weight: 500; color: var(--c-text); margin-bottom: 6px; letter-spacing: .03em; text-transform: uppercase; }
.form-group input,
.form-group textarea { width: 100%; padding: 12px 16px; font-family: var(--f-body); font-size: .92rem; border: 1.5px solid var(--c-border); border-radius: 10px; background: var(--c-bg); color: var(--c-text); transition: all .3s; outline: none; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--c-red); box-shadow: 0 0 0 3px rgba(204,32,32,.1); }
.form-group textarea { height: 120px; resize: vertical; }

.form-consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; }
.form-consent input[type="checkbox"] { margin-top: 4px; accent-color: var(--c-red); width: 16px; height: 16px; flex-shrink: 0; }
.form-consent label { font-size: .8rem; color: var(--c-text-lt); line-height: 1.5; }
.form-consent a { text-decoration: underline; }

.form-success { padding: 24px; text-align: center; color: var(--c-text); }
.form-success p:first-child { font-size: 1.1rem; }
.form-success p:last-child { font-size: .9rem; margin-top: 8px; color: var(--c-text-lt); }

/* ==========================================================================
   Map (click-to-load for DSGVO)
   ========================================================================== */
.map { height: 400px; position: relative; background: var(--c-bg-alt); }
.map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.8) contrast(1.05); }
.map__consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px; background: var(--c-bg-alt); gap: 12px; cursor: pointer; }
.map__consent svg { width: 48px; height: 48px; fill: var(--c-text-lt); opacity: .4; }
.map__consent p { font-size: .9rem; color: var(--c-text-lt); max-width: 420px; line-height: 1.6; }
.map__consent strong { color: var(--c-text); display: block; font-size: 1rem; margin-bottom: 4px; }
.map__consent .btn { margin-top: 8px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--c-dark); color: rgba(255,255,255,.6); padding: 60px 0 0; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 48px); padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }

.site-footer__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 16px; }
.site-footer__brand img { height: 48px; border-radius: 6px; }
.site-footer__brand span { font-family: var(--f-display); color: var(--c-bg-alt); font-size: 1.1rem; }
.site-footer p { font-size: .88rem; line-height: 1.7; }
.site-footer__brand + p { max-width: 320px; }
.site-footer h2 { font-family: var(--f-body); font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--c-bg-alt); margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.site-footer a:hover { color: var(--c-gold); text-decoration: underline; }

.site-footer__bottom { padding: 24px 0; font-size: .8rem; border-top: 1px solid rgba(255,255,255,.06); }
.site-footer__bottom p { max-width: none; }
.site-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.site-footer__legal { display: flex; gap: 20px; }
.site-footer__legal a { color: rgba(255,255,255,.6); font-size: .8rem; text-decoration: underline; text-underline-offset: 3px; }
.site-footer__legal a:hover { color: var(--c-gold); }

/* ==========================================================================
   Legal Pages (Impressum, Datenschutz)
   ========================================================================== */
.legal-page { padding: 120px 0 80px; min-height: 70vh; }
.legal-page .container { max-width: 820px; }

.breadcrumb { font-size: .85rem; color: var(--c-text-lt); margin-bottom: 24px; }
.breadcrumb a { color: var(--c-red); }

.legal-content { font-size: .95rem; line-height: 1.8; }
.legal-content h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 32px; }
.legal-content h2 { font-size: 1.3rem; margin-top: 40px; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--c-border); color: var(--c-dark); }
.legal-content h3 { font-size: 1.05rem; margin-top: 28px; margin-bottom: 10px; color: var(--c-text); }
.legal-content p { margin-bottom: 14px; }
.legal-content ul, .legal-content ol { margin: 14px 0; padding-left: 24px; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { text-decoration: underline; }
.legal-content strong { color: var(--c-dark); }
.legal-content .highlight-box { background: rgba(204,32,32,.05); border-left: 3px solid var(--c-red); padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 20px 0; }
.legal-content .highlight-box p { margin-bottom: 0; font-size: .92rem; }

/* ==========================================================================
   404 Page
   ========================================================================== */
.error-page { text-align: center; padding: 160px 0 80px; min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.error-page h1 { font-size: clamp(3rem, 8vw, 6rem); color: var(--c-border); margin-bottom: 16px; }
.error-page p { font-size: 1.1rem; color: var(--c-text-lt); margin-bottom: 32px; }

/* ==========================================================================
   Print
   ========================================================================== */
@media print {
    .site-header, .site-footer, .map, .hero__infobar, .hero__actions { display: none; }
    .hero { min-height: auto; background: #fff; }
    .hero::before { display: none; }
    .hero__title { color: #000; }
    body { font-size: 12pt; color: #000; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .grid--2col, .site-footer__grid { grid-template-columns: 1fr; }
    .gallery--mosaic { order: -1; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .site-nav__toggle { display: flex; }
    .site-nav__links {
        position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100vh;
        background: var(--c-dark); flex-direction: column; padding: 100px 32px 40px;
        gap: 4px; transition: right .4s ease; box-shadow: -10px 0 30px rgba(0,0,0,.2);
    }
    .site-nav__links.open { right: 0; }
    .site-nav__links a { font-size: 1rem; padding: 14px 16px; width: 100%; }
    .site-nav__cta { margin-top: 16px; text-align: center; }

    .hero__infobar-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
    .form-row { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .checklist { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__bottom-inner { flex-direction: column; text-align: center; }
    .hours-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .gallery--mosaic { grid-template-columns: 1fr; }
    .gallery--mosaic img:first-child { grid-row: auto; }
    .gallery--side { grid-template-columns: 1fr; }
    .hours-grid { grid-template-columns: 1fr; }
    .hero__title { font-size: 2.2rem; }
    .hero__brand { flex-direction: column; text-align: center; }
}
