/* ==========================================================================
   GOLDSTUDIO — stylesheet
   Paleta: negro profundo + dorado. Tipografía: Playfair Display + Jost.
   ========================================================================== */

:root {
    --black:        #0a0a0b;
    --black-soft:   #131313;
    --black-card:   #171614;
    --ivory:        #f4efe4;
    --ivory-dim:    #cfc9ba;
    --muted:        #8d867a;
    --gold:         #cba135;
    --gold-light:   #e8cd8a;
    --gold-deep:    #9c7a24;
    --line:         rgba(203, 161, 53, 0.22);
    --shadow:       0 20px 60px rgba(0, 0, 0, 0.45);
    --radius:       2px;
    --serif:        'Playfair Display', Georgia, serif;
    --sans:         'Jost', 'Segoe UI', sans-serif;
    --ease:         cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

/* El atributo hidden tiene que ganarle a los display: flex/grid de más abajo.
   Sin esto, un panel oculto sigue ocupando la pantalla y se come todos los clics. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--black);
    color: var(--ivory-dim);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    color: var(--ivory);
    margin: 0 0 .4em;
    font-weight: 500;
    letter-spacing: .01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.08; }
h2 { font-size: clamp(2rem, 4vw, 2.85rem); line-height: 1.15; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: .32em;
    font-size: .72rem;
    color: var(--gold);
    margin-bottom: 1.1em;
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    padding: 15px 34px;
    font-family: var(--sans);
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .35s var(--ease);
    white-space: nowrap;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
    color: #14110a;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(203, 161, 53, .25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(203, 161, 53, .35); }
.btn-outline {
    border-color: rgba(244, 239, 228, .35);
    color: var(--ivory);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-small { padding: 10px 22px; font-size: .72rem; }
.btn-instagram {
    padding: 19px 46px;
    font-size: .88rem;
    letter-spacing: .16em;
}
.btn-instagram svg { margin-right: 4px; }
.btn-full { width: 100%; }

/* ---------- header ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    padding: 26px 0;
    transition: all .4s var(--ease);
}
.site-header.scrolled {
    padding: 14px 0;
    background: rgba(10, 10, 11, .86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--ivory);
    letter-spacing: .04em;
}
.logo img {
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    transition: transform .4s var(--ease);
}
.logo:hover img { transform: scale(1.05); }
.logo-footer img { width: 76px; height: 76px; }
.main-nav {
    display: flex;
    gap: 38px;
}
.main-nav a {
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ivory-dim);
    position: relative;
    padding-bottom: 4px;
    transition: color .3s;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .35s var(--ease);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px; height: 34px;
    background: none; border: none; cursor: pointer;
}
.nav-toggle span {
    display: block; width: 100%; height: 1px;
    background: var(--ivory);
    transition: all .3s;
}

/* ---------- hero ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-media {
    position: absolute; inset: 0;
    z-index: 0;
}
.hero-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.06);
}
.hero-gradient {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(8,8,9,.55) 0%, rgba(8,8,9,.35) 30%, rgba(8,8,9,.75) 78%, rgba(8,8,9,.96) 100%),
        linear-gradient(90deg, rgba(8,8,9,.85) 0%, rgba(8,8,9,.25) 55%, rgba(8,8,9,.55) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 90px;
    max-width: 720px;
}
.hero-sub {
    color: var(--ivory-dim);
    font-size: 1.08rem;
    max-width: 480px;
    margin-bottom: 2.2em;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.scroll-cue {
    position: absolute;
    bottom: 38px; left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 1px solid rgba(244,239,228,.4);
    border-radius: 20px;
    z-index: 1;
}
.scroll-cue span {
    position: absolute;
    top: 8px; left: 50%;
    width: 4px; height: 4px;
    margin-left: -2px;
    border-radius: 50%;
    background: var(--gold);
    animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue {
    0% { opacity: 1; transform: translateY(0); }
    70% { opacity: 0; transform: translateY(14px); }
    100% { opacity: 0; }
}

/* ---------- reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- about ---------- */
.about { padding: 150px 0 120px; }
.about-grid {
    display: grid;
    grid-template-columns: .85fr 1fr;
    gap: 90px;
    align-items: center;
}
.about-image { position: relative; }
.about-image img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.about-image-frame {
    position: absolute;
    top: 22px; left: 22px;
    right: -22px; bottom: -22px;
    border: 1px solid var(--gold);
    z-index: -1;
}
.about-copy p { color: var(--ivory-dim); }
.stats-row {
    display: flex;
    gap: 46px;
    margin-top: 2.4em;
    padding-top: 2.2em;
    border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; }
.stat-number {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--gold);
}
.stat-label {
    font-size: .78rem;
    letter-spacing: .04em;
    color: var(--muted);
    margin-top: .3em;
}

/* ---------- section heading ---------- */
.section-heading { text-align: center; max-width: 620px; margin: 0 auto 68px; }
.section-heading p { color: var(--muted); }

