/* Variables & Branding */
:root {
    --color-navy: #203A5C;
    --color-dark-navy: #182237;
    --color-bronze: #56413D;
    --color-gold: #C5A059;
    --color-off-white: #F8F9FA;
    --color-white: #FFFFFF;
    --color-black: #17171E;
    --color-text: #333333;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-fun: 'Sacramento', cursive;

    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 5rem;

    --border-radius-sm: 12px;
    --border-radius-md: 24px;
    --border-radius-lg: 40px;
    --border-radius-pill: 100px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);

    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Shared service-page intro rule (gold hairline between H2 and paragraph) */
.intro-rule {
    display: block;
    width: 48px;
    height: 1px;
    background-color: var(--color-gold);
    border: 0;
    margin: 1.5rem auto 1.75rem;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-off-white);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(36px, 10vw, 58px);
    line-height: 1.1;
}

h2 {
    font-size: clamp(26px, 7vw, 3rem);
}

h3 {
    font-size: clamp(22px, 5vw, 1.8rem);
}

/* Italic emphasis in headings — gold accent (matches landing pages) */
h1 em,
h2 em,
h3 em {
    font-style: italic;
    color: var(--color-gold);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--border-radius-md);
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-lg) 0;
}

.section-title {
    text-align: center;
    font-size: clamp(26px, 7vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--color-navy);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-gold);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-navy);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(32, 58, 92, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-bronze);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(86, 65, 61, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-navy);
    color: var(--color-navy);
}

.btn-outline:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Hero CTA Row — Book + Call & Text buttons inline on desktop, stacked on mobile */
.hero-cta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-cta-primary-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-cta-secondary {
    display: flex;
    gap: 12px;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid var(--color-navy);
    color: var(--color-navy);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    border-radius: var(--border-radius-pill);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-cta-secondary svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.btn-cta-secondary:hover {
    background: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 58, 92, 0.3);
}

/* Call CTA button with ringing phone icon */
.btn-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--color-navy);
    background: transparent;
    color: var(--color-navy);
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-cta-call:hover {
    background: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 58, 92, 0.3);
}

.btn-cta-call:hover .btn-cta-call-icon {
    background: rgba(255, 255, 255, 0.15);
}

.btn-cta-call:hover .btn-cta-call-icon svg {
    stroke: #fff;
}

.btn-cta-call-icon {
    width: 28px;
    height: 28px;
    background: rgba(32, 58, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: ring 3s ease-in-out 2s infinite;
}

.btn-cta-call-icon svg {
    width: 13px;
    height: 13px;
    stroke: var(--color-navy);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    5%       { transform: rotate(-18deg); }
    10%      { transform: rotate(18deg); }
    15%      { transform: rotate(-14deg); }
    20%      { transform: rotate(14deg); }
    25%      { transform: rotate(0deg); }
}

/* Navigation */
/* Sticky header group (wraps navbar + status banner) */
app-header {
    display: block;
}

#header-group {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1001;
    background-color: var(--color-white);
}

