/* ==========================================================================
   Miya B Bookkeeping — Global Stylesheet
   Luxury-inspired, bee-subtle, modern & responsive
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
    /* Brand palette */
    --color-charcoal: #131313;
    --color-charcoal-soft: #1f1f20;
    --color-ink: #2a2a2a;
    --color-gold: #b8893b;
    --color-gold-light: #d4a84b;
    --color-gold-soft: #e8d4a2;
    --color-gold-pale: #f1e4c2;
    --color-cream: #faf6ec;
    --color-ivory: #f5f0e1;
    --color-sand: #ece4cf;
    --color-warm-gray: #8a7f6e;
    --color-border: #e6ddc7;
    --color-white: #ffffff;

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

    /* Spacing & layout */
    --max-width: 1200px;
    --max-width-narrow: 880px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(19, 19, 19, 0.04);
    --shadow-md: 0 10px 30px rgba(19, 19, 19, 0.06);
    --shadow-lg: 0 20px 50px rgba(19, 19, 19, 0.10);

    /* Transitions */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-ink);
    background: var(--color-cream);
    overflow-x: hidden;
}

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

a {
    color: var(--color-charcoal);
    text-decoration: none;
    transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

a:hover {
    color: var(--color-gold);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.015em;
    color: var(--color-charcoal);
    line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.25rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 300; }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
h4 { font-size: 1.15rem; }

p { font-size: 1rem; color: var(--color-ink); }

.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: inline-block;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

section { padding: 6rem 0; }
@media (max-width: 768px) { section { padding: 4rem 0; } }

.section-tight { padding: 4rem 0; }

.section-dark {
    background: var(--color-charcoal);
    color: var(--color-ivory);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--color-ivory); }
.section-dark p { color: rgba(245, 240, 225, 0.8); }

.section-ivory { background: var(--color-ivory); }
.section-cream { background: var(--color-cream); }
.section-sand { background: var(--color-sand); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-charcoal);
    color: var(--color-ivory);
    border-color: var(--color-charcoal);
}
.btn-primary:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-charcoal);
    transform: translateY(-1px);
}

.btn-gold {
    background: var(--color-gold);
    color: var(--color-charcoal);
    border-color: var(--color-gold);
}
.btn-gold:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
}

.btn-outline {
    background: transparent;
    color: var(--color-charcoal);
    border-color: var(--color-charcoal);
}
.btn-outline:hover {
    background: var(--color-charcoal);
    color: var(--color-ivory);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-ivory);
    border-color: rgba(245, 240, 225, 0.5);
}
.btn-outline-light:hover {
    background: var(--color-ivory);
    color: var(--color-charcoal);
}

.btn-arrow::after {
    content: '→';
    transition: transform 0.3s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header / Navigation ---------- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 246, 236, 0.88);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.scrolled {
    border-bottom-color: var(--color-border);
    background: rgba(250, 246, 236, 0.95);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-charcoal);
    letter-spacing: 0.01em;
}

.nav-logo:hover { color: var(--color-gold); }

