/* ── TOKENS ─────────────────────────────── */
:root {
    --navy:        #0C1A38;   /* hero background */
    --blue:        #142D5E;   /* contact band */
    --blue-mid:    #224D96;   /* hover / accent */
    --light-bg:    #E4EBF5;   /* location section */
    --gold:        #C4A24A;
    --gold-light:  #D9BC7A;
    --white:       #FFFFFF;
    --text-dark:   #0F1E38;
    --text-mid:    #253C58;
    --text-muted:  #435E78;

    --ff-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --ff-sans:  'Raleway', 'Segoe UI', Helvetica, Arial, sans-serif;

    --radius: 5px;
    --shadow: 0 16px 48px rgba(22, 37, 72, 0.18);
}

/* ── RESET ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
img { max-width: 100%; display: block; }

body {
    font-family: var(--ff-sans);
    font-weight: 400;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
    background:
        radial-gradient(ellipse at 25% 75%, rgba(196,162,74,.10) 0%, transparent 50%),
        linear-gradient(145deg, var(--navy) 0%, #1A3A72 100%);
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem 4rem;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.logo {
    width: clamp(380px, 55vw, 600px);
    height: auto;
    opacity: .92;
}

.gold-rule {
    width: 72px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: .1rem 0;
}

.hero-name {
    font-family: var(--ff-serif);
    font-size: clamp(1.6rem, 3.8vw, 2.6rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: .025em;
    line-height: 1.15;
}

.hero-title {
    font-family: var(--ff-sans);
    font-size: clamp(.68rem, 1.53vw, .85rem);
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

.dot {
    color: var(--gold);
    margin: 0 .55rem;
}

/* Hero bio */
.hero-bio {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 860px;
    width: 100%;
    text-align: left;
    align-items: start;
}

.hero-bio-photo-wrap {
    width: 220px;
    height: 260px;
    overflow: hidden;
    border-radius: 2px;
    flex-shrink: 0;
}

.hero-bio-photo {
    width: 255px;
    max-width: none;
    display: block;
    margin-left: -10px;
    margin-top: -18px;
}

.hero-bio-lead {
    font-size: 1rem;
    color: rgba(255, 255, 255, .85);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.hero-bio-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.hero-bio-list li {
    font-size: .92rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
    padding-left: 1rem;
    position: relative;
    margin-bottom: .3rem;
}

.hero-bio-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.hero-bio-mat {
    font-size: .88rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.75;
    border-top: 1px solid rgba(196, 162, 74, .25);
    padding-top: .75rem;
}

/* ═══════════════════════════════════════════
   CONTACT BAND
═══════════════════════════════════════════ */
.contact-band {
    background: var(--blue);
    padding: 2.8rem 0;
    border-top: 1px solid rgba(196,162,74,.2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 820px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 1.8rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(196, 162, 74, .25);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: background .22s, border-color .22s, transform .22s;
}

.contact-card:hover {
    background: rgba(255, 255, 255, .11);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.icon-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--gold);
}
.icon-wrap svg { width: 100%; height: 100%; }

.contact-text {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.contact-label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
}

.contact-value {
    font-size: .98rem;
    font-weight: 500;
    color: var(--white);
    word-break: break-all;
}

/* ═══════════════════════════════════════════
   LOCATION
═══════════════════════════════════════════ */
.location {
    background: var(--light-bg);
    padding: 5.5rem 0;
}

.location-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: stretch;
}

/* Section heading */
.section-title {
    font-family: var(--ff-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .6rem;
    line-height: 1.2;
}

.gold-accent {
    width: 44px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 2rem;
}

/* Address */
address {
    font-style: normal;
    margin-bottom: .6rem;
    border-left: 2px solid rgba(196, 162, 74, .35);
    padding-left: 1.2rem;
}

.address-parking {
    font-size: .97rem;
    color: var(--text-muted);
    padding-left: 1.2rem;
    margin-bottom: 2rem;
}

.address-street {
    font-family: var(--ff-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: .4rem;
    line-height: 1.3;
}

.address-detail {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
}

/* Transport */
.transport-title {
    font-family: var(--ff-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .85rem;
}

.transport-group {
    margin-bottom: 1.1rem;
}

.transport-mode {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: .4rem;
}

.transport-icon { font-size: 1.3rem; vertical-align: middle; margin-right: .1rem; }

.transport-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .28rem;
}

.transport-list li {
    font-size: .97rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding-left: .9rem;
    position: relative;
}

.transport-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.transport-note {
    font-size: .97rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Map */
.map-wrap {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(27, 58, 114, .12);
    min-height: 360px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    border: none;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
    background: var(--navy);
    padding: 2.8rem 0;
    text-align: center;
    border-top: 1px solid rgba(196,162,74,.2);
}

.footer-name {
    font-family: var(--ff-serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .8);
    margin-bottom: .3rem;
    letter-spacing: .02em;
}

.footer-city {
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero { min-height: 50vh; padding: 3rem 1.5rem 2.5rem; }
    .logo { width: clamp(260px, 80vw, 400px); }

    .hero-title { display: flex; flex-direction: column; align-items: center; gap: .25em; }
    .hero-title .dot { display: none; }

    .hero-bio { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero-bio-photo-wrap { width: 75%; height: 420px; margin: 0 auto; }
    .hero-bio-photo { width: 116%; margin-top: -60px; }

    .contact-grid { grid-template-columns: 1fr; max-width: 100%; }

    .location { padding: 3.5rem 0; }
    .location-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .map-wrap { aspect-ratio: 4 / 3.5; }
}

@media (max-width: 480px) {
    .contact-card { padding: 1.2rem 1.2rem; }
    .contact-value { font-size: .88rem; }
}
