/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0c;
    --bg-light: #111114;
    --bg-card: #16161a;
    --text: #e8e6e3;
    --text-muted: #8a8a8f;
    --accent: #c0c0c8;
    --accent-dim: rgba(192, 192, 200, 0.12);
    --border: rgba(255, 255, 255, 0.06);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --color-1: 0 100% 63%;
    --color-2: 270 100% 63%;
    --color-3: 210 100% 63%;
    --color-4: 195 100% 63%;
    --color-5: 90 100% 63%;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

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

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

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

/* ===========================
   LAYOUT
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 140px 0;
    position: relative;
}

.section-dark {
    background: var(--bg);
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--border);
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

@keyframes rainbow {
    0% { background-position: 0%; }
    100% { background-position: 200%; }
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text);
    transition: all 0.3s;
    position: absolute;
    left: 0;
}

.nav-toggle span:first-child { top: 4px; }
.nav-toggle span:last-child { bottom: 4px; }

.nav-toggle.active span:first-child {
    top: 50%;
    transform: rotate(45deg);
}
.nav-toggle.active span:last-child {
    bottom: 50%;
    transform: rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 300;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

/* ===========================
   SHARED SHADER (Hero + Philosophy)
   =========================== */
.shared-shader-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* JS dynamically sizes to hero + philosophy height */
    height: 200vh;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shared-shader {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 1;
}

/* ===========================
   HERO
   =========================== */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: transparent;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.hero-tag {
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 28px;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background-image: linear-gradient(110deg, #505058, 35%, #fff, 50%, #505058, 75%, #505058);
    background-size: 200% 100%;
    background-position: 200% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shiningText 3s linear infinite;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes shiningText {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: #ffffff;
}

.hero-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.btn {
    --circle-start: #a0d9f8;
    --circle-end: #3a5bbf;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    isolation: isolate;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 16px 36px;
    border: none;
    color: var(--text);
    border-radius: 24px;
    cursor: pointer;
    font-family: var(--sans);
    background: rgba(43, 55, 80, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition: transform 0.3s;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    box-shadow:
        inset 0 0 0 1px rgba(170, 202, 255, 0.2),
        inset 0 0 16px 0 rgba(170, 202, 255, 0.1),
        inset 0 -3px 12px 0 rgba(170, 202, 255, 0.15),
        0 1px 3px 0 rgba(0, 0, 0, 0.50),
        0 4px 12px 0 rgba(0, 0, 0, 0.45);
    mix-blend-mode: multiply;
    transition: transform 0.3s;
}

.btn:active::before {
    transform: scale(0.975);
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(110deg, transparent 20%, rgba(170, 202, 255, 0.12) 40%, rgba(255, 255, 255, 0.08) 50%, rgba(170, 202, 255, 0.12) 60%, transparent 80%);
    background-size: 250% 100%;
    background-position: 200% 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
    color: #fff;
}

.btn:hover::after {
    opacity: 1;
    animation: btnSweep 2s ease-in-out infinite;
}

@keyframes btnSweep {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.btn .hover-circle {
    position: absolute;
    width: 12px;
    height: 12px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(12px);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn .hover-circle.fade-in {
    opacity: 0.75;
}

.btn .hover-circle.fade-out {
    opacity: 0;
    transition: opacity 1.2s;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Award Badge */
.award-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 56px;
    gap: 20px;
}

.award-laurel {
    width: 31px;
    height: 86px;
    opacity: 0.85;
    flex-shrink: 0;
}


.award-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.award-level-badge {
    font-family: var(--sans);
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background-image: linear-gradient(110deg, #505058, 35%, #fff, 50%, #505058, 75%, #505058);
    background-size: 200% 100%;
    background-position: 200% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shiningText 3s linear infinite;
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

.award-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    letter-spacing: 1px;
}

.award-line {
    display: none;
}

.award-subtitle {
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}


.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--text-muted));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 400;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text);
}

.section-title em {
    font-style: italic;
    font-weight: 400;
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.8;
    margin-bottom: 60px;
}

.section-sub em {
    color: var(--text);
    font-style: italic;
}

/* ===========================
   PHILOSOPHY (full-bleed hero)
   =========================== */
.philosophy-hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 40px;
    background: transparent;
}

.philosophy-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: transparent;
}