.navbar {
    background-color: var(--color-white);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

/* ── Status banner (open / closed / opening-soon / closing-soon) ── */
.status-banner {
    display: none;
    padding: 10px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.status-banner.open,
.status-banner.closed,
.status-banner.opening-soon,
.status-banner.closing-soon {
    display: block;
}
.status-banner.open {
    background: #e8f5e9;
    color: #2e7d32;
}
.status-banner.closed {
    background: var(--color-navy);
    color: rgba(255,255,255,0.9);
}
.status-banner.opening-soon,
.status-banner.closing-soon {
    background: #fff8e1;
    color: #b45309;
}
.status-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}
.status-banner.open .status-dot { background: #43a047; box-shadow: 0 0 0 3px rgba(67,160,71,0.25); }
.status-banner.closed .status-dot { background: rgba(255,255,255,0.5); }
.status-banner.opening-soon .status-dot,
.status-banner.closing-soon .status-dot { background: #f59e0b; box-shadow: 0 0 0 3px rgba(245,158,11,0.25); }
.status-banner-notice {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    opacity: 0.82;
    margin-top: 3px;
}

/* ── Hours grid (footer / landing location section) ──── */
.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; }
.hours-day { font-size: 13px; color: #888; }
.hours-time { font-size: 13px; font-weight: 700; }

/* Special / holiday hours */
.hours-special-heading { grid-column: 1 / -1; font-size: 12px; font-weight: 700; color: var(--color-navy); margin-top: 8px; border-top: 1px dashed #ddd; padding-top: 8px; }
.hours-special.hours-closed { color: #c62828; }
.hours-special.hours-modified { color: #b45309; }
.hours-special-heading-li { list-style: none; font-size: 0.95rem; margin-top: 0.5rem; padding-top: 0.5rem; border-top: 1px dashed #ddd; }
li.hours-special { font-size: 0.95rem; }
li.hours-closed span:last-child { color: #c62828; font-weight: 700; }
li.hours-modified span:last-child { color: #b45309; font-weight: 700; }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    margin-right: 2rem;
}

.logo-img {
    height: auto;
    width: 250px; /* Fixed width - never shrinks */
    min-width: 250px;
    border-radius: 0;
    /* Tint to Navy Blue #203A5C */
    filter: brightness(0) saturate(100%) invert(18%) sepia(34%) saturate(1479%) hue-rotate(182deg) brightness(92%) contrast(91%);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--color-dark-navy);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-navy);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    font-size: 0.9rem;
}

.language-switcher-nav a {
    opacity: 0.6;
}

.language-switcher-nav a.active,
.language-switcher-nav a:hover {
    opacity: 1;
}

.divider {
    color: var(--color-gold);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--color-navy);
    cursor: pointer;
}

/* Hero Section — cinematic full-bleed image with overlay content */
.hero-split {
    position: relative;
    display: block;
    width: 100%;
    min-height: clamp(540px, 72vh, 740px);
    max-height: none;
    background-color: var(--color-dark-navy);
    overflow: hidden;
    isolation: isolate;
    padding: 0;
    margin: 0;
}

.hero-split::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(135deg,
            rgba(24, 34, 55, 0.82) 0%,
            rgba(24, 34, 55, 0.5) 32%,
            rgba(24, 34, 55, 0.12) 60%,
            rgba(24, 34, 55, 0) 78%),
        linear-gradient(to top,
            rgba(24, 34, 55, 0.78) 0%,
            rgba(24, 34, 55, 0.35) 35%,
            rgba(24, 34, 55, 0.08) 65%,
            rgba(24, 34, 55, 0) 85%);
}

.hero-inner-container {
    display: contents;
}

.hero-image-side {
    position: absolute;
    inset: 0;
    z-index: 0;
    flex: none;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    mask-image: none;
    -webkit-mask-image: none;
    filter: saturate(0.92) brightness(0.98);
    animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.02); }
    to   { transform: scale(1.09); }
}

.hero-text-side {
    position: absolute;
    inset: 0;
    display: flex;
    flex: none;
    align-items: flex-end;
    justify-content: flex-start;
    padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 7vw, 6rem);
    z-index: 3;
    pointer-events: none;
}

.hero-text-side > * {
    pointer-events: auto;
}

.hero-content {
    max-width: 640px;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(24px);
    animation: heroContentIn 0.95s cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s forwards;
}

@keyframes heroContentIn {
    to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4.4vw, 3.6rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.005em;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero-content h1::before {
    content: "";
    display: block;
    width: 44px;
    height: 1.5px;
    background-color: var(--color-gold);
    margin-bottom: 1.6rem;
    transform: scaleX(0);
    transform-origin: left center;
    animation: heroRule 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.35s forwards;
}

@keyframes heroRule {
    to { transform: scaleX(1); }
}

.hero-content h2 {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: clamp(0.98rem, 1.3vw, 1.15rem);
    font-weight: 400;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 560px;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.fun-text {
    font-family: var(--font-fun);
    color: var(--color-gold);
    font-weight: 400;
    font-size: 1.25em;
    text-shadow: 0 0 18px rgba(197, 160, 89, 0.45);
}

/* Hero-specific: gold script needs dark shadow, not bloom, against the image */
.hero-content .fun-text {
    color: #d7b070;
    text-shadow:
        0 2px 20px rgba(0, 0, 0, 0.65),
        0 1px 3px rgba(24, 34, 55, 0.8),
        0 0 38px rgba(24, 34, 55, 0.4);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

/* Primary CTA becomes gold on the dark hero */
.hero-content .btn-primary {
    background-color: var(--color-gold);
    color: var(--color-dark-navy);
    box-shadow: 0 10px 28px rgba(197, 160, 89, 0.32);
    font-weight: 700;
    letter-spacing: 1.5px;
}

.hero-content .btn-primary:hover {
    background-color: #d7b070;
    color: var(--color-dark-navy);
    box-shadow: 0 16px 38px rgba(197, 160, 89, 0.48);
    transform: translateY(-3px);
}

/* Secondary buttons: glass on dark */
.hero-content .btn-cta-call,
.hero-content .btn-cta-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-content .btn-cta-call:hover,
.hero-content .btn-cta-secondary:hover {
    background: var(--color-white);
    color: var(--color-dark-navy);
    border-color: var(--color-white);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.hero-content .btn-cta-call-icon {
    background: rgba(255, 255, 255, 0.15);
}

.hero-content .btn-cta-call-icon svg {
    stroke: var(--color-white);
}

.hero-content .btn-cta-call:hover .btn-cta-call-icon {
    background: rgba(32, 58, 92, 0.1);
}

.hero-content .btn-cta-call:hover .btn-cta-call-icon svg {
    stroke: var(--color-dark-navy);
}

.hero-content .btn-cta-secondary svg {
    stroke: var(--color-white);
}

.hero-content .btn-cta-secondary:hover svg {
    stroke: var(--color-dark-navy);
}

/* Reviews badge gets a crisp light pill against the dark hero */
.hero-content .elfsight-app-3c4ea831-177a-4c75-8cb2-4c43ff488801 {
    display: inline-block;
    margin-bottom: 1rem;
}


/* Intro Section */
.intro {
    background-color: var(--color-dark-navy);
    text-align: center;
    color: var(--color-white);
    padding-top: calc(5rem + 80px);
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    mask-image: linear-gradient(to bottom, transparent 0, black 80px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 80px);
    z-index: 2;
}

/* Editorial close-ornament in place of the old wave: a fading gold hairline
   with a tiny diamond centered on it, set above the hard edge to services */
.intro::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2.4rem;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(197, 160, 89, 0.5) 18%,
        rgba(197, 160, 89, 0.5) 82%,
        transparent 100%);
}

.intro::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(2.4rem - 3.5px);
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: var(--color-dark-navy);
    border: 1px solid var(--color-gold);
}

/* Smaller overlap on narrow viewports so the fade doesn't reach hero CTAs */
@media (max-width: 900px) {
    .intro {
        padding-top: calc(4rem + 40px);
        margin-top: -40px;
        mask-image: linear-gradient(to bottom, transparent 0, black 40px);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 40px);
    }
}

/* Legacy wave divider — retained in markup but hidden for new aesthetic */
.custom-shape-divider-bottom-intro {
    display: none;
}

/* Orphaned wave divider from older template — hide everywhere */
.custom-shape-divider-bottom-1689965555 {
    display: none;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.intro h2 {
    font-size: clamp(26px, 7vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white);
}

.text-white {
    color: var(--color-white) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.intro p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    margin-top: 1.75rem;
    display: block;
}

/* Services Section */

/* Editorial kicker — replaces the large centered "Our Services" h2 */
.section-kicker {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-bronze);
    margin-bottom: 4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-kicker::before,
.section-kicker::after {
    content: "";
    display: block;
    width: 52px;
    height: 1px;
    background-color: rgba(197, 160, 89, 0.55);
    margin: 0;
    border-radius: 0;
    position: static;
    transform: none;
}

.services {
    background-color: var(--color-off-white);
    padding-top: 4rem;
    padding-bottom: 0;
}

/* Instagram feed goes edge-to-edge on tablet/mobile, constrained on desktop.
   (Services grid handles its own full-bleed via 100vw trick on ≤900px.) */
@media (max-width: 900px) {
    .instagram > .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }
}

.services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: rgba(197, 160, 89, 0.32);
}