/* ---------- services ---------- */
.services { padding: 120px 0; background: var(--black-soft); position: relative; }
.services::before, .services::after {
    content: '';
    position: absolute; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.services::before { top: 0; }
.services::after { bottom: 0; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
}
.service-card {
    background: var(--black-soft);
    /* el box-shadow dibuja la retícula sin dejar huecos cuando la última fila queda incompleta */
    box-shadow: 0 0 0 1px var(--line);
    padding: 40px 34px 34px;
    display: flex;
    flex-direction: column;
    transition: background .4s;
}
.service-card:hover { background: var(--black-card); }

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}
.service-icon {
    width: 46px; height: 46px;
    flex: none;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    transition: border-color .4s, color .4s;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card:hover .service-icon { border-color: var(--gold); color: var(--gold-light); }

.service-from {
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.32rem; }
.service-blurb {
    margin: 0 0 22px;
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.6;
}

.service-card .service-list { margin-bottom: auto; }
.service-list { list-style: none; margin: 0; padding: 0; }
.service-list li {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    padding: 11px 0;
    border-top: 1px dashed rgba(244,239,228,.12);
    font-size: .92rem;
}
.service-list li:first-child { border-top: none; }
.service-name { color: var(--ivory-dim); }
.service-dots {
    flex: 1;
    min-width: 18px;
    border-bottom: 1px dotted rgba(244,239,228,.2);
    transform: translateY(-4px);
}
.service-price { margin-left: auto; color: var(--gold-light); white-space: nowrap; font-family: var(--serif); }
.service-desc {
    flex-basis: 100%;
    margin-top: 2px;
    font-size: .84rem;
    line-height: 1.6;
    color: var(--muted);
}

.service-more {
    margin-top: 26px;
    padding: 20px 0 0;
    background: none;
    border: none;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: .76rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    cursor: pointer;
    transition: color .3s;
}
.service-more svg { transition: transform .35s var(--ease); }
.service-more:hover { color: var(--gold-light); }
.service-more:hover svg { transform: translateX(5px); }

.services-footnote {
    margin: 34px 0 0;
    font-size: .86rem;
    color: var(--muted);
    text-align: center;
}
.services-footnote a { color: var(--gold); border-bottom: 1px solid var(--line); }
.services-footnote a:hover { color: var(--gold-light); }

/* ---------- detalle de categoría (modal) ---------- */
.service-detail-head {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 26px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
}
.service-detail-head .service-icon { width: 54px; height: 54px; border-color: var(--gold); }
.service-detail-head .service-icon svg { width: 26px; height: 26px; }
.service-detail-head h3 { margin: 4px 0 0; font-size: 1.7rem; }
.service-detail-head .eyebrow { margin: 0; }

.service-group { padding-top: 30px; }
.service-group h4 {
    font-family: var(--sans);
    font-size: .76rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 14px;
}
.service-note {
    margin: -6px 0 14px;
    font-size: .84rem;
    line-height: 1.6;
    color: var(--muted);
    max-width: 52ch;
}
.service-detail .btn { margin-top: 36px; }

.service-modal {
    position: fixed;
    inset: 0;
    /* por encima del header (500) y del botón volver arriba (400) */
    z-index: 900;
    background: rgba(5,5,6,.82);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity .35s var(--ease);
}
.service-modal.is-open { opacity: 1; }
.service-modal-panel {
    position: relative;
    width: min(560px, 100%);
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--black-soft);
    border-left: 1px solid var(--line);
    padding: 64px 48px 56px;
    transform: translateX(28px);
    transition: transform .4s var(--ease);
}
.service-modal.is-open .service-modal-panel { transform: translateX(0); }
.service-modal-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none;
    border: none;
    color: var(--ivory-dim);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color .3s;
}
.service-modal-close:hover { color: var(--gold); }

.no-js .service-more { display: none; }
.no-js .service-detail { display: block !important; padding-top: 10px; }
.no-js .service-detail .service-detail-head { display: none; }

/* ---------- gallery ---------- */
.gallery { padding: 120px 0 130px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}
.gallery-item {
    position: relative;
    display: block;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease), filter .4s;
    filter: grayscale(.15) brightness(.92);
}
.gallery-item:hover img { transform: scale(1.08); filter: grayscale(0) brightness(1); }
.gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--gold-light);
    background: rgba(10,10,11,.35);
    opacity: 0;
    transition: opacity .4s;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* ---------- instagram ---------- */
.instagram-cta {
    position: relative;
    padding: 110px 0 116px;
    text-align: center;
    background:
        radial-gradient(120% 140% at 50% 0%, rgba(203, 161, 53, .13), transparent 62%),
        var(--black);
}
.instagram-cta::before, .instagram-cta::after {
    content: '';
    position: absolute; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.instagram-cta::before { top: 0; }
.instagram-cta::after { bottom: 0; }

.instagram-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.instagram-mark {
    width: 74px; height: 74px;
    margin-bottom: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: #14110a;
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
    box-shadow: 0 14px 40px rgba(203, 161, 53, .3);
}
.instagram-mark svg { width: 36px; height: 36px; }

.instagram-cta h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: .3em; }
.instagram-cta p {
    max-width: 46ch;
    margin: 0 0 38px;
    color: var(--muted);
}

