@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* "Illuminated Opulence" Palette */
    --ivory:        #f9f5ef;
    --ivory-warm:   #f1e9dc;
    --ivory-deep:   #e8dac8;
    --emerald:      #1a4a3a;
    --emerald-mid:  #2d6b55;
    --emerald-light:#4a9478;
    --emerald-pale: #e8f2ee;
    --gold:         #b8913a;
    --gold-light:   #d4a853;
    --gold-pale:    rgba(184, 145, 58, 0.15);
    --mahogany:     #3d1f1f;
    --mahogany-mid: #5c3030;
    --cream-text:   #4a3f35;
    --cream-soft:   #7a6e63;

    /* Fonts */
    --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
    --font-body:    'Inter', sans-serif;

    /* Spacing */
    --section-padding: 140px 20px;
    --container-width: 1260px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--ivory);
    color: var(--cream-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
}

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

/* =====================
   TYPOGRAPHY
   ===================== */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--emerald);
}

h1 { font-size: clamp(3.5rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.4rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.heading-gold { color: var(--gold); }
.text-center  { text-align: center; }
.text-italic  { font-style: italic; }
.text-soft    { color: var(--cream-soft); }

.label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

/* =====================
   LAYOUT
   ===================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
}

section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

/* =====================
   NAVIGATION
   ===================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 28px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
}

nav.scrolled {
    background: rgba(249, 245, 239, 0.95);
    backdrop-filter: blur(12px);
    padding: 18px 60px;
    box-shadow: 0 1px 0 rgba(184, 145, 58, 0.2);
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--ivory);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s ease;
}

nav.scrolled .nav-links a {
    color: var(--cream-soft);
}

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

.nav-cta {
    padding: 10px 28px;
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff !important;
    transition: all 0.3s ease !important;
}

nav.scrolled .nav-cta {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: #fff !important;
}

/* =====================
   HERO SECTION
   ===================== */

.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--emerald);
    padding: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.8;
    filter: brightness(0.7) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 74, 58, 0.4) 0%,
        rgba(26, 74, 58, 0.55) 50%,
        rgba(26, 74, 58, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content .label {
    color: var(--gold-light);
    margin-bottom: 24px;
    display: block;
}

.hero-content h1 {
    color: #fff;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 28px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-content h1 span {
    font-style: normal;
    font-weight: 600;
    color: var(--gold-light);
}

.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    max-width: 540px;
    margin-bottom: 48px;
    text-align: center;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* =====================
   BUTTONS
   ===================== */

.btn {
    display: inline-block;
    padding: 16px 42px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.btn-primary {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(184, 145, 58, 0.35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.btn-emerald {
    background: var(--emerald);
    color: #fff;
    border-color: var(--emerald);
}

.btn-emerald:hover {
    background: var(--emerald-mid);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26, 74, 58, 0.3);
}

/* =====================
   DIVIDER
   ===================== */

.divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 24px 0;
}

.divider-center {
    margin: 24px auto;
}

/* =====================
   PHILOSOPHY SECTION
   ===================== */

.philosophy {
    background: var(--ivory);
    padding: var(--section-padding);
}

.philosophy-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
}

.philosophy-content .label {
    display: block;
    margin-bottom: 24px;
}

.philosophy-content h2 {
    margin-bottom: 8px;
}

.philosophy-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--cream-soft);
    line-height: 1.6;
    margin: 32px 0;
    padding-left: 24px;
    border-left: 2px solid var(--gold);
}

.philosophy-image-wrap {
    position: relative;
}

.philosophy-image {
    width: 100%;
    height: 680px;
    object-fit: cover;
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
    display: block;
}

.philosophy-image-wrap::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--gold-light);
    pointer-events: none;
    z-index: -1;
}

/* =====================
   MENU SECTION
   ===================== */

.menu {
    background: var(--ivory-warm);
}

.menu-header {
    text-align: center;
    margin-bottom: 80px;
}

.menu-header .label { margin-bottom: 16px; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    background: var(--ivory-deep);
}

.menu-item {
    background: var(--ivory-warm);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    transition: all 0.4s ease;
}

.menu-item:hover {
    background: #fff;
}

.menu-item:hover .menu-item-img {
    filter: brightness(1.05) saturate(1.15);
}

.menu-item-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    filter: brightness(1.0) contrast(1.05) saturate(1.1);
    transition: filter 0.4s ease;
}

.menu-item-content {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--emerald);
}

.menu-item-content p {
    font-size: 0.9rem;
    color: var(--cream-soft);
    line-height: 1.7;
}

.menu-item-price {
    display: inline-block;
    margin-top: 14px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
    font-style: italic;
}

/* =====================
   MIDNIGHT HOUR
   ===================== */

.midnight-hour {
    background: var(--emerald);
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.midnight-hour::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('exterior-night.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.5) brightness(0.6);
}

.midnight-hour::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.midnight-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 60px;
}

.midnight-content .label {
    color: var(--gold-light);
    margin-bottom: 24px;
    display: block;
}

.midnight-content h2 {
    color: #fff;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 28px;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
}

.midnight-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 48px;
}

/* =====================
   TESTIMONIALS
   ===================== */

.testimonials {
    background: var(--ivory);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--ivory-deep);
}

.testimonial-card {
    background: var(--ivory);
    padding: 56px 48px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--gold-pale);
    position: absolute;
    top: 24px;
    left: 40px;
    line-height: 1;
    color: var(--gold-light);
    opacity: 0.3;
}

.testimonial-card p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--cream-soft);
    line-height: 1.7;
}

.testimonial-card .reviewer {
    display: block;
    margin-top: 24px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

/* =====================
   FOOTER
   ===================== */

footer {
    background: var(--emerald);
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    border-top: 2px solid var(--gold);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: 0.06em;
}

.footer-brand .label {
    color: var(--gold-light);
    margin-bottom: 8px;
}

.footer-right {
    text-align: right;
}

.footer-right p {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

/* =====================
   ANIMATIONS
   ===================== */

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

.animate-fade-in {
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 1024px) {
    .philosophy-inner { grid-template-columns: 1fr; gap: 60px; }
    .menu-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    nav { padding: 24px 30px; }
    nav.scrolled { padding: 16px 30px; }
    .hero-content { padding: 0 30px 80px; }
    footer { grid-template-columns: 1fr; }
    .footer-right { text-align: left; }
    .container { padding: 0 30px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-item { grid-template-columns: 1fr; }
    .menu-item-img { width: 100%; height: 220px; }
}
