.section-bordered { border-top: 1px solid var(--line); }
.text-gold { color: var(--gold); }

/* Lookbook link */
.lookbook-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
    transition: color 0.2s;
}
.lookbook-link:hover { color: var(--crimson); }

/* Testimonials title */
.t-title {
    color: var(--ink);
    font-size: 2.25rem;
    margin-top: 1rem;
    text-wrap: balance;
}
@media (min-width: 768px) { .t-title { font-size: 3.75rem; } }
.t-title .accent { font-style: italic; color: var(--crimson); }

.hidden { display: none !important; }

/* =================================================================
   STRI Abharana — Stylesheet
   Fonts: Cormorant Garamond (serif), Outfit (sans)
   ================================================================= */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap");

/* ----- Tokens ----- */
:root {
    --ivory: #fdfbf7;
    --ink: #1c1917;
    --crimson: #8b2635;
    --crimson-dark: #6f1e2a;
    --gold: #c29b62;
    --gold-light: #d2ae78;
    --muted: #f3f1ec;
    --line: #e6e4dd;
    --whatsapp: #25d366;
    --whatsapp-dark: #1ebe57;
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: "Outfit", sans-serif;
    background: var(--ivory);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: "Cormorant Garamond", serif; font-weight: 300; letter-spacing: -0.01em; line-height: 1.05; }

::selection { background: var(--crimson); color: var(--ivory); }

/* ----- Reusable ----- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

.overline {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s, opacity 0.2s;
    cursor: pointer;
}
.btn-primary { background: var(--crimson); color: white; }
.btn-primary:hover { background: var(--crimson-dark); }
.btn-whatsapp { background: var(--whatsapp); color: white; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.4); color: white; }
.btn-ghost:hover { background: white; color: var(--ink); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--crimson); }

.italic-serif { font-style: italic; }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.fade-in.in { opacity: 1; transform: none; }
.hover-zoom { transition: transform 0.8s var(--ease); }
.hover-zoom:hover { transform: scale(1.04); }

/* ============================================
   NAV
============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: background-color 0.5s, backdrop-filter 0.5s, border-color 0.5s;
    background: transparent;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--line);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 96px;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 768px) { .nav-inner { padding: 0 2.5rem; } }
.nav-logo img { height: 64px; width: auto; user-select: none; }
@media (min-width: 768px) { .nav-logo img { height: 80px; } }
.nav-links { display: none; gap: 2.5rem; }
@media (min-width: 1024px) { .nav-links { display: flex; align-items: center; } }
.nav-links a {
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    color: rgba(28, 25, 23, 0.8);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--crimson); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-enquire { display: none; }
@media (min-width: 768px) { .nav-enquire { display: inline-flex; padding: 0.75rem 1.25rem; font-size: 0.7rem; } }
.nav-toggle { display: inline-flex; padding: 0.5rem; color: var(--ink); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-mobile {
    display: none;
    background: var(--ivory);
    border-top: 1px solid var(--line);
}
.nav-mobile.open { display: block; }
@media (min-width: 1024px) { .nav-mobile { display: none !important; } }
.nav-mobile-inner { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.nav-mobile-inner a { font-size: 1rem; color: rgba(28, 25, 23, 0.8); }
.nav-mobile-inner a:hover { color: var(--crimson); }
.nav-mobile-phone { color: var(--crimson) !important; margin-top: 0.5rem; font-size: 0.875rem; }

/* ============================================
   HERO
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--ink);
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
.hero-overlay-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--ink), rgba(28, 25, 23, 0.4) 50%, rgba(28, 25, 23, 0.3));
}
.hero-overlay-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(28, 25, 23, 0.75), rgba(28, 25, 23, 0.1) 50%, transparent);
}
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 1.5rem 6rem;
}
@media (min-width: 768px) { .hero-content { padding-left: 2.5rem; padding-right: 2.5rem; } }
.hero-inner { max-width: 768px; opacity: 0; transform: translateY(24px); animation: fadeUp 0.9s var(--ease) 0.2s forwards; }

.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}
.rating-pill .stars { display: inline-flex; gap: 2px; }
.rating-pill .stars svg { fill: var(--gold); }
.rating-pill .text { font-size: 0.75rem; color: white; letter-spacing: 0.025em; }

.hero h1 {
    color: white;
    font-size: 3rem;
    line-height: 0.95;
    margin-top: 1.25rem;
    text-wrap: balance;
}
@media (min-width: 768px) { .hero h1 { font-size: 4.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 6rem; } }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p.desc {
    margin-top: 1.5rem;
    max-width: 36rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
}
@media (min-width: 768px) { .hero p.desc { font-size: 1.125rem; } }

.hero-ctas {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.hero-meta {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
@media (min-width: 768px) { .hero-meta { right: 2.5rem; } }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
}

/* ============================================
   MARQUEE
============================================ */
.marquee {
    background: var(--muted);
    padding: 1.25rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 38s linear infinite;
}
.marquee-track span {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--crimson);
    margin: 0 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
}
@media (min-width: 768px) { .marquee-track span { font-size: 1.875rem; } }
.marquee-track span::after {
    content: "✦";
    color: var(--gold);
    font-size: 1rem;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS BASE
============================================ */
section.section { padding: 6rem 0; }
@media (min-width: 768px) { section.section { padding: 8rem 0; } }
section.section-ivory { background: var(--ivory); }
section.section-muted { background: var(--muted); }
section.section-dark { background: var(--ink); color: white; }

.section-head {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
    .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.section-head h2 {
    color: var(--ink);
    font-size: 2.25rem;
    margin-top: 1rem;
    max-width: 36rem;
    text-wrap: balance;
}
@media (min-width: 768px) { .section-head h2 { font-size: 3.75rem; } }
.section-dark .section-head h2 { color: white; }
.section-head h2 .accent { font-style: italic; color: var(--crimson); }
.section-dark .section-head h2 .accent { color: var(--gold); }
.section-head .lede {
    max-width: 22rem;
    color: rgba(28, 25, 23, 0.7);
    line-height: 1.65;
}
.section-dark .section-head .lede { color: rgba(255, 255, 255, 0.7); }

/* ============================================
   GALLERY
============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--muted);
    aspect-ratio: 1 / 1;
    cursor: pointer;
}
.gallery-item:focus { outline: 2px solid var(--crimson); outline-offset: 2px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(28, 25, 23, 0);
    transition: background 0.3s;
}
.gallery-item:hover::after { background: rgba(28, 25, 23, 0.2); }

.gallery-cta { text-align: center; margin-top: 3rem; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 90vh; max-width: 90vw; object-fit: contain; box-shadow: var(--shadow-lg); }
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: white;
    padding: 0.5rem;
    z-index: 1;
}
.lightbox-close:hover { color: var(--gold); }

/* ============================================
   CATEGORIES
============================================ */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.cat-card { display: block; position: relative; }
.cat-img {
    position: relative;
    overflow: hidden;
    background: white;
    aspect-ratio: 4 / 5;
}
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.cat-card:hover .cat-img img { transform: scale(1.04); }
.cat-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 25, 23, 0.75), transparent 60%);
    pointer-events: none;
}
.cat-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(28, 25, 23, 0.6);
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 8px;
    backdrop-filter: blur(4px);
    z-index: 2;
}
.cat-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    color: white;
    z-index: 2;
}
@media (min-width: 768px) { .cat-text { padding: 1.5rem; } }
.cat-text h3 { font-size: 1.5rem; font-weight: 300; line-height: 1.15; }
@media (min-width: 768px) { .cat-text h3 { font-size: 1.875rem; } }
.cat-text .browse {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}
.cat-card:hover .cat-text .browse { color: var(--gold); }

