/* ========================================
   DOUGIE TEACHING - Dark Rock Redesign
   "Backstage Pass" Aesthetic
   ======================================== */

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

:root {
    --color-bg: #0a0a0a;
    --color-bg-elevated: #111111;
    --color-bg-card: #161616;
    --color-surface: #1a1a1a;
    --color-border: rgba(245, 158, 11, 0.12);
    --color-border-subtle: rgba(255, 255, 255, 0.06);

    --color-text: #e8e0d4;
    --color-text-muted: #8a8078;
    --color-text-dim: #5a5550;

    --color-amber: #f59e0b;
    --color-amber-dark: #d97706;
    --color-amber-glow: rgba(245, 158, 11, 0.4);
    --color-red: #dc2626;
    --color-red-hover: #b91c1c;

    --font-display: 'Bebas Neue', Impact, sans-serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Caveat', cursive;

    --container-max: 1200px;
    --section-padding: 120px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-color: var(--color-amber-dark) var(--color-bg);
}

html::-webkit-scrollbar {
    width: 8px;
}
html::-webkit-scrollbar-track {
    background: var(--color-bg);
}
html::-webkit-scrollbar-thumb {
    background: var(--color-amber-dark);
    border-radius: 4px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background: var(--color-amber);
    color: var(--color-bg);
}

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

a {
    color: var(--color-amber);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-text);
}

/* --- Noise Overlay --- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-amber-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    mix-blend-mode: soft-light;
}

.cursor-glow.active {
    opacity: 1;
}

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 0.95;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(4rem, 12vw, 9rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 400; margin-bottom: 28px; }
h3 { font-size: 1.75rem; font-weight: 400; }
h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-amber);
    margin-bottom: 20px;
}

p {
    margin-bottom: 18px;
    color: var(--color-text-muted);
    font-weight: 300;
    font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--color-amber);
    color: var(--color-bg);
    border-color: var(--color-amber);
}

.btn-primary:hover {
    background: var(--color-text);
    border-color: var(--color-text);
    color: var(--color-bg);
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 0 30px var(--color-amber-glow), 0 0 60px rgba(245, 158, 11, 0.15);
}

.btn-glow:hover {
    box-shadow: 0 0 40px var(--color-amber-glow), 0 0 80px rgba(245, 158, 11, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border-color: rgba(232, 224, 212, 0.25);
}

.btn-ghost:hover {
    border-color: var(--color-amber);
    color: var(--color-amber);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 18px 48px;
    font-size: 0.9rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 0.08em;
    transition: color var(--transition);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--color-amber);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--color-text);
}

.nav-cta {
    background: var(--color-amber);
    color: var(--color-bg) !important;
    border-radius: 2px;
    padding: 10px 24px;
    margin-left: 8px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--color-text);
    color: var(--color-bg) !important;
}

/* --- Nav Dropdown --- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown > .nav-link .dropdown-arrow {
    width: 10px;
    height: 10px;
    transition: transform var(--transition);
}

.nav-dropdown:hover > .nav-link .dropdown-arrow,
.nav-dropdown.open > .nav-link .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 8px 0;
    min-width: 260px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1001;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    scrollbar-width: thin;
    scrollbar-color: var(--color-amber-dark) var(--color-bg-elevated);
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--color-amber-dark);
    border-radius: 3px;
}

.nav-dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--color-amber);
    background: rgba(245, 158, 11, 0.06);
    padding-left: 24px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition);
    border-radius: 1px;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% 30%;
    filter: grayscale(30%) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.75) 0%,
        rgba(10, 10, 10, 0.5) 40%,
        rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 1;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(10, 10, 10, 0.7) 100%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    background-size: 256px;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-text);
    padding: 140px 24px 100px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--color-amber);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.3s;
}

.hero-tag svg {
    opacity: 0.7;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-accent {
    color: var(--color-amber);
    text-shadow: 0 0 80px var(--color-amber-glow);
}

/* Clip-up animation */
[data-animate="clip-up"] {
    clip-path: inset(100% 0 0 0);
    animation: clipUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

[data-animate="clip-up"][style*="animation-delay"] {
    animation: clipUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes clipUp {
    to { clip-path: inset(0 0 0 0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    color: var(--color-text-muted);
    margin-bottom: 44px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.9s;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 1.1s;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(245, 158, 11, 0.15);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-amber);
    animation: scrollPulse 2.5s infinite;
}

@keyframes scrollPulse {
    0% { top: -100%; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.hero-strings {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

/* --- String Dividers --- */
.string-divider {
    width: 100%;
    line-height: 0;
}

.string-divider svg {
    width: 100%;
    display: block;
}

/* --- Sections --- */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* --- Section Tags (Backstage Pass Style) --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.tag-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-amber);
    letter-spacing: 0.05em;
    line-height: 1;
}

.tag-line {
    width: 40px;
    height: 1px;
    background: var(--color-amber);
    opacity: 0.4;
}

.tag-label {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

.section-tag-light .tag-label {
    color: rgba(232, 224, 212, 0.6);
}

/* --- Split Content --- */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-reverse {
    direction: rtl;
}

.split-reverse > * {
    direction: ltr;
}

.split-text h2 {
    margin-bottom: 28px;
}

.split-text p {
    margin-bottom: 20px;
}

.split-text .btn {
    margin-top: 16px;
}

/* --- Image Frames --- */
.image-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    filter: grayscale(20%) contrast(1.05);
}

.image-frame:hover img {
    transform: scale(1.04);
    filter: grayscale(0%) contrast(1.1);
}

.image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity var(--transition);
}

.image-frame:hover .image-glow {
    opacity: 0;
}

/* Ambient shadow on images */
.split-image {
    position: relative;
}

.split-image::before {
    content: '';
    position: absolute;
    inset: 20px;
    background: var(--color-amber);
    opacity: 0.06;
    filter: blur(40px);
    z-index: -1;
    border-radius: 50%;
    transition: opacity var(--transition-slow);
}

.split-image:hover::before {
    opacity: 0.12;
}

/* --- Promise Section --- */
.section-promise {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0;
}

.promise-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(220, 38, 38, 0.04) 0%, transparent 50%),
        var(--color-bg-elevated);
}

.promise-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    color: var(--color-amber);
    opacity: 0.2;
    margin-bottom: 24px;
    display: block;
}

