/* =========================================================
   kunstamnagel — Soft & Feminine
   Palette: rosé, creme, mauve, weich
   ========================================================= */

:root {
    --bg: #fbf6f3;
    --bg-soft: #f5e9e3;
    --bg-rose: #f7dee0;
    --cream: #fff8f4;
    --rose-100: #fce4e6;
    --rose-200: #f7c3c9;
    --rose-300: #e8a4ad;
    --mauve-500: #b97a85;
    --mauve-700: #7a4953;
    --ink: #2b1c20;
    --ink-soft: #5a4248;
    --muted: #8a6e74;
    --line: #ecd9d6;
    --gold: #b08968;

    --radius-sm: 12px;
    --radius: 22px;
    --radius-lg: 32px;

    --shadow-sm: 0 6px 24px -10px rgba(122, 73, 83, .18);
    --shadow: 0 24px 60px -22px rgba(122, 73, 83, .28);

    --font-serif: "Cormorant Garamond", "Times New Roman", serif;
    --font-sans: "Manrope", system-ui, sans-serif;
    --font-script: "Caveat", cursive;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

.section-soft {
    background: linear-gradient(180deg, var(--cream), var(--bg-soft));
}

.eyebrow {
    font-family: var(--font-sans);
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--mauve-500);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(34px, 4.4vw, 54px);
    line-height: 1.08;
    margin: 0 0 18px;
    color: var(--ink);
    letter-spacing: -.01em;
}

.section-title em {
    font-style: italic;
    color: var(--mauve-700);
}

.section-head {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
}

.section-lead {
    color: var(--ink-soft);
    font-size: 17px;
}

.accent-script {
    font-family: var(--font-script);
    font-weight: 600;
    color: var(--mauve-700);
    font-size: 1.15em;
    display: inline-block;
}

.caveat {
    font-family: var(--font-script);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    letter-spacing: .01em;
    white-space: nowrap;
}

.btn-primary {
    background: var(--ink);
    color: var(--cream);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--mauve-700);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -14px rgba(122, 73, 83, .5);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    padding-left: 6px;
}

.btn-ghost:hover {
    color: var(--mauve-700);
}

.btn-block {
    width: 100%;
}

