:root {
    --navy: #1b3a5c;
    --navy-dark: #0f2340;
    --navy-deeper: #081628;
    --gold: #c4922a;
    --gold-light: #e0ae4a;
    --gold-pale: #f5e9cc;
    --bg: #faf8f5;
    --bg-light: #f0ede6;
    --white: #ffffff;
    --text: #1a1a2e;
    --text-mid: #4a4a5a;
    --text-light: #7a7a8a;
    --border: #e0ddd6;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --radius: 10px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 56px rgba(0,0,0,0.13);
    --nav-h: 72px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body { font-family: var(--font-sans); background: var(--bg); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--navy-dark); }

.section-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 4vw, 2.9rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-sub { font-size: 1.05rem; color: var(--text-mid); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.section-sub.light { color: rgba(255,255,255,0.72); }
.light-text { color: rgba(255,255,255,0.82); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.9rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    transition: all 0.22s ease;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(196,146,42,0.32); }
.btn-outline { border: 2px solid rgba(255,255,255,0.38); color: var(--white); }
.btn-outline:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
    height: var(--nav-h);
    transition: background 0.35s, box-shadow 0.35s;
}
.nav.scrolled { background: var(--navy-deeper); box-shadow: 0 2px 24px rgba(0,0,0,0.25); }
.nav .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: 0.7rem; color: var(--white); }
.nav-logo-badge {
    width: 38px; height: 38px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.85rem;
    flex-shrink: 0;
}
.nav-logo-name { font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em; }

.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-links a {
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: 7px;
    transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.09); }
.nav-links .nav-cta {
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    margin-left: 0.6rem;
    border-radius: var(--radius);
}
.nav-links .nav-cta:hover { background: var(--gold-light); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 23px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.28s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
    min-height: 100svh;
    background: var(--navy-deeper);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-h);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 55% at 75% 50%, rgba(196,146,42,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 70% at 5% 85%, rgba(27,58,92,0.5) 0%, transparent 60%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; padding-top: 2rem; padding-bottom: 3rem; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

.hero-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.hero-h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 6.5vw, 4.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.06;
    margin-bottom: 1.3rem;
}
.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.trust-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.hero-photo { position: relative; display: flex; justify-content: center; }
.hero-photo-frame {
    width: 360px;
    height: 430px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(196,146,42,0.3);
    box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
    position: relative;
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.hero-chip {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 100px;
    padding: 0.55rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    box-shadow: var(--shadow);
}
.hero-chip svg { width: 14px; height: 14px; color: var(--gold); }

/* ── ABOUT ── */
.about-intro { max-width: 720px; margin: 0 auto; text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.about-intro p { color: var(--text-mid); margin-bottom: 1.1rem; line-height: 1.78; }
.about-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 0; }
.about-point { display: flex; gap: 0.9rem; align-items: flex-start; background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); }
.apt-icon {
    width: 42px; height: 42px;
    background: var(--gold-pale);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.apt-icon svg { width: 20px; height: 20px; color: var(--gold); }
.about-point strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 0.15rem; }
.about-point p { margin: 0; font-size: 0.88rem; color: var(--text-light); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(256px, 1fr)); gap: 1.4rem; }
.svc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-icon {
    width: 50px; height: 50px;
    background: var(--gold-pale);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.svc-icon svg { width: 25px; height: 25px; color: var(--gold); }
.svc-card h3 { font-family: var(--font-serif); font-size: 1.18rem; color: var(--navy); margin-bottom: 0.7rem; }
.svc-card > p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.68; margin-bottom: 1.2rem; }
.svc-list { display: flex; flex-direction: column; gap: 0.38rem; }
.svc-list li { font-size: 0.84rem; color: var(--text-mid); padding-left: 1rem; position: relative; }
.svc-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.55em;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* ── LOCAL ── */
.local-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.local-content .section-eyebrow,
.local-content .section-title { text-align: left; }
.local-content p { color: rgba(255,255,255,0.82); margin-bottom: 1.1rem; line-height: 1.75; }
.local-areas { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2rem; }
.area-row {
    display: flex; gap: 0.85rem; align-items: flex-start;
    padding: 0.95rem 1.1rem;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
}
.area-row.featured { background: rgba(196,146,42,0.11); border-color: rgba(196,146,42,0.22); }
.area-row svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.area-row strong { display: block; color: var(--white); font-size: 0.87rem; margin-bottom: 0.15rem; }
.area-row span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