.promise-content blockquote {
    border: none;
    padding: 0;
}

.promise-content blockquote p {
    font-family: var(--font-accent);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text);
}

/* --- CTA Section --- */
.section-cta {
    text-align: center;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.cta-eyebrow {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--color-amber);
    display: block;
    margin-bottom: 8px;
    opacity: 0.8;
}

.cta-content h2 {
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.cta-content p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
    background: var(--color-bg-elevated);
    color: var(--color-text-muted);
    padding: 0 0 40px;
    position: relative;
}

.footer .string-divider {
    margin-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-tagline {
    font-family: var(--font-accent);
    color: var(--color-text-dim);
    margin-top: 14px;
    font-size: 1.1rem;
}

.footer h4 {
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-text-dim);
}

.footer ul a {
    color: var(--color-text-dim);
    transition: color var(--transition);
}

.footer ul a:hover {
    color: var(--color-amber);
}

.footer-bottom {
    border-top: 1px solid var(--color-border-subtle);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    padding: 24px 0;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-text h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-text);
    text-transform: none;
    letter-spacing: 0;
}

.cookie-text p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--color-text-muted);
}

.cookie-text a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

[data-animate="fade-right"] {
    transform: translateX(-50px);
}

[data-animate="fade-right"].animate-in {
    transform: translateX(0);
}

[data-animate="fade-left"] {
    transform: translateX(50px);
}

[data-animate="fade-left"].animate-in {
    transform: translateX(0);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-up"].animate-in {
    transform: translateY(0);
}

/* --- Legal Pages --- */
.legal-page {
    padding-top: 140px;
    padding-bottom: var(--section-padding);
    background: var(--color-bg);
}

.legal-page h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 12px;
}

.legal-page .legal-subtitle {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 48px;
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

/* --- City Info Section --- */
.section-city-info {
    position: relative;
    overflow: hidden;
}

.section-city-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.city-info-content {
    max-width: 800px;
    position: relative;
}

.city-info-content h2 {
    margin-bottom: 28px;
}

.city-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.city-info-content > p:last-of-type {
    margin-bottom: 32px;
}

/* --- City Overview --- */
.section-city-overview-hero {
    padding-top: 160px;
    padding-bottom: 40px;
}

.city-overview-header h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 20px;
}

.city-overview-subtitle {
    max-width: 700px;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.section-city-grid {
    padding-top: 0;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.city-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius);
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all var(--transition);
}

.city-card:hover {
    background: var(--color-bg-elevated);
    border-color: var(--color-amber);
    color: var(--color-amber);
    transform: translateY(-2px);
}

