/* ========================================
   The Golden Pheasant — Custom Styles
   Color Palette: Terracotta + Sand
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-terracotta: #C4553D;
    --color-terracotta-dark: #A8432F;
    --color-terracotta-light: #D47560;
    --color-sand: #F5E6D3;
    --color-sand-light: #FBF5ED;
    --color-sand-dark: #E8D5C0;
    --color-charcoal: #2A2522;
    --color-warm-gray: #5C534D;
    --color-cream: #FFF9F4;
    --color-white: #FFFFFF;
    --color-accent-gold: #D4A574;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(42, 37, 34, 0.08);
    --shadow-md: 0 8px 30px rgba(42, 37, 34, 0.12);
    --shadow-lg: 0 20px 60px rgba(42, 37, 34, 0.15);
    --shadow-xl: 0 30px 80px rgba(42, 37, 34, 0.18);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

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

ul {
    list-style: none;
}

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

/* --- Typography --- */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: 20px;
}

.section-label--light {
    color: var(--color-sand);
}

.label-line {
    width: 32px;
    height: 2px;
    background: var(--color-terracotta);
    border-radius: 2px;
    flex-shrink: 0;
}

.label-line--light {
    background: var(--color-sand);
}

.label-center {
    justify-content: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-charcoal);
    margin-bottom: 20px;
}

.section-title--light {
    color: var(--color-sand-light);
}

.text-accent {
    color: var(--color-terracotta);
}

.text-accent-light {
    color: var(--color-accent-gold);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-warm-gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(196, 85, 61, 0.35);
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 85, 61, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--color-terracotta);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
}

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

.navbar.scrolled {
    background: rgba(255, 249, 244, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.navbar.scrolled .nav-logo {
    color: var(--color-charcoal);
}

.nav-logo-icon {
    color: var(--color-accent-gold);
}

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

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-gold);
    transition: width var(--transition-fast);
}

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

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

.navbar.scrolled .nav-links a {
    color: var(--color-warm-gray);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--color-charcoal);
}

.nav-cta {
    background: var(--color-terracotta);
    color: var(--color-white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: all var(--transition-fast) !important;
}

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

.nav-cta:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.navbar.scrolled .nav-toggle span {
    background: var(--color-charcoal);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-cream);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--color-charcoal);
    padding: 8px;
}

.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-charcoal);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--color-terracotta);
    background: var(--color-sand-light);
}

.mobile-menu-cta {
    color: var(--color-terracotta);
    margin-top: 16px;
}

.mobile-menu-contact {
    margin-top: 40px;
    padding: 24px;
    background: var(--color-sand);
    border-radius: var(--radius-lg);
}

.mobile-menu-contact p {
    font-size: 0.9375rem;
    color: var(--color-warm-gray);
    margin-bottom: 4px;
}

.mobile-menu-contact a {
    color: var(--color-terracotta);
    font-weight: 600;
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(42, 37, 34, 0.82) 0%,
        rgba(42, 37, 34, 0.65) 50%,
        rgba(196, 85, 61, 0.4) 100%
    );
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circle--1 {
    width: 500px;
    height: 500px;
    background: rgba(196, 85, 61, 0.12);
    top: -100px;
    right: -100px;
    border: 2px solid rgba(196, 85, 61, 0.2);
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
}

.geo-triangle--1 {
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(212, 165, 116, 0.25);
    bottom: 20%;
    right: 10%;
    transform: rotate(15deg);
}

.geo-dots {
    position: absolute;
    bottom: 15%;
    left: 5%;
    display: grid;
    grid-template-columns: repeat(5, 8px);
    gap: 12px;
}

.geo-dots::before {
    content: '';
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.geo-dots span {
    width: 8px;
    height: 8px;
    background: rgba(212, 165, 116, 0.4);
    border-radius: 50%;
}

.geo-line {
    position: absolute;
    top: 30%;
    right: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.5));
}

.geo-line::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-sand);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--color-white);
    margin-bottom: 24px;
    max-width: 800px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

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

.hero-subtitle {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    color: rgba(245, 230, 211, 0.85);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* --- About Section --- */
.about {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

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

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--color-terracotta);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.15;
}

.about-floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--color-white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.floating-card-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-terracotta);
}

.floating-card-text {
    font-size: 0.875rem;
    color: var(--color-warm-gray);
    font-weight: 500;
}

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

.about-text {
    font-size: 1.0625rem;
    color: var(--color-warm-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--color-sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta);
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.feature-item:hover .feature-icon {
    background: var(--color-terracotta);
    color: var(--color-white);
    transform: rotate(-5deg) scale(1.05);
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--color-warm-gray);
    line-height: 1.5;
}

/* --- Section Shapes --- */
.section-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape-circle {
    position: absolute;
    border-radius: 50%;
}

.shape-circle--1 {
    width: 300px;
    height: 300px;
    background: rgba(196, 85, 61, 0.06);
    top: -80px;
    right: -80px;
}

.shape-circle--2 {
    width: 200px;
    height: 200px;
    background: rgba(212, 165, 116, 0.1);
    bottom: -60px;
    left: -60px;
}

.shape-square {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(196, 85, 61, 0.08);
    border-radius: var(--radius-sm);
    top: 40%;
    right: 5%;
    transform: rotate(45deg);
}

.shape-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(212, 165, 116, 0.15);
    top: 20%;
    left: 3%;
    transform: rotate(-20deg);
}

.shape-dots {
    position: absolute;
    top: 10%;
    right: 5%;
    display: grid;
    grid-template-columns: repeat(4, 6px);
    gap: 10px;
}

.shape-dots span {
    width: 6px;
    height: 6px;
    background: var(--color-terracotta);
    border-radius: 50%;
    opacity: 0.15;
}