/* Break out of .container to go edge-to-edge on tablet/mobile only. */
@media (max-width: 900px) {
    .services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        width: 100vw;
        max-width: 100vw;
    }
}

@media (max-width: 560px) {
    .services .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 0;
    background-color: var(--color-dark-navy);
    box-shadow: none;
    isolation: isolate;
    display: block;
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.service-card:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: -3px;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(24, 34, 55, 0.92) 0%,
        rgba(24, 34, 55, 0.55) 38%,
        rgba(24, 34, 55, 0) 68%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.service-card:hover {
    transform: none;
    box-shadow: none;
}

.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    filter: saturate(0.95);
    transition: transform 1.3s cubic-bezier(0.165, 0.84, 0.44, 1),
                filter 0.6s ease;
}

.service-card:hover img {
    transform: scale(1.07);
    filter: saturate(1.05);
}

.service-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 1.75rem 1.75rem;
    text-align: left;
    color: var(--color-white);
    z-index: 2;
}

.service-info h3 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 0.85rem;
    letter-spacing: 0.005em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

.service-info h3 .text-gold {
    color: var(--color-gold);
}

.service-info h3::before {
    content: "";
    display: block;
    width: 28px;
    height: 1.5px;
    background-color: var(--color-gold);
    margin-bottom: 1rem;
    transition: width 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-info h3::before {
    width: 60px;
}

.service-info p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    line-height: 1.55;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(6px);
    margin-bottom: 0;
    transition: max-height 0.55s cubic-bezier(0.165, 0.84, 0.44, 1),
                opacity 0.4s ease,
                transform 0.5s ease,
                margin-bottom 0.5s ease;
}

