/* ==========================================================================
   Guru Art — Cinematic Wedding Photography & Films
   Design system: warm ivory canvas, charcoal depth, amber→gold accent.
   Fonts: Playfair Display (display/serif) + Inter (UI/body).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Colours — overridable per-site from the admin settings table */
    --ivory:        #F7F3ED;
    --ivory-deep:   #F0EAE0;
    --charcoal:     #1A1512;
    --charcoal-soft:#2A231E;
    --ink:          #221B16;
    --body:         #6E645B;
    --body-light:   #8C8177;
    --line:         rgba(26, 21, 18, .10);
    --line-strong:  rgba(26, 21, 18, .18);
    --accent-from:  #C9922E;
    --accent-to:    #E0B44A;
    --accent:       #C9922E;
    --accent-soft:  rgba(201, 146, 46, .10);
    --white:        #FFFFFF;
    --whatsapp:     #25D366;

    --gradient-accent: linear-gradient(135deg, var(--accent-from) 0%, var(--accent-to) 100%);

    /* Type */
    --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* Space & shape */
    --wrap: 1200px;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --section-y: clamp(64px, 8vw, 118px);

    /* Elevation */
    --shadow-sm: 0 2px 10px rgba(26, 21, 18, .05);
    --shadow: 0 10px 30px rgba(26, 21, 18, .08);
    --shadow-lg: 0 22px 60px rgba(26, 21, 18, .14);
    --shadow-accent: 0 14px 34px rgba(201, 146, 46, .28);

    /* Motion */
    --t-fast: 180ms cubic-bezier(.4, 0, .2, 1);
    --t: 240ms cubic-bezier(.4, 0, .2, 1);
    --t-slow: 320ms cubic-bezier(.4, 0, .2, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--body);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -.01em;
    margin: 0 0 .5em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; list-style: none; }

button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

::selection { background: rgba(201, 146, 46, .25); color: var(--ink); }

.icon { flex: none; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: 24px;
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 5vw, 74px); }
.section--dark { background: var(--charcoal); color: rgba(247, 243, 237, .72); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--ivory); }
.section--alt { background: var(--ivory-deep); }

.section-head { max-width: 720px; margin: 0 auto clamp(38px, 4vw, 58px); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }

/* Heading on the left, a "see all" link on the right */
.section-head--split {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    max-width: none;
    text-align: left;
}
.section-head--split .eyebrow { justify-content: flex-start; }
.section-head--split .section-title { margin-bottom: 0; }

/* Eyebrow — tiny uppercase amber label preceded by a rule or dot */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gradient-accent);
}
.eyebrow--dot::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-accent);
}
.section-head .eyebrow { justify-content: center; }

.section-title {
    font-size: clamp(28px, 4.2vw, 46px);
    margin-bottom: 16px;
}
.section-sub {
    max-width: 640px;
    margin-inline: auto;
    color: var(--body);
    font-size: clamp(15px, 1.4vw, 17px);
}
.section-head--left .section-sub { margin-inline: 0; }
.section--dark .section-sub { color: rgba(247, 243, 237, .66); }

.accent-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.italic-accent { font-style: italic; }

