/* ============================================
   RESTAURANT BUCKHUSER — Warmes Gastro-Editorial
   Erdton + Holzbraun + Cream, Fraunces + Inter
   ============================================ */

:root {
    --bg:           #FBF6ED;
    --bg-alt:       #FFFFFF;
    --bg-dark:      #3A2A1C;
    --bg-deep:      #2A1E13;
    --surface:      #F1E7D6;
    --ink:          #2A1E13;
    --ink-soft:     #4A3A2A;
    --ink-muted:    #84715D;
    --ink-light:    #B3A48F;
    --line:         #E2D6C2;
    --line-soft:    #EDE4D3;
    --accent:       #8A5A36;
    --accent-deep:  #6B4226;
    --accent-light: #C99B72;

    --font-display: 'Fraunces', serif;
    --font-body:    'Inter', sans-serif;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.08;
}
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }

em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--accent);
}
h1 em, h2 em, h3 em, h4 em {
    display: inline-block;
    padding-right: 0.08em;
}

.label-eyebrow {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1.25rem;
}

/* === NAV — zentriertes Logo, Reservieren prominent rechts === */
.nav { background: transparent; }
.nav.scrolled {
    background: rgba(251, 246, 237, 0.95);
    border-bottom-color: var(--line);
}
.nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.nav-links { justify-self: start; gap: 1.75rem; }
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 600;
    letter-spacing: 0;
    text-align: center;
    justify-self: center;
}
.nav-logo small { letter-spacing: 0.24em; }
.nav-links a { font-size: 0.8rem; font-weight: 500; }
.nav-right {
    justify-self: end;
    display: flex; align-items: center; gap: 1.25rem;
}
.nav-cta {
    margin-left: 0 !important;
    border-radius: 999px;
    border-color: var(--accent) !important;
    background: var(--accent) !important;
    color: var(--bg) !important;
    font-weight: 600;
}
.nav-cta:hover {
    background: var(--accent-deep) !important;
    border-color: var(--accent-deep) !important;
    color: var(--bg) !important;
}

/* === HERO — Split, hell, EXAKT fit-to-screen === */
.hero {
    height: 100vh; max-height: 100vh; min-height: 0;
    background: var(--bg);
    color: var(--ink);
    padding: 0;
    overflow: hidden;
    display: flex; align-items: stretch;
}
.hero-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    width: 100%;
    height: 100%;
    align-items: stretch;
}
.hero-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: 7.5rem 4rem 3rem clamp(2.5rem, 6vw, 7rem);
    max-width: 760px;
    overflow: visible;
}
.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--line);
}
.hero h1 {
    color: var(--ink);
    font-size: clamp(2.8rem, 6.5vw, 5.75rem);
    font-weight: 600;
    line-height: 1.0;
    margin-bottom: 1.5rem;
    max-width: 12ch;
}
.hero h1 .brand-line { display: block; }
.hero h1 .brand-line em {
    font-weight: 500;
    color: var(--accent);
}
.hero .lead {
    color: var(--ink-soft);
    font-size: 1.1rem;
    max-width: 50ch;
    margin-bottom: 2.25rem;
}
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-bottom: 0; }
.hero-actions .btn {
    background: var(--accent); color: var(--bg);
    border-radius: 999px;
    padding: 1rem 2.4rem;
    font-family: var(--font-body);
    font-size: 0.78rem; letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 600;
    border: none;
    transition: background 250ms;
    display: inline-flex;
}
.hero-actions .btn:hover { background: var(--accent-deep); transform: none; }
.hero-actions .secondary {
    font-family: var(--font-body);
    font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-soft); font-weight: 600;
    border-bottom: 1px solid var(--ink-soft);
    padding-bottom: 0.3rem;
}
.hero-actions .secondary:hover { color: var(--accent); border-color: var(--accent); }
.hero-footnote {
    display: flex; align-items: center; gap: 1rem;
    margin-top: 2.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
    font-size: 0.8rem; color: var(--ink-muted);
    flex-wrap: wrap;
}
.hero-footnote .hf-loc {
    font-family: var(--font-display); font-weight: 600;
    font-size: 0.98rem; color: var(--ink);
}
.hero-footnote .hf-divider { width: 1px; height: 18px; background: var(--line); }

