/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:    #0f1c3f;
    --navy-mid:#1a2d5a;
    --gold:    #c8a45e;
    --gold-lt: #dfc07a;
    --cream:   #f7f4ee;
    --white:   #ffffff;
    --text:    #1a1a1a;
    --text-lt: #555555;
    --serif:   'Playfair Display', Georgia, serif;
    --sans:    'Inter', system-ui, sans-serif;
    --radius:  8px;
    --shadow:  0 4px 24px rgba(15,28,63,0.10);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

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

/* ── Typography ──────────────────────────────────── */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.15; color: var(--navy); }

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.75rem); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}
.btn-gold:hover {
    background: var(--gold-lt);
    box-shadow: 0 8px 24px rgba(200,164,94,0.35);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover {
    background: var(--navy-mid);
    box-shadow: 0 8px 24px rgba(15,28,63,0.3);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-full { width: 100%; }

/* ── Navigation ──────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 28, 63, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,164,94,0.15);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--white);
    letter-spacing: -0.01em;
}
.logo-icon {
    width: 30px;
    height: 30px;
    color: var(--gold);
    flex-shrink: 0;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}
.nav-links a:not(.btn) {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.80);
    transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--gold); }

.nav-toggle {
    display: none;
    margin-left: auto;
    color: var(--white);
    padding: 4px;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background:
        url('https://images.pexels.com/photos/13068357/pexels-photo-13068357.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(15,28,63,0.92) 0%,
        rgba(15,28,63,0.78) 50%,
        rgba(26,45,90,0.85) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: 120px 24px 80px;
}
.hero-tag {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.08;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255,255,255,0.5);
    animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Services ─────────────────────────────────────── */
.services {
    padding: 100px 0;
    background: var(--cream);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(15,28,63,0.14);
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.9375rem;
    color: var(--text-lt);
    line-height: 1.65;
}

/* ── About ────────────────────────────────────────── */
.about {
    padding: 100px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-content .section-tag { text-align: left; }
.about-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 24px;
    text-align: left;
}
.about-content p {
    color: var(--text-lt);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.75;
}
.about-stats {
    display: flex;
    gap: 40px;
    margin: 32px 0 40px;
    flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}
.stat-label {
    font-size: 0.8125rem;
    color: var(--text-lt);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── Gallery ──────────────────────────────────────── */
.gallery {
    padding: 100px 0;
    background: var(--cream);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ── CTA Band ─────────────────────────────────────── */
.cta-band {
    padding: 88px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    text-align: center;
}
.cta-band h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}
.cta-band p {
    color: rgba(255,255,255,0.75);
    font-size: 1.125rem;
    margin-bottom: 36px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
    padding: 100px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info .section-tag { text-align: left; }
.contact-info h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 28px;
    text-align: left;
}
.contact-info address p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text);
}
.contact-phone a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    transition: color 0.2s;
}
.contact-phone a:hover { color: var(--gold); }
.contact-hours {
    margin-top: 20px;
    font-size: 0.9375rem;
    color: var(--text-lt);
    line-height: 1.7;
}

/* ── Form ──────────────────────────────────────────── */
.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--sans);
    font-size: 0.9375rem;
    padding: 12px 16px;
    border: 1.5px solid #d4d0c8;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,164,94,0.2);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius);
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 500;
    font-size: 0.9375rem;
}

/* ── Footer ────────────────────────────────────────── */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.70);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p { margin-top: 12px; font-size: 0.9375rem; line-height: 1.65; }
.footer h4 {
    font-family: var(--sans);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.9375rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 4px; }
.footer-contact a { color: rgba(255,255,255,0.70); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 24px;
    font-size: 0.8125rem;
    text-align: center;
}

/* ── Mobile Nav ────────────────────────────────────── */
@media (max-width: 868px) {
    .nav-toggle { display: flex; align-items: center; }
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(15,28,63,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: transform 0.35s ease;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a:not(.btn) { font-size: 1rem; color: rgba(255,255,255,0.85); }
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrap { order: -1; }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
    .hero-actions { flex-direction: column; align-items: center; }
    .about-stats { gap: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .contact-form-wrap { padding: 28px 20px; }
}