/* Grids */
.grid { display: grid; gap: clamp(18px, 2vw, 28px); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: none;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .01em;
    cursor: pointer;
    transition: background var(--t), color var(--t), border-color var(--t),
                transform var(--t), box-shadow var(--t);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .icon { transition: transform var(--t); }
.btn:hover .icon { transform: translateX(3px); }

.btn--dark { background: var(--charcoal); color: var(--ivory); }
.btn--dark:hover { background: #000; box-shadow: var(--shadow); }

.btn--accent {
    background: var(--gradient-accent);
    color: #2A1D06;
    font-weight: 600;
    box-shadow: var(--shadow-accent);
}
.btn--accent:hover { filter: brightness(1.06); }

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

/* Solid dark pill used over photography (hero "Get Custom Quote"). */
.btn--solid-dark {
    background: rgba(20, 16, 13, .92);
    color: #fff;
    border-color: rgba(20, 16, 13, .92);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.btn--solid-dark:hover { background: #000; border-color: #000; box-shadow: var(--shadow); }

.btn--outline-dark { border-color: var(--line-strong); color: var(--ink); }
.btn--outline-dark:hover { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

.btn--ghost { color: rgba(247, 243, 237, .82); }
.btn--ghost:hover { color: var(--ivory); background: rgba(247, 243, 237, .12); }

.btn--ghost-dark { color: var(--body); }
.btn--ghost-dark:hover { color: var(--ink); background: rgba(26, 21, 18, .06); }

.btn--white { background: #fff; color: var(--ink); border-color: #fff; }
.btn--white:hover { background: var(--ivory); box-shadow: 0 10px 26px rgba(0, 0, 0, .28); }

.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--block { width: 100%; }

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
}
.link-more .icon { transition: transform var(--t); }
.link-more:hover .icon { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. Header — floating pill navbar
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 900;
    padding: 18px 20px;
    transition: padding var(--t-slow);
}
.site-header.is-stuck { padding-block: 10px; }

.nav-pill {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding: 10px 12px 10px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: background var(--t-slow), box-shadow var(--t-slow),
                border-color var(--t-slow), backdrop-filter var(--t-slow);
}
.site-header.is-stuck .nav-pill,
.site-header.is-solid .nav-pill {
    background: rgba(247, 243, 237, .82);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    backdrop-filter: saturate(180%) blur(16px);
    border-color: rgba(26, 21, 18, .07);
    box-shadow: var(--shadow);
}

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brand-badge {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: #2A1D06;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(201, 146, 46, .35);
}
.brand-word {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.005em;
    white-space: nowrap;
    transition: color var(--t-slow), text-shadow var(--t-slow);
}

/* --------------------------------------------------------------------------
   Over the hero: the pill is transparent and sits on a dark photograph, so
   the wordmark, links and menu button invert to ivory. They fade back to
   charcoal as soon as the pill gains its translucent background on scroll
   (.is-stuck) or on any inner page (.is-solid).
   -------------------------------------------------------------------------- */
.site-header:not(.is-stuck):not(.is-solid) .brand-word {
    color: #FFFFFF;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .38), 0 2px 16px rgba(0, 0, 0, .5);
}
.site-header:not(.is-stuck):not(.is-solid) .nav-links a {
    color: #FFFFFF;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .42), 0 2px 14px rgba(0, 0, 0, .5);
}
/* Active and hover stay pure white — only the amber underline marks them. */
.site-header:not(.is-stuck):not(.is-solid) .nav-links a:hover,
.site-header:not(.is-stuck):not(.is-solid) .nav-links a.is-active {
    color: #FFFFFF;
}
.site-header:not(.is-stuck):not(.is-solid) .nav-toggle {
    color: var(--ivory);
    border-color: rgba(247, 243, 237, .5);
}
.site-header:not(.is-stuck):not(.is-solid) .nav-toggle:hover {
    background: var(--ivory);
    color: var(--ink);
    border-color: var(--ivory);
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-inline: auto;
}
.nav-links a {
    position: relative;
    padding: 8px 12px;
    color: var(--body);
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
    transition: color var(--t);
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 2px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 8px; flex: none; }

.nav-toggle {
    display: none;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    transition: background var(--t), color var(--t);
}
.nav-toggle:hover { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

/* Mobile drawer */
.nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 950;
    display: grid;
    grid-template-rows: auto 1fr;
    background: var(--ivory);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform var(--t-slow), visibility var(--t-slow);
}
.nav-drawer.is-open { transform: translateY(0); visibility: visible; }
.nav-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
}
.nav-drawer__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 28px 24px 40px;
    overflow-y: auto;
}
.nav-drawer__links a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--ink);
    transition: color var(--t), padding-left var(--t);
}
.nav-drawer__links a:hover { color: var(--accent); padding-left: 10px; }
.nav-drawer__links .btn { margin-top: 22px; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: min(100svh, 900px);
    padding: 150px 0 90px;
    overflow: hidden;
    text-align: left;
    isolation: isolate;
}
.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(26, 21, 18, .35) 0%, rgba(26, 21, 18, .72) 60%, rgba(26, 21, 18, .88) 100%),
        linear-gradient(180deg, rgba(42, 30, 22, .55) 0%, rgba(26, 21, 18, .55) 45%, rgba(26, 21, 18, .95) 100%);
}
/* Content sits in a left-hand column so the photograph stays visible beside it.
   Wide enough that "Capturing Moments" stays on ONE line at the full 92px —
   the explicit <br> in the markup provides the only intended break. */
