/* ==========================================================================
   PARINDA STAMP PAPER - Black & Gold Premium Theme
   Notary Public, Stamp Paper & Documentation Services
   ========================================================================== */

:root {
    --bg: #0a0a0a;
    --bg-2: #111111;
    --bg-3: #1a1a1a;
    --panel: rgba(20, 20, 20, 0.85);
    --panel-glass: rgba(255, 255, 255, 0.03);

    --gold: #c9a227;
    --gold-bright: #e6c44a;
    --gold-dim: #a08420;
    --gold-glow: rgba(201, 162, 39, 0.15);
    --gold-subtle: rgba(201, 162, 39, 0.06);

    --ink: #f0ece4;
    --ink-dim: #a8a49c;
    --ink-faint: #6b6860;

    --line: rgba(201, 162, 39, 0.1);
    --line-strong: rgba(201, 162, 39, 0.2);

    --success: #22c55e;
    --danger: #ef4444;

    --f-display: 'Cinzel', serif;
    --f-body: 'Manrope', sans-serif;
    --f-mono: 'JetBrains Mono', monospace;

    --container: 1200px;
    --gutter: clamp(16px, 4vw, 60px);
    --ease: cubic-bezier(.22, 1, .36, 1);
    --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--f-body);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; letter-spacing: 0.02em; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.text-gold { color: var(--gold-bright); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
#preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader__bg-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.preloader__bg-particles .particle {
    position: absolute; width: 2px; height: 2px; border-radius: 50%;
    background: var(--gold); opacity: 0;
    animation: pFloat 3s infinite ease-in-out;
}
@keyframes pFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.7; }
    80% { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-20px) scale(1); }
}

.preloader__inner { position: relative; display: flex; flex-direction: column; align-items: center; z-index: 2; }
.preloader__ring-wrap { position: relative; width: 140px; height: 140px; margin-bottom: 24px; }
.preloader__ring { width: 100%; height: 100%; }
.ring-track { fill: none; stroke: rgba(201, 162, 39, 0.1); stroke-width: 1.5; }
.ring-fill {
    fill: none; stroke: var(--gold); stroke-width: 2.5;
    stroke-dasharray: 377; stroke-dashoffset: 377;
    transform-origin: 70px 70px; transform: rotate(-90deg);
    transition: stroke-dashoffset 0.15s linear; stroke-linecap: round;
    filter: drop-shadow(0 0 6px rgba(201, 162, 39, 0.5));
}
.ring-glow {
    fill: none; stroke: var(--gold); stroke-width: 8;
    stroke-dasharray: 377; stroke-dashoffset: 377;
    transform-origin: 70px 70px; transform: rotate(-90deg);
    opacity: 0.12; filter: blur(6px);
    transition: stroke-dashoffset 0.15s linear;
}
.preloader__dots { position: absolute; inset: 0; animation: pSpin 8s linear infinite; }
.preloader__dots span {
    position: absolute; width: 4px; height: 4px; border-radius: 50%;
    background: var(--gold); opacity: 0.35;
}
.preloader__dots span:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.preloader__dots span:nth-child(2) { top: 15%; right: 12%; }
.preloader__dots span:nth-child(3) { top: 50%; right: 0; transform: translateY(-50%); }
.preloader__dots span:nth-child(4) { bottom: 15%; right: 12%; }
.preloader__dots span:nth-child(5) { bottom: 0; left: 50%; transform: translateX(-50%); }
.preloader__dots span:nth-child(6) { bottom: 15%; left: 12%; }
.preloader__dots span:nth-child(7) { top: 50%; left: 0; transform: translateY(-50%); }
.preloader__dots span:nth-child(8) { top: 15%; left: 12%; }
@keyframes pSpin { to { transform: rotate(360deg); } }

