/* ============================================
   CLAIRE'S COFFEE — Custom Styles
   Deep Navy (#1a2744) + Warm Gold (#d4a843)
   ============================================ */

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

:root {
    --navy: #1a2744;
    --navy-light: #243352;
    --navy-dark: #111b30;
    --gold: #d4a843;
    --gold-light: #e8c46d;
    --gold-dark: #b8912e;
    --cream: #faf6ee;
    --cream-dark: #f0e8d8;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(26, 39, 68, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 39, 68, 0.10);
    --shadow-lg: 0 20px 60px rgba(26, 39, 68, 0.14);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.15;
    font-weight: 700;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.938rem;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold);
    color: var(--navy-dark);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.35);
}

.btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.45);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

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

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

/* ============================================
   SECTION TAGS
   ============================================ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.section-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--navy);
    margin-bottom: 24px;
}

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

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

.nav.scrolled {
    background: rgba(26, 39, 68, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
}

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

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

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

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

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

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

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy-dark) !important;
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    font-weight: 600 !important;
}

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

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 8px;
}

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

.mobile-link {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    padding: 12px 24px;
    transition: var(--transition);
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Geometric decorative shapes */
.hero-shape {
    position: absolute;
    pointer-events: none;
}

.hero-shape--circle1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -150px;
}

.hero-shape--circle2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 67, 0.12);
    bottom: 15%;
    left: -80px;
}

.hero-shape--rect1 {
    width: 120px;
    height: 120px;
    background: rgba(212, 168, 67, 0.06);
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    top: 25%;
    left: 42%;
}

.hero-shape--dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    top: 35%;
    right: 28%;
    box-shadow: 0 0 0 6px rgba(212, 168, 67, 0.15), 0 0 0 14px rgba(212, 168, 67, 0.06);
}

.hero-inner {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 0;
    position: relative;
    z-index: 1;
}

/* Hero content (left) */
.hero-content {
    padding-right: 24px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    padding: 8px 16px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212, 168, 67, 0.2);
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.08;
    font-weight: 900;
}

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