/* Hexagon logo mark — signature brand motif (bee in hive) */
.logo-mark {
    width: 46px;
    height: 50px;
    background: linear-gradient(145deg, #e8c878 0%, var(--color-gold-light) 30%, var(--color-gold) 65%, #8e6824 100%);
    color: var(--color-gold-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    padding-top: 4px;
    font-family: var(--font-serif);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    position: relative;
    flex-shrink: 0;
    isolation: isolate;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    filter: drop-shadow(0 2px 4px rgba(184, 137, 59, 0.25));
}

.logo-mark::before {
    content: '';
    position: absolute;
    inset: 1.8px;
    background: radial-gradient(ellipse at 40% 30%, #2a2a2a 0%, var(--color-charcoal) 70%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
}

.logo-mark::after {
    content: '';
    position: absolute;
    inset: 5px;
    border: 0.5px solid rgba(212, 168, 75, 0.35);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
    pointer-events: none;
}

.logo-mark > * { position: relative; z-index: 1; }

.logo-mark .logo-bee {
    width: 18px;
    height: 13px;
    color: var(--color-gold-light);
    margin-bottom: 1px;
}

.logo-mark .logo-text {
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--color-gold-light);
    line-height: 1;
}

.nav-logo:hover .logo-mark {
    filter: drop-shadow(0 3px 8px rgba(184, 137, 59, 0.45));
    transform: translateY(-1px);
    transition: all 0.3s var(--ease);
}

.nav-menu {
    display: flex;
    gap: 2.25rem;
    align-items: center;
    list-style: none;
}

.nav-menu a {
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--color-charcoal);
    position: relative;
}

.nav-menu a.active {
    color: var(--color-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s var(--ease);
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-cta { display: flex; gap: 0.75rem; align-items: center; }
.nav-cta .btn { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    height: 1.5px;
    width: 24px;
    background: var(--color-charcoal);
    transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav-menu, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .nav-menu.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--color-cream);
        border-bottom: 1px solid var(--color-border);
        padding: 1.5rem;
    }

    .nav-menu.open li {
        width: 100%;
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu.open li:last-child { border-bottom: none; }
}

/* ---------- Hexagon / bee motifs ---------- */

.divider-motif {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin: 2rem auto;
    color: var(--color-gold);
}

.divider-motif::before,
.divider-motif::after {
    content: '';
    width: 48px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.6;
}

.hex-accent {
    width: 14px;
    height: 16px;
    background: var(--color-gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.85;
    display: inline-block;
}

/* Bee silhouette accent — subtle, used sparingly */
.bee-accent {
    width: 28px;
    height: 28px;
    display: inline-block;
    color: var(--color-gold);
    opacity: 0.9;
    vertical-align: middle;
}

.bee-float {
    position: absolute;
    width: 36px;
    height: 36px;
    color: var(--color-gold);
    opacity: 0.55;
    animation: beeHover 6s var(--ease) infinite;
    pointer-events: none;
    z-index: 2;
}

.bee-float.sm { width: 22px; height: 22px; opacity: 0.6; }
.bee-float.md { width: 32px; height: 32px; }
.bee-float.lg { width: 46px; height: 46px; opacity: 0.5; }

.bee-float.top-right { top: 8%; right: 6%; animation-delay: -1.5s; }
.bee-float.top-left { top: 12%; left: 4%; animation-delay: -2.2s; }
.bee-float.top-mid { top: 6%; left: 42%; animation-delay: -0.8s; }
.bee-float.mid-left { top: 54%; left: 5%; animation-delay: -3s; }
.bee-float.mid-right { top: 48%; right: 8%; animation-delay: -4.1s; }
.bee-float.bottom-left { bottom: 10%; left: 8%; animation-delay: -2.7s; }
.bee-float.bottom-right { bottom: 14%; right: 10%; animation-delay: -3.9s; }
.bee-float.bottom-mid { bottom: 8%; left: 38%; animation-delay: -5s; }
.bee-float.upper-right { top: 22%; right: 15%; animation-delay: -1.2s; }
.bee-float.lower-left { bottom: 30%; left: 14%; animation-delay: -4.5s; }

.bee-float.slow { animation-duration: 9s; }
.bee-float.fast { animation-duration: 4.5s; }

@keyframes beeHover {
    0%, 100% { transform: translate(0, 0) rotate(-6deg); }
    25% { transform: translate(8px, -10px) rotate(4deg); }
    50% { transform: translate(-2px, -14px) rotate(-2deg); }
    75% { transform: translate(-6px, 4px) rotate(-5deg); }
}

/* Honeycomb pattern — primary site motif */
.hex-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 86.6' width='100' height='86.6'%3E%3Cpath d='M25 0 L75 0 L100 43.3 L75 86.6 L25 86.6 L0 43.3 Z' fill='none' stroke='%23b8893b' stroke-width='1.1'/%3E%3C/svg%3E");
    background-size: 72px 62px;
}

/* Denser honeycomb for sections needing stronger texture */
.honeycomb-bg {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.honeycomb-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.09;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 86.6' width='100' height='86.6'%3E%3Cpath d='M25 0 L75 0 L100 43.3 L75 86.6 L25 86.6 L0 43.3 Z' fill='none' stroke='%23b8893b' stroke-width='1.2'/%3E%3C/svg%3E");
    background-size: 64px 55px;
    z-index: -1;
}

.honeycomb-bg.soft::before { opacity: 0.06; background-size: 90px 78px; }
.honeycomb-bg.bold::before { opacity: 0.14; background-size: 54px 47px; }

/* Honeycomb on dark sections — use lighter gold stroke for visibility */
.section-dark.honeycomb-bg::before {
    opacity: 0.11;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 86.6' width='100' height='86.6'%3E%3Cpath d='M25 0 L75 0 L100 43.3 L75 86.6 L25 86.6 L0 43.3 Z' fill='none' stroke='%23d4a84b' stroke-width='1.1'/%3E%3C/svg%3E");
}

/* Filled honeycomb — amber-tinted cells for emphasis sections */
.honeycomb-fill {
    position: relative;
    isolation: isolate;
}

.honeycomb-fill::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.10;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 86.6' width='100' height='86.6'%3E%3Cpath d='M25 0 L75 0 L100 43.3 L75 86.6 L25 86.6 L0 43.3 Z' fill='%23d4a84b' stroke='%23b8893b' stroke-width='0.6'/%3E%3C/svg%3E");
    background-size: 68px 58px;
    z-index: -1;
}

/* Honeycomb cluster — decorative 7-hex flower arrangement */
.hex-cluster {
    position: absolute;
    width: 140px;
    height: 140px;
    pointer-events: none;
    opacity: 0.35;
    z-index: 1;
}

.hex-cluster svg { width: 100%; height: 100%; }

.hex-cluster.top-right { top: -30px; right: -30px; }
.hex-cluster.top-left { top: -30px; left: -30px; }
.hex-cluster.bottom-right { bottom: -30px; right: -30px; }
.hex-cluster.bottom-left { bottom: -30px; left: -30px; }

/* Tiny hexagon bullet for lists */
.hex-bullet {
    display: inline-block;
    width: 10px;
    height: 11px;
    background: var(--color-gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    margin-right: 0.5rem;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 7rem 0 6rem;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-ivory) 100%);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-lede {
    font-size: 1.125rem;
    color: var(--color-warm-gray);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.65;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-meta {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.hero-meta-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-charcoal);
    font-weight: 400;
}

.hero-meta-item span {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-warm-gray);
}