/* ============================================
   INSTAGRAM
============================================ */
.ig-head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .ig-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.ig-head .copy h2 { color: white; font-size: 2.25rem; margin-top: 1rem; text-wrap: balance; }
@media (min-width: 768px) { .ig-head .copy h2 { font-size: 3.75rem; } }
.ig-head .copy h2 .accent { color: var(--gold); font-style: italic; }
.ig-head .copy p { margin-top: 1.25rem; color: rgba(255, 255, 255, 0.7); max-width: 32rem; line-height: 1.65; }
.ig-head .copy p a { color: var(--gold); }
.ig-head .copy p a:hover { text-decoration: underline; }

.ig-follow {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(45deg, #fdc468, #df4996 50%, #7638fa);
    color: white;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    transition: opacity 0.2s;
}
@media (min-width: 768px) { .ig-follow { align-self: auto; } }
.ig-follow:hover { opacity: 0.9; }

.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
@media (min-width: 768px) { .ig-grid { gap: 0.75rem; } }
.ig-tile { position: relative; display: block; overflow: hidden; background: #2a2522; aspect-ratio: 1 / 1; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.ig-tile:hover img { transform: scale(1.1); }
.ig-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(253, 196, 104, 0), rgba(223, 73, 150, 0) 50%, rgba(118, 56, 250, 0));
    transition: background 0.5s, opacity 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
}
.ig-tile:hover .ig-tile-overlay {
    background: linear-gradient(45deg, rgba(253, 196, 104, 0.6), rgba(223, 73, 150, 0.6) 50%, rgba(118, 56, 250, 0.6));
    opacity: 1;
}
.ig-tile-overlay span {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 0.5rem;
}

.ig-viewall { text-align: center; margin-top: 2.5rem; }
.ig-viewall a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.2s;
}
.ig-viewall a:hover { color: white; }