.hero-img-side {
    position: relative;
    overflow: hidden;
    background: var(--surface);
}
.hero-img-side img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-img-caption {
    position: absolute; bottom: 2rem; left: 2rem;
    background: rgba(42, 30, 19, 0.82);
    color: var(--bg);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    padding: 0.7rem 1.4rem;
    letter-spacing: 0.02em;
}

/* === ÖFFNUNGSZEITEN-RIBBON (statt Marquee) === */
.times-ribbon {
    background: var(--bg-dark);
    color: var(--bg);
    padding: 1.6rem 0;
}
.tr-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 2.5rem;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 0.8rem 1.5rem;
}
.tr-item {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 500;
    color: rgba(251, 246, 237, 0.85);
    white-space: nowrap;
}
.tr-item strong {
    font-family: var(--font-body);
    font-size: 0.66rem; font-weight: 600;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--accent-light);
    margin-right: 0.5rem;
}
.tr-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--accent-light); flex-shrink: 0;
}

/* kurze Notebooks (1280×800): Hero kompakter, bleibt exakt in 100vh */
@media (min-width: 981px) and (max-height: 840px) {
    .hero-content { padding-top: 6.5rem; padding-bottom: 2rem; }
    .hero-eyebrow { margin-bottom: 1.25rem; padding-bottom: 0.8rem; }
    .hero h1 { font-size: clamp(2.5rem, 5.5vw, 4.6rem); margin-bottom: 1.1rem; }
    .hero .lead { font-size: 0.98rem; margin-bottom: 1.5rem; }
    .hero-footnote { margin-top: 1.6rem; }
}

/* === PHILOSOPHIE === */
.phil-section { background: var(--bg); padding: 7.5rem 0; }
.phil-head { max-width: 680px; margin-bottom: 4rem; }
.phil-head h2 { margin-bottom: 1.25rem; }
.phil-head p { font-size: 1.08rem; line-height: 1.7; color: var(--ink-soft); }
.phil-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
}
.phil-cell {
    padding: 2.75rem 2.5rem 3rem 0;
    border-bottom: 1px solid var(--line);
}
.phil-cell:not(:last-child) { border-right: 1px solid var(--line); padding-right: 2.75rem; }
.phil-cell:not(:first-child) { padding-left: 2.75rem; }
.phil-cell .num {
    font-family: var(--font-display); font-style: italic;
    font-size: 0.95rem; color: var(--accent);
    margin-bottom: 1.4rem;
}
.phil-cell h3 {
    font-size: 1.45rem; font-weight: 600;
    margin-bottom: 0.9rem;
}
.phil-cell p { font-size: 0.94rem; line-height: 1.65; color: var(--ink-muted); }

/* === TAGESZEITEN (dark) === */
.times-section {
    background: var(--bg-dark);
    color: var(--bg);
    padding: 8rem 0;
}
.times-section .label-eyebrow { color: var(--accent-light); }
.times-section h2 { color: var(--bg); }
.times-section h2 em { color: var(--accent-light); }
.times-head { max-width: 680px; margin-bottom: 4rem; }
.times-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(251, 246, 237, 0.25);
}
.time-cell {
    padding: 2.5rem 2rem 2.75rem 0;
    border-bottom: 1px solid rgba(251, 246, 237, 0.18);
}
.time-cell:not(:last-child) { border-right: 1px solid rgba(251, 246, 237, 0.18); }
.time-cell:not(:first-child) { padding-left: 2.25rem; }
.tc-label {
    font-family: var(--font-body);
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1.1rem;
}
.tc-time {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 500;
    color: var(--bg);
    margin-bottom: 0.9rem;
    letter-spacing: -0.01em;
}
.time-cell p { font-size: 0.86rem; line-height: 1.6; color: rgba(251, 246, 237, 0.6); }
.times-note {
    margin-top: 2.5rem;
    font-size: 0.95rem; line-height: 1.65;
    color: rgba(251, 246, 237, 0.75);
    max-width: 70ch;
}
.times-note a {
    color: var(--accent-light);
    border-bottom: 1px solid var(--accent-light);
    padding-bottom: 0.15rem;
}
.times-note a:hover { opacity: 0.8; }

