/* ===================================
   SHOT HAPPENS — Design System
   Deep Navy (#0A1628) + Warm Gold (#C9A84C)
   =================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0A1628;
    --navy-light: #132240;
    --navy-lighter: #1A2D4A;
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-pale: #F5E6B8;
    --cream: #FAF8F4;
    --cream-dark: #F2EDE4;
    --white: #FFFFFF;
    --text-primary: #0A1628;
    --text-secondary: #4A5568;
    --text-light: #718096;
    --text-inverse: #FAF8F4;
    --text-muted: #A0AEC0;
    --line: rgba(10, 22, 40, 0.08);
    --line-strong: rgba(10, 22, 40, 0.15);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* LOADER */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    animation: loaderLine 1.2s var(--ease-in-out) infinite;
}

@keyframes loaderLine {
    0%, 100% { transform: scaleX(0.2); opacity: 0.3; }
    50% { transform: scaleX(1); opacity: 1; }
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: transform 0.4s var(--ease-out);
}

.nav.scrolled {
    box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--navy);
}

.nav-logo-mark {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.nav-logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 12px;
    background: var(--gold);
    border-radius: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--navy);
    border-radius: 100px;
    color: var(--navy);
    transition: all 0.3s var(--ease-out);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--navy);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

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

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

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 72px 2rem 4rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    padding-right: 2rem;
}

.hero-tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 1.75rem;
}

.hero-accent {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border: 1.5px solid var(--navy);
}

.btn-primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* Hero Image Stack */
.hero-right {
    position: relative;
    height: 700px;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: 4px;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img-main {
    width: 340px;
    height: 520px;
    top: 40px;
    right: 0;
    z-index: 2;
    box-shadow: 0 24px 64px rgba(10, 22, 40, 0.25);
}

.hero-img-accent {
    width: 260px;
    height: 200px;
    bottom: 80px;
    left: 0;
    z-index: 3;
    border: 4px solid var(--cream);
    box-shadow: 0 12px 32px rgba(10, 22, 40, 0.15);
}

.hero-img-detail {
    width: 160px;
    height: 160px;
    bottom: 20px;
    right: 40px;
    z-index: 3;
    border: 3px solid var(--gold);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.12);
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    z-index: 2;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* PHILOSOPHY */
.philosophy {
    padding: 8rem 2rem;
    background: var(--cream);
    border-top: 1px solid var(--line);
}

.philosophy-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.philosophy-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4rem;
}

.philosophy-label .line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
}

.philosophy-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.philosophy-col p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.philosophy-stat {
    padding: 2rem 0;
    border-bottom: 1px solid var(--line);
}

.philosophy-stat:first-child {
    border-top: 1px solid var(--line);
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.5;
}

/* MENU */
.menu {
    padding: 8rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--line);
}

.menu-inner {
    max-width: 900px;
    margin: 0 auto;
}

.menu-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.menu-header .line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
}

.menu-tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.menu-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--line-strong);
}

.tab-btn {
    padding: 0.875rem 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    border-bottom: 1.5px solid transparent;
    margin-bottom: -1px;
    transition: all 0.3s var(--ease-out);
}

.tab-btn:hover {
    color: var(--navy);
}

.tab-btn.active {
    color: var(--navy);
    border-bottom-color: var(--gold);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s var(--ease-out);
}

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

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.menu-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line);
    transition: background 0.2s;
}

.menu-item:hover {
    background: var(--cream);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    border-radius: 4px;
}

.menu-item-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.menu-item-desc {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text-light);
}

.menu-note {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 2.5rem;
    font-style: italic;
}

/* SPACE */
.space {
    padding: 8rem 2rem;
    background: var(--cream);
    border-top: 1px solid var(--line);
}

.space-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.space-header {
    margin-bottom: 4rem;
}

.space-header .line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.space-tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.space-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.space-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1rem;
    margin-bottom: 4rem;
}

.space-img {
    overflow: hidden;
    border-radius: 4px;
}

.space-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.space-img:hover img {
    transform: scale(1.03);
}

.space-img--tall {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

.space-img--wide {
    grid-column: 5 / 10;
    grid-row: 1 / 2;
}

.space-img--sq {
    grid-column: 10 / 13;
    grid-row: 1 / 2;
}

.space-img--offset {
    grid-column: 5 / 9;
    grid-row: 2 / 3;
}

.space-text {
    max-width: 640px;
}

.space-text p {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

/* VISIT */
.visit {
    padding: 8rem 2rem;
    background: var(--navy);
    color: var(--text-inverse);
}

.visit-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit-info .line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.visit-tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.visit-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 3rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.visit-detail {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.visit-detail:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.visit-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
}

.visit-detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

.visit-detail-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-inverse);
    line-height: 1.6;
}

.visit-detail-value a {
    color: var(--text-inverse);
    transition: color 0.3s;
}

.visit-detail-value a:hover {
    color: var(--gold);
}

/* Form */
.visit-form-wrap {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 2.5rem;
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.form-sub {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
    transition: all 0.3s;
    -webkit-appearance: none;
}

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

.form-input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A0AEC0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-success {
    display: none;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 4px;
    margin-top: 1rem;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.form-success p {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--gold-pale);
}

/* FOOTER */
.footer {
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3rem 2rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-mark {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.footer-logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 12px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

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

.footer-bottom p {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text-muted);
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* MOBILE NAV OVERLAY */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.nav-overlay-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-overlay-links a {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--navy);
    transition: color 0.3s;
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero::before {
        width: 50%;
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    }
    
    .hero-right {
        height: 560px;
    }
    
    .hero-img-main {
        width: 280px;
        height: 420px;
    }
    
    .hero-img-accent {
        width: 200px;
        height: 160px;
    }
    
    .hero-img-detail {
        width: 130px;
        height: 130px;
    }

    .space-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .space-img--tall {
        grid-column: 1 / 3;
        grid-row: auto;
        height: 350px;
    }

    .space-img--wide {
        grid-column: 1 / 2;
        grid-row: auto;
        height: 280px;
    }

    .space-img--sq {
        grid-column: 2 / 3;
        grid-row: auto;
        height: 280px;
    }

    .space-img--offset {
        grid-column: 1 / 3;
        grid-row: auto;
        height: 280px;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 1.5rem 6rem;
        min-height: auto;
    }

    .hero::before {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-left {
        padding-right: 0;
    }

    .hero-right {
        height: 400px;
    }

    .hero-img-main {
        width: 220px;
        height: 320px;
        right: 10px;
        top: 20px;
    }

    .hero-img-accent {
        width: 150px;
        height: 120px;
        left: 0;
        bottom: 40px;
    }

    .hero-img-detail {
        width: 100px;
        height: 100px;
        bottom: 10px;
        right: 20px;
    }

    .hero-scroll {
        display: none;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .visit-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .space-gallery {
        grid-template-columns: 1fr;
    }

    .space-img--tall,
    .space-img--wide,
    .space-img--sq,
    .space-img--offset {
        grid-column: 1 / -1;
        height: 260px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.6875rem;
    }

    .visit-form-wrap {
        padding: 1.5rem;
    }
}
