/* =========================================================
   Apartman Klisic – Sommerliches Küsten-Design
   ========================================================= */

:root {
    --sea-deep:   #0a6ca8;
    --sea:        #1394c9;
    --sea-light:  #4ec9e8;
    --turquoise:  #35d0c4;
    --sand:       #f7efe2;
    --sand-warm:  #fbe7c6;
    --sun:        #ffb347;
    --coral:      #ff7a59;
    --ink:        #14323f;
    --ink-soft:   #4a6572;
    --white:      #ffffff;
    --radius:     18px;
    --shadow:     0 18px 45px rgba(10, 60, 90, 0.14);
    --shadow-sm:  0 8px 24px rgba(10, 60, 90, 0.10);
    --max:        1180px;
    --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', system-ui, sans-serif;
    color: var(--ink);
    background: var(--sand);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 15px 34px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
}
.btn-primary {
    background: linear-gradient(135deg, var(--coral), var(--sun));
    color: #fff;
    box-shadow: 0 12px 26px rgba(255, 122, 89, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(255, 122, 89, 0.5); }
.btn-ghost {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: #fff; color: var(--sea-deep); transform: translateY(-3px); }
.btn-block { width: 100%; text-align: center; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 6px 24px rgba(10, 60, 90, 0.10);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; color: #fff; transition: color 0.4s; }
.logo-mark { font-size: 1.5rem; }
.logo-text { font-family: 'Playfair Display', serif; letter-spacing: 0.03em; }
.logo-text strong { color: var(--sun); }
.site-header.scrolled .logo { color: var(--ink); }

.main-nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
    position: relative;
    padding: 8px 16px;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 999px;
    transition: color 0.3s, background 0.3s;
}
.site-header.scrolled .nav-link { color: var(--ink-soft); }
.nav-link:not(.btn-nav):hover { color: var(--sun); }
.site-header.scrolled .nav-link:not(.btn-nav):hover { color: var(--coral); }
.btn-nav {
    background: linear-gradient(135deg, var(--coral), var(--sun));
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(255, 122, 89, 0.35);
}
.btn-nav:hover { transform: translateY(-2px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: 0.3s; }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* ---------- Sprachwähler ---------- */
.lang-switch { position: relative; margin-left: 10px; }
.lang-current {
    display: flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.16);
    border: 1.5px solid rgba(255,255,255,0.4);
    color: #fff; cursor: pointer;
    padding: 7px 12px; border-radius: 999px;
    font-family: inherit; font-size: 0.88rem; font-weight: 600;
    backdrop-filter: blur(4px); transition: background 0.3s, border 0.3s, color 0.3s;
}
.lang-current:hover { background: rgba(255,255,255,0.28); }
.site-header.scrolled .lang-current { color: var(--ink); border-color: rgba(20,50,63,0.2); background: rgba(20,50,63,0.06); }
.lang-flag { font-size: 1.05rem; line-height: 1; }
.lang-caret { font-size: 0.7rem; opacity: 0.8; }
.lang-menu {
    position: absolute; top: calc(100% + 10px); right: 0;
    list-style: none; margin: 0; padding: 8px;
    background: #fff; border-radius: 14px;
    box-shadow: var(--shadow); min-width: 180px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    z-index: 130;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu li {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 9px;
    color: var(--ink); font-size: 0.92rem; font-weight: 500; cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.lang-menu li:hover { background: var(--sand); }
.lang-menu li.active { background: linear-gradient(135deg, rgba(255,122,89,0.15), rgba(255,179,71,0.15)); color: var(--coral); font-weight: 600; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: url('../images/Image00003.jpeg') center/cover no-repeat fixed;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 60, 90, 0.35) 0%, rgba(10, 60, 90, 0.15) 40%, rgba(10, 60, 90, 0.55) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 24px; animation: heroRise 1.1s var(--ease) both; }
.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 22px;
    color: var(--sand-warm);
}
.hero-title { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; text-shadow: 0 6px 30px rgba(0,0,0,0.35); }
.hero-title span { color: var(--sun); }
.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    margin: 24px auto 38px;
    max-width: 620px;
    font-weight: 300;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
    position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
    width: 26px; height: 44px; border: 2px solid rgba(255,255,255,0.7); border-radius: 16px; z-index: 2;
}
.scroll-cue span {
    position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 5px; height: 8px; background: #fff; border-radius: 3px;
    animation: scrollDot 1.6s infinite;
}

@keyframes heroRise { from { opacity: 0; transform: translateY(38px); } to { opacity: 1; transform: none; } }
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 50% { opacity: 1; } 100% { opacity: 0; top: 24px; } }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--sea);
    margin-bottom: 12px;
}
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; color: var(--ink); margin-bottom: 20px; }
.section-lead { color: var(--ink-soft); max-width: 620px; margin: 0 auto; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }

