:root {
    --ink: #0d1c2a;
    --navy: #0f2740;
    --rust: #F54503;
    --amber: #e8bf57;
    --cream: #f5eee2;
    --stone: #d8cabc;
    --muted: #8fa0b6;
    --line: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    background: linear-gradient(180deg, #0d1c2a 0%, #0f2134 100%);
    color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

section { padding: 5rem 0; }

.container {
    width: min(1200px, 100% - 48px);
    margin: 0 auto;
}

.eyebrow {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--amber);
    margin: 0 0 0.4rem;
}

.top-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--navy);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-text { line-height: 1.1; }

.brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    letter-spacing: 0.12em;
    margin: 0.1rem 0 0;
    color: var(--cream);
}

.brand-sub {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--stone);
    font-size: 0.78rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    color: var(--cream);
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--amber);
    background: rgba(255, 255, 255, 0.1);
}

.nav-links .pill {
    background: var(--rust);
    color: #0b1825;
    box-shadow: 0 6px 24px rgba(212, 95, 52, 0.35);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid var(--line);
    color: var(--cream);
    background: rgba(255, 255, 255, 0.06);
}

.status-pill::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--muted);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.status-pill.open {
    background: rgba(60, 186, 126, 0.15);
    color: var(--cream);
    border-color: rgba(60, 186, 126, 0.35);
}

.status-pill.open::before {
    background: #3cba7e;
    box-shadow: 0 0 0 4px rgba(60, 186, 126, 0.2);
}

.status-pill.closed {
    background: rgba(255, 255, 255, 0.05);
    color: var(--stone);
    border-color: var(--line);
}

.status-pill.closed::before {
    background: #F54503;
    box-shadow: 0 0 0 4px rgba(212, 95, 52, 0.2);
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    padding: 3rem 0 2rem;
}

.hero-copy h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin: 0 0 1rem;
    letter-spacing: 0.02em;
}

.hero-copy .lede {
    color: var(--stone);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.solid {
    background: var(--rust);
    color: #0c1a29;
    box-shadow: 0 12px 30px rgba(212, 95, 52, 0.35);
}

.btn.outline {
    border-color: var(--line);
    background: transparent;
    color: var(--cream);
}

.btn.ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--cream);
}

.btn:hover { transform: translateY(-2px); }

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-tags span {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    padding: 0.45rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--stone);
}

.hero-showcase {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
    align-items: center;
}

.hero-photo {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    aspect-ratio: 4 / 3;
}

.hero-photo img { height: 100%; width: 100%; object-fit: cover; }

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    color: var(--cream);
    font-size: 1.6rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-arrow:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.12); }

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin: 0.2rem 0 0.8rem;
}

.section-header .lede { color: var(--stone); }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.4rem 1.3rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.card h3 { margin: 0 0 0.6rem; font-size: 1.25rem; }

.card p { margin: 0; color: var(--stone); }

.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.story-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin: 0.4rem 0 0.8rem;
}

.story-text p { color: var(--stone); }

.inline-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.story-image img {
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.gallery {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--line);
}

.visit {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.contact-list {
    display: grid;
    gap: 0.4rem;
    margin-top: 0.8rem;
    font-weight: 700;
}

.contact-list span { color: var(--stone); font-weight: 600; }

.map {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 320px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.footer {
    border-top: 1px solid var(--line);
    background: #081019;
    padding: 2.5rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer p { margin: 0.2rem 0; color: var(--stone); }

.footer-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }

@media (max-width: 1024px) {
    .hero-grid, .story-grid, .visit-grid {
        grid-template-columns: 1fr;
    }
    .nav-inner { flex-direction: column; align-items: flex-start; }
    .nav-links { width: 100%; }
}

@media (max-width: 768px) {
    .nav-links { gap: 0.5rem; }
    .hero-copy h1 { font-size: 2.2rem; }
    section { padding: 4rem 0; }
}

@media (max-width: 640px) {
    .container { width: min(1040px, 100% - 32px); }
    .nav-inner { gap: 0.9rem; }
    .nav-links { justify-content: space-between; }
    .brand-name { font-size: 1.7rem; }
    .brand-sub { font-size: 0.72rem; }
    .btn { padding: 0.8rem 1.1rem; }
    .hero-grid { gap: 1.4rem; }
    .hero-photo { border-radius: 16px; }
    .hero-arrow { width: 40px; height: 40px; }
    .service-grid, .trust-grid { gap: 0.8rem; }
}

@media (max-width: 540px) {
    .nav-inner { align-items: flex-start; }
    .nav-links { width: 100%; justify-content: flex-start; gap: 0.4rem; }
    .status-pill { width: 100%; justify-content: center; }
    .hero-copy h1 { font-size: 2rem; }
    .hero-copy .lede { font-size: 0.95rem; }
    .cta-row { flex-direction: column; align-items: stretch; }
    .hero-tags { gap: 0.35rem; }
    .hero-tags span { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
    body { font-size: 15px; }
    .brand-name { font-size: 1.5rem; }
    .brand-sub { letter-spacing: 0.12em; }
    .hero-arrow { width: 36px; height: 36px; font-size: 1.4rem; }
    .hero-photo { border-radius: 14px; }
    .btn { padding: 0.75rem 1rem; }
    .service-grid, .trust-grid { grid-template-columns: 1fr; }
    .visit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
    .container { width: 100%; padding: 0 12px; }
    .nav-links a, .status-pill { font-size: 0.9rem; }
    .hero-copy h1 { font-size: 1.8rem; }
    .btn { font-size: 0.95rem; }
}