.local-box {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
}
.local-box h3 { font-family: var(--font-serif); color: var(--white); margin-bottom: 1.25rem; font-size: 1.15rem; }
.local-box ul { display: flex; flex-direction: column; gap: 0.7rem; }
.local-box li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    padding-left: 1.3rem;
    position: relative;
    line-height: 1.55;
}
.local-box li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.55em;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-grid::before {
    content: '';
    position: absolute;
    top: 2.1rem; left: 12.5%; right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(196,146,42,0.2) 100%);
    pointer-events: none;
}
.proc-step { text-align: center; }
.proc-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1.1rem;
    display: block;
    position: relative; z-index: 1;
}
.proc-step h3 { font-family: var(--font-serif); color: var(--navy); font-size: 1.05rem; margin-bottom: 0.65rem; }
.proc-step p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.68; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(278px, 1fr)); gap: 1.5rem; }
.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.testi-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 1rem; font-size: 1rem; }
.testi-text { font-size: 0.94rem; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.9rem; }
.testi-avatar {
    width: 42px; height: 42px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.75rem;
    flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.88rem; color: var(--navy); }
.testi-author span { font-size: 0.78rem; color: var(--text-light); }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%;
    text-align: left;
    padding: 1.4rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.18s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 1.3rem; font-weight: 300; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.32s ease, padding 0.32s; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 1.4rem; font-size: 0.94rem; color: var(--text-mid); line-height: 1.8; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-details { padding-top: 0.5rem; }
.ct-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.ct-ico {
    width: 44px; height: 44px;
    background: rgba(196,146,42,0.14);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ct-ico svg { width: 20px; height: 20px; color: var(--gold); }
.ct-item strong { display: block; color: var(--white); font-size: 0.83rem; margin-bottom: 0.28rem; letter-spacing: 0.04em; }
.ct-item a, .ct-item p { font-size: 0.95rem; color: rgba(255,255,255,0.78); transition: color 0.18s; }
.ct-item a:hover { color: var(--gold-light); }
.ct-note {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
}
.ct-note strong { display: block; color: var(--white); font-size: 0.85rem; margin-bottom: 0.4rem; }
.ct-note p { font-size: 0.85rem; color: rgba(255,255,255,0.62); line-height: 1.6; }

.contact-form {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.78); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
input, textarea, select {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: var(--radius);
    padding: 0.78rem 1rem;
    font: inherit;
    font-size: 0.93rem;
    color: var(--white);
    transition: border-color 0.2s, background 0.2s;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.32); }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.1); }
select option { background: var(--navy-dark); color: var(--white); }
textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-align: center; margin-top: 0.8rem; line-height: 1.5; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success svg { width: 48px; height: 48px; color: #4ade80; margin: 0 auto 1rem; }
.form-success h3 { color: var(--white); margin-bottom: 0.5rem; }
.form-success p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* ── FOOTER ── */
.footer { background: var(--navy-deeper); padding: 3rem 0 2rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 1.5rem;
}
.f-brand-name { font-family: var(--font-serif); font-size: 1.25rem; color: var(--white); display: block; margin-bottom: 0.4rem; }
.f-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.f-nav { display: flex; flex-direction: column; gap: 0.55rem; }
.f-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.18s; }
.f-nav a:hover { color: var(--gold-light); }
.f-company strong { display: block; color: var(--white); font-size: 0.88rem; margin-bottom: 0.55rem; }
.f-company p, .f-company a { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.85; }
.f-company a:hover { color: var(--gold-light); }
.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.32); }

/* ── KRAŠTOVAIZDŽIO NUOTRAUKOS ── */

/* Hero – landscape background */
.hero {
    background-image: url('dubingiai5.jpg');
    background-size: cover;
    background-position: center 40%;
}
.hero::before {
    background:
        linear-gradient(105deg, rgba(8,22,40,0.93) 0%, rgba(8,22,40,0.82) 45%, rgba(8,22,40,0.62) 100%),
        radial-gradient(ellipse 65% 55% at 75% 50%, rgba(196,146,42,0.05) 0%, transparent 70%);
}

/* Gallery section */
.gallery-section {
    padding: clamp(4.5rem, 9vw, 7.5rem) 0;
    background: var(--navy-dark);
}
.gallery-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.gallery-item {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,22,40,0.38) 0%, transparent 55%);
    pointer-events: none;
    transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 0; }

/* local-box photos */
.local-box-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.4rem;
}
.local-box-photos img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.local-box-photos img:hover { transform: scale(1.04); }

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* ── FADE ANIMATIONS ── */
@media (prefers-reduced-motion: no-preference) {
    .fade { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade.visible { opacity: 1; transform: none; }
    .fade-d1 { transition-delay: 0.1s; }
    .fade-d2 { transition-delay: 0.2s; }
    .fade-d3 { transition-delay: 0.3s; }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-photo { order: -1; }
    .hero-photo-frame { width: 260px; height: 320px; margin: 0 auto; }
    .hero-text { text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .about-points { grid-template-columns: 1fr; }
    .local-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-grid::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .f-company { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        background: var(--navy-deeper);
        flex-direction: column;
        padding: 1.25rem;
        gap: 0.2rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.85rem 1rem; width: 100%; }
    .nav-links .nav-cta { margin-left: 0; }
    .nav-toggle { display: flex; }
    .hero-photo-frame { width: 220px; height: 270px; }
    .process-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
}