.preloader__mark { font-size: 32px; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 6px; }
.preloader__name { font-size: 11px; letter-spacing: 0.4em; color: var(--ink-dim); text-transform: uppercase; margin-bottom: 4px; }
.preloader__role { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--ink-faint); text-transform: uppercase; margin-bottom: 28px; }
.preloader__bottom { width: 200px; }
.preloader__bar { width: 100%; height: 2px; background: rgba(201, 162, 39, 0.12); border-radius: 2px; overflow: hidden; margin-bottom: 10px; }
.preloader__bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); border-radius: 2px; transition: width 0.15s linear; box-shadow: 0 0 10px rgba(201, 162, 39, 0.4); }
.preloader__info { display: flex; justify-content: space-between; align-items: center; }
.preloader__caption { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.3em; color: var(--ink-faint); text-transform: uppercase; }
.preloader__label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.15em; color: var(--gold); font-weight: 600; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 800;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px var(--gutter);
    background: transparent;
    transition: all 0.4s var(--ease);
}
.site-nav.is-scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px var(--gutter);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.site-nav__brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
    width: 44px; height: 44px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
    border: 1.5px solid var(--gold-dim);
    transition: all 0.3s var(--ease);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.site-nav__brand:hover .brand-mark { border-color: var(--gold); box-shadow: 0 0 20px var(--gold-glow); }
.brand-name { font-size: 14px; letter-spacing: 0.06em; color: var(--ink); font-weight: 600; }

.site-nav__links { display: flex; gap: 32px; }
.site-nav__links a {
    position: relative; font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--ink-dim); font-weight: 500;
    padding: 4px 0;
}
.site-nav__links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1.5px; background: var(--gold);
    transition: width 0.3s var(--ease);
}
.site-nav__links a:hover::after, .site-nav__links a.is-active::after { width: 100%; }
.site-nav__links a:hover, .site-nav__links a.is-active { color: var(--gold); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 26px; z-index: 900; }
.nav-toggle span { height: 1.5px; width: 100%; background: var(--ink); transition: all 0.3s var(--ease); border-radius: 2px; }

@media (max-width: 900px) {
    .site-nav__links { display: none; }
    .nav-toggle { display: flex; }
    .site-nav__links.is-open {
        display: flex; flex-direction: column;
        position: fixed; inset: 0; z-index: 820;
        background: rgba(10, 10, 10, 0.98);
        align-items: center; justify-content: center;
        gap: 36px; backdrop-filter: blur(20px);
    }
    .site-nav__links.is-open a { font-size: 16px; color: var(--ink); }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.04), transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(201, 162, 39, 0.03), transparent 40%),
        var(--bg);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }

.hero__content {
    position: relative; z-index: 3;
    width: 100%; max-width: var(--container); margin: 0 auto;
    padding: 140px var(--gutter) 80px;
}

.hero__eyebrow {
    font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.35em;
    color: var(--gold); text-transform: uppercase; margin-bottom: 20px;
}
.hero__title {
    font-size: clamp(44px, 9vw, 100px); line-height: 0.95;
    letter-spacing: 0.02em; color: var(--ink); text-transform: uppercase;
}
.hero__title-line { display: block; }
.hero__title-line--accent { color: var(--gold); }
.hero__role {
    font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--ink-dim); margin-top: 22px;
}
.hero__tagline {
    font-size: clamp(16px, 2vw, 20px); color: var(--ink-dim);
    max-width: 580px; margin-top: 22px; font-weight: 300; line-height: 1.7;
}
.hero__tagline em { color: var(--gold); font-style: normal; font-weight: 500; }
.hero__cta { display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 32px; font-size: 12px; letter-spacing: 0.14em;
    text-transform: uppercase; border-radius: 100px;
    transition: all 0.4s var(--ease); font-weight: 600;
}
.btn--primary {
    background: var(--gold); color: var(--bg);
    box-shadow: 0 4px 20px var(--gold-glow);
}
.btn--primary:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 162, 39, 0.3);
}
.btn--ghost {
    border: 1.5px solid var(--line-strong); color: var(--ink);
}
.btn--ghost:hover {
    border-color: var(--gold); color: var(--gold);
    background: var(--gold-subtle);
}
.btn--block { width: 100%; justify-content: center; }
.btn--whatsapp {
    background: #25d366; color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
}
.btn--whatsapp:hover {
    background: #20bd5a; transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}
.btn__arrow { width: 15px; height: 15px; }
.btn__arrow path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
    position: relative; padding: 100px var(--gutter);
    max-width: var(--container); margin: 0 auto;
}
.section-head { max-width: 700px; margin-bottom: 60px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__eyebrow {
    display: block; font-family: var(--f-mono); font-size: 10px;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
}
.section-head__title { font-size: clamp(28px, 4.5vw, 46px); line-height: 1.15; color: var(--ink); }
.section-head__sub { margin-top: 14px; color: var(--ink-dim); font-size: 15px; font-weight: 300; max-width: 540px; }
.section-head--center .section-head__sub { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
    background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px 26px; transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
}
.service-card:hover {
    border-color: var(--gold-dim);
    box-shadow: 0 8px 40px rgba(201, 162, 39, 0.08);
    transform: translateY(-4px);
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0); transition: transform 0.4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--gold-subtle);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; border: 1px solid var(--line);
}
.service-icon svg { width: 24px; height: 24px; }
.service-icon svg path, .service-icon svg rect, .service-icon svg circle, .service-icon svg polyline, .service-icon svg line {
    stroke: var(--gold); stroke-width: 1.8; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
}

