/* =============================================================
   VARNAYA — Public Site Stylesheet
   Theme colors derived from the brand logo (gold/bronze + brown).
   Override these CSS variables to retheme the entire site.
   ============================================================= */
:root {
    --gold:        #b8893d;
    --gold-light:  #d4a574;
    --gold-soft:   #e8c89a;
    --gold-dark:   #8b6228;
    --brown:       #4a2f1a;
    --brown-dark:  #2c1810;
    --cream:       #faf6f0;
    --cream-soft:  #fffdf8;
    --beige:       #f0e6d2;
    --text:        #2c1810;
    --text-muted:  #7a6a58;
    --border:      #ebe0c9;
    --border-soft: #f3ead8;
    --white:       #ffffff;
    --shadow-sm:   0 2px 8px rgba(74,47,26,.06);
    --shadow:      0 6px 24px rgba(74,47,26,.10);
    --shadow-lg:   0 20px 60px rgba(74,47,26,.16);
    --radius:      14px;
    --radius-sm:   8px;
    --transition:  .25s cubic-bezier(.4,0,.2,1);
    --container:   1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px; line-height: 1.65; color: var(--text);
    background: var(--cream-soft); overflow-x: hidden; max-width: 100vw;
}
iframe { max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1,h2,h3,h4,h5 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600; color: var(--brown-dark); line-height: 1.25; letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; font-weight: 700; font-family: 'Inter', sans-serif; letter-spacing: .02em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 50px; font-weight: 600; font-size: 14px;
    letter-spacing: .04em; text-transform: uppercase; transition: all var(--transition);
    cursor: pointer; border: 1px solid transparent; white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: #fff; box-shadow: 0 6px 20px rgba(184,137,61,.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184,137,61,.4); color: #fff; }
.btn-outline { background: transparent; color: var(--brown); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-white { background: #fff; color: var(--brown-dark); }
.btn-white:hover { background: var(--cream); color: var(--gold-dark); }

/* ---------- Topbar ---------- */
.topbar { background: var(--brown-dark); color: #d8c8a8; font-size: 13px; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.topbar a { color: #d8c8a8; }
.topbar a:hover { color: var(--gold-light); }
.topbar-right { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar svg { vertical-align: -2px; margin-right: 4px; color: var(--gold-light); }

/* ---------- Header ---------- */
.site-header {
    background: var(--white); border-bottom: 1px solid var(--border-soft);
    position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 6px 24px; gap: 20px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 88px; width: auto; max-width: 260px; object-fit: contain; display: block; }
@media (max-width: 980px) {
    .brand img { height: 68px; max-width: 200px; }
}
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > a {
    padding: 10px 16px; color: var(--brown-dark); font-weight: 500; font-size: 14px;
    letter-spacing: .03em; position: relative; border-radius: 6px;
}
.main-nav > a:not(.nav-cta):hover { color: var(--gold-dark); }
.main-nav > a:not(.nav-cta).active { color: var(--gold-dark); }
.main-nav > a:not(.nav-cta).active::after {
    content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px;
    height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-cta { margin-left: 10px; }
.nav-toggle {
    display: none; background: none; border: 0; width: 36px; height: 36px; cursor: pointer;
    flex-direction: column; gap: 5px; justify-content: center; align-items: center;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px; background: var(--brown-dark);
    transition: transform var(--transition);
}

@media (max-width: 980px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
        background: #fff; flex-direction: column; align-items: stretch; padding: 80px 24px 24px;
        box-shadow: var(--shadow-lg); transition: right .35s ease; gap: 0;
    }
    .main-nav > a { padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
    .nav-cta { margin: 16px 0 0; justify-content: center; }
    body.nav-open .main-nav { right: 0; }
    body.nav-open::before {
        content: ''; position: fixed; inset: 0; background: rgba(44,24,16,.5); z-index: 99;
    }
}

/* ---------- Hero (slider) ---------- */
.hero {
    position: relative; padding: 90px 0; min-height: 600px;
    color: #fff; display: flex; align-items: center; overflow: hidden;
    background: var(--brown-dark);
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.05);
    transition: opacity 1.4s ease-in-out, transform 7s ease-out;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(44,24,16,.82) 0%, rgba(74,47,26,.55) 60%, rgba(44,24,16,.4) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-dots {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 3;
}
.hero-dot {
    width: 42px; height: 3px; background: rgba(255,255,255,.35); border: 0; padding: 0;
    cursor: pointer; transition: background .3s, width .3s;
}
.hero-dot.active { background: var(--gold-light); width: 60px; }
.hero-content { max-width: 720px; }
.hero-eyebrow {
    display: inline-block; padding: 6px 18px; border: 1px solid rgba(232,200,154,.6);
    border-radius: 50px; font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 20px;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 span { color: var(--gold-light); font-style: italic; }
.hero p { font-size: 1.1rem; color: #f0e6d2; margin-bottom: 32px; max-width: 600px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-eyebrow {
    display: inline-block; font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
    color: var(--gold-dark); font-weight: 600; margin-bottom: 12px;
}
.section-eyebrow::before, .section-eyebrow::after { content: '—'; margin: 0 10px; color: var(--gold); }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--text-muted); }

/* ---------- Feature cards (home) ---------- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature {
    background: #fff; padding: 36px 28px; border-radius: var(--radius);
    border: 1px solid var(--border-soft); text-align: center;
    transition: all var(--transition);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.feature-icon {
    width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex; align-items: center; justify-content: center; color: #fff;
}
.feature h3 { margin-bottom: 10px; }
.feature p { color: var(--text-muted); font-size: .95rem; }

/* ---------- Doctor cards ---------- */
.doctors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; }
.doctor-card {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border-soft); display: flex; flex-direction: column;
    transition: all var(--transition);
}
.doctor-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.doctor-photo {
    height: 420px; background: linear-gradient(135deg, var(--beige), var(--gold-soft));
    position: relative; display: flex; align-items: flex-end; justify-content: center;
    overflow: hidden;
}
.doctor-photo .doctor-initial {
    font-family: 'Cormorant Garamond', serif; font-size: 12rem; font-weight: 700;
    color: rgba(255,255,255,.7); line-height: 1; position: absolute; top: 50%;
    left: 50%; transform: translate(-50%,-50%);
}
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.doctor-body { padding: 28px; flex: 1; }
.doctor-body .specialty { font-size: 12px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }
.doctor-body h3 { margin: 8px 0 4px; }
.doctor-body .role { color: var(--text-muted); font-size: .95rem; margin-bottom: 14px; }
.doctor-body ul { list-style: none; font-size: .9rem; color: var(--text-muted); }
.doctor-body ul li { padding: 4px 0; padding-left: 22px; position: relative; }
.doctor-body ul li::before {
    content: ''; position: absolute; left: 0; top: 11px; width: 12px; height: 2px;
    background: var(--gold);
}

/* ---------- Service cards (grid view) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border-soft); display: flex; flex-direction: column;
    transition: all var(--transition); position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-soft); }
.service-card .img { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--beige); }
.service-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
.service-card:hover .img img { transform: scale(1.08); }
.service-card .img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(44,24,16,.5), transparent 50%);
    opacity: 0; transition: opacity var(--transition);
}
.service-card:hover .img::after { opacity: 1; }
.service-card .img-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.service-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card .body .doctor-tag { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; margin-bottom: 8px; }
.service-card .body h3 { font-size: 1.3rem; margin-bottom: 12px; line-height: 1.3; }
.service-card .body p { color: var(--text-muted); font-size: .92rem; flex: 1; margin-bottom: 18px; line-height: 1.7; }
.service-card .body .read-more {
    color: var(--gold-dark); font-weight: 600; font-size: .82rem;
    letter-spacing: .08em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap var(--transition); align-self: flex-start;
    padding-top: 14px; border-top: 1px solid var(--border-soft); width: 100%;
}
.service-card .body .read-more::after { content: '→'; transition: transform var(--transition); }
.service-card:hover .body .read-more { color: var(--gold); }
.service-card:hover .body .read-more::after { transform: translateX(6px); }

/* ---------- Service detail page ---------- */
.service-hero {
    position: relative; padding: 100px 0 80px; color: #fff; overflow: hidden;
    background: var(--brown-dark);
}
.service-hero .bg-img {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transform: scale(1.05);
}
.service-hero .bg-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(44,24,16,.88) 0%, rgba(74,47,26,.65) 70%);
}
.service-hero .container { position: relative; z-index: 2; }
.service-hero .eyebrow { display: inline-block; padding: 6px 18px; border: 1px solid rgba(232,200,154,.6); border-radius: 50px; font-size: 12px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.service-hero h1 { color: #fff; max-width: 760px; margin-bottom: 14px; }
.service-hero .lead { font-size: 1.1rem; color: #f0e6d2; max-width: 680px; }
.service-hero .breadcrumb { font-size: .85rem; letter-spacing: .1em; color: var(--gold-light); margin-bottom: 26px; }
.service-hero .breadcrumb a { color: var(--gold-light); }

.service-overview .container { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: start; }
@media (max-width: 900px) { .service-overview .container { grid-template-columns: 1fr; } }
.service-overview p { color: var(--text-muted); margin-bottom: 18px; font-size: 1.02rem; line-height: 1.85; }
.service-overview .side-card {
    background: linear-gradient(135deg, var(--cream), #fff);
    border: 1px solid var(--gold-soft); border-radius: var(--radius);
    padding: 30px; position: sticky; top: 110px;
}
.service-overview .side-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 14px; color: var(--brown-dark); }
.service-overview .side-card .doctor-line { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.service-overview .side-card .doctor-line .av {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.3rem;
}
.service-overview .side-card .doctor-line .info .label { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-dark); }
.service-overview .side-card .doctor-line .info .name { font-weight: 600; color: var(--brown-dark); font-size: .95rem; }
.service-overview .side-card .btn { width: 100%; justify-content: center; margin-top: 6px; }

.treatments-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 12px 20px; }
.treatments-list .pill {
    background: #fff; padding: 14px 18px; border-radius: 10px;
    border: 1px solid var(--border-soft); display: flex; align-items: center; gap: 12px;
    font-size: .94rem; color: var(--text); transition: all var(--transition);
}
.treatments-list .pill::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
    flex-shrink: 0;
}
.treatments-list .pill:hover { border-color: var(--gold-soft); transform: translateX(4px); background: var(--cream-soft); }

.journey-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .journey-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .journey-grid { grid-template-columns: 1fr; } }
.journey-step {
    background: #fff; padding: 28px 22px; border-radius: var(--radius);
    border: 1px solid var(--border-soft); text-align: center; position: relative;
}
.journey-step .num {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700;
    margin: 0 auto 14px;
}
.journey-step h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin-bottom: 8px; }
.journey-step p { color: var(--text-muted); font-size: .9rem; }

