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

:root {
    --teal-900: #0a3540;
    --teal-800: #0F4C5C;
    --teal-700: #156378;
    --teal-600: #1a7a96;
    --teal-500: #2196a8;
    --slate-900: #1a1f2e;
    --slate-800: #252c3d;
    --slate-700: #333b4e;
    --slate-600: #4a5568;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --cream: #E8E4D9;
    --cream-light: #f4f1ea;
    --cream-dark: #d4cfc2;
    --warm-white: #faf8f4;
    --gold: #b8943e;
    --gold-light: #d4af5e;

    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 3px rgba(10,53,64,0.08);
    --shadow-md: 0 4px 20px rgba(10,53,64,0.10);
    --shadow-lg: 0 8px 40px rgba(10,53,64,0.14);
    --shadow-xl: 0 16px 60px rgba(10,53,64,0.18);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    color: var(--slate-800);
    background: var(--warm-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-700); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-500); }
ul { list-style: none; }

.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--teal-800); color: #fff;
    padding: 8px 16px; border-radius: var(--radius-sm);
    z-index: 200; font-size: 0.875rem;
}
.skip-link:focus { top: 16px; }

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

/* ── Typography ─────────────────────────────────── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-700);
    margin-bottom: 12px;
}
.section-eyebrow-light { color: rgba(255,255,255,0.7); }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: 20px;
}
.section-title-light { color: #fff; }

.section-desc {
    font-size: 1.05rem;
    color: var(--slate-600);
    max-width: 560px;
    line-height: 1.75;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-sm { padding: 9px 20px; font-size: 0.8125rem; }
.btn-lg { padding: 16px 36px; font-size: 0.9375rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
    background: var(--teal-800);
    color: #fff;
    border-color: var(--teal-800);
}
.btn-primary:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border-color: rgba(232,228,217,0.4);
}
.btn-ghost:hover {
    background: rgba(232,228,217,0.1);
    border-color: rgba(232,228,217,0.7);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--teal-700);
    border-color: var(--teal-700);
}
.btn-outline:hover {
    background: var(--teal-800);
    border-color: var(--teal-800);
    color: #fff;
}

/* ── Header ─────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250,248,244,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10,53,64,0.08);
    transition: all var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--slate-900);
}
.logo:hover { color: var(--slate-900); }

.logo-mark {
    width: 42px; height: 42px;
    background: var(--teal-800);
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.logo-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-900);
}
.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-500);
}

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}
.primary-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-700);
    letter-spacing: 0.02em;
    position: relative;
}
.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--teal-700);
    transition: width var(--transition);
}
.primary-nav a:hover { color: var(--teal-800); }
.primary-nav a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px; height: 40px;
    position: relative;
}
.hamburger {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 22px; height: 2px;
    background: var(--slate-800);
    box-shadow: 0 -7px 0 var(--slate-800), 0 7px 0 var(--slate-800);
    transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
    box-shadow: 0 -7px 0 transparent, 0 7px 0 transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 22px; height: 2px;
    background: var(--slate-800);
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 22px; height: 2px;
    background: var(--slate-800);
    transform: rotate(-45deg);
}

/* ── Hero ───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream-light) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(15,76,92,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-700);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-eyebrow::before {
    content: '';
    width: 40px; height: 2px;
    background: var(--teal-700);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.08;
    color: var(--slate-900);
    margin-bottom: 24px;
}
.hero-title em {
    font-style: italic;
    color: var(--teal-800);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hero-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--slate-600);
}
.hero-icon {
    width: 18px; height: 18px;
    color: var(--teal-700);
    flex-shrink: 0;
}

/* Hero Image */
.hero-image-wrap {
    position: relative;
}
.hero-image-accent {
    position: absolute;
    top: -16px; right: -16px;
    width: 100%; height: 100%;
    border: 2px solid var(--teal-800);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.25;
}
.hero-image {
    width: 100%;
    height: 780px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}
.hero-image-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: rgba(250,248,244,0.95);
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.badge-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-500);
}
.badge-value {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--teal-800);
}

.hero-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    color: var(--warm-white);
}
.hero-wave svg { display: block; width: 100%; height: 60px; }

