/* ========================================
   PB CATERERS - COMPLETE CSS
   Mobile-First | Cross-Device | Production
   320px → 2560px
   ======================================== */

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
    --wine: #8B1538;
    --burgundy: #A0153E;
    --crimson: #C41E3A;
    --gold: #DAA520;
    --gold-bright: #FFD700;
    --ivory: #FFF5E6;
    --cream: #FFF8E7;
    --champagne: #F7E7CE;
    --warm-white: #FAF9F6;
    --charcoal: #2C2416;
    --soft-black: #1A1410;

    --font-display: 'Cinzel Decorative', serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
    --font-accent: 'Cormorant', serif;
    --font-hindi: 'Noto Serif Devanagari', serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm: 0 2px 12px rgba(139, 21, 56, 0.08);
    --shadow-md: 0 4px 20px rgba(139, 21, 56, 0.12);
    --shadow-lg: 0 8px 32px rgba(139, 21, 56, 0.16);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;

    --nav-height: 64px;
    --max-width: 1200px;
}

@media (min-width: 768px) {
    :root {
        --nav-height: 80px;
    }
}

@media (min-width: 1440px) {
    :root {
        --max-width: 1300px;
    }
}

@media (min-width: 1920px) {
    :root {
        --max-width: 1400px;
    }
}

/* ── GLOBAL RESET & SAFETY NET ───────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0; /* critical: allows flex/grid children to shrink */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%; /* stop iOS auto-zoom on rotation */
    text-size-adjust: 100%;
}

@media (min-width: 1920px) {
    html {
        font-size: 18px;
    }
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--warm-white);
    overflow-x: hidden;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
    display: block;
}

table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--wine);
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

h1 { font-size: clamp(1.625rem, 5.5vw, 3.5rem); }
h2 { font-size: clamp(1.375rem, 4vw,   2.75rem); }
h3 { font-size: clamp(1.125rem, 3vw,   2rem); }
h4 { font-size: clamp(1rem,     2vw,   1.625rem); }

p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.75;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

li, span, td, th {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ── UTILITIES ───────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: clamp(0.875rem, 4vw, 1.5rem);
}

/* Safe area support */
@supports (padding: max(0px)) {
    .container {
        padding-left: max(clamp(0.875rem, 4vw, 1.5rem), env(safe-area-inset-left));
        padding-right: max(clamp(0.875rem, 4vw, 1.5rem), env(safe-area-inset-right));
    }
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--gold);
    color: var(--burgundy);
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    z-index: 10000;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 1.75rem;
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
    min-height: 48px;
    -webkit-appearance: none;
    appearance: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
    color: var(--ivory);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--wine) 0%, var(--burgundy) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--ivory);
    border-color: var(--gold);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: rgba(218, 165, 32, 0.15);
}

.btn-full {
    width: 100%;
}

/* Touch: remove persistent hover states */
@media (hover: none) {
    .btn:hover::before,
    .btn:focus::before {
        width: 0;
        height: 0;
    }

    .btn:active {
        opacity: 0.85;
        transform: scale(0.98);
    }

    .btn-primary:hover,
    .btn-primary:focus {
        transform: none;
    }
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(139, 21, 56, 0.08);
    border-bottom: 1px solid var(--champagne);
    z-index: 1000;
    transition: var(--transition);
}

