/* ====================================
   VARIABLES & RESET
   Silver palette — nav scrolled bg: rgba(196,198,204,0.96)
   Scale: F3 → E8 → D4 → C4C6CC → 8A8C92 → 222226 → 141416
   ==================================== */

:root {
    /* Surfaces */
    --color-bg: #F3F3F3;
    --color-bg-alt: #E8E8E8;
    --color-surface: #D4D4D6;

    /* Text */
    --color-text: #222226;
    --color-text-secondary: #8A8C92;

    /* Accent — brushed silver */
    --color-accent: #C4C6CC;
    --color-accent-dark: #8A8C92;

    /* Divider */
    --color-divider: rgba(34, 34, 38, 0.10);

    /* Footer */
    --color-footer: #141416;
    --color-footer-text: #C4C6CC;

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --container-padding: 2rem;
    --section-padding: 80px;

    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: saturate(0.88) contrast(1.04);
    transition: filter 0.6s ease;
}

img:hover {
    filter: saturate(1) contrast(1);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

ul {
    list-style: none;
}

/* ====================================
   UTILITIES
   ==================================== */

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

.section-label {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: var(--color-text);
}

/* ====================================
   NAVIGATION — Logo centered, links split
   ==================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-smooth);
    padding: 0.875rem 0;
}

.nav.scrolled {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(232, 232, 232, 0.45) 100%
    );
    backdrop-filter: blur(28px) saturate(1.8) brightness(1.05);
    -webkit-backdrop-filter: blur(28px) saturate(1.8) brightness(1.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 0.875rem 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
}

/* Left & right link lists */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu-left  { justify-content: flex-end; }
.nav-menu-right { justify-content: flex-start; }

/* Centered logo — always in middle column */
.nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    grid-column: 2;
}

.nav-logo-img {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 50%;
    filter: none;
    transition: var(--transition-fast);
}

.nav.scrolled .nav-logo-img {
    height: 40px;
    width: 40px;
}

/* Nav links */
.nav-link {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    white-space: nowrap;
    transition: var(--transition-fast);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: width 0.3s ease;
}

.nav.scrolled .nav-link::after {
    background-color: var(--color-text);
}

.nav-link:hover {
    color: #fff;
}

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

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

/* Hamburger — hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background-color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
    display: block;
}

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

/* Mobile drawer */
.nav-drawer {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(
        160deg,
        rgba(248, 248, 248, 0.88) 0%,
        rgba(232, 232, 232, 0.82) 100%
    );
    backdrop-filter: blur(48px) saturate(2) brightness(1.05);
    -webkit-backdrop-filter: blur(48px) saturate(2) brightness(1.05);
    border-left: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    z-index: 999;
}

.nav-drawer.active {
    right: 0;
}

.nav-drawer-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--color-text-secondary);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-drawer-close:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.65);
}

.nav-drawer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.nav-drawer-menu .nav-link {
    color: var(--color-text-secondary);
    font-size: 0.75rem;
}

.nav-drawer-menu .nav-link::after {
    background-color: var(--color-text);
}

.nav-drawer-menu .nav-link:hover {
    color: var(--color-text);
}

/* Nav social icons */
.nav-social-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 0.25rem;
}

.nav.scrolled .nav-social-divider {
    background: rgba(34, 34, 38, 0.2);
}

.nav-social-link {
    color: rgba(255, 255, 255, 0.75);
}

.nav-social-link:hover {
    color: #fff;
}

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

.nav.scrolled .nav-social-link:hover {
    color: var(--color-text);
}

/* Mobile drawer social row */
.nav-drawer-social {
    display: flex;
    gap: 1.25rem;
}

.nav-drawer-social .nav-social-link {
    color: var(--color-text-secondary);
}

.nav-drawer-social .nav-social-link:hover {
    color: var(--color-text);
}

/* ====================================
   HERO SECTION — Symmetric, centered
   ==================================== */

.hero {
    display: block;
    padding: 0;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.06) brightness(0.92);
}

/* Dark overlay for contrast */
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 17, 24, 0.40);
    z-index: 1;
    pointer-events: none;
}

/* Centered text overlay */
/* Overlay matches border frame inset so content centers inside the frame */
.hero-overlay {
    position: absolute;
    top: 70px;      /* matches .hero-border-frame top */
    left: 40px;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
    animation-delay: 0.4s;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 5.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.12em;
    color: #fff;
    margin: 0 0 1.25rem;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Hero Book button — liquid glass */
.hero-book-btn {
    display: inline-block;
    margin-top: 8rem;
    padding: 1rem 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    backdrop-filter: blur(40px) saturate(2.2) brightness(1.1);
    -webkit-backdrop-filter: blur(40px) saturate(2.2) brightness(1.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.20);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-book-btn:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.28) 0%,
        rgba(255, 255, 255, 0.12) 100%
    );
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.06),
        0 12px 40px rgba(0, 0, 0, 0.24);
}