.service-card:hover .service-info p {
    max-height: 140px;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 1.1rem;
}

.service-info .text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.1rem;
    padding-bottom: 3px;
    color: var(--color-white);
    font-size: 0.72rem;
    letter-spacing: 2.2px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.55);
    transition: border-color 0.4s ease, color 0.4s ease;
}

.service-info .text-link i {
    color: var(--color-gold);
    font-size: 0.78rem;
}

.service-card:hover .service-info .text-link {
    color: var(--color-white);
    border-bottom-color: var(--color-gold);
}

.service-card:hover .service-info .text-link i {
    transform: translateX(5px);
}

@media (hover: none), (max-width: 560px) {
    .service-info p {
        max-height: 160px;
        opacity: 1;
        transform: none;
        margin-bottom: 1rem;
    }
    .service-info h3::before {
        width: 44px;
    }
    .service-card {
        aspect-ratio: 3 / 4;
    }
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--color-navy);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.text-link i {
    transition: transform 0.3s ease;
}

.text-link:hover {
    color: var(--color-bronze);
}

.text-link:hover i {
    transform: translateX(5px);
}

/* Reviews Section */
.reviews {
    background-color: var(--color-off-white);
    padding-bottom: 2rem;
}

.instagram {
    padding-top: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background-color: var(--color-off-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stars {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    line-height: 1.6;
}

.review-author {
    font-weight: 700;
    color: var(--color-navy);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* Fun Headings */
.fun-heading-sm {
    font-family: var(--font-fun);
    font-size: 4rem;
    color: var(--color-navy);
    margin-bottom: 2rem;
}

.text-gold {
    color: var(--color-gold);
}

/* Info & Location Section */
.info {
    background-color: var(--color-off-white);
}

.info-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    background-color: var(--color-white);
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

.info-details h2 {
    font-size: clamp(26px, 7vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.info-details address {
    font-style: normal;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.info-details address p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-details address i {
    color: var(--color-gold);
    font-size: 1.4rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed #eee;
    font-size: 1.1rem;
}

.hours-list span:first-child {
    font-weight: 700;
    color: var(--color-navy);
}

.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    min-height: 450px;
}

.map-container iframe {
    height: 100%;
    min-height: 450px;
}

/* Footer */
.footer {
    background-color: var(--color-dark-navy);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer About/Logo Column */
.footer-about {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.logo-img-footer {
    max-height: 50px;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    border-radius: 0;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--color-gold);
    color: var(--color-dark-navy);
    transform: translateY(-3px);
}

/* Footer Links Columns */
.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

/* Footer Contact Column */
.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact .contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact .contact-item i {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.footer-contact .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact .contact-item a:hover {
    color: var(--color-gold);
}

.footer-contact .contact-item div {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact .contact-item strong {
    color: var(--color-white);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
}

.footer-legal p,
.footer-locations p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-locations p {
    text-align: right;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-locations p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        font-size: 1.1rem;
    }

    .footer-about {
        grid-column: 1;
    }

    .footer-links ul,
    .footer-services ul {
        text-align: left;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 1.5rem;
        max-width: 260px;
        margin: 0 auto;
        padding-left: 1.5rem;
    }

    .footer-contact .contact-info {
        align-items: start;
        gap: 1.5rem;
        max-width: 260px;
        margin: 0 auto;
        padding-left: 1.5rem;
    }

    .footer-contact .contact-item {
        display: grid;
        grid-template-columns: 24px 1fr;
        gap: 1rem;
        text-align: left;
    }

    .footer-contact .contact-item i {
        color: var(--color-gold);
        font-size: 1.1rem;
        margin: 0;
        padding: 0.3rem 0 0 0;
        text-align: left;
        display: block;
        align-self: start;
    }

    .footer-contact .contact-item div {
        text-align: left;
    }

    .social-links {
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 2rem;
    }

    .nav-menu {
        display: none;
        /* Hide by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        z-index: 1001;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .info-container {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

@media (max-width: 900px) {
    .hero-split {
        min-height: clamp(580px, 84vh, 780px);
        text-align: center;
        padding: 0;
        margin-bottom: 0;
        overflow: hidden;
    }

    .hero-inner-container {
        background: transparent;
        padding: 0;
    }

    .hero-image-side {
        display: block;
    }

    .hero-split::after {
        background:
            linear-gradient(to top,
                rgba(24, 34, 55, 0.92) 0%,
                rgba(24, 34, 55, 0.6) 35%,
                rgba(24, 34, 55, 0.2) 70%,
                rgba(24, 34, 55, 0.35) 100%);
    }

    .hero-text-side {
        padding: clamp(2rem, 7vw, 3rem) clamp(1.25rem, 6vw, 2rem);
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
    }

    .hero-content h1::before {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8.5vw, 2.8rem);
        margin-bottom: 1.1rem;
    }

    .hero-content h2 {
        font-size: 1rem;
        margin-bottom: 1.4rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 1.4rem;
    }

    .hero-content .btn-large {
        margin-top: 0.5rem;
        margin-bottom: 0;
    }

    .hero-cta-row,
    .hero-cta-primary-row,
    .hero-cta-secondary {
        justify-content: center;
    }

    .hero-content .elfsight-app-3c4ea831-177a-4c75-8cb2-4c43ff488801 {
        margin-bottom: 0.85rem;
        max-height: none;
        overflow: visible;
    }

    .hero-content br {
        display: none;
    }

    .fun-heading {
        font-size: 3rem;
    }
}


/* Add these styles to your existing styles.css file */

/* Note: Logo styles are defined earlier in the file to maintain fixed width */

/* Dropdown Menu Styles */
.nav-item {
    position: relative;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.has-dropdown > a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.has-dropdown > a i.rotated {
    transform: rotate(180deg);
}

/* Submenu Styles */
.has-submenu {
    position: relative;
}

.has-submenu > a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.8rem 1.5rem;
    padding-right: 2.5rem !important;
    position: relative;
}

.submenu-arrow {
    font-size: 0.7rem;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.submenu-arrow.rotated {
    transform: translateY(-50%) rotate(90deg);
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background-color: var(--color-white);
    min-width: 200px;
    padding: 0.5rem 0;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
    margin-left: 0.5rem;
}

.submenu.show {
    opacity: 1;
    visibility: visible;
}

.submenu li {
    width: 100%;
}

.submenu a {
    display: block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    color: var(--color-dark-navy);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.submenu a::after {
    display: none;
}

.submenu a:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-white);
    min-width: 220px;
    padding: 0.5rem 0;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(10px);
    z-index: 1000;
    margin-top: 1rem;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    color: var(--color-dark-navy);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    position: relative;
    box-sizing: border-box;
}

.dropdown-menu a::after {
    display: none; /* Remove the underline effect in dropdown */
}

.dropdown-menu a:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
}

/* Responsive adjustments */
/* Logo maintains fixed width on all screen sizes - no responsive scaling */

@media (max-width: 1200px) {
    /* Mobile dropdown adjustments */
    .nav-links {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav-links li {
        width: 100%;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

    .has-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .has-dropdown > a {
        justify-content: center;
        width: 100%;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-menu .nav-links .has-dropdown .dropdown-menu {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        box-shadow: none;
        background-color: var(--color-off-white);
        border-radius: 0;
        margin: 0.5rem 0 0 0 !important;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100% !important;
        min-width: 100% !important;
    }

    .nav-menu .nav-links .has-dropdown .dropdown-menu.show {
        max-height: 800px;
        padding: 0.5rem 0;
    }

    .nav-menu .nav-links .has-dropdown .dropdown-menu li {
        width: 100% !important;
        text-align: center;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none;
    }

    .nav-menu .nav-links .has-dropdown .dropdown-menu a {
        padding: 0.8rem 2rem !important;
        font-size: 0.85rem;
        text-align: center;
        width: 100% !important;
        display: block !important;
        box-sizing: border-box;
    }

    .nav-menu .nav-links .has-dropdown .dropdown-menu a:hover {
        padding: 0.8rem 2rem !important;
    }

    /* Mobile submenu styles */
    .has-submenu {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .has-submenu > a {
        justify-content: center;
        padding: 0.8rem 2rem !important;
        width: 100%;
        position: relative;
        display: flex !important;
        align-items: center;
    }

    .submenu-arrow {
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
    }

    .submenu-arrow.rotated {
        transform: translateY(-50%) rotate(90deg);
    }

    .submenu {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        box-shadow: none;
        background-color: #E8E8E8;
        border-radius: 0;
        margin: 0 !important;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100% !important;
        min-width: 100% !important;
    }

    .submenu.show {
        max-height: 400px;
        padding: 0.5rem 0;
    }

    .submenu li {
        width: 100% !important;
        text-align: center;
    }

    .submenu a {
        padding: 0.7rem 3rem !important;
        font-size: 0.8rem !important;
        width: 100% !important;
        display: block !important;
        text-align: center;
    }
}

/* Mobile Hero Image — deprecated (hero now carries its own image full-bleed) */
.mobile-hero-image {
    display: none !important;
}

@media (max-width: 768px) {
    /* Placeholder for other 768px styles if needed */
}