.testimonials { padding: 120px 0; background: var(--black-soft); }
.testimonials { padding: 120px 0; background: var(--black-soft); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.testimonial-card {
    padding: 40px 34px;
    background: var(--black-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.stars { color: var(--gold); letter-spacing: .2em; margin-bottom: 18px; font-size: .95rem; }
.testimonial-card p { font-family: var(--serif); font-style: italic; color: var(--ivory-dim); font-size: 1.05rem; }
.testimonial-author { font-size: .8rem; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }

/* ---------- contact ---------- */
.contact { padding: 130px 0 150px; }
.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 90px;
}
.contact-details { list-style: none; margin: 2.4em 0 0; padding: 0; }
.contact-details li {
    padding: 18px 0;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-details strong {
    font-family: var(--serif);
    color: var(--gold-light);
    font-size: .95rem;
    font-weight: 500;
}
.contact-details a:hover { color: var(--gold); }

.contact-form-wrap {
    background: var(--black-card);
    border: 1px solid var(--line);
    padding: 44px;
    border-radius: var(--radius);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label {
    display: block;
    font-size: .74rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}
.form-field label .required { color: var(--gold); }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: #b4553f;
}
.form-legal {
    margin: 16px 0 0;
    font-size: .78rem;
    line-height: 1.6;
    color: var(--muted);
    text-align: center;
}
.form-legal .required { color: var(--gold); }
.form-alert a { color: inherit; text-decoration: underline; }
.form-field label .optional {
    color: var(--muted);
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(244,239,228,.25);
    padding: 10px 2px;
    color: var(--ivory);
    font-family: var(--sans);
    font-size: .95rem;
    outline: none;
    transition: border-color .3s;
    resize: vertical;
}
.form-field select { appearance: none; cursor: pointer; }
.form-field select option { background: var(--black); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.contact-form .btn { margin-top: 8px; }

.form-alert {
    padding: 16px 20px;
    margin-bottom: 26px;
    font-size: .88rem;
    border-radius: var(--radius);
    border: 1px solid;
}
.form-alert-ok { color: #d8c98a; border-color: var(--gold); background: rgba(203,161,53,.08); }
.form-alert-error { color: #e2a3a3; border-color: #8a3d3d; background: rgba(138,61,61,.1); }

/* ---------- footer ---------- */
.site-footer { background: var(--black-soft); border-top: 1px solid var(--line); padding: 90px 0 0; }
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}
.footer-brand p { margin: 18px 0 20px; max-width: 280px; font-size: .92rem; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
    width: 38px; height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light);
    transition: border-color .3s, color .3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .78rem;
    color: var(--gold-light);
    margin-bottom: 6px;
}
.footer-col a, .footer-col span { font-size: .92rem; color: var(--ivory-dim); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 26px 0;
    border-top: 1px solid var(--line);
    font-size: .78rem;
    color: var(--muted);
}
.footer-credit code { color: var(--gold-light); }

/* ---------- back to top ---------- */
.back-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: #14110a;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all .4s var(--ease);
    z-index: 400;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------- lightbox ---------- */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(6,6,7,.94);
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity .35s;
    padding: 40px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 100%; max-height: 88vh;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.lightbox-close {
    position: absolute;
    top: 26px; right: 34px;
    background: none; border: none;
    color: var(--ivory);
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
    .main-nav { display: none; }
    .nav-toggle { display: flex; }
    .site-header.nav-open .main-nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(10,10,11,.98);
        padding: 24px 28px 34px;
        gap: 20px;
        border-bottom: 1px solid var(--line);
    }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-image-frame { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-modal-panel { padding: 60px 34px 48px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .container { padding: 0 20px; }
    .instagram-cta { padding: 86px 0 90px; }
    .instagram-mark { width: 62px; height: 62px; margin-bottom: 22px; }
    .instagram-mark svg { width: 30px; height: 30px; }
    .btn-instagram { padding: 17px 30px; font-size: .8rem; width: 100%; }
    .logo img { width: 44px; height: 44px; }
    .service-card { padding: 34px 26px 30px; }
    .service-modal { justify-content: stretch; }
    .service-modal-panel {
        width: 100%;
        padding: 58px 22px 44px;
        border-left: none;
    }
    .service-detail-head { gap: 14px; }
    .service-detail-head h3 { font-size: 1.4rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
    .contact-form-wrap { padding: 30px 24px; }
    .footer-inner { grid-template-columns: 1fr; }
    .stats-row { flex-wrap: wrap; row-gap: 20px; }
}