.service-category {
    background: #fff; border-radius: var(--radius); padding: 36px;
    margin-bottom: 28px; border: 1px solid var(--border-soft); box-shadow: var(--shadow-sm);
}
.service-category-header { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--border-soft); }
.service-category-icon {
    width: 56px; height: 56px; flex-shrink: 0; border-radius: 14px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px;
}
.service-category-header h3 { margin-bottom: 4px; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; }
.service-category-header .doctor-tag { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-dark); }
.service-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px 20px; }
.service-list li {
    list-style: none; padding: 8px 0 8px 24px; position: relative;
    color: var(--text); font-size: .95rem;
}
.service-list li::before {
    content: '✓'; position: absolute; left: 0; top: 8px;
    color: var(--gold); font-weight: 700; font-size: 14px;
}

/* ---------- About page ---------- */
.about-intro { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-intro { grid-template-columns: 1fr; } }
.about-intro img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.stat { text-align: center; padding: 28px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border-soft); }
.stat .number { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: var(--gold-dark); font-weight: 700; }
.stat .label { font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); }

.timeline { position: relative; max-width: 800px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 14px; top: 0; bottom: 0; width: 2px; background: var(--gold-soft); }
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item::before {
    content: ''; position: absolute; left: -32px; top: 5px; width: 16px; height: 16px;
    border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--cream);
}
.timeline-item .year { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }
.timeline-item h4 { margin: 4px 0; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; }
.timeline-item p { color: var(--text-muted); font-size: .9rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.gallery-item {
    aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden;
    position: relative; cursor: pointer; background: var(--beige);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,24,16,.85), transparent 50%);
    display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: opacity .3s; color: #fff;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { font-size: .9rem; font-weight: 500; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(20,10,5,.92); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 24px; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; }