.hero__inner { max-width: 960px; margin-inline: 0; }

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 18px;
    margin-bottom: 26px;
    border: 1px solid rgba(224, 180, 74, .38);
    border-radius: 999px;
    background: rgba(26, 21, 18, .35);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: var(--accent-to);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.hero__badge .icon { color: var(--accent-to); }

.hero__title {
    color: var(--ivory);
    font-size: clamp(42px, 8.2vw, 92px);
    line-height: 1.02;
    letter-spacing: -.02em;
    margin-bottom: 22px;
}
.hero__title em {
    display: inline-block;
    font-style: italic;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__sub {
    /* Narrow enough that the em-dash clause starts the second line. */
    max-width: 520px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, .85);
    font-size: clamp(15px, 1.6vw, 18px);
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
}
/* Slightly tighter than the site default so the trio reads as one crisp row. */
.hero__actions .btn { padding: 12px 24px; }
/* Softer halo — the full accent glow is too heavy against photography. */
.hero__actions .btn--accent { box-shadow: 0 8px 20px rgba(201, 146, 46, .22); }
.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(247, 243, 237, .6);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .28em;
}
.hero__scroll .icon { animation: bob 2.2s ease-in-out infinite; }
@keyframes bob {
    0%, 100% { transform: translateY(0); opacity: .65; }
    50%      { transform: translateY(6px); opacity: 1; }
}

/* Page hero (inner pages) */
.page-hero {
    padding: clamp(140px, 16vw, 190px) 0 clamp(46px, 6vw, 72px);
    text-align: center;
}
.page-hero__title {
    font-size: clamp(34px, 6vw, 64px);
    margin-bottom: 18px;
}
.page-hero__sub {
    max-width: 620px;
    margin-inline: auto;
    font-size: clamp(15px, 1.5vw, 17.5px);
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 146, 46, .32);
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   7. Stats bar
   -------------------------------------------------------------------------- */
.stats {
    background: linear-gradient(180deg, rgba(224, 180, 74, .13) 0%, rgba(201, 146, 46, .07) 100%);
    border-block: 1px solid rgba(201, 146, 46, .18);
    padding-block: clamp(30px, 4vw, 46px);
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    text-align: center;
}
.stat__value {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 4px;
}
.stat__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--body-light);
}

/* --------------------------------------------------------------------------
   8. Cards — categories, services, rituals
   -------------------------------------------------------------------------- */
.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 146, 46, .3);
}

/* Image card with overlay caption */
.img-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--charcoal);
    aspect-ratio: 3 / 4;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t);
}
.img-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.img-card:hover img { transform: scale(1.05); }
.img-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 21, 18, 0) 32%, rgba(26, 21, 18, .78) 100%);
    transition: opacity var(--t);
}
.img-card__body {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 24px 22px;
    color: var(--ivory);
}
.img-card__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-to);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.img-card__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 25px);
    color: var(--ivory);
    margin: 0 0 5px;
}
.img-card__sub {
    margin: 0;
    color: rgba(247, 243, 237, .72);
    font-size: 12.5px;
    line-height: 1.55;
}

/* Service card */
.service-card { padding: 28px 26px 30px; }
.icon-tile {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 14px;
    background: var(--gradient-accent);
    color: #2A1D06;
    box-shadow: 0 8px 20px rgba(201, 146, 46, .26);
}
.service-card__title {
    font-size: 21px;
    margin-bottom: 8px;
}
.service-card__text { font-size: 14.5px; margin: 0; }

/* --------------------------------------------------------------------------
   9. Package cards
   -------------------------------------------------------------------------- */
.pkg-grid { align-items: stretch; }

.pkg {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 30px 32px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.pkg:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.pkg--featured {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: rgba(247, 243, 237, .74);
    box-shadow: var(--shadow-lg);
}
.pkg--featured .pkg__name { color: var(--ivory); }
.pkg--featured .pkg__eyebrow { color: rgba(224, 180, 74, .9); }
.pkg--featured .pkg__price { color: var(--accent-to); -webkit-text-fill-color: initial; background: none; }
.pkg--featured .pkg__note { color: rgba(247, 243, 237, .5); }
.pkg--featured .pkg__features li { color: rgba(247, 243, 237, .78); }
.pkg--featured .pkg__divider { background: rgba(247, 243, 237, .14); }

.pkg__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    border-radius: 999px;
    background: var(--gradient-accent);
    color: #2A1D06;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: var(--shadow-accent);
}
.pkg__eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--body-light);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.pkg__name { font-size: 30px; margin-bottom: 12px; }
.pkg__price {
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 44px);
    line-height: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.pkg__note { font-size: 12px; color: var(--body-light); margin-top: 6px; }