@supports (padding: max(0px)) {
    .nav {
        padding-top: env(safe-area-inset-top);
        height: calc(var(--nav-height) + env(safe-area-inset-top));
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-inline: clamp(0.875rem, 4vw, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    z-index: 1001;
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-name {
    font-family: var(--font-display);
    font-size: clamp(1.0625rem, 3.5vw, 1.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.nav-logo-tagline {
    font-size: clamp(0.5625rem, 1.5vw, 0.75rem);
    color: var(--charcoal);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: 0.7;
    white-space: nowrap;
}

@media (max-width: 374px) {
    .nav-logo-tagline {
        display: none;
    }
}

.nav-menu {
    display: none;
    list-style: none;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

/* Mobile drawer */
@media (max-width: 1023px) {
    .nav-menu {
        display: flex;
        position: fixed;
        inset: 0 0 0 auto;
        width: min(300px, 80vw);
        max-height: 100dvh;
        max-height: 100vh; /* fallback */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
        background: linear-gradient(to bottom, var(--ivory), var(--champagne));
        box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15);
        border-left: 3px solid var(--gold);
        z-index: 999;
        right: -100%;
        transition: right 0.4s ease;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.125rem;
        width: 100%;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
    }
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--charcoal);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--burgundy);
}

.nav-cta {
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
    color: var(--ivory);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
}

.nav-cta:hover,
.nav-cta:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--wine) 0%, var(--burgundy) 100%);
}

@media (hover: none) {
    .nav-cta:hover {
        transform: none;
    }
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

/* ── SECTION DEFAULTS ────────────────────────────────────── */
section {
    padding-block: clamp(2rem, 6vw, 5rem);
}

/* ── SECTION HEADERS ─────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    max-width: 700px;
    margin-inline: auto;
}

.section-header::before {
    content: '❖';
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.section-label {
    display: inline-block;
    font-size: clamp(0.6875rem, 1.8vw, 0.875rem);
    font-weight: 700;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
    position: relative;
    padding-inline: clamp(0.5rem, 2vw, 1.25rem);
}

.section-label::before,
.section-label::after {
    content: '✦';
    position: absolute;
    color: var(--gold);
    font-size: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
}

.section-label::before { left: 0; }
.section-label::after  { right: 0; }

.section-title {
    font-size: clamp(1.375rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.section-desc {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    color: var(--charcoal);
    line-height: 1.7;
    opacity: 0.9;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    min-height: 100vh; /* fallback */
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft-black);
    overflow: hidden;
    padding-top: calc(var(--nav-height) + 1.5rem);
    padding-bottom: 2.5rem;
    padding-inline: clamp(0.875rem, 4vw, 1.5rem);
}

@supports (padding: max(0px)) {
    .hero {
        padding-top: calc(var(--nav-height) + env(safe-area-inset-top) + 1.5rem);
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-block: calc(var(--nav-height) + 1rem) 2rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(139, 21, 56, 0.3) 0%,
        rgba(160, 21, 62, 0.3) 100%
    );
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(139, 21, 56, 0.88) 0%,
        rgba(160, 21, 62, 0.75) 50%,
        rgba(139, 21, 56, 0.88) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: rgba(218, 165, 32, 0.12);
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: var(--champagne);
    font-size: clamp(0.625rem, 2vw, 0.875rem);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    white-space: normal;
    text-align: center;
}

.hero-title {
    font-size: clamp(1.625rem, 6vw, 4.5rem);
    color: var(--ivory);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero-title-accent {
    display: block;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.375rem, 5vw, 4rem);
    background: linear-gradient(135deg,
        var(--gold-bright) 0%,
        #FFA500 50%,
        var(--gold-bright) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.hero-text {
    font-size: clamp(0.9rem, 2vw, 1.0625rem);
    color: var(--champagne);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-positioning {
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 1rem clamp(0.75rem, 3vw, 2.5rem);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    background: rgba(218, 165, 32, 0.05);
}

.hero-positioning p {
    font-size: clamp(0.75rem, 1.8vw, 1rem);
    color: var(--champagne);
    text-transform: uppercase;
    letter-spacing: clamp(0.5px, 0.3vw, 1.5px);
    margin: 0;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 2rem;
}

@media (min-width: 480px) {
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.25rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--ivory);
}

.hero-stat i {
    color: var(--gold-bright);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 0.25rem;
}

.hero-stat span {
    font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 2rem;
    width: 100%;
}

.hero-buttons .btn {
    width: 100%;
    justify-content: center;
}

@media (min-width: 480px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .hero-buttons .btn {
        width: auto;
        min-width: 180px;
    }
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about {
    background: linear-gradient(to bottom, var(--champagne), var(--cream));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold);
    aspect-ratio: 4 / 3;
    min-height: 240px;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--wine) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder i {
    font-size: clamp(3rem, 7vw, 5rem);
    color: var(--gold-bright);
}

.about-badge {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
    color: var(--ivory);
    padding: clamp(0.875rem, 2vw, 1.75rem);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold);
    z-index: 2;
}

.about-badge-number {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
    color: var(--gold-bright);
}

.about-badge-text {
    display: block;
    font-size: clamp(0.75rem, 1.8vw, 0.9375rem);
    margin-top: var(--spacing-xs);
    letter-spacing: 0.5px;
}

.philosophy-statement {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.05), rgba(218, 165, 32, 0.05));
    padding: clamp(1rem, 3vw, 1.75rem);
    border-left: 4px solid var(--burgundy);
    border-right: 4px solid var(--gold);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    position: relative;
}