.lightbox-close { position: absolute; top: 22px; right: 28px; color: #fff; background: none; border: 0; font-size: 36px; cursor: pointer; }

/* ---------- Blog cards ---------- */
.blogs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border-soft); transition: all var(--transition);
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card .blog-img { aspect-ratio: 16/10; background: var(--beige); overflow: hidden; }
.blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-card .blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.blog-card p { color: var(--text-muted); font-size: .92rem; flex: 1; margin-bottom: 14px; }
.blog-card .read-more { color: var(--gold-dark); font-weight: 600; font-size: .9rem; letter-spacing: .05em; }

.blog-detail .blog-hero { aspect-ratio: 21/9; background: var(--beige); border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.blog-detail .blog-hero img { width: 100%; height: 100%; object-fit: cover; }
.blog-body-content { max-width: 780px; margin: 0 auto; }
.blog-body-content p { margin-bottom: 18px; color: var(--text); font-size: 1.05rem; line-height: 1.85; }
.blog-body-content h2, .blog-body-content h3 { margin: 32px 0 14px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--brown-dark); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
    width: 100%; max-width: 100%; min-width: 0;
    padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
    background: #fff; font-family: inherit; font-size: 15px; color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,137,61,.15);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-card {
    background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius);
    padding: 36px; box-shadow: var(--shadow-sm); max-width: 100%;
}
@media (max-width: 600px) {
    .form-card { padding: 20px 16px; }
    .info-card { padding: 20px 16px; }
    section { padding: 48px 0; }
    .container { padding: 0 16px; }
    .section-head { margin-bottom: 32px; }
    .page-banner { padding: 60px 0 48px; }
    .form-grid { gap: 14px; }
    .form-field input, .form-field select, .form-field textarea { font-size: 14px; padding: 11px 14px; }
}