/* Animated border frame — enclosed */
.hero-border-frame {
    position: absolute;
    top: 70px;       /* below nav */
    left: 40px;
    right: 40px;
    bottom: 40px;
    z-index: 5;
    pointer-events: none;
}

/* Each line: full-length side with a flowing highlight */
.hero-frame-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.hero-frame-line::after {
    content: '';
    position: absolute;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.75),
        transparent
    );
}

/* Top — full width */
.hero-frame-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
}

.hero-frame-top::after {
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    animation: flowH 5s ease-in-out infinite;
    animation-delay: 0s;
}

/* Right — full height */
.hero-frame-right {
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
}

.hero-frame-right::after {
    left: 0;
    top: -30%;
    width: 100%;
    height: 30%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.75),
        transparent
    );
    animation: flowV 5s ease-in-out infinite;
    animation-delay: 1.25s;
}

/* Bottom — full width */
.hero-frame-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
}

.hero-frame-bottom::after {
    top: 0;
    left: 70%;
    width: 30%;
    height: 100%;
    animation: flowHReverse 5s ease-in-out infinite;
    animation-delay: 2.5s;
}

/* Left — full height */
.hero-frame-left {
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
}

.hero-frame-left::after {
    left: 0;
    top: 70%;
    width: 100%;
    height: 30%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.75),
        transparent
    );
    animation: flowVReverse 5s ease-in-out infinite;
    animation-delay: 3.75s;
}

@keyframes flowH {
    0%   { left: -30%; }
    100% { left: 130%; }
}

@keyframes flowHReverse {
    0%   { left: 130%; }
    100% { left: -30%; }
}

@keyframes flowV {
    0%   { top: -30%; }
    100% { top: 130%; }
}

@keyframes flowVReverse {
    0%   { top: 130%; }
    100% { top: -30%; }
}


/* ====================================
   SERVICES SECTION — Card grid
   ==================================== */

.services {
    padding: var(--section-padding) 0;
    background-color: var(--color-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    padding: 1rem;
    border-radius: 0;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(240, 240, 240, 0.35) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px) saturate(1.6);
    -webkit-backdrop-filter: blur(16px) saturate(1.6);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 4px 24px rgba(0, 0, 0, 0.06);
    transition: var(--transition-fast);
}

.service-card:hover {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(240, 240, 240, 0.5) 100%
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 8px 32px rgba(0, 0, 0, 0.09);
    transform: translateY(-2px);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 1rem;
    aspect-ratio: 4 / 3;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-category {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.service-description {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* ====================================
   REVIEWS SECTION — 3-card grid
   ==================================== */

.reviews {
    padding: var(--section-padding) 0;
    background-color: var(--color-bg-alt);
}

.reviews-embed {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.reviews-header {
    margin-bottom: 2.5rem;
}

.stars {
    font-size: 1.75rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    letter-spacing: 0.25rem;
}

.rating-text {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-card {
    padding: 2rem 1.5rem;
    border-radius: 0;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.65) 0%,
        rgba(245, 245, 245, 0.4) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }

.review-card:hover {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(245, 245, 245, 0.55) 100%
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.review-stars {
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
    letter-spacing: 0.15rem;
}

.review-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 300;
}

.review-author {
    font-family: var(--font-sans);
    font-size: 11px;
    color: #6A6C72;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.reviews-footer {
    margin-top: 2rem;
}

.reviews-address {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.03em;
}

/* ====================================
   PRICING SECTION — Editorial menu
   ==================================== */

.pricing {
    padding: var(--section-padding) 0;
    background-color: var(--color-bg);
    position: relative;
}

/* Decorative accent line above */
.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--color-accent);
}

/* Hide watermark logo */
.pricing-logo {
    display: none;
}

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

.pricing-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


.pricing-category-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1.25rem;
    color: var(--color-text);
}

.pricing-from {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--color-text-secondary);
}

.pricing-divider {
    height: 1px;
    background-color: rgba(34, 34, 38, 0.18);
    margin-bottom: 1.25rem;
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

/* Dotted leader line */
.pricing-item::after {
    content: '';
    flex: 1;
    border-bottom: 1px dashed var(--color-divider);
    margin: 0 0.5rem;
    min-width: 2rem;
    position: relative;
    top: -4px;
    order: 2;
}

.pricing-service {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text);
    order: 1;
    flex: none;
}