/* cloudDrift keyframes removed — no longer needed */

/* philosophy-bg-overlay removed — background now matches hero */

/* philosophy-pulse-shader removed — now using shared-shader */

.philosophy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.philosophy-tag {
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 32px;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background-image: linear-gradient(110deg, #505058, 35%, #fff, 50%, #505058, 75%, #505058);
    background-size: 200% 100%;
    background-position: 200% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shiningText 3s linear infinite;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.philosophy-headline {
    font-family: var(--serif);
    font-size: clamp(42px, 6.5vw, 80px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #fff;
}

.philosophy-headline em {
    font-style: italic;
    font-weight: 400;
}

.philosophy-body {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 620px;
    margin: 0 auto 24px;
    line-height: 1.8;
}

.philosophy-body-secondary {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===========================
   LISTENING ROOMS
   =========================== */
.section-rooms {
    background: var(--bg-light);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.room-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.4s ease, border-color 0.4s;
}

.room-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

.room-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.room-image-1 {
    background: url('nOTEP.png') center/cover no-repeat;
}

.room-image-2 {
    background: url('hyatttt.png') center/cover no-repeat;
}

.room-image-3 {
    background: url('blue.png') center/cover no-repeat;
}

.room-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(192, 192, 200, 0.06) 0%, transparent 70%);
}

.room-location-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 4px;
}

.room-info {
    padding: 28px;
}

.room-name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 4px;
}

.room-subtitle {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.room-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.room-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.room-specs span {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid var(--border);
}

/* ===========================
   GALLERY
   =========================== */
.section-gallery {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.gallery-slides {
    position: absolute;
    inset: 0;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2.8s cubic-bezier(0.4, 0, 0.2, 1);
    /* Slow Ken Burns zoom */
    animation: galleryZoom 14s ease-in-out infinite alternate;
}

.gallery-slide.active {
    opacity: 1;
}

@keyframes galleryZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
}


/* ===========================
   EXPERIENCE / PLAYER
   =========================== */
.section-experience {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.experience-shader {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

.section-experience .container {
    position: relative;
    z-index: 1;
}

.section-experience .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.experience-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.player-ring {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-circle {
    position: absolute;
    inset: 0;
    transform: rotate(-90deg);
}

.progress-ring {
    transition: stroke-dashoffset 0.3s;
}

.play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.play-icon, .pause-icon {
    width: 20px;
    height: 20px;
}

.play-icon {
    margin-left: 3px;
}

.player-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
}

.player-detail {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 4px;
}

.player-visualizer {
    width: 100%;
    max-width: 600px;
    height: 80px;
}

#visualizer-canvas {
    width: 100%;
    height: 100%;
}

.experience-tones {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.tone-btn {
    padding: 12px 24px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tone-btn span {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.5;
}

.tone-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text);
}

.tone-btn.active {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

.tone-btn.active span {
    color: var(--accent);
    opacity: 0.7;
}

/* ===========================
   OPERATING SYSTEM — Dashboard
   =========================== */
.section-os {
    background: #000;
}

/* Dashboard wrapper */
.os-dash {
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    background: #0a0a0a;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.04) inset,
        0 30px 60px -20px rgba(0, 0, 0, 0.9),
        0 12px 30px -8px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.02);
    transform: translateZ(0);
}

/* Chrome bar */
.os-chrome {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.os-chrome-title {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.25);
}


/* Single display area */
.os-display {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Steps list */
.os-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.os-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 32px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: background 0.3s;
}

.os-step:last-child {
    border-right: none;
}

.os-step:hover {
    background: rgba(255, 255, 255, 0.02);
}

.os-step-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    margin-top: 6px;
    transition: background 0.4s, box-shadow 0.4s;
}

.os-step.active .os-step-light {
    background: #3b82f6;
    box-shadow: 0 0 8px 2px rgba(59, 130, 246, 0.5);
}

.os-step-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.os-step-title {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
    transition: color 0.3s;
}

.os-step.active .os-step-title {
    color: var(--text);
}

.os-step-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.6;
    transition: color 0.3s;
}