/* --- Menu Section --- */
.menu {
    position: relative;
    padding: 120px 0;
    background: var(--color-sand-light);
    overflow: hidden;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-warm-gray);
    background: var(--color-white);
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

.menu-tab:hover {
    color: var(--color-terracotta);
    border-color: var(--color-terracotta-light);
}

.menu-tab.active {
    background: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(196, 85, 61, 0.3);
}

.menu-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu-panel.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.menu-card-visual {
    height: 200px;
    overflow: hidden;
}

.menu-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.menu-card:hover .menu-card-visual img {
    transform: scale(1.08);
}

.menu-card-content {
    padding: 24px;
}

.menu-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.menu-card-content p {
    font-size: 0.9375rem;
    color: var(--color-warm-gray);
    line-height: 1.6;
}

.menu-footer {
    margin-top: 48px;
}

.menu-footer p {
    font-size: 0.9375rem;
    color: var(--color-warm-gray);
    font-style: italic;
}

/* --- Vibe Section --- */
.vibe {
    position: relative;
    padding: 120px 0;
    background: var(--color-charcoal);
    overflow: hidden;
}

.vibe-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(196, 85, 61, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.vibe-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.vibe-header .section-label {
    color: var(--color-accent-gold);
}

.vibe-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
    position: relative;
    z-index: 1;
    margin-bottom: 64px;
}

.vibe-gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.vibe-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.vibe-gallery-item:hover img {
    transform: scale(1.08);
}

.vibe-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 37, 34, 0.7), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.vibe-gallery-item:hover .vibe-gallery-overlay {
    opacity: 1;
}

.vibe-gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-white);
    font-style: italic;
}

.vibe-gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.vibe-gallery-item:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
}

.vibe-gallery-item:nth-child(3) {
    grid-column: 1 / 6;
    grid-row: 2 / 3;
}

.vibe-gallery-item--tall {
    grid-column: 6 / 13;
    grid-row: 2 / 3;
}

.vibe-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.vibe-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(245, 230, 211, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vibe-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(245, 230, 211, 0.2);
}

/* --- Visit Section --- */
.visit {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

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

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-sand-dark);
}

.visit-detail:first-child {
    padding-top: 0;
}

.visit-detail:last-child {
    border-bottom: none;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--color-sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta);
    flex-shrink: 0;
}

.visit-detail h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-terracotta);
    margin-bottom: 6px;
}

.visit-detail p {
    font-size: 1rem;
    color: var(--color-charcoal);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--color-terracotta);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.visit-detail a:hover {
    color: var(--color-terracotta-dark);
}

.visit-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 450px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* --- Contact Section --- */
.contact {
    position: relative;
    padding: 120px 0;
    background: var(--color-terracotta);
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

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

.contact-subtitle {
    font-size: 1.125rem;
    color: rgba(245, 230, 211, 0.8);
    line-height: 1.7;
    max-width: 480px;
}

.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--color-sand-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-charcoal);
    background: var(--color-cream);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-terracotta);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(196, 85, 61, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-warm-gray);
    opacity: 0.6;
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    gap: 16px;
}

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

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--color-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta);
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.form-success p {
    font-size: 1rem;
    color: var(--color-warm-gray);
    line-height: 1.6;
}

/* Contact Background Shapes */
.contact-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
}

.contact-shape--1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    top: -100px;
    left: -100px;
}

.contact-shape--2 {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.03);
    bottom: -50px;
    right: 10%;
}

.contact-shape--3 {
    width: 150px;
    height: 150px;
    background: rgba(212, 165, 116, 0.15);
    top: 30%;
    right: -30px;
}

/* --- Footer --- */
.footer {
    background: var(--color-charcoal);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--color-accent-gold);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(245, 230, 211, 0.5);
    line-height: 1.6;
    max-width: 280px;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-gold);
    margin-bottom: 20px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 0.9375rem;
    color: rgba(245, 230, 211, 0.6);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-white);
}

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(245, 230, 211, 0.6);
    line-height: 1.8;
}

.footer-contact a {
    color: var(--color-accent-gold);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 230, 211, 0.4);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 48px; }
    50% { opacity: 0.4; height: 32px; }
}

/* Scroll-triggered animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }
    
    .visit-grid {
        gap: 48px;
    }
    
    .contact-wrapper {
        gap: 48px;
    }
    
    .vibe-gallery {
        grid-template-rows: repeat(2, 240px);
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .vibe-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 220px);
    }
    
    .vibe-gallery-item--large {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
    }
    
    .vibe-gallery-item:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .vibe-gallery-item:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    
    .vibe-gallery-item--tall {
        grid-column: 1 / -1;
        grid-row: 3 / 4;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .visit-map {
        min-height: 350px;
        order: -1;
    }
    
    .map-wrapper {
        min-height: 350px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        padding: 100px 20px 60px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-floating-card {
        left: 10px;
        bottom: 20px;
    }
    
    .menu {
        padding: 80px 0;
    }
    
    .menu-tabs {
        gap: 8px;
    }
    
    .menu-tab {
        padding: 10px 18px;
        font-size: 0.875rem;
    }
    
    .vibe {
        padding: 80px 0;
    }
    
    .vibe-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
    }
    
    .vibe-gallery-item--large,
    .vibe-gallery-item:nth-child(2),
    .vibe-gallery-item:nth-child(3),
    .vibe-gallery-item--tall {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .vibe-stats {
        flex-direction: column;
        gap: 32px;
    }
    
    .vibe-stat-divider {
        width: 48px;
        height: 1px;
    }
    
    .visit {
        padding: 80px 0;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 380px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
}
