@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --navy: #1a2744;
    --navy-dark: #0f1a30;
    --navy-light: #243358;
    --blue: #2c5282;
    --gold: #c9a84c;
    --gold-dark: #a8883a;
    --white: #ffffff;
    --off-white: #f7f6f2;
    --gray-light: #f0eff0;
    --gray: #9ca3af;
    --text: #1a1a1a;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--navy);
    padding: 0 2rem;
    height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
    display: flex; align-items: center; gap: 12px;
    color: var(--white);
}

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.nav-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--white);
}

.nav-logo-sub {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.nav-links {
    display: flex; align-items: center; gap: 2.25rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.82);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 0.5rem 1.4rem !important;
    border-radius: 4px;
    border-bottom: none !important;
    font-weight: 600 !important;
    transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

.nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 4px;
}

.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: 0.3s;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(10,20,52,0.82) 0%, rgba(15,26,48,0.68) 100%);
}

.hero-content {
    position: relative; z-index: 1;
    max-width: 820px;
    padding: 4rem 2rem;
    color: var(--white);
}

.hero-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.1rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: rgba(255,255,255,0.87);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto; margin-right: auto;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 0.875rem 2.1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    transition: all 0.2s;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: 'Inter', sans-serif;
}

.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

/* ── LAYOUT ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

section { padding: 96px 0; }

.section-header { text-align: center; margin-bottom: 3.75rem; }

.section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.divider { width: 56px; height: 3px; background: var(--gold); margin: 1.1rem auto 0; border-radius: 2px; }

/* ── ABOUT (HOME) ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    align-items: center;
}

.about-img { position: relative; }

.about-img img {
    width: 100%; height: 500px;
    object-fit: cover;
    border-radius: 6px;
}

.about-img::before {
    content: '';
    position: absolute;
    top: -14px; left: -14px; right: 14px; bottom: 14px;
    border: 2px solid var(--gold);
    border-radius: 6px;
    z-index: -1;
}

.about-text h2 { font-size: 2.3rem; color: var(--navy); margin-bottom: 1.3rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.2rem; font-size: 1.02rem; }

.about-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.25rem 0;
    padding: 1.75rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
}

.stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ── SERVICE CARDS (HOME) ── */
.bg-off-white { background: var(--off-white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 6px;
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--gold);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.service-icon {
    width: 52px; height: 52px;
    background: rgba(44,82,130,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--blue);
}

.service-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.75rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }
.service-card a { color: var(--blue); font-size: 0.88rem; font-weight: 600; margin-top: 1rem; display: inline-block; }
.service-card a:hover { color: var(--navy); }

/* ── WHY US ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.why-item { padding: 1.5rem; }

.why-icon {
    width: 64px; height: 64px;
    background: rgba(201,168,76,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--gold);
}

.why-item h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.why-item p { color: var(--text-muted); font-size: 0.9rem; }

/* ── REVIEWS (HOME) ── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ── REVIEW CARD ── */
.review-card {
    background: var(--white);
    border-radius: 6px;
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex; flex-direction: column;
    border-left: 3px solid var(--gold);
}

.review-stars { color: #f59e0b; margin-bottom: 0.75rem; font-size: 1.05rem; letter-spacing: 2px; }

.review-text {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.review-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }

.review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
}

.review-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.review-source { font-size: 0.8rem; color: var(--text-muted); }

/* ── CTA BANNER ── */
.cta-banner {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 88px 0;
}

.cta-banner h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.78); max-width: 540px; margin: 0 auto 2.25rem; font-size: 1.05rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    background: var(--navy);
    padding: 110px 0 64px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.13;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 1rem; font-family: 'Inter', sans-serif; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── SERVICES PAGE ── */
.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--white);
    border-radius: 6px;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service-item-icon {
    width: 56px; height: 56px;
    background: var(--navy);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.service-item h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.service-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }

/* ── REVIEWS PAGE ── */
.reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.rating-summary {
    background: var(--navy);
    color: var(--white);
    border-radius: 8px;
    padding: 2.75rem 3rem;
    margin-bottom: 3.5rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: center;
}