.pricing-price {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text);
    white-space: nowrap;
    order: 3;
}

.pricing-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    font-style: italic;
    font-weight: 300;
}

/* ====================================
   GALLERY — Masonry grid
   ==================================== */

.gallery {
    padding: var(--section-padding) 0;
    background-color: var(--color-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 1rem;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-item:nth-child(6) { animation-delay: 0.35s; }
.gallery-item:nth-child(7) { animation-delay: 0.4s; }
.gallery-item:nth-child(8) { animation-delay: 0.45s; }

.gallery-item-tall { grid-row: span 2; }

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.04);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
    filter: saturate(1) contrast(1);
}

/* ====================================
   CTA SECTION — Subtle
   ==================================== */

.cta {
    padding: var(--section-padding) 0;
    background-color: var(--color-bg);
    text-align: center;
    position: relative;
}

/* Decorative accent line */
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--color-accent);
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-text);
}

/* CTA as text link */
.cta .btn-primary,
.cta .cta-link {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--color-text);
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    font-weight: 400;
    text-transform: none;
    box-shadow: none;
    position: relative;
    display: inline-block;
}

.cta .btn-primary::before {
    display: none;
}

.cta .btn-primary:hover,
.cta .cta-link:hover {
    color: var(--color-text-secondary);
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none;
}

.cta-contact {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.03em;
    font-weight: 300;
}

/* ====================================
   FOOTER — Dark, anchoring
   ==================================== */

.footer {
    padding: 5rem 0 2rem;
    background-color: var(--color-footer);
    color: var(--color-footer-text);
    border-top: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(216, 216, 216, 0.15);
}

.footer-logo {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 0;
    border: none;
    padding: 0;
    background: transparent;
    margin-bottom: 1.25rem;
    filter: invert(0.85);
}

.footer-logo:hover {
    transform: none;
    border: none;
}

.footer-brand p,
.footer-contact p,
.footer-hours p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--color-footer-text);
    font-weight: 300;
}

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

.footer-contact a:hover {
    color: #fff;
}

.footer-hours strong {
    color: var(--color-footer-text);
    font-weight: 400;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-footer-text);
    transition: var(--transition-fast);
}

.social-link:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 0.7rem;
    color: rgba(216, 216, 216, 0.4);
    letter-spacing: 0.05em;
    font-weight: 300;
}

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

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

@keyframes subtleZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* ====================================
   SCROLL REVEAL
   ==================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

@media (max-width: 1024px) {
    :root {
        --section-padding: 60px;
    }

    .hero-title {
        font-size: 4rem;
    }

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

    .pricing-grid {
        gap: 3rem;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
        --container-padding: 1.5rem;
    }

    /* Hide split link lists on mobile */
    .nav-menu-left,
    .nav-menu-right {
        display: none;
    }

    /* Center the logo taking full grid width */
    .nav-container {
        grid-template-columns: 1fr auto 1fr;
    }

    .nav-logo {
        padding: 0;
    }

    /* Show hamburger, positioned at right edge */
    .nav-toggle {
        display: flex;
        position: absolute;
        right: var(--container-padding);
    }

    .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(7px, -7px);
    }

    /* Show drawer */
    .nav-drawer {
        display: flex;
    }

    .hero-banner {
        height: 85vh;
    }

    .hero-overlay {
        top: 90px;      /* matches mobile .hero-border-frame top */
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 0;
        justify-content: center;
        padding-top: 15%;
    }

    .hero-title {
        font-size: 3.25rem;
        letter-spacing: 0.08em;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.18em;
    }

    .hero-book-btn {
        padding: 0.65rem 2rem;
        font-size: 0.65rem;
        letter-spacing: 0.15em;
    }

    .hero-border-frame {
        top: 90px;
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

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

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 0.75rem;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
    }

    .hero-banner {
        height: 80vh;
    }

    .hero-overlay {
        top: 80px;      /* matches 480px .hero-border-frame top */
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 0;
        padding-top: 12%;
    }

    .hero-title {
        font-size: 2.25rem;
        letter-spacing: 0.06em;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }

    .hero-book-btn {
        padding: 0.55rem 1.6rem;
        font-size: 0.6rem;
        letter-spacing: 0.12em;
        margin-top: 6rem;
    }

    .hero-border-frame {
        top: 80px;
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }
}