.os-step.active .os-step-desc {
    color: var(--text-muted);
}

/* --- Glowing Stars Visualization --- */
.os-viz {
    margin-top: auto;
}

.os-viz-stars {
    height: 320px;
    padding: 8px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    gap: 1px;
}

.os-viz-gif {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

.gs-cell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gs-dot {
    width: 1px;
    height: 1px;
    border-radius: 50%;
    background: #666;
    position: relative;
    z-index: 2;
    transition: transform 0.1s ease-out, background 0.1s ease-out;
    will-change: transform, background;
}

.gs-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 4px 1px rgba(59, 130, 246, 0.6);
    filter: blur(1px);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.1s ease-out;
    will-change: opacity;
}


/* ===========================
   CONTACT
   =========================== */
.section-contact {
    background: var(--bg);
}

.contact-simple {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
}

.contact-simple .btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-email {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(192, 192, 200, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-info {
    padding-top: 10px;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h4 {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-block p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

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

.footer-logo {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 500;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===========================
   ANIMATIONS / FADE IN
   =========================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .os-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .os-step:nth-child(2) {
        border-right: none;
    }

    .os-step:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .mobile-menu {
        display: flex;
    }

    .section {
        padding: 80px 0;
    }

    .container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .philosophy-hero {
        padding: 80px 20px;
        min-height: auto;
    }

    .philosophy-headline {
        font-size: clamp(32px, 8vw, 52px);
    }

    .philosophy-body br,
    .philosophy-headline br {
        display: none;
    }

    .philosophy-body {
        font-size: 15px;
    }

    .philosophy-body-secondary {
        font-size: 14px;
    }

    .award-wrap {
        margin-top: 36px;
        gap: 16px;
    }

    .award-laurel {
        width: 24px;
        height: 66px;
    }

    .award-title {
        font-size: 18px;
    }

    .section-gallery {
        height: 60vh;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .room-image {
        height: 180px;
    }

    .room-info {
        padding: 20px;
    }

    .room-name {
        font-size: 20px;
    }

    .room-desc {
        font-size: 13px;
    }

    /* OS Dashboard */
    .os-viz-stars {
        height: 200px;
    }

    .os-steps {
        grid-template-columns: 1fr;
    }

    .os-step {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        padding: 20px;
    }

    .os-step:last-child {
        border-bottom: none;
    }

    .os-step-title {
        font-size: 15px;
    }

    .os-step-desc {
        font-size: 12px;
    }

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

    .section-sub br,
    .hero-sub br {
        display: none;
    }

    .section-sub {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .btn {
        padding: 14px 28px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .hero-tag {
        font-size: 9px;
        letter-spacing: 2px;
        padding: 6px 14px;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 56px);
    }

    .hero-sub {
        font-size: 14px;
    }

    .section-title {
        font-size: clamp(32px, 8vw, 52px);
    }

    .os-viz-stars {
        height: 160px;
        grid-template-columns: repeat(18, 1fr);
    }

    .award-wrap {
        gap: 12px;
    }

    .award-laurel {
        width: 20px;
        height: 56px;
    }

    .award-title {
        font-size: 16px;
    }

    .award-subtitle {
        font-size: 7px;
    }

    .award-level-badge {
        font-size: 6px;
        padding: 3px 10px;
    }
}