.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 20%, rgba(212, 168, 75, 0.25), transparent 55%),
        linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-charcoal-soft) 100%);
    box-shadow: var(--shadow-lg);
}

.hero-visual-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-light);
}

.hero-visual-mark {
    font-family: var(--font-serif);
    font-size: 14rem;
    font-weight: 300;
    opacity: 0.12;
    line-height: 1;
    letter-spacing: -0.08em;
}

.hero-visual-tag {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: var(--color-ivory);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-visual-tag small {
    display: block;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.75rem;
    color: var(--color-gold-light);
    opacity: 0.85;
}

@media (max-width: 900px) {
    .hero { padding: 4rem 0; }
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-visual { aspect-ratio: 4/3; max-width: 500px; }
    .hero-meta { grid-template-columns: 1fr; gap: 1rem; }
}

/* ---------- Section headers ---------- */
.section-head {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.section-head.left {
    text-align: left;
    margin-left: 0;
}

.section-head p {
    color: var(--color-warm-gray);
    font-size: 1.05rem;
    margin-top: 1rem;
}

/* ---------- Cards / service grid ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .card-grid { grid-template-columns: 1fr; }
}

.card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold-soft);
}

.card-icon {
    width: 48px;
    height: 52px;
    background: var(--color-gold-soft);
    color: var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    isolation: isolate;
}
.card-icon::before {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: var(--color-ivory);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
}

.card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.card p {
    color: var(--color-warm-gray);
    font-size: 0.95rem;
    line-height: 1.65;
}

.card-link {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-charcoal);
    text-transform: uppercase;
}
.card-link::after { content: '→'; transition: transform 0.25s var(--ease); }
.card-link:hover { color: var(--color-gold); }
.card-link:hover::after { transform: translateX(3px); }

/* ---------- Why / Values ---------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .values-grid { grid-template-columns: 1fr; } }

.value-item { text-align: left; }
.value-item .num {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-gold);
    font-weight: 300;
    display: block;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}
.value-item h4 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.value-item p { color: var(--color-warm-gray); font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.testimonial {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-charcoal);
    margin-bottom: 2rem;
}

.section-dark .testimonial-quote { color: var(--color-ivory); }

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 44px;
    height: 48px;
    background: var(--color-gold);
    color: var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    flex-shrink: 0;
}

.testimonial-meta strong {
    display: block;
    font-weight: 500;
    color: var(--color-charcoal);
    font-size: 0.95rem;
}

.section-dark .testimonial-meta strong { color: var(--color-ivory); }

.testimonial-meta span {
    font-size: 0.8rem;
    color: var(--color-warm-gray);
    letter-spacing: 0.05em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.testimonial-card blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-ink);
    margin-bottom: 1.25rem;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-charcoal);
    transition: color 0.25s var(--ease);
}

.faq-q:hover { color: var(--color-gold); }

.faq-q .icon {
    width: 22px;
    height: 22px;
    position: relative;
    flex-shrink: 0;
}
.faq-q .icon::before,
.faq-q .icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--color-gold);
    transition: transform 0.3s var(--ease);
}
.faq-q .icon::after { transform: rotate(90deg); }
.faq-q.open .icon::after { transform: rotate(0); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-a-inner {
    padding: 0 0 1.5rem;
    color: var(--color-warm-gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* ---------- CTA banner ---------- */
.cta-banner {
    background: var(--color-charcoal);
    color: var(--color-ivory);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(212, 168, 75, 0.18), transparent 55%);
}

.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--color-ivory); margin-bottom: 1rem; }
.cta-banner p { color: rgba(245, 240, 225, 0.8); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--color-charcoal);
    color: rgba(245, 240, 225, 0.7);
    padding: 4.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245, 240, 225, 0.12);
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .nav-logo { color: var(--color-ivory); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; max-width: 320px; line-height: 1.6; }