/* ---------- Nav ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(251, 246, 243, .78);
    border-bottom: 1px solid rgba(236, 217, 214, .6);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    height: 64px;
    width: 64px;
}

.logo-mark {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--rose-200), var(--rose-300));
    color: var(--mauve-700);
    font-style: italic;
    font-weight: 700;
}

.logo-text {
    letter-spacing: -.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color .2s ease;
}

.nav-links a:hover {
    color: var(--mauve-700);
}

.nav-cta {
    padding: 10px 20px;
    font-size: 13px;
}

.nav-cta:hover {
    color: var(--cream);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 10%, var(--rose-100) 0, transparent 40%),
        radial-gradient(circle at 90% 80%, #fbe4d8 0, transparent 35%),
        var(--bg);
}

.hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
    z-index: 0;
    pointer-events: none;
}

.blob-1 {
    width: 420px;
    height: 420px;
    background: var(--rose-200);
    top: -120px;
    left: -120px;
}

.blob-2 {
    width: 460px;
    height: 460px;
    background: #f6c9b3;
    bottom: -160px;
    right: -100px;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(44px, 6.5vw, 84px);
    line-height: 1.02;
    margin: 0 0 26px;
    letter-spacing: -.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--mauve-700);
}

.hero-sub {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 520px;
    margin: 0 0 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-meta {
    display: flex;
    gap: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}

.hero-meta strong {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 30px;
    color: var(--ink);
    display: block;
    line-height: 1;
}

.hero-meta span {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: .04em;
}

.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
}

.hero-img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 200px 200px 24px 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.hero-visual:hover .hero-img-wrap img {
    transform: scale(1.05);
}

.hero-card {
    position: absolute;
    background: var(--cream);
    border-radius: 18px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    animation: floaty 6s ease-in-out infinite;
}

.hero-card {
    bottom: 32px;
    left: -24px;
}

.hero-card-2 {
    top: 36px;
    right: -24px;
    bottom: auto;
    left: auto;
    animation-delay: 1.5s;
}

.hero-card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6cbf7d;
    box-shadow: 0 0 0 4px rgba(108, 191, 125, .25);
}

.hero-card-emoji {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: var(--rose-100);
    border-radius: 50%;
    color: var(--mauve-700);
    font-size: 18px;
}

.hero-card-title {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
}

.hero-card-sub {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
}

.footer-modal-link {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
}

.footer-modal-link:hover {
    color: var(--accent);
}

.modal[hidden] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(34, 18, 22, 0.45);
    backdrop-filter: blur(6px);
}

.modal-box {
    position: relative;
    width: min(720px, 100%);
    max-height: 85vh;
    overflow-y: auto;
    background: #fff7f5;
    color: #2b171d;
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 25px 80px rgba(43, 23, 29, 0.25);
    border: 1px solid rgba(232, 164, 173, 0.45);
}

.modal-box h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.modal-box h3 {
    font-size: 1.05rem;
    margin-top: 24px;
    margin-bottom: 8px;
}

.modal-box p {
    color: #6f4d58;
    line-height: 1.75;
    margin-bottom: 14px;
}

.modal-box a {
    color: #4a1f2a;
    font-weight: 600;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: none;
    background: #e8a4ad;
    color: #32171f;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.modal-close:hover {
    background: #d98d99;
}

body.modal-open {
    overflow: hidden;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    aspect-ratio: 1/1;
}

.about-img-main {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.about-img-mini {
    position: absolute;
    width: 50%;
    height: 50%;
    object-fit: cover;
    bottom: 0;
    right: 0;
    border-radius: 200px 24px 24px 24px;
    border: 8px solid var(--bg);
    box-shadow: var(--shadow-sm);
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background: var(--ink);
    color: var(--cream);
    padding: 18px 22px;
    border-radius: 100px;
    text-align: center;
    transform: rotate(-6deg);
    box-shadow: var(--shadow);
}

.about-badge .caveat {
    font-size: 28px;
    display: block;
    line-height: 1;
    color: var(--rose-200);
}

.about-badge small {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.about-text p {
    color: var(--ink-soft);
    margin: 0 0 22px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.about-list li {
    display: flex;
    gap: 10px;
    font-size: 15px;
    color: var(--ink-soft);
}

.about-list li span {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    background: var(--rose-100);
    color: var(--mauve-700);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ---------- Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--rose-200);
}

.service-card-feature {
    background: linear-gradient(165deg, var(--ink) 0%, #3b262c 100%);
    color: var(--cream);
    border-color: transparent;
}

.service-card-feature .duration,
.service-card-feature p {
    color: rgba(255, 248, 244, .75);
}

.service-card-feature .price {
    color: var(--rose-200);
}

.service-card-feature .service-icon {
    background: rgba(247, 195, 201, .15);
    color: var(--rose-200);
}

.ribbon {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--rose-200);
    color: var(--mauve-700);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
}

.service-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: var(--rose-100);
    color: var(--mauve-700);
    border-radius: 16px;
    font-size: 22px;
    margin-bottom: 22px;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 26px;
    margin: 0 0 10px;
    letter-spacing: -.01em;
}

.service-card p {
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0 0 26px;
}

.service-foot {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 1px dashed var(--line);
    padding-top: 18px;
}

.service-card-feature .service-foot {
    border-color: rgba(247, 195, 201, .2);
}

.price {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 24px;
    color: var(--mauve-700);
}

.duration {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: .04em;
}

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.g-item {
    margin: 0;
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease, filter .4s ease;
}

.g-item::after {
    content: "✦";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(43, 28, 32, .35);
    color: var(--cream);
    font-size: 28px;
    opacity: 0;
    transition: opacity .35s ease;
}

.g-item:hover img {
    transform: scale(1.08);
}

.g-item:hover::after {
    opacity: 1;
}

/* ---------- Hours ---------- */
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hours-text p {
    color: var(--ink-soft);
    margin: 0 0 28px;
    max-width: 420px;
}