.service-card h3 { font-family: var(--f-body); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.service-card p { font-size: 13.5px; color: var(--ink-dim); line-height: 1.7; font-weight: 300; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid {
    display: grid; grid-template-columns: 380px 1fr; gap: 70px; align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-image { position: relative; }
.about-image img {
    border-radius: 16px; width: 100%;
    border: 1px solid var(--line);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-text h2 { font-size: clamp(26px, 3.5vw, 38px); line-height: 1.2; margin-bottom: 20px; color: var(--ink); }
.about-text p { font-size: 15px; color: var(--ink-dim); margin-bottom: 14px; line-height: 1.8; font-weight: 300; }
.about-quote {
    font-family: var(--f-display); font-size: 16px; color: var(--gold);
    border-left: 2px solid var(--gold); padding: 14px 20px; margin-top: 24px;
    background: var(--gold-subtle); border-radius: 0 10px 10px 0; line-height: 1.6;
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats-section {
    background: var(--bg-2); border: 1px solid var(--line);
    border-radius: 20px; padding: 56px 40px; margin: 80px 0;
    position: relative; overflow: hidden;
}
.stats-section::before {
    content: ''; position: absolute; top: -40%; right: -15%;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.06), transparent 70%);
}

.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; text-align: center; position: relative; z-index: 1;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-item h3 {
    font-size: clamp(28px, 4vw, 40px); color: var(--gold); margin-bottom: 6px;
}
.stat-item p { font-size: 12px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.12em; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 44px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.glass {
    background: var(--panel-glass); border: 1px solid var(--line);
    border-radius: 16px; backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.contact-panel { padding: 40px; }

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.field { position: relative; }
.field input, .field textarea, .field select {
    width: 100%; background: transparent;
    border: none; border-bottom: 1.5px solid var(--line-strong);
    color: var(--ink); font-family: var(--f-body); font-size: 14px;
    padding: 12px 4px; transition: border-color 0.3s;
    border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none; border-color: var(--gold);
}
.field select {
    -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a8a49c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 4px center;
    padding-right: 24px;
}
.field select option { background: var(--bg-2); color: var(--ink); }
.field label {
    position: absolute; left: 4px; top: 12px;
    color: var(--ink-faint); font-size: 14px; pointer-events: none;
    transition: all 0.25s var(--ease);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
    top: -14px; font-size: 10px; letter-spacing: 0.12em;
    color: var(--gold); text-transform: uppercase;
}

.contact-side { display: flex; flex-direction: column; gap: 14px; }
.contact-link {
    display: flex; flex-direction: column; gap: 4px;
    padding: 18px 22px; border: 1px solid var(--line);
    border-radius: 12px; transition: all 0.35s var(--ease);
    background: var(--panel-glass);
}
.contact-link:hover { border-color: var(--gold-dim); box-shadow: 0 4px 16px rgba(201, 162, 39, 0.06); }
.contact-link-label { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.2em; color: var(--ink-faint); text-transform: uppercase; }
.contact-link-value { font-size: 14px; color: var(--ink); font-weight: 500; }

.quick-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.quick-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px; border: 1px solid var(--line); border-radius: 100px;
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink-dim); transition: all 0.3s var(--ease); font-weight: 500;
}
.quick-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-subtle); }
.quick-btn svg { width: 14px; height: 14px; }
.quick-btn svg path { stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.contact-status {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; color: var(--ink-dim);
    padding: 14px 18px; border: 1px solid var(--line);
    border-radius: 12px; background: var(--panel-glass);
}
.status-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Social Links */
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
    width: 42px; height: 42px; border: 1px solid var(--line);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    transition: all 0.35s var(--ease); background: var(--panel-glass);
}
.social-link svg { width: 18px; height: 18px; }
.social-link svg path { fill: var(--ink-dim); transition: fill 0.3s; }
.social-link:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 6px 20px var(--gold-glow); }
.social-link:hover svg path { fill: var(--bg); }