.philosophy-quote {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    font-style: italic;
    color: var(--burgundy);
    line-height: 1.7;
    margin: 0;
    padding-left: 0.5rem;
}

.about-text {
    font-size: clamp(0.9rem, 1.8vw, 1.0625rem);
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.credentials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

@media (min-width: 480px) {
    .credentials {
        grid-template-columns: repeat(2, 1fr);
    }
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    border: 2px solid var(--champagne);
    transition: var(--transition);
}

.credential-item:hover {
    border-color: var(--gold);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

@media (hover: none) {
    .credential-item:hover {
        transform: none;
    }
}

.credential-item i {
    color: var(--burgundy);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    flex-shrink: 0;
}

.credential-item span {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.5;
}

/* ── DIVIDERS ────────────────────────────────────────────── */
.luxury-divider {
    padding-block: clamp(2rem, 5vw, 6rem);
    background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 50%, var(--ivory) 100%);
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    position: relative;
}

.luxury-divider-dark {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--burgundy) 50%, var(--charcoal) 100%);
}

.divider-text {
    font-family: var(--font-accent);
    font-size: clamp(1.125rem, 3.5vw, 2.75rem);
    text-align: center;
    color: var(--burgundy);
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.55;
    position: relative;
    padding-inline: clamp(1rem, 4vw, 3rem);
}

.luxury-divider-dark .divider-text {
    color: var(--champagne);
}

/* ── SERVICES ────────────────────────────────────────────── */
.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 2rem);
}

@media (min-width: 540px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: clamp(1.25rem, 4vw, 3rem);
    background: var(--ivory);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 3px solid var(--champagne);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.25);
}

@media (hover: none) {
    .service-card:hover {
        transform: none;
    }
    .service-card:active {
        border-color: var(--gold);
        box-shadow: 0 4px 16px rgba(218, 165, 32, 0.3);
    }
}

.service-icon {
    width: clamp(60px, 10vw, 90px);
    height: clamp(60px, 10vw, 90px);
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(0.75rem, 2vw, 1.5rem);
    color: var(--gold-bright);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    transition: var(--transition);
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-md);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

@media (hover: none) {
    .service-card:hover .service-icon {
        transform: none;
    }
}

.service-title {
    font-size: clamp(1.0625rem, 2.5vw, 1.625rem);
    margin-bottom: 0.75rem;
    color: var(--burgundy);
}

.service-desc {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin: 1.25rem 0;
    padding: 1.25rem 0;
    border-top: 2px solid var(--champagne);
    text-align: left;
}

.service-details span {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
    color: var(--charcoal);
    font-weight: 500;
}

.service-details i {
    color: var(--burgundy);
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* ── PROCESS ─────────────────────────────────────────────── */
.process {
    background: var(--warm-white);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 2rem);
    margin-top: 2rem;
}