.hours-list {
    list-style: none;
    padding: 36px;
    margin: 0;
    background: var(--cream);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 15px;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    font-weight: 600;
    color: var(--ink);
}

.hours-list li span:last-child {
    color: var(--ink-soft);
    font-variant-numeric: tabular-nums;
}

.hours-list li.closed span:last-child {
    color: var(--rose-300);
    font-style: italic;
}

/* ---------- Contact / Booking ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--ink-soft);
}

.contact-list a {
    color: var(--mauve-700);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
}

.contact-list a:hover {
    border-color: var(--mauve-700);
}

.ci-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: var(--rose-100);
    border-radius: 50%;
    font-size: 16px;
}

.booking-form {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-form h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 32px;
    margin: 0;
}

.form-lead {
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0 0 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .02em;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    padding: 14px 16px;
    background: var(--bg);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
    width: 100%;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--mauve-500);
    background: var(--cream);
    box-shadow: 0 0 0 4px rgba(185, 122, 133, .12);
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-form input.error,
.booking-form select.error {
    border-color: #d96b6b;
    background: #fff3f3;
}

.form-success {
    margin: 6px 0 0;
    padding: 14px 18px;
    background: var(--rose-100);
    color: var(--mauve-700);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--ink);
    color: rgba(255, 248, 244, .7);
    padding: 80px 0 30px;
    margin-top: 0;
}

.footer .logo {
    color: var(--cream);
}

.footer .logo-mark {
    background: var(--rose-200);
    color: var(--mauve-700);
}

.footer-tag {
    margin: 18px 0 0;
    max-width: 280px;
    font-size: 14px;
    color: rgba(255, 248, 244, .55);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 248, 244, .08);
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-cols h5 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--cream);
    margin: 0 0 18px;
}

.footer-cols a {
    display: block;
    font-size: 14px;
    padding: 4px 0;
    color: rgba(255, 248, 244, .6);
    transition: color .2s ease;
}

.footer-cols a:hover {
    color: var(--rose-200);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 12px;
    color: rgba(255, 248, 244, .4);
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom a {
    color: rgba(255, 248, 244, .55);
}

.footer-bottom a:hover {
    color: var(--rose-200);
}

/* ---------- WhatsApp floating button ---------- */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    z-index: 60;
    box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .55), 0 0 0 0 rgba(37, 211, 102, .55);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    animation: waPulse 2.4s ease-out infinite;
}

.wa-float:hover {
    background: #1ebd5b;
    transform: translateY(-3px) scale(1.04);
}

.wa-tooltip {
    position: absolute;
    right: 72px;
    background: var(--ink);
    color: var(--cream);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 999px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    box-shadow: var(--shadow-sm);
}

.wa-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--ink);
}

.wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes waPulse {
    0% {
        box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .55), 0 0 0 0 rgba(37, 211, 102, .55);
    }

    70% {
        box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .55), 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .55), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 560px) {
    .wa-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

    .wa-tooltip {
        display: none;
    }
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 12, 14, .9);
    display: grid;
    place-items: center;
    z-index: 100;
    padding: 30px;
    animation: fadeIn .25s ease;
}

.lightbox[hidden] {
    display: none;
}

.lightbox img {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 24px;
    border: none;
    cursor: pointer;
    transition: background .2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, .22);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ---------- Reveal animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s ease, transform .9s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .section {
        padding: 80px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--cream);
        padding: 20px 24px;
        border-bottom: 1px solid var(--line);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform .25s ease, opacity .25s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
        width: 100%;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-cta {
        margin-top: 12px;
        align-self: flex-start;
    }

    .hero {
        padding: 50px 0 90px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }

    .about-grid,
    .hours-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        max-width: 460px;
        margin: 0 auto;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .g-item:nth-child(5n) {
        grid-column: span 2;
        aspect-ratio: 2/1;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 560px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .g-item:nth-child(5n) {
        grid-column: span 2;
        aspect-ratio: 2/1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 30px 24px;
    }

    .hero-card {
        left: 0;
    }

    .hero-card-2 {
        right: 0;
    }

    .hero-meta {
        gap: 24px;
    }

    .hours-list {
        padding: 26px;
    }
}