.hero-sub {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.hero-stat-label {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero visual (right) */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img--main {
    width: 340px;
    height: 440px;
    top: 20px;
    right: 0;
}

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

.hero-img--float {
    width: 220px;
    height: 220px;
    bottom: 40px;
    left: 0;
    border: 4px solid var(--navy);
}

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

.hero-accent-box {
    position: absolute;
    bottom: 200px;
    right: 40px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.hero-accent-box-line {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--navy);
    opacity: 0.3;
    margin-bottom: 8px;
}

/* Hero bottom bar */
.hero-bar {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-bar-label {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.hero-bar-scroll {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.813rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.hero-bar-scroll:hover {
    color: var(--gold);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img-col {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-img-col--tall {
    width: 260px;
    height: 380px;
    top: 0;
    left: 0;
}

.about-img-col--short {
    width: 240px;
    height: 260px;
    bottom: 0;
    right: 0;
}

.about-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-col:hover img {
    transform: scale(1.04);
}

.about-shape-block {
    position: absolute;
    width: 160px;
    height: 160px;
    background: var(--gold);
    border-radius: var(--radius-lg);
    bottom: 60px;
    left: 100px;
    z-index: -1;
    opacity: 0.15;
}

.about-content {
    max-width: 500px;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(212, 168, 67, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}

.about-feature span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    padding-top: 7px;
}

/* ============================================
   MENU
   ============================================ */
.menu {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.menu-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -200px;
    pointer-events: none;
}

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

.menu-title {
    color: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.menu-card {
    background: var(--navy-light);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 67, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.menu-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    opacity: 0.6;
}

.menu-card--coffee .menu-card-accent { background: var(--gold); }
.menu-card--pastry .menu-card-accent { background: #e8a87c; }
.menu-card--special .menu-card-accent { background: #7cb342; }

.menu-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.menu-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 168, 67, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.menu-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    color: var(--white);
    font-weight: 700;
}

.menu-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-card-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-card-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-name {
    font-weight: 500;
    color: var(--white);
    font-size: 0.938rem;
}

.menu-item-desc {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
    flex-shrink: 0;
    max-width: 180px;
}

.menu-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 120px 0;
    background: var(--cream);
}

.gallery-header {
    text-align: center;
    margin-bottom: 64px;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

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

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

.gallery-item-overlay span {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
}

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

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    height: 240px;
}

.gallery-item--wide {
    grid-column: 1 / 13;
    grid-row: 2 / 3;
    height: 280px;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
    padding: 120px 0;
    background: var(--cream-dark);
}

.visit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 32px 0;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

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

.visit-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.visit-detail-value {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.visit-detail-value a {
    color: var(--navy);
    font-weight: 500;
    transition: var(--transition);
}

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

.btn--large {
    margin-top: 12px;
}

/* Map placeholder */
.visit-map {
    position: relative;
    height: 480px;
    background: var(--navy);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.visit-map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    padding: 24px;
}

.visit-map-placeholder:hover .map-pin-icon {
    transform: scale(1.1);
    color: var(--gold-light);
}

.map-pin-icon {
    color: var(--gold);
    transition: var(--transition);
}

.visit-map-placeholder p {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
}

.map-hint {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
}

.map-deco-line {
    position: absolute;
    background: rgba(212, 168, 67, 0.08);
}

.map-deco-line--1 {
    width: 200px;
    height: 1px;
    bottom: 80px;
    left: -40px;
    transform: rotate(-15deg);
}

.map-deco-line--2 {
    width: 1px;
    height: 160px;
    right: 60px;
    top: 40px;
}

.map-deco-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 8px rgba(212, 168, 67, 0.15), 0 0 0 16px rgba(212, 168, 67, 0.06);
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.contact-bg-block {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(212, 168, 67, 0.05);
    border-radius: var(--radius-xl);
    bottom: -100px;
    left: -100px;
    transform: rotate(12deg);
    pointer-events: none;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-text {
    max-width: 480px;
}

.contact-sub {
    font-size: 1.063rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.contact-info-item:hover {
    color: var(--gold);
}

/* Contact form */
.contact-form-wrapper {
    background: var(--navy-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.form-label {
    display: block;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.938rem;
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.06);
}

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

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

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

.form-success-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 168, 67, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.form-success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--white);
    font-weight: 700;
}

.form-success-text {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 320px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    padding: 64px 0 0;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
}

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

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

.footer-tagline {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 300px;
}

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

.footer-nav a {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

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

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

.footer-contact p {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-loc {
    color: rgba(255, 255, 255, 0.2) !important;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.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; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 100px;
        gap: 40px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-img--main {
        width: 260px;
        height: 340px;
    }
    
    .hero-img--float {
        width: 170px;
        height: 170px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-images {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .gallery-item--large {
        grid-column: 1 / -1;
        height: 300px;
    }
    
    .gallery-item--wide {
        grid-column: 1 / -1;
        height: 220px;
    }
    
    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        height: 200px;
    }
    
    .visit-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .visit-map {
        height: 360px;
    }
    
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-text {
        max-width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding-bottom: 0;
    }
    
    .hero-inner {
        padding: 100px 24px 60px;
    }
    
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .hero-visual {
        height: 320px;
    }
    
    .hero-img--main {
        width: 200px;
        height: 260px;
        top: 0;
        right: 10px;
    }
    
    .hero-img--float {
        width: 140px;
        height: 140px;
        bottom: 20px;
        left: 0;
    }
    
    .hero-accent-box {
        display: none;
    }
    
    .hero-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-images {
        height: 320px;
    }
    
    .about-img-col--tall {
        width: 200px;
        height: 280px;
    }
    
    .about-img-col--short {
        width: 180px;
        height: 200px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .menu {
        padding: 80px 0;
    }
    
    .gallery {
        padding: 80px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item--large {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 240px;
    }
    
    .gallery-item--wide {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 200px;
    }
    
    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        height: 180px;
    }
    
    .visit {
        padding: 80px 0;
    }
    
    .visit-map {
        height: 280px;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .hero-inner {
        padding: 90px 20px 50px;
    }
    
    .hero-headline {
        font-size: 1.875rem;
    }
    
    .hero-visual {
        height: 260px;
    }
    
    .hero-img--main {
        width: 160px;
        height: 210px;
    }
    
    .hero-img--float {
        width: 120px;
        height: 120px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-images {
        height: 260px;
    }
    
    .about-img-col--tall {
        width: 160px;
        height: 220px;
    }
    
    .about-img-col--short {
        width: 150px;
        height: 160px;
    }
    
    .about-shape-block {
        width: 100px;
        height: 100px;
        left: 80px;
    }
    
    .menu-card {
        padding: 28px 24px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--large,
    .gallery-item--wide {
        grid-column: 1;
    }
    
    .visit-details {
        gap: 20px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
}