@media (min-width: 540px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
    padding: clamp(1.25rem, 4vw, 2.5rem);
    background: var(--ivory);
    border-radius: var(--radius-lg);
    border: 2px solid var(--champagne);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

@media (hover: none) {
    .process-step:hover {
        transform: none;
    }
}

.step-number {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.process-step h3 {
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    margin-bottom: 0.75rem;
    color: var(--burgundy);
}

.process-step p {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    color: var(--charcoal);
    line-height: 1.8;
}

/* ── MENU SECTION ────────────────────────────────────────── */
.menu-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--burgundy) 50%, var(--charcoal) 100%);
    color: var(--ivory);
    position: relative;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.menu-section .section-label { color: var(--champagne); }
.menu-section .section-title  { color: var(--ivory); }
.menu-section .section-desc   { color: var(--champagne); }

.menu-philosophy {
    max-width: 800px;
    margin: 0 auto clamp(2rem, 5vw, 4rem);
    padding: clamp(1rem, 3vw, 2.5rem);
    border: 3px solid var(--gold);
    background: rgba(218, 165, 32, 0.05);
    border-radius: var(--radius-lg);
}

.menu-philosophy .philosophy-statement {
    font-family: var(--font-accent);
    font-size: clamp(1.125rem, 3vw, 2rem);
    font-style: italic;
    color: var(--gold-bright);
    margin-bottom: 1rem;
    background: none;
    padding: 0;
    border: none;
    line-height: 1.6;
}