.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .95rem; }
.alert-success { background: #ecf6e8; color: #2d5d20; border: 1px solid #c5e2b3; }
.alert-error { background: #fbe9e7; color: #8e2a1a; border: 1px solid #f3c5be; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { background: #fff; padding: 28px; border-radius: var(--radius); border: 1px solid var(--border-soft); margin-bottom: 16px; }
.info-card h4 { color: var(--gold-dark); font-size: 14px; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 10px; }
.info-card p, .info-card a { color: var(--text); font-size: 1rem; line-height: 1.7; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 40px; }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Page banner ---------- */
.page-banner {
    position: relative; color: #fff; padding: 90px 0 70px; text-align: center;
    background: var(--brown-dark);
    background-image:
        linear-gradient(135deg, rgba(44,24,16,.78), rgba(74,47,26,.6)),
        url('../images/bg.jpg');
    background-size: cover; background-position: center;
}
.page-banner h1 { color: #fff; margin-bottom: 10px; }
.page-banner .breadcrumb { color: var(--gold-light); font-size: .9rem; letter-spacing: .1em; }
.page-banner .breadcrumb a { color: var(--gold-light); }

/* ---------- CTA strip ---------- */
.cta-strip {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown)); color: #fff;
    padding: 64px 0; text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 14px; }
.cta-strip p { color: var(--gold-light); margin-bottom: 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brown-dark); color: #c8b58e; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand img { width: 56px; height: 56px; object-fit: contain; background: #fff; border-radius: 50%; padding: 4px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--gold-light); }
.site-footer h4 { color: #fff; margin-bottom: 18px; font-family: 'Inter', sans-serif; font-size: .95rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { list-style: none; }
.footer-links li { padding: 5px 0; font-size: .92rem; }
.footer-links a { color: #c8b58e; }
.footer-links a:hover { color: var(--gold-light); }
.footer-text { font-size: .9rem; line-height: 1.7; color: #c8b58e; margin-bottom: 12px; }
.footer-text a { color: #c8b58e; }
.footer-text a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: #8e7d5f; }
.footer-bottom a { color: #8e7d5f; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Floating buttons ---------- */
.float-buttons { position: fixed; right: 22px; bottom: 22px; display: flex; flex-direction: column; gap: 12px; z-index: 90; }
.float-btn {
    width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.2); transition: transform var(--transition); position: relative;
}
.float-btn:hover { transform: scale(1.08); color: #fff; }
.float-btn.whatsapp { background: #25d366; }
.float-btn.call { background: var(--gold); }
.float-btn::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(184,137,61,.4); animation: pulse 2.2s infinite;
}
.float-btn.whatsapp::before { box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 currentColor; opacity: .6; }
    70% { box-shadow: 0 0 0 16px transparent; opacity: 0; }
    100% { box-shadow: 0 0 0 0 transparent; opacity: 0; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius);
    margin-bottom: 12px; overflow: hidden; transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--gold-soft); }
.faq-item summary {
    padding: 18px 22px; cursor: pointer; font-weight: 600; color: var(--brown-dark);
    font-size: 1rem; list-style: none; display: flex; justify-content: space-between;
    align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 1.8rem; color: var(--gold); font-weight: 300;
    line-height: 1; transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 22px 20px; color: var(--text-muted); line-height: 1.75; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card {
    background: #fff; padding: 30px 26px; border-radius: var(--radius);
    border: 1px solid var(--border-soft); position: relative;
    transition: all var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-card::before {
    content: '\201C'; position: absolute; top: 8px; right: 22px;
    font-family: 'Cormorant Garamond', serif; font-size: 5.5rem;
    color: var(--gold-soft); line-height: 1;
}
.review-card .stars { color: var(--gold); margin-bottom: 14px; font-size: 1rem; letter-spacing: 3px; position: relative; z-index: 1; }
.review-card .quote { color: var(--text); font-style: italic; line-height: 1.75; margin-bottom: 22px; position: relative; z-index: 1; }
.review-card .author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px; border-top: 1px solid var(--border-soft);
}
.review-card .avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
    flex-shrink: 0;
}
.review-card .author-info .name { font-weight: 600; color: var(--brown-dark); font-size: .95rem; }
.review-card .author-info .meta { font-size: 12px; color: var(--text-muted); }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: all .8s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
