/* Sample 1 — Boutique Authority */
:root {
    --navy: #0a1428;
    --navy-2: #122749;
    --gold: #c9a449;
    --gold-2: #e6c66e;
    --ink: #1e293b;
    --paper: #f8f6f0;
    --line: #d9d2bf;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    font-size: 16px;
}
.serif { font-family: 'Playfair Display', Georgia, serif; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }
img, svg { display: block; max-width: 100%; }

/* ---------- TOP TICKER ---------- */
.ticker {
    background: #060d1c; color: #cbd5e1; font-size: 12px;
    border-bottom: 1px solid #1f2937;
    overflow: hidden; white-space: nowrap;
}
.ticker-track {
    display: inline-block; padding: 8px 0;
    animation: scroll 35s linear infinite;
}
.ticker-track span {
    margin: 0 32px; opacity: .85;
}
.ticker-track span b { color: var(--gold); margin-right: 6px; }
.ticker-track span .up { color: #34d399; }
.ticker-track span .down { color: #f87171; }
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- NAV ---------- */
.nav {
    background: var(--navy);
    color: #fff;
    border-bottom: 2px solid var(--gold);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 28px;
}
.brand {
    display: flex; align-items: center; gap: 14px;
}
.brand-logo {
    width: 44px; height: 44px;
    border: 1.5px solid var(--gold);
    display: grid; place-items: center;
    border-radius: 50%;
}
.brand-text {
    font-family: 'Playfair Display', serif; font-weight: 700;
    color: #fff; font-size: 22px; letter-spacing: 1px;
}
.brand-text small {
    display: block; font-family: 'Inter', sans-serif;
    font-size: 10px; letter-spacing: 3px; color: var(--gold);
    text-transform: uppercase; margin-top: 2px;
}
.nav ul {
    list-style: none; display: flex; gap: 32px;
}
.nav ul a {
    color: #e5e7eb; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500;
}
.nav ul a:hover { color: var(--gold); }
.nav ul a.active { color: var(--gold); border-bottom: 2px solid var(--gold); padding-bottom: 6px; }
.nav-cta {
    background: transparent; border: 1px solid var(--gold);
    color: var(--gold); padding: 8px 18px; border-radius: 2px;
    font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }
@media (max-width: 900px) {
    .nav-inner { flex-wrap: wrap; gap: 12px; }
    .nav ul { gap: 18px; flex-wrap: wrap; }
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    background: linear-gradient(180deg, var(--navy) 0%, #050a16 100%);
    color: #fff;
    overflow: hidden;
    min-height: 600px;
}
.hero-svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; }
.hero-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 100px 28px 80px;
    text-align: center;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 800; line-height: 1.05;
    margin-bottom: 24px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
    color: #cbd5e1; max-width: 700px; margin: 0 auto 36px;
    font-size: 18px;
}
.btn {
    display: inline-block; padding: 14px 32px;
    background: var(--gold); color: var(--navy);
    font-weight: 700; font-size: 14px; letter-spacing: 1px;
    text-transform: uppercase; border-radius: 2px;
    border: 1px solid var(--gold);
    cursor: pointer;
}
.btn:hover { background: transparent; color: var(--gold); }
.btn-ghost {
    background: transparent; color: var(--gold); margin-left: 12px;
}
.btn-ghost:hover { background: var(--gold); color: var(--navy); }

/* ---------- SECTIONS ---------- */
.section {
    padding: 100px 28px;
    max-width: 1200px; margin: 0 auto;
}
.section-head { text-align: center; margin-bottom: 60px; }
.eyebrow {
    display: inline-block;
    text-transform: uppercase; letter-spacing: 4px;
    font-size: 11px; color: var(--gold); font-weight: 700;
    margin-bottom: 14px;
    position: relative; padding: 0 30px;
}
.eyebrow::before, .eyebrow::after {
    content: ''; position: absolute; top: 50%;
    width: 20px; height: 1px; background: var(--gold);
}
.eyebrow::before { left: 0; }
.eyebrow::after { right: 0; }
.section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 44px); color: var(--navy);
    font-weight: 800; line-height: 1.15;
}
.section-head p { color: #475569; max-width: 600px; margin: 16px auto 0; }

/* ---------- SERVICES ---------- */
.services {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 900px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .services { grid-template-columns: 1fr; } }
.service {
    background: #fff; padding: 36px 28px; border: 1px solid var(--line);
    text-align: center;
    transition: all .25s;
}
.service:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 20px 50px rgba(10,20,40,.08); }
.service-ico {
    width: 60px; height: 60px; margin: 0 auto 20px;
    border: 1px solid var(--gold); border-radius: 50%;
    display: grid; place-items: center;
    color: var(--gold);
}
.service h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; color: var(--navy); margin-bottom: 12px; font-weight: 700;
}
.service p { font-size: 14px; color: #64748b; }

/* ---------- FIXTURES TABLE ---------- */
.fixtures-wrap { background: var(--navy); color: #e5e7eb; padding: 100px 28px; }
.fixtures-wrap .section-head h2 { color: #fff; }
.fixtures-wrap .section-head p { color: #94a3b8; }
.fixtures-table {
    max-width: 1100px; margin: 0 auto;
    border: 1px solid #1f2937;
    background: #060d1c;
}
.fixtures-table table { width: 100%; border-collapse: collapse; }
.fixtures-table th, .fixtures-table td {
    padding: 16px 20px; text-align: left;
    border-bottom: 1px solid #1f2937;
    font-size: 14px;
}
.fixtures-table th {
    font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold); font-weight: 700;
}
.fixtures-table td.code {
    font-family: 'JetBrains Mono', Consolas, monospace;
    color: var(--gold-2);
}
.fixtures-table tr:last-child td { border-bottom: 0; }
.fixtures-table tr:hover td { background: #0a1428; }

/* ---------- ABOUT STRIP ---------- */
.about-strip {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center;
}
@media (max-width: 900px) { .about-strip { grid-template-columns: 1fr; } }
.about-strip h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px); color: var(--navy); font-weight: 800;
    line-height: 1.15; margin-bottom: 24px;
}
.about-strip p { color: #475569; margin-bottom: 16px; }
.about-strip .pillars {
    margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.about-strip .pillars b { display: block; color: var(--navy); font-family: 'Playfair Display', serif; font-size: 30px; }
.about-strip .pillars small { color: #64748b; text-transform: uppercase; letter-spacing: 1.5px; font-size: 11px; }
.about-strip .photo {
    aspect-ratio: 4/5;
    background: var(--navy);
    overflow: hidden;
    position: relative;
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
    background:
        linear-gradient(rgba(10,20,40,.85), rgba(10,20,40,.92)),
        var(--navy);
    color: #fff; text-align: center;
    padding: 90px 28px;
    position: relative;
    overflow: hidden;
}
.cta-strip h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; font-weight: 800;
}
.cta-strip p { color: #cbd5e1; max-width: 600px; margin: 0 auto 30px; }

/* ---------- FOOTER ---------- */
.footer {
    background: #050a16; color: #94a3b8; padding: 60px 28px 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
.footer h4 { color: #fff; font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; font-size: 13px; }
.footer ul a { color: #94a3b8; }
.footer ul a:hover { color: var(--gold); }
.copy { max-width: 1200px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid #1f2937; text-align: center; font-size: 12px; }

/* ---------- PAGE HEAD ---------- */
.page-head {
    background: var(--navy); color: #fff;
    padding: 80px 28px 60px; text-align: center;
}
.page-head h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 52px); font-weight: 800; }
.page-head p { color: #cbd5e1; margin-top: 12px; }

/* ---------- CONTENT ---------- */
.content { max-width: 900px; margin: 0 auto; padding: 80px 28px; }
.content h2 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 32px; margin: 40px 0 16px; }
.content h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 22px; margin: 24px 0 12px; }
.content p { color: #475569; margin-bottom: 16px; }
.content ul { margin: 12px 0 20px 24px; color: #475569; }
.content ul li { margin-bottom: 8px; }

/* ---------- CONTACT ---------- */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    max-width: 1100px; margin: 0 auto;
    padding: 80px 28px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: #fff; padding: 36px; border: 1px solid var(--line); }
.contact-card h3 { font-family: 'Playfair Display', serif; color: var(--navy); margin-bottom: 16px; font-size: 22px; }
.contact-card .row { padding: 10px 0; border-bottom: 1px solid var(--line); display: flex; gap: 12px; align-items: flex-start; }
.contact-card .row:last-child { border-bottom: 0; }
.contact-card .row b { color: var(--gold); text-transform: uppercase; font-size: 11px; letter-spacing: 1.5px; min-width: 80px; padding-top: 2px; }
.form input, .form select, .form textarea {
    width: 100%; padding: 14px 16px; border: 1px solid var(--line);
    background: #fff; font-family: inherit; font-size: 14px;
    margin-bottom: 14px;
}
.form input:focus, .form select:focus, .form textarea:focus {
    outline: none; border-color: var(--gold);
}
.form textarea { min-height: 120px; resize: vertical; }