.menu-philosophy .philosophy-body {
    font-size: clamp(0.9rem, 2vw, 1.125rem);
    line-height: 1.9;
    color: var(--champagne);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 540px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-card {
    background: rgba(255, 255, 255, 0.05);
    padding: clamp(1.25rem, 4vw, 3rem);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 3px solid rgba(218, 165, 32, 0.3);
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.menu-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

@media (hover: none) {
    .menu-card:hover {
        transform: none;
    }
    .menu-card:active {
        border-color: var(--gold);
        box-shadow: 0 4px 16px rgba(218, 165, 32, 0.3);
    }
}

.menu-icon {
    width: clamp(60px, 10vw, 90px);
    height: clamp(60px, 10vw, 90px);
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(0.75rem, 2vw, 1.5rem);
    color: var(--gold-bright);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.menu-card:hover .menu-icon {
    transform: scale(1.15) rotate(5deg);
}

@media (hover: none) {
    .menu-card:hover .menu-icon {
        transform: none;
    }
}

.menu-title {
    font-size: clamp(1.0625rem, 2.5vw, 1.625rem);
    color: var(--ivory);
    margin-bottom: 0.75rem;
}

.menu-desc {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    color: var(--champagne);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.menu-preview {
    font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
    color: #FFA500;
    font-style: italic;
    line-height: 1.6;
}

.menu-count {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
    color: var(--gold-bright);
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    font-size: clamp(0.6875rem, 1.5vw, 0.875rem);
    font-weight: 700;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.menu-cta {
    text-align: center;
}

.menu-note,
.menu-guarantee {
    margin-top: 1rem;
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    flex-wrap: wrap;
    text-align: center;
}

.menu-note     { color: var(--champagne); font-style: italic; }
.menu-guarantee { color: #FFA500; font-weight: 600; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery {
    background: var(--warm-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 0.625rem 1.125rem;
    background: var(--ivory);
    border: 2px solid var(--champagne);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: clamp(0.8125rem, 1.8vw, 1rem);
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    min-height: 44px;
    -webkit-appearance: none;
    appearance: none;
}

.gallery-filter:hover {
    border-color: var(--gold);
    color: var(--burgundy);
    transform: translateY(-2px);
}

.gallery-filter.active {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
    border-color: var(--gold);
    color: var(--ivory);
    box-shadow: var(--shadow-md);
}

@media (hover: none) {
    .gallery-filter:hover {
        transform: none;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 2rem);
}

@media (min-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 3px solid var(--champagne);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.25);
    border-color: var(--gold);
}

@media (hover: none) {
    .gallery-item:hover {
        transform: none;
    }
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--wine) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder i {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--gold-bright);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(139, 21, 56, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1rem, 3vw, 1.5rem);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Always show overlay on touch – no hover available */
@media (hover: none) {
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(139, 21, 56, 0.75) 0%, transparent 55%);
    }
}

.gallery-overlay h3 {
    color: var(--ivory);
    font-size: clamp(0.9375rem, 2.5vw, 1.5rem);
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: var(--champagne);
    font-size: clamp(0.8125rem, 1.8vw, 1rem);
    margin: 0;
}

/* ── PROMISE ─────────────────────────────────────────────── */
.promise {
    background: linear-gradient(to bottom, var(--champagne), var(--ivory));
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 540px) {
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.promise-card {
    background: var(--ivory);
    padding: clamp(1.25rem, 4vw, 3rem);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 3px solid var(--champagne);
}

.promise-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.25);
}

@media (hover: none) {
    .promise-card:hover {
        transform: none;
    }
    .promise-card:active {
        border-color: var(--gold);
        box-shadow: 0 4px 16px rgba(218, 165, 32, 0.3);
    }
}

.promise-icon {
    width: clamp(60px, 10vw, 90px);
    height: clamp(60px, 10vw, 90px);
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(0.75rem, 2vw, 1.5rem);
    color: var(--gold-bright);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.promise-card:hover .promise-icon {
    transform: scale(1.15) rotate(5deg);
}

@media (hover: none) {
    .promise-card:hover .promise-icon {
        transform: none;
    }
}

.promise-card h3 {
    font-size: clamp(1.0625rem, 2.5vw, 1.5rem);
    margin-bottom: 0.75rem;
    color: var(--burgundy);
}

.promise-card p {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.promise-highlight {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.08), rgba(218, 165, 32, 0.08));
    color: var(--burgundy);
    border-radius: 50px;
    font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
    font-weight: 700;
    border: 2px solid var(--champagne);
}

.promise-statement {
    max-width: 1000px;
    margin-inline: auto;
    padding: clamp(1.25rem, 4vw, 3.5rem);
    background: var(--ivory);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.25);
    border: 3px solid var(--gold);
}

.statement-content i {
    color: var(--gold);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    opacity: 0.3;
    margin-bottom: 1rem;
    display: block;
}

.statement-content p {
    font-size: clamp(0.9375rem, 2vw, 1.25rem);
    line-height: 1.9;
    color: var(--charcoal);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.statement-signature {
    text-align: right;
    color: var(--burgundy);
    font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
    font-weight: 700;
    margin: 0;
}

/* ── FOUNDER ─────────────────────────────────────────────── */
.founder-story {
    background: linear-gradient(to bottom, var(--ivory), var(--champagne));
}

.founder-card {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(1.25rem, 4vw, 3.5rem);
    background: var(--ivory);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.25);
    border: 3px solid var(--gold);
}

.founder-header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.founder-quote-block {
    text-align: center;
    padding: clamp(1rem, 3vw, 2.5rem);
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.05), rgba(218, 165, 32, 0.05));
    border-radius: var(--radius-lg);
    border: 2px solid var(--champagne);
}

.founder-quote-block i {
    color: var(--gold);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    opacity: 0.3;
    margin-bottom: 1rem;
    display: block;
}

.founder-quote {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--burgundy);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.founder-signature {
    font-size: clamp(0.875rem, 1.8vw, 1.125rem);
    color: var(--charcoal);
    font-weight: 700;
    margin: 0;
}

/* ── BOOKING SECTION ─────────────────────────────────────── */
.booking {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--wine) 50%, var(--burgundy) 100%);
    color: var(--ivory);
    border-top: 3px solid var(--gold);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
}