.pkg__divider { height: 1px; background: var(--line); margin: 24px 0 22px; }
.pkg__features { display: grid; gap: 13px; margin-bottom: 28px; }
.pkg__features li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 11px;
    align-items: start;
    font-size: 14.5px;
    line-height: 1.5;
}
.pkg__features .icon { color: var(--accent); margin-top: 3px; }
.pkg__cta { margin-top: auto; }
.pkg--featured .btn--outline-dark { border-color: rgba(247, 243, 237, .3); color: var(--ivory); }
.pkg--featured .btn--outline-dark:hover { background: var(--ivory); color: var(--ink); }

/* Package detail disclosure */
.pkg__details { margin-top: 14px; font-size: 13.5px; }
.pkg__details[hidden] { display: none; }

/* --------------------------------------------------------------------------
   10. Portfolio / gallery grids
   -------------------------------------------------------------------------- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 210px;
    gap: 16px;
}
.portfolio-grid .img-card { aspect-ratio: auto; height: 100%; }
.portfolio-grid .img-card--tall { grid-row: span 2; }
.portfolio-grid .img-card--wide { grid-column: span 2; }

/* Masonry gallery (CSS columns — no JS needed) */
.masonry {
    column-count: 3;
    column-gap: 16px;
}
.masonry__item {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 16px;
    border: 0;
    padding: 0;
    background: var(--charcoal);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: zoom-in;
    break-inside: avoid;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t);
}
.masonry__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.masonry__item img { width: 100%; transition: transform var(--t-slow); }
.masonry__item:hover img { transform: scale(1.05); }
.masonry__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(26, 21, 18, .5));
    opacity: 0;
    transition: opacity var(--t);
}
.masonry__item:hover::after { opacity: 1; }
.masonry__caption {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    color: var(--ivory);
    font-family: var(--font-display);
    font-size: 17px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--t), transform var(--t);
}
.masonry__item:hover .masonry__caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 5vh 6vw;
    background: rgba(16, 12, 10, .94);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t), visibility var(--t);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
    max-width: 100%;
    max-height: 82vh;
    border-radius: var(--radius);
    box-shadow: 0 40px 90px rgba(0, 0, 0, .6);
}
.lightbox__caption {
    margin-top: 16px;
    color: rgba(247, 243, 237, .8);
    font-family: var(--font-display);
    font-style: italic;
    text-align: center;
}
.lightbox__btn {
    position: absolute;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(247, 243, 237, .25);
    border-radius: 50%;
    background: rgba(247, 243, 237, .08);
    color: var(--ivory);
    cursor: pointer;
    transition: background var(--t), transform var(--t);
}
.lightbox__btn:hover { background: rgba(247, 243, 237, .2); transform: scale(1.06); }
.lightbox__btn--prev { left: 3vw; top: 50%; margin-top: -24px; }
.lightbox__btn--next { right: 3vw; top: 50%; margin-top: -24px; }
.lightbox__btn--close { top: 3vh; right: 3vw; }

/* --------------------------------------------------------------------------
   11. Testimonials
   -------------------------------------------------------------------------- */
.quote-card { padding: 32px 30px; margin: 0; }
.quote-card__stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--accent-to); }
.quote-card__stars .icon { fill: currentColor; stroke: none; }
.quote-card__text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18.5px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 20px;
}
.quote-card__author {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--body-light);
}

/* --------------------------------------------------------------------------
   12. CTA banner
   -------------------------------------------------------------------------- */
.cta-banner {
    position: relative;
    padding: clamp(48px, 6vw, 78px) clamp(28px, 5vw, 70px);
    border-radius: var(--radius-xl);
    background: var(--charcoal);
    color: rgba(247, 243, 237, .7);
    text-align: center;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    inset: -40% 30% 40% -20%;
    background: radial-gradient(circle, rgba(201, 146, 46, .22), transparent 62%);
    pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner__title {
    max-width: 780px;
    margin: 0 auto 16px;
    color: var(--ivory);
    font-size: clamp(27px, 4vw, 44px);
}
.cta-banner__sub { max-width: 560px; margin: 0 auto 30px; font-size: 15.5px; }
.cta-banner__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* --------------------------------------------------------------------------
   13. Contact
   -------------------------------------------------------------------------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(24px, 3vw, 44px);
    align-items: start;
}
.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.info-card {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.info-card .icon-tile { width: 40px; height: 40px; margin: 0; border-radius: 11px; }
.info-card__label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--body-light);
    margin-bottom: 3px;
}
.info-card__value { font-size: 14.5px; color: var(--ink); word-break: break-word; }
a.info-card__value:hover { color: var(--accent); }