/* ── Section shared ─────────────────────────────── */
.section { padding: 100px 0; }
.section-dark { background: var(--slate-900); }
.section-teal { background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 100%); }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ── About ──────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image-col { position: relative; }
.about-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}
.about-accent-box {
    position: absolute;
    bottom: -32px; right: -32px;
    background: var(--teal-800);
    color: var(--cream);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    max-width: 300px;
    box-shadow: var(--shadow-lg);
}
.accent-quote {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--cream);
}
.accent-attribution {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.about-content-col .lead {
    font-size: 1.125rem;
    color: var(--slate-700);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-content-col > p {
    color: var(--slate-600);
    margin-bottom: 12px;
}

.about-values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9375rem;
    color: var(--slate-700);
    line-height: 1.6;
}
.value-icon {
    width: 22px; height: 22px;
    color: var(--teal-700);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Inventory ──────────────────────────────────── */
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 56px;
}
.inventory-card {
    background: var(--slate-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.inventory-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.inv-img-wrap {
    overflow: hidden;
    height: 220px;
}
.inv-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.inventory-card:hover .inv-img-wrap img {
    transform: scale(1.06);
}
.inv-card-body { padding: 28px 32px 32px; }
.inv-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
}
.inv-card-body p {
    font-size: 0.9375rem;
    color: var(--slate-400);
    line-height: 1.75;
}
.inventory-note {
    margin-top: 40px;
    font-size: 0.9375rem;
    color: var(--slate-400);
}
.inventory-note a { color: var(--gold-light); }

/* ── Services ───────────────────────────────────── */
.services-header-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    gap: 24px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--teal-800);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover {
    border-color: var(--teal-800);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--slate-200);
    line-height: 1;
    margin-bottom: 16px;
    transition: color var(--transition);
}
.service-card:hover .service-num { color: var(--teal-800); opacity: 0.3; }

.service-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--slate-600);
    line-height: 1.75;
}

/* ── Visit ──────────────────────────────────────── */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}
.visit-info { padding: 20px 0; }
.visit-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 440px;
}
.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.visit-detail dt {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.visit-icon { width: 20px; height: 20px; color: var(--cream); }
.visit-detail dd {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}
.visit-detail a { color: rgba(255,255,255,0.85); }
.visit-detail a:hover { color: #fff; }

.visit-map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 380px;
    box-shadow: var(--shadow-lg);
}

/* ── Contact ────────────────────────────────────── */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-text .section-desc { margin-bottom: 24px; }

.contact-form {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate-700);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--slate-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--slate-900);
    background: var(--warm-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-700);
    box-shadow: 0 0 0 3px rgba(15,76,92,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-400); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
    font-size: 0.8125rem;
    color: var(--slate-500);
    margin-top: 16px;
    text-align: center;
}
.form-note a { color: var(--teal-700); font-weight: 600; }

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(15,76,92,0.06);
    border: 1px solid rgba(15,76,92,0.15);
    border-radius: var(--radius-md);
    color: var(--teal-800);
    font-weight: 500;
    font-size: 0.9375rem;
}
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--teal-700); }

/* ── Footer ─────────────────────────────────────── */
.site-footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 64px 0 32px;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.footer-brand .logo-mark {
    width: 52px; height: 52px;
    font-size: 1.625rem;
}
.footer-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
}
.footer-tagline {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin: 0;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.footer-links a {
    font-size: 0.875rem;
    color: var(--slate-400);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }

.footer-contact {
    text-align: center;
    font-size: 0.875rem;
    line-height: 2;
}
.footer-contact a { color: var(--slate-400); }
.footer-contact a:hover { color: var(--cream); }

.footer-divider {
    width: 80px; height: 1px;
    background: var(--slate-700);
}
.footer-copy {
    font-size: 0.8125rem;
    color: var(--slate-600);
    text-align: center;
}

/* ── Back to top ────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 44px; height: 44px;
    background: var(--teal-800);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition);
    z-index: 50;
    box-shadow: var(--shadow-md);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
}
.back-to-top svg { width: 20px; height: 20px; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .hero-image { height: 560px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image-wrap { order: -1; max-width: 500px; margin: 0 auto; }
    .hero-image { height: 440px; }
    .hero-actions { justify-content: flex-start; }
    .hero-wave { display: none; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-accent-box { position: relative; bottom: auto; right: auto; margin-top: 20px; }

    .inventory-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }

    .visit-grid { grid-template-columns: 1fr; }
    .visit-map-wrap { min-height: 280px; }

    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .primary-nav {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(250,248,244,0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(10,53,64,0.08);
        padding: 24px;
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        box-shadow: var(--shadow-md);
    }
    .primary-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .primary-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    .primary-nav a { font-size: 1rem; }

    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-image { height: 360px; }
    .hero-image-accent { display: none; }

    .section { padding: 72px 0; }
    .services-header-wrap { flex-direction: column; align-items: flex-start; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .about-img { height: 400px; }
    .about-accent-box { right: 0; }
}