/* ==========================================================================
   MAP
   ========================================================================== */
.map-container {
    margin-top: 40px; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.map-container iframe { width: 100%; height: 350px; border: none; filter: grayscale(0.3); }

/* ==========================================================================
   PAGE HEADER / PAGE HERO
   ========================================================================== */
.page-header, .page-hero {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.04), transparent 50%),
        var(--bg);
    padding: 180px var(--gutter) 80px; text-align: center;
}
.page-header h1, .page-hero h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 14px; color: var(--ink); }
.page-header p, .page-hero p { font-size: 16px; color: var(--ink-dim); font-weight: 300; }

@media (max-width: 600px) {
    .page-header, .page-hero { padding: 150px var(--gutter) 60px; }
}

/* ==========================================================================
   SERVICES DETAIL (Inner Page)
   ========================================================================== */
.services-category { margin-bottom: 60px; }
.services-category__title {
    font-size: 20px; color: var(--gold); margin-bottom: 24px;
    padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.services-detail-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px;
}
.service-detail-card {
    background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px 24px; transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
}
.service-detail-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0); transition: transform 0.4s var(--ease);
}
.service-detail-card:hover::before { transform: scaleX(1); }
.service-detail-card:hover {
    border-color: var(--gold-dim);
    box-shadow: 0 8px 32px rgba(201, 162, 39, 0.06);
}
.service-detail-card h3 { font-size: 15px; color: var(--ink); margin-bottom: 10px; font-family: var(--f-body); font-weight: 600; }
.service-detail-card p { color: var(--ink-dim); font-weight: 300; font-size: 13.5px; line-height: 1.7; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    background: var(--bg-2); border: 1px solid var(--line);
    border-radius: 20px; padding: 56px 44px; margin: 80px 0;
}
.faq-item {
    background: var(--bg-3); margin-bottom: 10px; border-radius: 10px;
    border: 1px solid var(--line); overflow: hidden; transition: all 0.3s var(--ease);
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-question {
    padding: 20px 24px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 500; font-size: 14px; color: var(--ink); gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-question span { color: var(--gold); font-size: 12px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-question span { transform: rotate(180deg); }
.faq-answer {
    padding: 0 24px 20px; color: var(--ink-dim);
    display: none; font-weight: 300; line-height: 1.7; font-size: 14px;
}
.faq-item.active .faq-answer { display: block; }

/* ==========================================================================
   DISCLAIMER
   ========================================================================== */
.disclaimer {
    background: var(--bg-3); border: 1px solid var(--line);
    border-radius: 12px; padding: 24px 28px; margin: 60px 0 0;
}
.disclaimer p {
    font-size: 12px; color: var(--ink-faint); line-height: 1.8;
}
.disclaimer strong { color: var(--ink-dim); }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-content { max-width: 800px; margin: 0 auto; text-align: center; }
.about-content h2 { font-size: 2rem; color: var(--ink); margin-bottom: 20px; }
.about-content p { color: var(--ink-dim); margin-bottom: 16px; line-height: 1.8; font-weight: 300; font-size: 15px; }

.values-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
    text-align: center; padding: 32px 24px; background: var(--bg-2);
    border: 1px solid var(--line); border-radius: var(--radius);
    transition: all 0.4s var(--ease);
}
.value-card:hover { border-color: var(--gold-dim); box-shadow: 0 8px 32px rgba(201, 162, 39, 0.06); transform: translateY(-3px); }
.value-icon { font-size: 1.8rem; margin-bottom: 14px; }
.value-card h3 { color: var(--ink); margin-bottom: 8px; font-size: 16px; font-family: var(--f-body); }
.value-card p { color: var(--ink-dim); font-weight: 300; font-size: 13px; line-height: 1.7; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    border-top: 1px solid var(--line); padding: 48px var(--gutter) 24px;
    background: var(--bg);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px; max-width: var(--container); margin: 0 auto;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h4 {
    font-family: var(--f-body); font-size: 13px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600;
}
.footer-col p { font-size: 13px; color: var(--ink-dim); line-height: 1.8; font-weight: 300; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: var(--ink-dim); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid var(--line); padding-top: 20px; margin-top: 40px;
    max-width: var(--container); margin-left: auto; margin-right: auto;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    font-size: 11px; color: var(--ink-faint);
}

/* ==========================================================================
   THEME TOGGLE (Light / Dark Mode)
   ========================================================================== */
.theme-toggle {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid var(--line-strong);
    background: var(--panel-glass);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s var(--ease);
    flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--gold); background: var(--gold-subtle); }
.theme-toggle svg { width: 18px; height: 18px; transition: all 0.3s var(--ease); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* ==========================================================================
   LIGHT MODE
   ========================================================================== */
[data-theme="light"] {
    --bg: #f5f3ef;
    --bg-2: #ffffff;
    --bg-3: #edeae4;
    --panel: rgba(255, 255, 255, 0.9);
    --panel-glass: rgba(255, 255, 255, 0.7);

    --ink: #1a1a1a;
    --ink-dim: #555555;
    --ink-faint: #888888;

    --line: rgba(26, 26, 26, 0.1);
    --line-strong: rgba(26, 26, 26, 0.2);
}

[data-theme="light"] .site-nav.is-scrolled {
    background: rgba(245, 243, 239, 0.95);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .hero {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.06), transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(201, 162, 39, 0.04), transparent 40%),
        var(--bg);
}

[data-theme="light"] .site-nav__links.is-open {
    background: rgba(245, 243, 239, 0.98);
}

[data-theme="light"] .service-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .service-card:hover {
    box-shadow: 0 8px 40px rgba(201, 162, 39, 0.1);
}

[data-theme="light"] .stats-section {
    background: var(--bg-2);
    border: 1px solid var(--line);
}
[data-theme="light"] .stats-section::before {
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08), transparent 70%);
}