.rating-big { font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 700; line-height: 1; color: var(--gold); }
.rating-stars-big { color: #f59e0b; font-size: 1.5rem; letter-spacing: 3px; margin: 0.5rem 0; }
.rating-count { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.rating-bars { text-align: left; min-width: 240px; }

.rating-bar-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; }
.rating-bar-label { font-size: 0.83rem; color: rgba(255,255,255,0.75); width: 44px; flex-shrink: 0; font-family: 'Inter', sans-serif; }
.rating-bar-track { flex: 1; height: 8px; background: rgba(255,255,255,0.15); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--gold); border-radius: 4px; }
.rating-bar-pct { font-size: 0.8rem; color: rgba(255,255,255,0.55); width: 36px; text-align: right; font-family: 'Inter', sans-serif; }

/* ── CONTACT PAGE ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4.5rem;
    align-items: start;
}

.contact-info h2 { font-size: 1.8rem; color: var(--navy); margin-bottom: 2rem; }

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px; height: 44px;
    background: rgba(44,82,130,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail h4 {
    font-size: 0.78rem; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--text-muted);
    margin-bottom: 0.3rem;
    font-family: 'Inter', sans-serif; font-weight: 600;
}

.contact-detail p { color: var(--navy); font-weight: 500; font-size: 0.98rem; }
.contact-detail a { color: var(--navy); font-weight: 500; }
.contact-detail a:hover { color: var(--blue); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.35rem; }
.hours-table td { padding: 0.3rem 0; font-size: 0.95rem; }
.hours-table td:first-child { color: var(--text-muted); width: 90px; }
.hours-table td:last-child { color: var(--navy); font-weight: 500; }
.hours-closed { color: var(--text-muted) !important; font-weight: 400 !important; }

.map-embed { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); margin-top: 2rem; }

/* ── CONTACT FORM ── */
.contact-form-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2.75rem;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--gold);
}

.contact-form-card h2 { font-size: 1.8rem; color: var(--navy); margin-bottom: 0.5rem; }
.contact-form-card > p { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.98rem; }

.form-group { margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

label {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.45rem;
    letter-spacing: 0.02em;
    font-family: 'Inter', sans-serif;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(44,82,130,0.12);
}

textarea { resize: vertical; min-height: 140px; }

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-submit {
    width: 100%; padding: 1rem;
    background: var(--navy); color: var(--white);
    border: none; border-radius: 5px;
    font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.form-submit:hover { background: var(--navy-dark); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; }

.form-note { text-align: center; margin-top: 1rem; font-size: 0.82rem; color: var(--text-muted); }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.78); padding: 64px 0 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1.25rem; }

.footer-about p { font-size: 0.9rem; color: rgba(255,255,255,0.62); line-height: 1.8; margin-bottom: 0.75rem; }

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a { color: rgba(255,255,255,0.62); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
    display: flex; align-items: flex-start; gap: 0.65rem;
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.62);
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-contact-item a { color: rgba(255,255,255,0.62); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
    padding: 1.35rem 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.38);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr 1fr; }
    .services-list { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 72px; left: 0; right: 0;
        background: var(--navy-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem 2rem;
        gap: 0;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block; padding: 0.9rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
        border-right: none !important;
    }
    .nav-links li:last-child a { border-bottom: none !important; }
    .nav-cta { border-radius: 0 !important; }
    .nav-toggle { display: flex; }

    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-img::before { display: none; }
    .about-img img { height: 320px; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }

    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-page-grid { grid-template-columns: 1fr; }

    .rating-summary { flex-direction: column; gap: 2rem; padding: 2rem; }
    .rating-bars { width: 100%; }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    section { padding: 64px 0; }
}

@media (max-width: 480px) {
    .about-stats { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .container { padding: 0 1.25rem; }
    .contact-form-card { padding: 1.75rem; }
    .hero h1 { font-size: 1.9rem; }
}