/* === KÜCHE === */
.kitchen-section { background: var(--bg-alt); padding: 8rem 0; }
.kitchen-grid {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 5rem; align-items: center;
}
.kitchen-images {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
}
.ki-main {
    overflow: hidden;
    aspect-ratio: 4/5;
    max-height: 620px;
}
.ki-main img { width: 100%; height: 100%; object-fit: cover; }
.ki-small {
    position: absolute;
    right: -2.5rem; bottom: -2.5rem;
    width: 45%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 8px solid var(--bg-alt);
}
.ki-small img { width: 100%; height: 100%; object-fit: cover; }
.kitchen-copy h2 { margin-bottom: 1.5rem; }
.kitchen-copy p {
    font-size: 1.05rem; line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 1.75rem;
    max-width: 54ch;
}
/* Menü-Karte mit Serif-Doppelrahmen — Karten-Look */
.menu-card {
    border: 1px solid var(--accent);
    padding: 5px;
    background: var(--bg);
    margin-bottom: 1.75rem;
    max-width: 480px;
}
.menu-card-inner {
    border: 1px solid var(--accent);
    padding: 2.25rem 2.25rem 1.75rem;
    text-align: center;
}
.mc-title {
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 600;
    color: var(--ink);
    padding-bottom: 1.1rem;
    margin-bottom: 0.25rem;
    position: relative;
}
.mc-title::after {
    content: '';
    position: absolute; bottom: 0.55rem; left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 1px;
    background: var(--accent);
}
.mc-note {
    font-family: var(--font-display); font-style: italic;
    font-size: 0.9rem; color: var(--ink-muted);
    margin-top: 1.1rem;
}
.kitchen-points {
    list-style: none; padding: 0; margin: 0;
}
.kitchen-points li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1rem; color: var(--ink-soft);
}
.kitchen-points li:last-child { border-bottom: none; }
.link-arrow {
    font-family: var(--font-body);
    font-size: 0.78rem; letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 600;
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 0.4rem;
    display: inline-block;
}
.link-arrow:hover { color: var(--accent-deep); border-color: var(--accent-deep); }

/* === GALERIE === */
.gallery-strip { background: var(--surface); padding: 6.5rem 0; }
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.gallery-grid figure { margin: 0; }
.gallery-grid figure > img {
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%; height: auto;
}
.gallery-grid figcaption {
    font-family: var(--font-display); font-style: italic;
    font-size: 0.95rem; color: var(--ink-muted);
    margin-top: 0.9rem;
}

/* === QUARTIER (Quote) === */
.quartier-section {
    background: var(--bg);
    padding: 8.5rem 0;
    text-align: center;
    position: relative;
}
.quartier-section::before {
    content: '';
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px; height: 4rem;
    background: var(--accent);
}
.quartier-section blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.8vw, 2.9rem);
    font-weight: 500;
    line-height: 1.25;
    max-width: 28ch;
    margin: 0 auto 1.75rem;
    color: var(--ink);
}
.quartier-section blockquote em { color: var(--accent); }
.quartier-sub {
    font-size: 0.95rem; color: var(--ink-muted);
    max-width: 52ch; margin: 0 auto;
}

/* === ANLÄSSE (dark) === */
.events-section {
    background: var(--bg-deep);
    color: var(--bg);
    padding: 8rem 0;
}
.events-section .label-eyebrow { color: var(--accent-light); }
.events-section h2 { color: var(--bg); max-width: 16ch; }
.events-section h2 em { color: var(--accent-light); }
.events-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: start;
}
.events-copy p {
    font-size: 1.05rem; line-height: 1.7;
    color: rgba(251, 246, 237, 0.78);
    margin-bottom: 1.75rem;
}
.placeholder-banner.light {
    background: rgba(251, 246, 237, 0.07);
    border-left-color: var(--accent-light);
    color: rgba(251, 246, 237, 0.78);
}
.placeholder-banner.light strong { color: var(--accent-light); }
.link-arrow.light { color: var(--accent-light); border-color: var(--accent-light); }
.link-arrow.light:hover { opacity: 0.8; }