[data-theme="light"] .glass {
    background: var(--panel-glass);
    border: 1px solid var(--line);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .contact-link {
    background: var(--panel-glass);
    border: 1px solid var(--line);
}

[data-theme="light"] .quick-btn {
    border: 1px solid var(--line);
    color: var(--ink-dim);
}

[data-theme="light"] .social-link {
    background: var(--panel-glass);
    border: 1px solid var(--line);
}
[data-theme="light"] .social-link svg path { fill: var(--ink-dim); }
[data-theme="light"] .social-link:hover svg path { fill: var(--bg); }

[data-theme="light"] .contact-status {
    background: var(--panel-glass);
    border: 1px solid var(--line);
}

[data-theme="light"] .faq-item {
    background: var(--bg-2);
    border: 1px solid var(--line);
}

[data-theme="light"] .faq-section {
    background: var(--bg-2);
    border: 1px solid var(--line);
}

[data-theme="light"] .disclaimer {
    background: var(--bg-3);
    border: 1px solid var(--line);
}

[data-theme="light"] .site-footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
}

[data-theme="light"] .value-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
}

[data-theme="light"] .service-detail-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
}

[data-theme="light"] .about-image img {
    border: 1px solid var(--line);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .btn--ghost {
    border: 1.5px solid var(--line-strong);
    color: var(--ink);
}

[data-theme="light"] .field select option {
    background: var(--bg-2);
    color: var(--ink);
}

[data-theme="light"] .nav-toggle span {
    background: var(--ink);
}

/* ==========================================================================
    REVIEWS SECTION
   ========================================================================== */
.reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 1024px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
    background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px;
    padding: 28px 24px; transition: all 0.4s var(--ease);
    display: flex; flex-direction: column;
}
.review-card:hover {
    border-color: var(--gold-dim);
    box-shadow: 0 8px 40px rgba(201, 162, 39, 0.08);
    transform: translateY(-4px);
}
.review-card__stars { margin-bottom: 14px; display: flex; gap: 2px; }
.review-card__stars svg { width: 16px; height: 16px; fill: var(--gold); }
.review-card__text {
    font-size: 14px; color: var(--ink-dim); line-height: 1.8;
    font-weight: 300; flex: 1; margin-bottom: 16px;
    font-style: italic;
}
.review-card__text::before { content: '"'; color: var(--gold); font-weight: 700; }
.review-card__text::after { content: '"'; color: var(--gold); font-weight: 700; }
.review-card__author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 14px; border-top: 1px solid var(--line);
}
.review-card__avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gold-subtle); border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--f-display); font-size: 14px; color: var(--gold);
    font-weight: 700; flex-shrink: 0;
}
.review-card__name { font-size: 13px; font-weight: 600; color: var(--ink); }
.review-card__source { font-size: 11px; color: var(--ink-faint); }
.review-card__verified {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 10px; color: var(--success); margin-top: 2px;
}
.review-card__verified svg { width: 12px; height: 12px; }