/* ---------- About ---------- */
.about { background: linear-gradient(180deg, var(--sand) 0%, #fff 100%); }
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.about-text p { color: var(--ink-soft); margin-bottom: 18px; }
.about-highlights { display: flex; gap: 26px; margin-top: 30px; flex-wrap: wrap; }
.highlight { display: flex; align-items: center; gap: 12px; }
.highlight span { font-size: 1.8rem; }
.highlight p { font-size: 0.9rem; font-weight: 600; color: var(--ink); line-height: 1.3; margin: 0; }

.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 480px; object-fit: cover; }
.about-badge {
    position: absolute; bottom: -22px; left: -22px;
    background: linear-gradient(135deg, var(--sea), var(--turquoise));
    color: #fff; padding: 18px 26px; border-radius: 14px;
    box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.about-badge strong { font-size: 1.25rem; font-family: 'Playfair Display', serif; }
.about-badge span { font-size: 0.85rem; opacity: 0.9; }

/* ---------- Features ---------- */
.apartments { background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card {
    background: var(--sand);
    border-radius: var(--radius);
    padding: 38px 30px;
    text-align: center;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    border: 1px solid rgba(19, 148, 201, 0.08);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); background: #fff; }
.feature-icon {
    width: 74px; height: 74px; margin: 0 auto 20px;
    display: grid; place-items: center;
    font-size: 2rem; border-radius: 50%;
    background: linear-gradient(135deg, rgba(78,201,232,0.25), rgba(53,208,196,0.25));
}
.feature-card h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--ink); }
.feature-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Gallery ---------- */
.gallery { background: linear-gradient(180deg, #fff 0%, var(--sand) 100%); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 30px 18px 16px;
    color: #fff; font-weight: 500; font-size: 0.95rem;
    background: linear-gradient(0deg, rgba(10,50,63,0.8), transparent);
    opacity: 0; transform: translateY(10px); transition: 0.4s var(--ease);
}
.gallery-item:hover figcaption { opacity: 1; transform: none; }

/* ---------- Location ---------- */
.location { background: var(--sand); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: center; }
.location-text p { color: var(--ink-soft); margin-bottom: 22px; }
.location-list { list-style: none; margin-bottom: 30px; }
.location-list li { padding: 10px 0; border-bottom: 1px dashed rgba(74,101,114,0.25); font-weight: 500; }
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 420px; }
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(160deg, var(--sea-deep), var(--sea) 55%, var(--turquoise)); color: #fff; }
.contact .section-title, .contact .section-eyebrow { color: #fff; }
.contact .section-eyebrow { color: var(--sand-warm); }
.contact .section-lead { color: rgba(255,255,255,0.9); }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.contact-form {
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form-field input, .form-field textarea {
    font-family: inherit; font-size: 0.95rem;
    padding: 13px 16px; border-radius: 12px;
    border: 1.5px solid #e2ddd2; background: var(--sand);
    color: var(--ink); transition: border 0.3s, box-shadow 0.3s;
}
.form-field input:focus, .form-field textarea:focus {
    outline: none; border-color: var(--sea);
    box-shadow: 0 0 0 4px rgba(19,148,201,0.12); background: #fff;
}
.form-note { margin-top: 16px; color: var(--sea-deep); font-weight: 600; font-size: 0.9rem; text-align: center; }

.contact-info { color: #fff; padding: 12px 8px; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 22px; }
.contact-info ul { list-style: none; margin-bottom: 26px; }
.contact-info li { display: flex; gap: 14px; margin-bottom: 18px; line-height: 1.5; }
.contact-info li span { font-size: 1.3rem; }
.contact-info a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.4); }
.contact-hint { font-size: 0.95rem; opacity: 0.9; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 34px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-inner .logo-text { color: #fff; font-size: 1.2rem; }
.footer-inner p { font-size: 0.85rem; }

/* ---------- Unsere Apartments ---------- */
.units { background: #fff; }
.units-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.unit-card {
    background: var(--sand);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}
.unit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.unit-cover { position: relative; height: 260px; overflow: hidden; cursor: pointer; }
.unit-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.unit-card:hover .unit-cover img { transform: scale(1.07); }
.unit-count {
    position: absolute; bottom: 14px; right: 14px;
    background: rgba(10, 50, 63, 0.8); color: #fff;
    padding: 6px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 500;
    backdrop-filter: blur(4px);
}
.unit-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.unit-body h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 10px; }
.unit-body p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 22px; flex: 1; }
.unit-body .btn { align-self: flex-start; }
.unit-price {
    display: flex; align-items: baseline; gap: 6px;
    margin-bottom: 20px; flex-wrap: wrap;
}
.unit-price-from { font-size: 0.85rem; color: var(--ink-soft); }
.unit-price-value { font-size: 1.5rem; font-weight: 700; color: var(--coral); font-family: 'Playfair Display', serif; }
.unit-price-night { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Preise ---------- */
.prices { background: linear-gradient(180deg, var(--sand) 0%, #fff 100%); }
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 860px; margin: 0 auto; }
.price-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 34px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(19, 148, 201, 0.1);
    text-align: center;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured {
    background: linear-gradient(160deg, var(--sea-deep), var(--sea) 60%, var(--turquoise));
    color: #fff; border: none;
}
.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--coral), var(--sun));
    color: #fff; font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 999px; margin-bottom: 18px;
}
.price-card.featured .price-tag { background: rgba(255,255,255,0.2); }
.price-period { font-size: 0.92rem; opacity: 0.85; margin-bottom: 16px; }
.price-card:not(.featured) .price-period { color: var(--ink-soft); }
.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 700; line-height: 1;
    display: flex; align-items: baseline; justify-content: center; gap: 8px;
    margin-bottom: 14px;
}
.price-amount span { font-size: 1rem; font-weight: 400; font-family: 'Poppins', sans-serif; opacity: 0.85; }
.price-note { font-size: 0.9rem; opacity: 0.85; }
.price-card:not(.featured) .price-note { color: var(--ink-soft); }
.price-list { list-style: none; text-align: left; margin: 4px 0 18px; }
.price-list li {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 14px 0; border-bottom: 1px dashed rgba(74,101,114,0.22);
    color: var(--ink); font-size: 0.98rem;
}
.price-list li:last-child { border-bottom: none; }
.price-list strong { font-size: 1.35rem; color: var(--coral); font-family: 'Playfair Display', serif; white-space: nowrap; }
.price-hint { text-align: center; color: var(--ink-soft); margin-top: 34px; font-size: 0.95rem; }

/* ---------- Apartment-Galerie (Modal) ---------- */
.unit-modal {
    position: fixed; inset: 0; z-index: 210;
    background: rgba(8, 30, 40, 0.94);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
    padding: 20px;
}
.unit-modal.open { opacity: 1; visibility: visible; }
.unit-modal-inner {
    width: min(960px, 100%);
    display: flex; flex-direction: column;
    max-height: 92vh;
}
.unit-modal-head {
    display: flex; align-items: center; gap: 16px;
    color: #fff; margin-bottom: 14px;
}
.unit-modal-head h3 { font-size: 1.4rem; }
.unit-counter { font-size: 0.9rem; opacity: 0.8; }
.unit-modal-close {
    margin-left: auto; background: none; border: none; color: #fff;
    font-size: 2.4rem; line-height: 1; cursor: pointer;
}
.unit-stage-wrap { position: relative; }
.unit-stage {
    width: 100%; height: min(62vh, 560px);
    background-size: contain; background-position: center; background-repeat: no-repeat;
    background-color: rgba(0,0,0,0.25);
    border-radius: 14px;
}
.unit-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,0.9); color: var(--ink);
    border: none; cursor: pointer; font-size: 1.2rem;
    display: grid; place-items: center;
    box-shadow: var(--shadow-sm); transition: background 0.3s, transform 0.3s;
}
.unit-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.unit-arrow.prev { left: 14px; }
.unit-arrow.next { right: 14px; }
.unit-thumbs {
    display: flex; gap: 10px; margin-top: 16px;
    overflow-x: auto; padding: 4px 2px 8px;
    scrollbar-width: thin;
}
.unit-thumbs img {
    width: 84px; height: 60px; object-fit: cover;
    border-radius: 8px; cursor: pointer; flex: 0 0 auto;
    opacity: 0.55; border: 2px solid transparent; transition: opacity 0.3s, border 0.3s;
}
.unit-thumbs img:hover { opacity: 0.85; }
.unit-thumbs img.active { opacity: 1; border-color: var(--sun); }

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(8, 30, 40, 0.92);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
    padding: 30px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.lightbox-close {
    position: absolute; top: 24px; right: 30px;
    background: none; border: none; color: #fff; font-size: 2.6rem;
    cursor: pointer; line-height: 1;
}

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .about-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .about-media img { height: 380px; }
    .units-grid { grid-template-columns: 1fr; }
    .price-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .section { padding: 80px 0; }
    .hero { background-attachment: scroll; }
    .main-nav {
        position: fixed;
        top: 0; right: 0; bottom: 0; left: auto;
        width: min(78vw, 320px);
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        backdrop-filter: blur(12px);
        flex-direction: column; align-items: flex-start;
        padding: 100px 30px 40px; gap: 6px;
        overflow-y: auto;
        transform: translateX(100%); transition: transform 0.4s var(--ease);
        box-shadow: -20px 0 50px rgba(0,0,0,0.15);
    }
    .main-nav.open { transform: none; }
    .nav-link { color: var(--ink); width: 100%; padding: 12px 14px; }
    .nav-toggle { display: flex; z-index: 120; }
    .lang-switch { margin: 14px 0 0; width: 100%; }
    .lang-current { color: var(--ink); background: var(--sand); border-color: rgba(20,50,63,0.15); width: 100%; justify-content: center; }
    .lang-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; margin-top: 8px; min-width: 0; width: 100%; max-height: 0; overflow: hidden; padding: 0; transition: max-height 0.3s var(--ease); }
    .lang-switch.open .lang-menu { max-height: 420px; padding: 6px 0; }
    .nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: var(--ink); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: var(--ink); }
}

@media (max-width: 560px) {
    .feature-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .gallery-item.large { grid-column: span 2; grid-row: span 1; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 26px; }
    .about-badge { left: 50%; transform: translateX(-50%); }
}