.footer-col h5 {
    color: var(--color-gold-light);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(245, 240, 225, 0.7); font-size: 0.92rem; }
.footer-col a:hover { color: var(--color-gold-light); }

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: rgba(245, 240, 225, 0.5);
}

.footer-bottom a { color: rgba(245, 240, 225, 0.6); }
.footer-bottom a:hover { color: var(--color-gold-light); }

/* ---------- Page hero (internal pages) ---------- */
.page-hero {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-ivory) 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    max-width: 820px;
    margin: 0 auto 1rem;
}

.page-hero p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--color-warm-gray);
}

/* ---------- Services detail ---------- */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-border);
}

.service-detail:last-child { border-bottom: none; }

@media (max-width: 800px) {
    .service-detail { grid-template-columns: 1fr; gap: 1.5rem; }
}

.service-detail h2 { font-size: 2rem; margin-bottom: 1rem; }
.service-detail .meta {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.service-detail ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-detail li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-ink);
}

.service-detail li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 10px;
    background: var(--color-gold);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

/* ---------- About page ---------- */
.about-hero {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 800px) { .about-hero { grid-template-columns: 1fr; } }

.about-portrait {
    aspect-ratio: 4/5;
    background:
        radial-gradient(circle at 30% 20%, rgba(212, 168, 75, 0.3), transparent 60%),
        linear-gradient(135deg, #2a2a28 0%, #1a1a19 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-light);
    font-family: var(--font-serif);
    font-size: 6rem;
    font-weight: 300;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-portrait::after {
    content: '';
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(19, 19, 19, 0.5);
    border: 1px solid rgba(212, 168, 75, 0.3);
    color: var(--color-ivory);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
    text-align: center;
}

.about-timeline {
    list-style: none;
    counter-reset: step;
}

.about-timeline li {
    position: relative;
    padding: 2rem 0 2rem 3rem;
    border-bottom: 1px solid var(--color-border);
    counter-increment: step;
}

.about-timeline li:last-child { border-bottom: none; }

.about-timeline li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 2rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-gold);
}

