/* ========================================
   CATERING DONE BY CHEF PATRISH
   Classic & Elegant — Emerald + Cream
   ======================================== */

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

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --cream-50: #faf9f6;
    --cream-100: #f5f0e8;
    --cream-200: #e8dfc8;
    --cream-300: #d4c4a7;
    --cream-400: #c4b08a;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #7a7a7a;
    --white: #ffffff;
    --gold: #b8924e;
    --gold-light: #d4af6e;

    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 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-color: var(--cream-50);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--cream-200);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
}

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

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

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease-out-expo);
}

.header.scrolled {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 var(--cream-200);
}

.header.scrolled .logo-text {
    color: var(--emerald-900);
}

.header.scrolled .nav-link {
    color: var(--text-secondary);
}

.header.scrolled .nav-link:hover {
    color: var(--emerald-800);
}

.header.scrolled .nav-cta {
    background: var(--emerald-900);
    color: var(--cream-50);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.logo-icon {
    color: var(--cream-200);
    transition: color 0.3s ease;
}

.header.scrolled .logo-icon {
    color: var(--emerald-800);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--cream-50);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-200);
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

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

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

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

.nav-cta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-200);
    border: 1px solid rgba(212, 196, 167, 0.4);
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--cream-50);
    color: var(--emerald-900);
    border-color: var(--cream-50);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream-200);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(4, 120, 87, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(6, 95, 70, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 1;
}

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

.hero-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-300);
    margin-bottom: 2.5rem;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--cream-300);
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream-50);
    margin-bottom: 2rem;
}

.hero-title .title-line {
    display: block;
}

.hero-title .italic {
    font-style: italic;
    font-weight: 400;
    color: var(--cream-300);
}

.hero-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--cream-300);
    max-width: 440px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--cream-50);
    color: var(--emerald-900);
}

.btn-primary:hover {
    background: var(--cream-200);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--cream-200);
    border: 1px solid rgba(212, 196, 167, 0.4);
}

.btn-ghost:hover {
    border-color: var(--cream-200);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--cream-300), transparent);
    margin-bottom: 2rem;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-number {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--cream-200);
    font-weight: 500;
}

.meta-label {
    font-size: 0.7rem;
    color: var(--cream-400);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.15rem;
}

.meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cream-400);
    flex-shrink: 0;
}

.hero-image-wrapper {
    position: relative;
    height: 700px;
}

.hero-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 85%;
    overflow: hidden;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

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

.hero-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 50%;
    overflow: hidden;
    border: 6px solid var(--emerald-900);
}

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

.hero-frame {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 85%;
    height: 85%;
    border: 1px solid rgba(212, 196, 167, 0.2);
    pointer-events: none;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-400);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- SECTION LABELS ---------- */
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 1.5rem;
}

.section-label .label-line {
    width: 32px;
    height: 1px;
    background: var(--emerald-600);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

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

.section-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 520px;
    font-weight: 300;
}

.section-description-light {
    color: var(--cream-300);
}

/* ---------- ABOUT ---------- */
.about {
    padding: 8rem 0;
    background: var(--cream-50);
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-col {
    position: relative;
    height: 650px;
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

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

.about-image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: 2rem 0;
}

.about-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-signature {
    margin: 2.5rem 0;
    padding-left: 1.5rem;
    border-left: 2px solid var(--cream-300);
}

.signature-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--emerald-800);
    margin-bottom: 0.25rem;
}

.signature-title {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-values {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--cream-200);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.value-icon {
    color: var(--emerald-700);
}

.value-item span {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

/* ---------- SERVICES ---------- */
.services {
    padding: 8rem 0;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 10% 90%, rgba(4, 120, 87, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(6, 95, 70, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.services-header .section-label {
    color: var(--cream-400);
    justify-content: center;
}

.services-header .section-label .label-line {
    background: var(--cream-400);
}

.services-header .section-description {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 196, 167, 0.12);
    padding: 2.5rem 2rem;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cream-300), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
    border-color: rgba(212, 196, 167, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(212, 196, 167, 0.15);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-number {
    color: rgba(212, 196, 167, 0.3);
}

.service-icon {
    color: var(--cream-300);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--cream-200);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--cream-50);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--cream-300);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-400);
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--cream-200);
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ---------- GALLERY ---------- */
.gallery {
    padding: 8rem 0;
    background: var(--cream-100);
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item--large {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item--wide {
    grid-column: span 7;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay span {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--cream-50);
    font-style: italic;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    padding: 8rem 0;
    background: var(--cream-50);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--cream-200);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--cream-300);
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-divider {
    width: 30px;
    height: 1px;
    background: var(--cream-300);
    margin-bottom: 1rem;
}

.testimonial-source {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-700);
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 8rem 0;
    background: var(--cream-100);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon {
    color: var(--emerald-700);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.contact-value {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.contact-value:hover {
    color: var(--emerald-700);
}

.contact-hours {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--cream-200);
}

.hours-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 0.35rem;
}

.hours-value {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--cream-200);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--cream-50);
    border: 1px solid var(--cream-200);
    padding: 0.85rem 1rem;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

.form-input:focus {
    border-color: var(--emerald-600);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-input::placeholder {
    color: var(--cream-400);
}

.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 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%237a7a7a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
}

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

.success-icon {
    color: var(--emerald-600);
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-primary);
}

.success-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--emerald-900);
    padding: 5rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.logo-light .logo-text {
    color: var(--cream-200);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--cream-300);
    font-weight: 300;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-400);
    margin-bottom: 1.25rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    font-size: 0.88rem;
    color: var(--cream-300);
    font-weight: 300;
    transition: color 0.3s ease;
}

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

.footer-address {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--cream-300);
    font-weight: 300;
    font-style: normal;
}

.footer-address a {
    color: var(--cream-300);
    transition: color 0.3s ease;
}

.footer-address a:hover {
    color: var(--cream-50);
}

.footer-hours {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--cream-300);
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 196, 167, 0.15);
    padding: 1.5rem 0;
}

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

.footer-copyright {
    font-size: 0.78rem;
    color: var(--cream-400);
    font-weight: 300;
}

.footer-location {
    font-size: 0.78rem;
    color: var(--cream-400);
    font-weight: 300;
}

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

.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 ---------- */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--emerald-900);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--cream-200);
    font-weight: 400;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--cream-50);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
    }

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

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-meta {
        justify-content: center;
    }

    .hero-image-wrapper {
        height: 500px;
        order: 1;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image-col {
        height: 500px;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item--large,
    .gallery-item--wide {
        grid-column: span 1;
    }

    .gallery-grid .gallery-item {
        height: 300px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }

    .hero-container {
        padding-top: 0;
    }

    .hero-image-wrapper {
        height: 400px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

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

    .gallery-grid .gallery-item {
        height: 250px;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-image-wrapper {
        height: 320px;
    }

    .about-image-col {
        height: 400px;
    }

    .about-values {
        flex-direction: column;
        gap: 1rem;
    }
}