@media (min-width: 1024px) {
    .booking-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

.booking-info .section-label { color: var(--champagne); }
.booking-info .section-title  { color: var(--ivory); }

.booking-text {
    font-size: clamp(0.9rem, 2vw, 1.125rem);
    line-height: 1.9;
    color: var(--champagne);
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.booking-benefits {
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.booking-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-block: 0.75rem;
    color: var(--ivory);
    font-size: clamp(0.875rem, 1.8vw, 1.0625rem);
}

.booking-benefit i {
    color: var(--gold-bright);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    flex-shrink: 0;
}

.booking-contact {
    display: grid;
    gap: clamp(0.75rem, 2vw, 1.25rem);
}

.booking-contact-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.booking-contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold-bright);
    transform: translateX(5px);
}

@media (hover: none) {
    .booking-contact-item:hover {
        transform: none;
    }
}

.booking-contact-item i {
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--burgundy);
}

.booking-contact-item div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.booking-contact-item span {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: var(--champagne);
}

.booking-contact-item a {
    font-size: clamp(0.9rem, 1.8vw, 1.125rem);
    font-weight: 600;
    color: var(--ivory);
    overflow-wrap: break-word;
    word-break: break-all;
}

/* FORM */
.booking-form {
    background: var(--ivory);
    padding: clamp(1.25rem, 4vw, 3rem);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.25);
    border: 3px solid var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(0.75rem, 2vw, 1.5rem);
        margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
    }
}

.form-group {
    margin-bottom: clamp(0.875rem, 2vw, 1.5rem);
}

.form-group label {
    display: block;
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.375rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--champagne);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem; /* ≥16px: prevents iOS auto-zoom */
    transition: var(--transition);
    background: var(--ivory);
    color: var(--charcoal);
    min-height: 48px;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238B1538' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(218, 165, 32, 0.15);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #dc3545;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
}

.form-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 0.875rem;
    background: var(--champagne);
    border-radius: var(--radius-md);
    border: 2px solid var(--gold);
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
    color: var(--charcoal);
    font-weight: 600;
}