/* Write Review Form */
.write-review-box {
    background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px;
    padding: 36px; margin-top: 40px;
}
.write-review-box h3 {
    font-family: var(--f-display); font-size: 20px; color: var(--ink);
    margin-bottom: 20px;
}
.write-review-box .field { position: static; }
.write-review-box .field label {
    display: block; font-size: 11px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--ink-faint); margin-bottom: 6px;
    position: static; pointer-events: auto;
}
.write-review-box .field input,
.write-review-box .field textarea {
    width: 100%; padding: 12px 16px; background: var(--bg-3);
    border: 1px solid var(--line); border-radius: 10px;
    color: var(--ink); font-family: var(--f-body); font-size: 14px;
    transition: border-color 0.3s; position: static;
}
.write-review-box .field input:focus,
.write-review-box .field textarea:focus { outline: none; border-color: var(--gold); }
.star-rating { display: flex; gap: 6px; margin-bottom: 16px; }
.star-rating svg {
    width: 28px; height: 28px; cursor: pointer;
    fill: var(--line-strong); transition: all 0.2s;
}
.star-rating svg.active { fill: var(--gold); }
.star-rating svg:hover { fill: var(--gold-bright); transform: scale(1.1); }

[data-theme="light"] .review-card {
    background: var(--bg-2); border: 1px solid var(--line);
}
[data-theme="light"] .write-review-box {
    background: var(--bg-2); border: 1px solid var(--line);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 600px) {
    .section { padding: 70px var(--gutter); }
    .contact-panel { padding: 28px; }
    .faq-section { padding: 36px 20px; }
    .stats-section { padding: 36px 20px; margin: 50px 0; }
    .hero__content { padding: 120px var(--gutter) 60px; }
    .footer-grid { grid-template-columns: 1fr; }
    .services-detail-grid { grid-template-columns: 1fr; }
}