/* ============================================
   HOW IT WORKS
============================================ */
.how-head { max-width: 36rem; margin-bottom: 4rem; }
.how-head h2 { color: var(--ink); font-size: 2.25rem; margin-top: 1rem; text-wrap: balance; }
@media (min-width: 768px) { .how-head h2 { font-size: 3.75rem; } }
.how-head h2 .accent { color: var(--crimson); font-style: italic; }

.how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    border-top: 1px solid var(--line);
    padding-top: 3rem;
}
@media (min-width: 768px) { .how-grid { grid-template-columns: repeat(3, 1fr); gap: 3.5rem; } }
.how-step .num {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}
@media (min-width: 768px) { .how-step .num { font-size: 6rem; } }
.how-step:hover .num { color: var(--crimson); }
.how-step h3 { color: var(--ink); font-size: 1.5rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .how-step h3 { font-size: 1.875rem; } }
.how-step p { color: rgba(28, 25, 23, 0.7); line-height: 1.65; }

/* ============================================
   ABOUT
============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.about-img { position: relative; }
.about-img-wrap {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #2a2522;
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.about-img-wrap:hover img { transform: scale(1.04); }
.about-badge {
    display: none;
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--gold);
    color: var(--ink);
    padding: 1rem 1.5rem;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.25rem;
}
@media (min-width: 768px) { .about-badge { display: block; } }
.about-text h2 { color: white; font-size: 2.25rem; margin-top: 1rem; text-wrap: balance; }
@media (min-width: 768px) { .about-text h2 { font-size: 3.75rem; } }
.about-text h2 .accent { color: var(--gold); font-style: italic; }
.about-text .copy { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; color: rgba(255, 255, 255, 0.75); line-height: 1.65; max-width: 36rem; font-size: 1rem; }
@media (min-width: 768px) { .about-text .copy { font-size: 1.125rem; } }

/* ============================================
   TESTIMONIALS
============================================ */
.t-wrap { max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
@media (min-width: 768px) { .t-wrap { padding: 0 2.5rem; } }
.t-stars { display: flex; align-items: center; justify-content: center; gap: 2px; margin: 2rem 0; }
.t-stars svg { fill: var(--gold); }
.t-quote {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--ink);
    line-height: 1.3;
    max-width: 48rem;
    margin: 0 auto;
    text-wrap: balance;
    min-height: 8rem;
}
@media (min-width: 768px) { .t-quote { font-size: 2.25rem; } }
.t-name { margin-top: 2.5rem; font-size: 0.875rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(28, 25, 23, 0.7); }
.t-nav { margin-top: 3rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.t-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(28, 25, 23, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
}
.t-btn:hover { background: var(--ink); color: white; }
.t-count { font-size: 0.75rem; letter-spacing: 0.22em; color: rgba(28, 25, 23, 0.6); }

/* ============================================
   LOCATIONS
============================================ */
.loc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
    row-gap: 0.75rem;
    border-top: 1px solid var(--line);
    padding-top: 2.5rem;
}
@media (min-width: 768px) { .loc-grid { grid-template-columns: repeat(4, 1fr); } }
.loc-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}
.loc-item svg { stroke: var(--gold); transition: stroke 0.2s; }
.loc-item span { font-family: "Cormorant Garamond", serif; font-size: 1.125rem; color: var(--ink); transition: color 0.2s; }
@media (min-width: 768px) { .loc-item span { font-size: 1.25rem; } }
.loc-item:hover svg { stroke: var(--crimson); }
.loc-item:hover span { color: var(--crimson); }