.reassurance-item i {
    color: var(--burgundy);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    display: none;
    font-size: 1rem;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact {
    background: var(--warm-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info {
    display: grid;
    gap: clamp(0.75rem, 2vw, 1.25rem);
}

.contact-card {
    display: flex;
    gap: 0.875rem;
    padding: clamp(1rem, 3vw, 1.75rem);
    background: var(--ivory);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid var(--champagne);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
    transform: translateX(5px);
}

@media (hover: none) {
    .contact-card:hover {
        transform: none;
    }
}

.contact-card > i {
    width: clamp(44px, 8vw, 60px);
    height: clamp(44px, 8vw, 60px);
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    flex-shrink: 0;
    border: 3px solid var(--gold);
}

.contact-card h3 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 0.5rem;
    color: var(--burgundy);
}

.contact-card p {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    color: var(--charcoal);
    margin-bottom: 0.375rem;
}

.contact-card a {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    color: var(--burgundy);
    font-weight: 600;
    transition: var(--transition);
    overflow-wrap: break-word;
    word-break: break-all;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-social {
    display: flex;
    gap: 0.75rem;
    padding: clamp(1rem, 3vw, 1.75rem);
    background: var(--ivory);
    border-radius: var(--radius-lg);
    justify-content: center;
    border: 2px solid var(--champagne);
    flex-wrap: wrap;
}

.social-link {
    width: clamp(44px, 8vw, 55px);
    height: clamp(44px, 8vw, 55px);
    background: var(--ivory);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    font-size: clamp(1.0625rem, 2.5vw, 1.375rem);
    transition: var(--transition);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
    color: var(--gold-bright);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

@media (hover: none) {
    .social-link:hover {
        transform: none;
    }
    .social-link:active {
        background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
        color: var(--gold-bright);
    }
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.25);
    min-height: clamp(280px, 50vw, 450px);
    border: 3px solid var(--gold);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: clamp(280px, 50vw, 450px);
    border: 0;
    display: block;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--burgundy) 50%, var(--charcoal) 100%);
    color: var(--ivory);
    padding-top: clamp(2rem, 5vw, 3.5rem);
    padding-bottom: clamp(1rem, 3vw, 2rem);
    border-top: 3px solid var(--gold);
}

@supports (padding: max(0px)) {
    .footer {
        padding-bottom: max(clamp(1rem, 3vw, 2rem), env(safe-area-inset-bottom));
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

@media (min-width: 480px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 2rem);
    background: linear-gradient(135deg, var(--ivory) 0%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    line-height: 1.8;
    color: var(--champagne);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: clamp(36px, 6vw, 45px);
    height: clamp(36px, 6vw, 45px);
    background: rgba(218, 165, 32, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    transition: var(--transition);
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--burgundy);
    transform: translateY(-3px);
}

@media (hover: none) {
    .footer-social a:hover {
        transform: none;
    }
}

.footer-heading {
    font-size: clamp(0.9375rem, 2vw, 1.25rem);
    margin-bottom: 1rem;
    color: var(--ivory);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    color: var(--champagne);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-bright);
    padding-left: 8px;
}

@media (hover: none) {
    .footer-links a:hover {
        padding-left: 0;
    }
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.625rem;
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    color: var(--champagne);
}

.footer-contact i {
    color: var(--gold-bright);
    width: 20px;
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: clamp(1rem, 3vw, 1.5rem);
    border-top: 2px solid var(--gold);
    font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
    color: var(--champagne);
}

/* ── FLOATING BUTTONS ────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    width: clamp(52px, 10vw, 65px);
    height: clamp(52px, 10vw, 65px);
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-size: clamp(1.625rem, 4vw, 2.25rem);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    z-index: 1000;
    transition: var(--transition);
    border: 3px solid var(--ivory);
}

@supports (padding: max(0px)) {
    .whatsapp-float {
        bottom: max(1.25rem, env(safe-area-inset-bottom));
    }
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.scroll-top {
    position: fixed;
    bottom: 5.5rem;
    right: 1.25rem;
    width: clamp(44px, 8vw, 55px);
    height: clamp(44px, 8vw, 55px);
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
    border: 3px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-bright);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    appearance: none;
}

@supports (padding: max(0px)) {
    .scroll-top {
        bottom: calc(5.5rem + env(safe-area-inset-bottom));
    }
}

@media (min-width: 1024px) {
    .scroll-top {
        bottom: 2rem;
        right: 6.5rem;
    }
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

@media (hover: none) {
    .scroll-top:hover {
        transform: none;
    }
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── FOCUS / ACCESSIBILITY ───────────────────────────────── */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

body.using-mouse *:focus {
    outline: none;
}

/* ── SMALL PHONES (max 374px) ────────────────────────────── */
@media (max-width: 374px) {
    .nav-logo-name      { font-size: 1rem; }
    .nav-logo-tagline   { display: none; }

    .hero-badge         { font-size: 0.625rem; padding: 0.375rem 0.75rem; }
    .hero-title         { font-size: 1.5rem; }
    .hero-title-accent  { font-size: 1.25rem; }

    .btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }

    .service-card,
    .menu-card,
    .promise-card,
    .process-step       { padding: 1rem; }

    .service-icon,
    .menu-icon,
    .promise-icon {
        width: 56px;
        height: 56px;
        font-size: 1.375rem;
    }

    .step-number        { font-size: 2rem; }
    .gallery-filter     { padding: 0.5rem 0.875rem; }
    .booking-form       { padding: 1rem; }
    .founder-card,
    .promise-statement  { padding: 1rem; }

    .form-group input,
    .form-group select,
    .form-group textarea { padding: 0.75rem 0.875rem; }

    .social-link,
    .whatsapp-float {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .divider-text       { font-size: 1rem; }
}

/* ── LANDSCAPE PHONES ────────────────────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-block: calc(var(--nav-height) + 1rem) 2rem;
    }

    .nav-menu {
        overflow-y: auto;
        max-height: 100dvh;
        max-height: 100vh;
    }
}

/* ── PRINT ───────────────────────────────────────────────── */
@media print {
    .nav,
    .whatsapp-float,
    .scroll-top,
    .hero-bg,
    .hero-overlay {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}