.map-embed {
    margin-top: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    line-height: 0;
}
.map-embed iframe { width: 100%; height: 260px; border: 0; }

.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--ink);
    transition: background var(--t), color var(--t), transform var(--t), border-color var(--t);
}
.social-row a:hover {
    background: var(--gradient-accent);
    color: #2A1D06;
    border-color: transparent;
    transform: translateY(-3px);
}

/* Forms */
.form-card {
    padding: clamp(24px, 3vw, 34px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.field { margin-bottom: 16px; }
.field--half { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 0; }
.field label {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--body-light);
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: var(--ivory);
    font-size: 15px;
    transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 146, 46, .14);
}
.field__error { display: block; margin-top: 6px; color: #B4442E; font-size: 12.5px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.alert {
    padding: 14px 18px;
    margin-bottom: 18px;
    border-radius: 12px;
    font-size: 14.5px;
}
.alert--ok { background: rgba(58, 132, 90, .12); border: 1px solid rgba(58, 132, 90, .3); color: #2C6B48; }
.alert--err { background: rgba(180, 68, 46, .1); border: 1px solid rgba(180, 68, 46, .28); color: #96331F; }

/* --------------------------------------------------------------------------
   14. Package builder
   -------------------------------------------------------------------------- */
.builder-layout {
    display: grid;
    grid-template-columns: 1fr 370px;
    gap: clamp(24px, 3vw, 40px);
    align-items: start;
}
.builder-group + .builder-group { margin-top: 40px; }
.builder-group__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}
.builder-group__title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0;
    font-family: var(--font-body);
}
.builder-group__hint { font-size: 12px; color: var(--body-light); }

.builder-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

.builder-item {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    text-align: left;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform var(--t), box-shadow var(--t), background var(--t),
                border-color var(--t), color var(--t);
}
.builder-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(201, 146, 46, .35); }
.builder-item__check {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    flex: none;
    border: 1.5px solid var(--line-strong);
    border-radius: 50%;
    color: transparent;
    transition: background var(--t), border-color var(--t), color var(--t);
}
.builder-item__name { flex: 1; font-size: 14.5px; font-weight: 500; color: var(--ink); }
.builder-item__price {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--ink);
    white-space: nowrap;
}
.builder-item.is-selected {
    background: var(--charcoal);
    border-color: var(--charcoal);
    box-shadow: var(--shadow);
}
.builder-item.is-selected .builder-item__name { color: var(--ivory); }
.builder-item.is-selected .builder-item__price { color: var(--accent-to); }
.builder-item.is-selected .builder-item__check {
    background: var(--gradient-accent);
    border-color: transparent;
    color: #2A1D06;
}