.about-timeline h4 { margin-bottom: 0.5rem; }
.about-timeline p { color: var(--color-warm-gray); }

/* ---------- Pricing ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s var(--ease);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--color-gold);
    background: linear-gradient(180deg, #fffaef 0%, #fffefb 100%);
}

.price-card.featured::before {
    content: 'Most popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-charcoal);
    color: var(--color-gold-light);
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
}

.price-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.price-card .pkg-desc { color: var(--color-warm-gray); font-size: 0.9rem; margin-bottom: 1.5rem; }

.price-tag {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 3rem;
    color: var(--color-charcoal);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-tag small {
    font-size: 0.85rem;
    color: var(--color-warm-gray);
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
}

.price-from {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    display: block;
}

.price-features {
    list-style: none;
    margin: 1.5rem 0 2rem;
    flex-grow: 1;
}

.price-features li {
    padding: 0.5rem 0;
    font-size: 0.92rem;
    color: var(--color-ink);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    padding-left: 1.5rem;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 500;
}

.price-features li:last-child { border-bottom: none; }

.pricing-supplemental {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (max-width: 700px) { .pricing-supplemental { grid-template-columns: 1fr; } }

.supp-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.supp-card h4 { margin-bottom: 0.5rem; }
.supp-card .price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin: 0.75rem 0;
}
.supp-card p { font-size: 0.92rem; color: var(--color-warm-gray); }

.pricing-note {
    max-width: 720px;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem;
    background: var(--color-sand);
    border-left: 3px solid var(--color-gold);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--color-ink);
    line-height: 1.65;
}

/* ---------- Contact form ---------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--color-warm-gray); margin-bottom: 2rem; }

.contact-info-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-info-item strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.4rem;
}

.contact-info-item span, .contact-info-item a {
    display: block;
    color: var(--color-charcoal);
    font-size: 1rem;
}

.contact-form {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

@media (max-width: 500px) { .contact-form { padding: 1.5rem; } }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.form-group .required { color: var(--color-gold); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-cream);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-charcoal);
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.radio-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.radio-pair input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-pair label {
    cursor: pointer;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    text-align: center;
    background: var(--color-cream);
    font-weight: 500;
    transition: all 0.25s var(--ease);
    letter-spacing: 0;
    margin-bottom: 0;
}

.radio-pair input[type="radio"]:checked + label {
    background: var(--color-charcoal);
    border-color: var(--color-charcoal);
    color: var(--color-gold-light);
}

.conditional { display: none; }
.conditional.show { display: block; animation: fadeIn 0.35s var(--ease); }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-helper {
    font-size: 0.82rem;
    color: var(--color-warm-gray);
    margin-top: 0.4rem;
}

.form-success {
    padding: 1.25rem;
    background: #f1f8ec;
    border-left: 3px solid #7ea34a;
    border-radius: var(--radius-sm);
    color: #3a5718;
    margin-bottom: 1.5rem;
    display: none;
}

.form-success.show { display: block; }

/* ---------- Legal pages ---------- */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 4rem 1.5rem 6rem;
}

.legal-content h1 { margin-bottom: 0.75rem; }
.legal-content .updated {
    font-size: 0.85rem;
    color: var(--color-warm-gray);
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.15rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.legal-content p, .legal-content li {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--color-ink);
    margin-bottom: 1rem;
}

.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: 0.5rem; }

/* ---------- Thank you page ---------- */
.thank-you {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
}

.thank-you-inner { max-width: 640px; }

.thank-you-mark {
    width: 88px;
    height: 96px;
    margin: 0 auto 2rem;
    background: var(--color-gold);
    color: var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-family: var(--font-serif);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.thank-you h1 { margin-bottom: 1rem; }
.thank-you p { color: var(--color-warm-gray); margin-bottom: 2rem; font-size: 1.1rem; }

/* ---------- Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }

/* Print */
@media print {
    .site-header, .site-footer, .cta-banner { display: none; }
    body { background: #fff; }
}