/* === KONTAKT === */
.contact-section { background: var(--bg-alt); padding: 8rem 0; }
.contact-grid-editorial {
    display: grid; grid-template-columns: 1.05fr 1fr;
    gap: 5rem; align-items: stretch;
}
.contact-info-block h2 { margin-bottom: 2rem; }
.contact-rows { border-top: 1px solid var(--ink); }
.contact-row {
    display: grid; grid-template-columns: 140px 1fr;
    gap: 2rem; padding: 1.4rem 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}
.contact-row .label {
    font-family: var(--font-body);
    font-size: 0.7rem; letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ink-muted); font-weight: 600;
}
.contact-row .value {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 500;
    color: var(--ink); line-height: 1.4;
}
.contact-row a:hover { color: var(--accent); }
.arrival-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.25rem;
}
.arrival-cell h4 {
    font-family: var(--font-body);
    font-size: 0.74rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.arrival-cell p { font-size: 0.88rem; line-height: 1.6; color: var(--ink-muted); }
.contact-map-editorial {
    min-height: 480px;
    background: var(--surface);
    overflow: hidden;
}
.contact-map-editorial iframe {
    width: 100%; height: 100%; border: 0;
    filter: grayscale(0.75) contrast(1.08) brightness(1.03) sepia(0.12);
}

/* === FINAL CTA === */
.final-cta {
    background: var(--accent);
    color: var(--bg);
    padding: 7.5rem 0;
    position: relative;
    overflow: hidden;
}
.final-cta::after {
    content: 'B';
    position: absolute;
    right: -2rem; bottom: -7rem;
    font-family: var(--font-display); font-style: italic;
    font-size: 30rem; line-height: 1;
    color: rgba(251, 246, 237, 0.08);
    pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 2; max-width: 680px; }
.final-cta .label-eyebrow { color: rgba(251, 246, 237, 0.7); }
.final-cta h2 {
    color: var(--bg);
    max-width: 17ch;
    padding-right: 0.3em;
    margin-bottom: 1.5rem;
}
.final-cta h2 em {
    color: var(--bg);
    display: inline-block;
    padding-right: 0.2em;
}
.final-cta .lead {
    color: rgba(251, 246, 237, 0.85);
    max-width: 46ch;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}
/* Reservations-CTA mit XXL-Telefonnummer */
.final-cta .xxl-tel {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 4.25rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: var(--bg);
    margin-bottom: 1.75rem;
    border-bottom: 2px solid rgba(251, 246, 237, 0.45);
    padding-bottom: 0.5rem;
    transition: border-color 250ms;
}
.final-cta .xxl-tel:hover { border-color: var(--bg); color: var(--bg); }
.final-cta .btn-row { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.final-cta .btn-secondary {
    color: var(--bg);
    font-family: var(--font-body);
    font-size: 0.78rem; letter-spacing: 0.16em;
    text-transform: uppercase; font-weight: 600;
    border-bottom: 1px solid var(--bg);
    padding-bottom: 0.4rem;
}
.final-cta .btn-secondary:hover { opacity: 0.75; }

/* === FOOTER === */
.footer {
    background: var(--bg);
    color: var(--ink-soft);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--line);
}
.footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    padding-bottom: 2rem;
}
.footer h4 {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 600;
}
.footer h5 {
    color: var(--ink-muted);
    letter-spacing: 0.26em;
}
.footer p { color: var(--ink-muted); margin-top: 0.75rem; max-width: 34ch; }
.footer ul li { color: var(--ink-soft); font-size: 0.92rem; }
.footer ul a { color: var(--ink-soft); }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid var(--line);
    color: var(--ink-muted);
}
.footer-bottom a { color: var(--ink-muted); }
.footer-bottom a:hover { color: var(--accent); }

