/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 300;
    color: #1a2744;
    background: #fafaf8;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
.section-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c8a45e;
    margin-bottom: 16px;
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2;
    color: #1a2744;
    margin-bottom: 20px;
}

/* ── Nav ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 39, 68, 0.07);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(26, 39, 68, 0.06); }
.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #1a2744;
}
.nav-logo-icon { flex-shrink: 0; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #1a2744;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
    background: #1a2744;
    color: #fafaf8 !important;
    opacity: 1 !important;
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 400;
    transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #2a3f66; transform: translateY(-1px); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 0;
}
.nav-toggle span {
    display: block;
    height: 1.5px;
    background: #1a2744;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding-top: 72px;
}
.hero-left {
    padding: 60px 0 60px 8%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.hero-greeting {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.25rem;
    color: #c8a45e;
}
.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.15;
    color: #1a2744;
    letter-spacing: -0.01em;
}
.hero-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #1a2744;
    opacity: 0.65;
    max-width: 460px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.2s;
}
.btn-primary {
    background: #1a2744;
    color: #fafaf8;
}
.btn-primary:hover { background: #2a3f66; transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: #1a2744;
    border: 1px solid rgba(26, 39, 68, 0.25);
}
.btn-outline:hover { border-color: #1a2744; }
.btn-full { width: 100%; justify-content: center; }
.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 8px;
    border-top: 1px solid rgba(26, 39, 68, 0.08);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: #1a2744;
    opacity: 0.6;
}
.hero-right {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.hero-image-wrap {
    position: absolute;
    inset: 0;
}
.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-accent-line {
    position: absolute;
    bottom: 60px;
    left: -40px;
    width: 80px;
    height: 1px;
    background: #c8a45e;
}

/* ── Services ── */
.services {
    padding: 120px 0;
}
.services .container { text-align: center; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
}
.service-card {
    background: #fafaf8;
    padding: 40px 32px;
    text-align: left;
    transition: background 0.3s;
    border: 1px solid rgba(26, 39, 68, 0.06);
}
.service-card:hover { background: #fff; }
.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 164, 94, 0.35);
    border-radius: 50%;
    margin-bottom: 24px;
    color: #c8a45e;
}
.service-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a2744;
}
.service-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: #1a2744;
    opacity: 0.6;
}

/* ── About ── */
.about {
    padding: 120px 0;
    border-top: 1px solid rgba(26, 39, 68, 0.07);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrap {
    overflow: hidden;
    aspect-ratio: 7/7.5;
}
.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-content p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #1a2744;
    opacity: 0.7;
}
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 32px;
    margin-top: 8px;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 400;
    color: #1a2744;
}

/* ── Why Us ── */
.why-us {
    padding: 120px 0;
    background: #1a2744;
    color: #fafaf8;
}
.why-us .section-title { color: #fafaf8; }
.why-us-content {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px;
}
.why-us-desc {
    font-size: 1rem;
    line-height: 1.85;
    color: #fafaf8;
    opacity: 0.55;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.why-card {
    background: #1a2744;
    padding: 48px 36px;
    text-align: left;
    border: 1px solid rgba(250, 250, 248, 0.06);
    transition: background 0.3s;
}
.why-card:hover { background: #1f2f50; }
.why-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #c8a45e;
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}
.why-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: #fafaf8;
}
.why-card p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #fafaf8;
    opacity: 0.5;
}

/* ── Hours ── */
.hours { padding: 120px 0; }
.hours-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.hours-left { padding-top: 8px; }
.hours-left p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #1a2744;
    opacity: 0.6;
    margin-top: 16px;
}
.hours-right {
    border: 1px solid rgba(26, 39, 68, 0.1);
    padding: 40px 44px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(26, 39, 68, 0.06);
    font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 400; color: #1a2744; }
.hours-time { color: #1a2744; opacity: 0.55; }

/* ── Contact ── */
.contact {
    padding: 120px 0;
    border-top: 1px solid rgba(26, 39, 68, 0.07);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-desc {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #1a2744;
    opacity: 0.6;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-item svg { flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
    display: block;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a2744;
    margin-bottom: 4px;
}
.contact-item span, .contact-item a {
    font-size: 0.92rem;
    color: #1a2744;
    opacity: 0.65;
    line-height: 1.6;
}
.contact-item a:hover { opacity: 1; text-decoration: underline; }
.contact-form-wrap {
    background: #fff;
    border: 1px solid rgba(26, 39, 68, 0.08);
    padding: 44px;
}
.contact-form h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.form-note {
    font-size: 0.85rem;
    color: #1a2744;
    opacity: 0.5;
    margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a2744;
    opacity: 0.6;
    margin-bottom: 8px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(26, 39, 68, 0.15);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    color: #1a2744;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
    border-bottom-color: #c8a45e;
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: #1a2744;
    opacity: 0.3;
}
.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    font-size: 0.9rem;
    color: #1a2744;
}
.form-success.show { display: flex; }

/* ── Footer ── */
.footer {
    background: #1a2744;
    color: #fafaf8;
    padding: 56px 0 36px;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(250, 250, 248, 0.08);
    margin-bottom: 28px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fafaf8;
}
.footer-tagline {
    font-size: 0.85rem;
    color: #fafaf8;
    opacity: 0.4;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: #fafaf8;
    opacity: 0.4;
}
.footer-bottom a { opacity: 0.7; transition: opacity 0.2s; }
.footer-bottom a:hover { opacity: 1; }

/* ── Mobile ── */
@media (max-width: 960px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 250, 248, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(26, 39, 68, 0.07);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        z-index: 99;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-toggle { display: flex; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 100px 24px 60px; order: 2; }
    .hero-right { order: 1; height: 50vh; }
    .hero-accent-line { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-wrap { aspect-ratio: 4/3; }
    .why-grid { grid-template-columns: 1fr; }
    .hours-card { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-wrap { padding: 28px; }
    .footer-top { flex-direction: column; gap: 12px; align-items: flex-start; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hours-right { padding: 28px 24px; }
}