/* ============================================
   CONTACT
============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }

.contact-info h2 { color: var(--ink); font-size: 2.25rem; margin-top: 1rem; text-wrap: balance; }
@media (min-width: 768px) { .contact-info h2 { font-size: 3.75rem; } }
.contact-info h2 .accent { color: var(--crimson); font-style: italic; }

.contact-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1rem; }
.contact-row svg { color: var(--crimson); flex-shrink: 0; margin-top: 4px; }
.contact-row .label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(28, 25, 23, 0.6); }
.contact-row .value { font-family: "Cormorant Garamond", serif; font-size: 1.25rem; transition: color 0.2s; }
@media (min-width: 768px) { .contact-row .value { font-size: 1.5rem; } }
.contact-row .value.lg { font-size: 1.5rem; }
@media (min-width: 768px) { .contact-row .value.lg { font-size: 1.875rem; } }
.contact-row .value.small-wrap { font-size: 1.125rem; max-width: 18rem; line-height: 1.25; }
@media (min-width: 768px) { .contact-row .value.small-wrap { font-size: 1.25rem; } }
.contact-row a:hover .value { color: var(--crimson); }

.contact-map {
    margin-top: 2.5rem;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--line);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

.contact-form {
    background: white;
    border: 1px solid var(--line);
    padding: 2rem;
}
@media (min-width: 768px) { .contact-form { padding: 3rem; } }
.contact-form h3 { color: var(--ink); font-size: 1.875rem; font-weight: 300; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .contact-form h3 { font-size: 2.25rem; } }
.contact-form > p { font-size: 0.875rem; color: rgba(28, 25, 23, 0.7); margin-bottom: 2rem; }
.contact-form form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form label { display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(28, 25, 23, 0.6); margin-bottom: 0.5rem; }
.contact-form input, .contact-form textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(28, 25, 23, 0.2);
    padding: 0.5rem 0;
    color: var(--ink);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
    outline: none;
    resize: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--crimson); }
.contact-form button[type="submit"] {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}
.contact-form .note { font-size: 0.75rem; color: rgba(28, 25, 23, 0.5); text-align: center; margin-top: 0.5rem; }

/* ============================================
   FOOTER
============================================ */
.footer { background: var(--ink); color: white; padding: 6rem 0 2.5rem; }
.footer-logo {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) { .footer-logo { justify-content: flex-start; } }
.footer-logo img { height: 192px; width: auto; border-radius: 2px; }
@media (min-width: 768px) { .footer-logo img { height: 224px; } }

.footer-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 0;
}
@media (min-width: 768px) {
    .footer-cols { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding: 4rem 0; }
}
.footer-col p, .footer-col li { color: rgba(255, 255, 255, 0.7); }
.footer-col .overline { margin-bottom: 1rem; }
.footer-col h4 { color: white; font-size: inherit; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.footer-col ul li { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-col ul a:hover { color: white; }
.footer-col ul svg { color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.footer-address { font-size: 0.75rem; line-height: 1.65; padding-top: 0.5rem; color: rgba(255, 255, 255, 0.55); }

.socials { display: flex; gap: 0.75rem; }
.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer-wa { display: inline-block; margin-top: 2rem; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.footer-wa:hover { color: white; }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; text-align: left; } }
.footer-legal { display: flex; align-items: center; gap: 1.5rem; }
.footer-legal a:hover { color: white; }
.footer-legal .sep { color: rgba(255, 255, 255, 0.2); }
.footer-made { letter-spacing: 0.22em; text-transform: uppercase; }

/* ============================================
   STICKY CTAS
============================================ */
.sticky-ctas {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}
.sticky-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}
.sticky-cta .label {
    display: none;
    background: var(--ink);
    color: white;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.5rem 0.75rem;
}
@media (min-width: 768px) { .sticky-cta:hover .label { display: inline-flex; } }
.sticky-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s;
}
.sticky-btn-call { background: var(--crimson); }
.sticky-btn-call:hover { background: var(--crimson-dark); }
.sticky-btn-wa { background: var(--whatsapp); }
.sticky-btn-wa:hover { background: var(--whatsapp-dark); }

/* ============================================
   LEGAL PAGES
============================================ */
.legal-header {
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
}
.legal-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 96px;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 768px) { .legal-header-inner { padding: 0 2.5rem; } }
.legal-header img { height: 64px; }
@media (min-width: 768px) { .legal-header img { height: 80px; } }
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(28, 25, 23, 0.7);
}
.legal-back:hover { color: var(--crimson); }

.legal-body { max-width: 56rem; margin: 0 auto; padding: 5rem 1.5rem; }
@media (min-width: 768px) { .legal-body { padding: 7rem 2.5rem; } }
.legal-body h1 { font-size: 2.25rem; text-wrap: balance; }
@media (min-width: 768px) { .legal-body h1 { font-size: 3.75rem; } }
.legal-body .legal-updated { margin-top: 1.5rem; font-size: 0.875rem; color: rgba(28, 25, 23, 0.6); }
.legal-content { margin-top: 4rem; display: flex; flex-direction: column; gap: 2.5rem; color: rgba(28, 25, 23, 0.85); line-height: 1.65; }
.legal-content h2 { color: var(--ink); font-size: 1.5rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .legal-content h2 { font-size: 1.875rem; } }
.legal-content ul { list-style: disc; padding-left: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.legal-content section > p + ul, .legal-content section > ul + p { margin-top: 0.75rem; }
.legal-content a { color: var(--crimson); }
.legal-content a:hover { text-decoration: underline; }

.legal-footer {
    border-top: 1px solid var(--line);
    padding: 2.5rem 0;
}
.legal-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    font-size: 0.75rem;
    color: rgba(28, 25, 23, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
}
@media (min-width: 768px) { .legal-footer-inner { flex-direction: row; padding: 0 2.5rem; } }
.legal-footer-links { display: flex; gap: 1.5rem; }
.legal-footer-links a:hover { color: var(--crimson); }