/* === HERO ANIMATIONEN === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleReveal {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.hero-eyebrow { opacity: 0; animation: fadeInLeft 0.9s cubic-bezier(0.22,0.61,0.36,1) 0.2s both; }
.hero h1 .brand-line { opacity: 0; animation: fadeInUp 1s cubic-bezier(0.22,0.61,0.36,1) both; }
.hero h1 .brand-line:nth-child(1) { animation-delay: 0.3s; }
.hero h1 .brand-line:nth-child(2) { animation-delay: 0.45s; }
.hero h1 .brand-line:nth-child(3) { animation-delay: 0.6s; }
.hero .lead { opacity: 0; animation: fadeInUp 1s cubic-bezier(0.22,0.61,0.36,1) 1.0s both; }
.hero-actions { opacity: 0; animation: fadeInUp 1s cubic-bezier(0.22,0.61,0.36,1) 1.3s both; }
.hero-footnote { opacity: 0; animation: fadeIn 1s ease 1.7s both; }
.hero-img-side { opacity: 0; animation: scaleReveal 1.4s cubic-bezier(0.22,0.61,0.36,1) 0.15s both; }
.hero-img-caption { opacity: 0; animation: fadeIn 1s ease 1.5s both; }

/* === RESPONSIVE === */
@media (max-width: 1180px) {
    .hero-content { padding-left: 2.5rem; padding-right: 2.5rem; }
    .times-grid { grid-template-columns: repeat(2, 1fr); }
    .time-cell:nth-child(2) { border-right: none; }
    .time-cell:nth-child(3) { padding-left: 0; }
    .kitchen-grid { gap: 4rem; }
}
@media (max-width: 980px) {
    section { padding: 5rem 0; }
    .hero { height: auto; max-height: none; min-height: 0; }
    .hero-split { grid-template-columns: 1fr; height: auto; }
    .hero-content { padding: 7rem 1.5rem 0; max-width: 100%; }
    .hero-img-side { order: 2; aspect-ratio: 4/3; max-height: 320px; margin-top: 2.5rem; }
    .nav-inner { display: flex; }
    .nav-logo { text-align: left; }
    .phil-grid { grid-template-columns: 1fr; }
    .phil-cell,
    .phil-cell:not(:last-child),
    .phil-cell:not(:first-child) { border-right: none; padding: 2.25rem 0; }
    .kitchen-grid, .events-grid { grid-template-columns: 1fr; gap: 3rem; }
    .ki-small { right: 0; bottom: -2rem; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .contact-grid-editorial { grid-template-columns: 1fr; gap: 3rem; }
    .contact-map-editorial { min-height: 340px; }
    .tr-inner { justify-content: flex-start; }
    .phil-section, .gallery-strip, .quartier-section { padding: 5rem 0; }
    .times-section, .kitchen-section, .events-section, .contact-section { padding: 5.5rem 0; }
}
@media (max-width: 560px) {
    .hero-content { padding: 6rem 1.25rem 0; }
    .hero h1 { font-size: clamp(2.5rem, 12vw, 3.4rem); }
    .hero .lead { font-size: 0.98rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .hero-img-side { max-height: 260px; }
    .nav-cta { padding: 0.55rem 1.1rem; font-size: 0.72rem; }
    .nav-right { gap: 0.9rem; }
    .times-ribbon { padding: 1.4rem 0; }
    .tr-inner { padding: 0 1.25rem; gap: 0.6rem 1rem; }
    .tr-item { font-size: 0.92rem; }
    .menu-card-inner { padding: 1.75rem 1.25rem 1.4rem; }
    .xxl-tel { font-size: 2rem; }
    .times-grid { grid-template-columns: 1fr; }
    .time-cell, .time-cell:not(:last-child), .time-cell:not(:first-child) {
        border-right: none; padding: 2rem 0;
    }
    .gallery-grid { grid-template-columns: 1fr; gap: 2rem; }
    .arrival-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-row { grid-template-columns: 110px 1fr; gap: 1rem; }
    .contact-row .value { font-size: 1.15rem; }
    .final-cta .btn-row { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .final-cta::after { font-size: 18rem; }
}