/* Live summary */
.summary {
    position: sticky;
    top: 106px;
    padding: 28px 26px 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.summary__eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--body-light);
    margin-bottom: 8px;
}
.summary__total {
    font-family: var(--font-display);
    font-size: clamp(38px, 4.4vw, 48px);
    line-height: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.summary__note { font-size: 12px; color: var(--body-light); margin-top: 8px; }
.summary__list {
    display: grid;
    gap: 9px;
    max-height: 260px;
    overflow-y: auto;
    margin: 22px 0;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 13.5px;
}
.summary__list li { display: flex; justify-content: space-between; gap: 12px; }
.summary__list li span:last-child { color: var(--ink); white-space: nowrap; }
.summary__empty { color: var(--body-light); font-style: italic; }
.summary__fineprint { margin-top: 14px; font-size: 12px; color: var(--body-light); text-align: center; }
.summary__fields { display: grid; gap: 10px; margin-bottom: 16px; }
.summary__fields input { padding: 11px 14px; font-size: 14px; }

/* --------------------------------------------------------------------------
   15. About page
   -------------------------------------------------------------------------- */
.split {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(28px, 4vw, 60px);
    align-items: center;
}
.split__media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.stat-quad {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}
.stat-box {
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t);
}
.stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-box__value { font-family: var(--font-display); font-size: 30px; color: var(--ink); line-height: 1.1; }
.stat-box__label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--body-light);
    margin-top: 4px;
}
.team-card { overflow: hidden; border-radius: var(--radius-lg); }
.team-card__media { overflow: hidden; background: var(--charcoal); }
.team-card__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform var(--t-slow); }
.team-card:hover .team-card__media img { transform: scale(1.05); }
.team-card__body { padding: 20px 22px 24px; text-align: center; }
.team-card__name { font-size: 22px; margin-bottom: 4px; }
.team-card__role {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--charcoal);
    color: rgba(247, 243, 237, .62);
    padding-top: clamp(52px, 6vw, 78px);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: clamp(28px, 4vw, 60px);
    padding-bottom: 44px;
}
.site-footer .brand-word { color: var(--ivory); }
.footer-about { max-width: 380px; margin-top: 18px; font-size: 14.5px; line-height: 1.75; }
.footer-title {
    margin-bottom: 18px;
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.footer-links { display: grid; gap: 11px; font-size: 14.5px; }
.footer-links a { transition: color var(--t), padding-left var(--t); }
.footer-links a:hover { color: var(--accent-to); padding-left: 5px; }
.footer-contact { display: grid; gap: 14px; font-size: 14.5px; }
.footer-contact li { display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: start; }
.footer-contact .icon { color: var(--accent); margin-top: 4px; }
.footer-contact a:hover { color: var(--accent-to); }
.site-footer .social-row a { border-color: rgba(247, 243, 237, .2); color: rgba(247, 243, 237, .8); }
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding-block: 22px;
    border-top: 1px solid rgba(247, 243, 237, .12);
    font-size: 13px;
    color: rgba(247, 243, 237, .5);
}
.footer-bottom a:hover { color: var(--accent-to); }

/* Floating WhatsApp pill */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 880;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: 999px;
    background: var(--whatsapp);
    color: #06301A;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(37, 211, 102, .38);
    transition: transform var(--t), box-shadow var(--t), filter var(--t);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(37, 211, 102, .48); filter: brightness(1.05); }

/* --------------------------------------------------------------------------
   17. Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 620ms cubic-bezier(.22, .8, .3, 1),
                transform 620ms cubic-bezier(.22, .8, .3, 1);
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   18. Responsive — 1024 / 768 / 480
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
    .nav-links { display: none; }
    .nav-toggle { display: grid; }
    .nav-links--desktop-only { display: none; }
    .nav-pill { justify-content: space-between; }
    .builder-layout { grid-template-columns: 1fr 330px; }
}

@media (max-width: 1024px) {
    .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 200px; }
    .contact-layout { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; }
    .split__media { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-about { max-width: none; }
}

@media (max-width: 860px) {
    .builder-layout { grid-template-columns: 1fr; }
    .summary {
        position: sticky;
        bottom: 0;
        top: auto;
        z-index: 700;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        box-shadow: 0 -12px 40px rgba(26, 21, 18, .16);
    }
    .summary__list { max-height: 150px; }
    .masonry { column-count: 2; }
}

@media (max-width: 768px) {
    .stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 16px; }
    .builder-items { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding: 132px 0 78px; }
    .nav-drawer__links a { font-size: 21px; }
}

@media (max-width: 560px) {
    .wrap { padding-inline: 18px; }
    .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
    .portfolio-grid .img-card--wide { grid-column: span 1; }
    .portfolio-grid .img-card--tall { grid-row: span 1; }
    .masonry { column-count: 1; }
    .info-grid { grid-template-columns: 1fr; }
    .field--half { grid-template-columns: 1fr; gap: 0; }
    .field--half .field { margin-bottom: 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero__actions .btn, .cta-banner__actions .btn { width: 100%; }
    .brand-word { font-size: 19px; }
    .wa-float { right: 14px; bottom: 14px; padding: 12px 17px; }
    .stat-quad { grid-template-columns: 1fr; }
    .lightbox__btn--prev { left: 10px; }
    .lightbox__btn--next { right: 10px; }
}

/* --------------------------------------------------------------------------
   19. Print
   -------------------------------------------------------------------------- */
@media print {
    .site-header, .wa-float, .nav-drawer, .lightbox { display: none !important; }
    body { background: #fff; color: #000; }
}