.city-card svg {
    opacity: 0;
    transform: translateX(-4px);
    transition: all var(--transition);
    flex-shrink: 0;
}

.city-card:hover svg {
    opacity: 1;
    transform: translateX(0);
}

.city-card-name {
    font-weight: 500;
}

/* --- Hero City Name Line --- */
.hero-title-city {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
    display: block;
    margin-top: 4px;
}

/* --- Map Section --- */
.section-map {
    padding-top: 0;
    padding-bottom: var(--section-padding);
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border-subtle);
}

.map-wrapper iframe {
    display: block;
}

/* --- Related Cities Section --- */
.section-related-cities {
    padding-top: 0;
}

.related-cities-content {
    max-width: 900px;
}

.related-cities-content h2 {
    margin-bottom: 16px;
}

.related-cities-content > p {
    margin-bottom: 28px;
}

.related-cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-city-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: 2px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    transition: all var(--transition);
}

.related-city-link:hover {
    background: var(--color-bg-elevated);
    border-color: var(--color-amber);
    color: var(--color-amber);
    transform: translateY(-2px);
}

/* --- Secret Sauce Tabs (visible, interactive, crawler-accessible) --- */
.secret-sauce {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 40px 24px 0;
    text-align: center;
}

.secret-sauce input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.secret-sauce label {
    display: inline-block;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-text-dim);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    margin: 0 4px;
}

.secret-sauce label:hover {
    color: var(--color-text);
}

.secret-sauce .ss-panel {
    display: none;
    padding: 32px;
    text-align: left;
    background: transparent;
    border: none;
    animation: ssFadeIn 0.3s ease;
}

@keyframes ssFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.secret-sauce .ss-panel h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--color-text);
    margin-bottom: 16px;
}

.secret-sauce .ss-panel p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.secret-sauce .ss-panel ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.secret-sauce .ss-panel ul li {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    background: var(--color-surface);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--color-border-subtle);
    transition: var(--transition);
}

.secret-sauce .ss-panel ul li:hover {
    border-color: var(--color-border);
    color: var(--color-text);
}

.secret-sauce .ss-panel a {
    color: var(--color-amber);
    text-decoration: none;
    transition: var(--transition);
}

.secret-sauce .ss-panel a:hover {
    color: var(--color-amber-dark);
    text-decoration: underline;
}

/* No highlight for active tab */

/* Panel visibility */
.secret-sauce input:nth-of-type(1):checked ~ .ss-panel-0 { display: block; }
.secret-sauce input:nth-of-type(2):checked ~ .ss-panel-1 { display: block; }
.secret-sauce input:nth-of-type(3):checked ~ .ss-panel-2 { display: block; }
.secret-sauce input:nth-of-type(4):checked ~ .ss-panel-3 { display: block; }

/* Mobile responsive */
@media (max-width: 600px) {
    .secret-sauce label {
        padding: 8px 10px;
        font-size: 0.72rem;
        margin: 0 2px;
    }
    .secret-sauce .ss-panel {
        padding: 20px 8px;
    }
    .secret-sauce .ss-panel h2 {
        font-size: 1.3rem;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .split-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .split-reverse {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    h1 {
        font-size: clamp(3.5rem, 10vw, 6rem);
    }
}

@media (max-width: 768px) {
    .city-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 8px;
    }

    .city-card {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .section-city-overview-hero {
        padding-top: 120px;
    }

    :root {
        --section-padding: 64px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-bg-elevated);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right var(--transition);
        border-left: 1px solid var(--color-border);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--color-text-muted);
        padding: 14px 16px;
        width: 100%;
        font-size: 0.85rem;
    }

    .nav-link:hover {
        color: var(--color-amber);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
    }

    .nav-dropdown > .nav-link {
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        border: none;
        box-shadow: none;
        background: rgba(255,255,255,0.03);
        border-radius: 0;
        max-height: 200px;
        min-width: 100%;
        padding: 4px 0;
        margin-bottom: 4px;
    }

    .nav-dropdown:hover > .dropdown-menu {
        display: none;
    }

    .nav-dropdown.open > .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 8px 24px;
        font-size: 0.8rem;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero-scroll {
        display: none;
    }

    .hero-content {
        padding: 120px 16px 80px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .section-promise,
    .section-cta {
        padding: 100px 0;
    }

    .cursor-glow {
        display: none;
    }

    .promise-content blockquote p {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}
