/*
Theme Name: Camdon Tech
Theme URI: https://camdontech.com
Author: Camdon Technologies Ltd.
Description: A custom theme for Camdon Tech - Architecture. Innovation. Execution.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: camdon-tech
*/

/* ============================================================
   DESIGN TOKENS â€” Structural Precision v2.0
   Fonts: Syne (display) + Instrument Sans (body)
   Palette: Warm ink / Brand gold / Cream
============================================================ */
:root {
    /* Brand gold */
    --gold:         #C9A227;
    --gold-dark:    #A8861F;
    --gold-light:   #D9B84A;
    --gold-subtle:  rgba(201, 162, 39, 0.10);
    --gold-rule:    rgba(201, 162, 39, 0.18);
    --gold-glow:    rgba(201, 162, 39, 0.35);    /* For glossy volume */
    --amber-glow:   rgba(224, 135, 20, 0.25);    /* Warm ambient shadow depth */

    /* Warm ink scale */
    --ink:          #121109;   /* near-black, warm */
    --ink-2:        #1D1B14;   /* dark surface */
    --ink-3:        #292620;   /* border on dark */
    --ink-4:        #3C3929;   /* muted border */
    --glass-bg:     rgba(41, 38, 32, 0.45);      /* Translucent dark surface */
    --glass-highlight: rgba(255, 255, 255, 0.04); /* Edge highlight */
    --stone:        #7D7563;   /* muted text */
    --stone-light:  #A09880;   /* lighter muted */

    /* Light palette */
    --cream:        #F4F0E6;   /* light text on dark */
    --canvas:       #F6F3EB;   /* light section bg */
    --white:        #FAFAF5;   /* near-white */
    --border-light: rgba(0, 0, 0, 0.09);

    /* Typography */
    --font-display: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body:    'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Type scale */
    --text-xs:   0.75rem;    /* 12px */
    --text-sm:   0.875rem;   /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg:   1.125rem;   /* 18px */
    --text-xl:   1.375rem;   /* 22px */
    --text-2xl:  1.75rem;    /* 28px */
    --text-3xl:  2.25rem;    /* 36px */
    --text-4xl:  3rem;       /* 48px */

    /* Fluid hero headline */
    --hero-size: clamp(2.75rem, 5vw, 5.25rem);

    /* Layout */
    --container:    1280px;
    --gutter:       clamp(1.25rem, 4vw, 3rem);
    --section-py:   clamp(5rem, 10vw, 9rem);

    /* Motion */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in:  cubic-bezier(0.64, 0, 0.78, 0);
    --dur-fast: 150ms;
    --dur-base: 260ms;
    --dur-slow: 420ms;
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--ink);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--ink);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   ACCESSIBILITY
============================================================ */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    clip: rect(0,0,0,0);
    overflow: hidden;
    white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ============================================================
   SECTION LABEL â€” small gold label above headings
============================================================ */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
}

.section-label__num {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--ink);
    background-color: var(--gold);
    padding: 0.25rem 0.4rem;
    border-radius: 2px;
    line-height: 1;
}

.section-label__line {
    width: 48px;
    height: 1px;
    background-color: var(--gold);
    flex-shrink: 0;
}

.section-label__text {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    transition:
        background var(--dur-base) var(--ease-out),
        background-color var(--dur-base) var(--ease-out),
        color var(--dur-base) var(--ease-out),
        border-color var(--dur-base) var(--ease-out),
        box-shadow var(--dur-base) var(--ease-out),
        transform var(--dur-fast) var(--ease-out);
}

.btn:active { transform: translateY(1px); box-shadow: none; }

.btn--primary {
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
    color: var(--ink);
    border-color: #ba931b;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 4px 14px var(--amber-glow);
}
.btn--primary:hover {
    background: linear-gradient(180deg, var(--gold), #917215);
    border-color: #826613;
    color: var(--ink);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 6px 20px var(--gold-glow);
    transform: translateY(-2px);
}

.btn--outline {
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--cream);
    border-color: rgba(244, 240, 230, 0.15);
    box-shadow: inset 0 1px 0 var(--glass-highlight), 0 4px 12px rgba(0,0,0,0.25);
}
.btn--outline:hover {
    background-color: rgba(244, 240, 230, 0.08);
    border-color: rgba(244, 240, 230, 0.35);
    color: var(--cream);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 6px 18px rgba(0,0,0,0.35);
    transform: translateY(-2px);
}

/* CTA section button: dark on gold bg */
.btn--dark {
    background: linear-gradient(180deg, var(--ink-2), #0a0904);
    color: var(--cream);
    border-color: var(--ink-2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 4px 12px rgba(0,0,0,0.5);
}
.btn--dark:hover {
    background: linear-gradient(180deg, var(--ink), #050402);
    border-color: var(--ink);
    color: var(--cream);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 6px 16px rgba(0,0,0,0.6);
    transform: translateY(-2px);
}

/* ============================================================
   HEADER & NAVIGATION
============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition:
        background-color var(--dur-slow) var(--ease-out),
        border-color var(--dur-slow) var(--ease-out);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background-color: rgba(246, 243, 235, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 2rem;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--cream);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    transition: color var(--dur-base) var(--ease-out);
}

.site-logo:hover { color: var(--gold); }

.site-logo img,
.custom-logo {
    max-height: 80px;
    width: auto;
    transition: filter var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}

.site-header:not(.scrolled) .custom-logo {
    filter: brightness(0) invert(1);
}
.site-header.scrolled .custom-logo {
    filter: brightness(0);
}
.site-header.scrolled .site-logo {
    color: var(--ink);
}

/* Nav list */
.main-nav { display: flex; align-items: center; }

.nav__list {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav__link {
    display: block;
    padding: 0.5rem 1.125rem;
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(244, 240, 230, 0.75);
    transition: color var(--dur-base) var(--ease-out);
}
.nav__link:hover { color: var(--gold); }

.site-header.scrolled .nav__link { color: var(--ink); }
.site-header.scrolled .nav__link:hover { color: var(--gold); }

/* CTA nav item */
.nav__item--cta .nav__link {
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
    color: var(--ink);
    padding: 0.5rem 1.375rem;
    font-weight: 700;
    margin-left: 0.75rem;
    letter-spacing: 0.05em;
    border: 1px solid #ba931b;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 4px 14px var(--amber-glow);
    transition:
        background var(--dur-base) var(--ease-out),
        box-shadow var(--dur-base) var(--ease-out),
        transform var(--dur-fast) var(--ease-out),
        color var(--dur-base) var(--ease-out);
}
.nav__item--cta .nav__link:hover {
    background: linear-gradient(180deg, var(--gold), #917215);
    border-color: #826613;
    color: var(--ink);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 6px 20px var(--gold-glow);
    transform: translateY(-2px);
}
.site-header.scrolled .nav__item--cta .nav__link {
    color: var(--ink);
}

/* Mobile hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: var(--cream);
    transition:
        transform var(--dur-base) var(--ease-out),
        opacity var(--dur-base) var(--ease-out),
        background-color var(--dur-base) var(--ease-out);
}
.site-header.scrolled .menu-toggle span { background-color: var(--ink); }
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    background-color: var(--ink);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Architectural grid lines */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--gold-rule) 1px, transparent 1px),
        linear-gradient(90deg, var(--gold-rule) 1px, transparent 1px);
    background-size: 96px 96px;
    pointer-events: none;
}

/* Large ghost number */
.hero::after {
    content: '01';
    position: absolute;
    bottom: -0.12em;
    right: -0.04em;
    font-family: var(--font-display);
    font-size: clamp(12rem, 24vw, 30rem);
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201, 162, 39, 0.07);
    pointer-events: none;
    user-select: none;
}

.hero__inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 9rem;
    padding-bottom: clamp(3rem, 6vw, 5rem);
    position: relative;
    z-index: 1;
}

.hero__tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.5rem;
}


.hero__layout {
    display: grid;
    grid-template-columns: 1fr minmax(auto, 360px);
    align-items: flex-end;
    gap: clamp(2rem, 5vw, 5rem);
}

.hero__title {
    font-family: var(--font-display);
    font-size: var(--hero-size);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.045em;
    color: var(--cream);
    margin: 0;
}

.hero__title em {
    font-style: normal;
    color: var(--gold);
}

.hero__right {
    padding-bottom: 0.375rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero__description {
    font-size: var(--text-base);
    line-height: 1.75;
    color: var(--stone);
    margin: 0;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero__rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(201,162,39,0.08) 70%, transparent 100%);
    margin-top: clamp(2.5rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
}

/* ============================================================
   SERVICES SECTION
============================================================ */
.section-services {
    padding: var(--section-py) 0;
    background-color: var(--white);
}

.services-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services-head h2 {
    font-size: clamp(var(--text-3xl), 4vw, 4.25rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--ink);
    line-height: 1.04;
}

.services-head p {
    font-size: var(--text-lg);
    color: var(--stone);
    line-height: 1.65;
    max-width: 46ch;
}

/* Accordion list */
.services-list { list-style: none; }

.service-item {
    border-top: 1px solid var(--border-light);
}
.service-item:last-child {
    border-bottom: 1px solid var(--border-light);
}

.service-item__trigger {
    display: grid;
    grid-template-columns: 3.25rem 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.625rem 0;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.service-item__num {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.service-item__name {
    font-family: var(--font-display);
    font-size: clamp(var(--text-xl), 2.2vw, var(--text-2xl));
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--ink);
    transition: color var(--dur-base) var(--ease-out);
    line-height: 1.2;
}

.service-item__arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--white), rgba(250, 250, 245, 0.4));
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.8), 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        background var(--dur-base) var(--ease-out),
        box-shadow var(--dur-base) var(--ease-out),
        border-color var(--dur-base) var(--ease-out),
        transform var(--dur-base) var(--ease-out);
}
.service-item__arrow svg {
    width: 15px;
    height: 15px;
    stroke: var(--stone);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke var(--dur-base) var(--ease-out);
}

.service-item__trigger:hover .service-item__name { color: var(--gold); }
.service-item__trigger:hover .service-item__arrow {
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
    border-color: var(--gold-dark);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.3), 0 4px 14px var(--amber-glow);
}
.service-item__trigger:hover .service-item__arrow svg { stroke: var(--ink); }

.service-item.is-open .service-item__arrow {
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
    border-color: var(--gold-dark);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.3), 0 4px 14px var(--amber-glow);
    transform: rotate(45deg);
}
.service-item.is-open .service-item__arrow svg { stroke: var(--ink); }
.service-item.is-open .service-item__name { color: var(--gold); }

/* Smooth height expand via grid */
.service-item__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--dur-slow) var(--ease-out);
    overflow: hidden;
}
.service-item.is-open .service-item__body {
    grid-template-rows: 1fr;
}
.service-item__body-inner {
    overflow: hidden;
    padding-left: calc(3.25rem + 1.5rem);
    padding-right: calc(42px + 1.5rem);
}
.service-item__desc {
    font-size: var(--text-base);
    line-height: 1.75;
    color: var(--stone);
    padding-bottom: 2rem;
    margin: 0;
    max-width: 62ch;
}

/* ============================================================
   WHY US / ABOUT SECTION
============================================================ */
.section-why {
    padding: var(--section-py) 0;
    background-color: var(--ink-2);
    position: relative;
    overflow: hidden;
}

/* Gold line at top */
.section-why::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(201,162,39,0.12) 55%, transparent 100%);
}

.why-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: end;
    margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.why-header h2 {
    font-size: clamp(var(--text-3xl), 4vw, 4.25rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--cream);
    line-height: 1.04;
}

.why-header p {
    font-size: var(--text-base);
    color: var(--stone);
    line-height: 1.75;
    max-width: 46ch;
}

/* Principles 2Ã—2 grid */
.why-principles {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.why-item {
    padding: 2.75rem 2rem;
    margin: 0 -2rem; /* allows the padding to expand seamlessly without layout jump */
    border-top: 1px solid var(--ink-3);
    border-radius: 6px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    transition: background var(--dur-base), border-color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base);
}

.why-item:hover {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: transparent;
    box-shadow: inset 0 1px 1px var(--glass-highlight), 0 20px 40px rgba(0,0,0,0.5);
    transform: translateY(-2px);
    z-index: 2;
}

.why-item:nth-child(odd)  { padding-right: 3rem; }
.why-item:nth-child(even) {
    padding-left: 3rem;
    border-left: 1px solid var(--ink-3);
}

.why-item__num {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.1em;
    padding-top: 0.2rem;
}

.why-item__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.why-item__desc {
    font-size: var(--text-sm);
    color: var(--stone);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   CTA SECTION
============================================================ */
.section-cta {
    background-color: var(--gold);
    padding: clamp(4.5rem, 9vw, 8rem) 0;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 17, 9, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 17, 9, 0.07) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.cta-inner h2 {
    font-size: clamp(var(--text-3xl), 4.5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
    line-height: 1.0;
}

.cta-inner p {
    font-size: var(--text-base);
    color: rgba(18, 17, 9, 0.6);
    max-width: 48ch;
    line-height: 1.65;
    margin-top: 1.25rem;
}

.cta-action { flex-shrink: 0; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
    background-color: var(--ink-2);
    padding-top: clamp(4rem, 8vw, 6rem);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--ink-3);
}

.footer__brand {}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    color: var(--cream);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
.footer-logo img { max-height: 34px; width: auto; }
.footer-logo:hover { color: var(--gold); }

.footer__brand > p {
    font-size: var(--text-sm);
    color: var(--stone);
    line-height: 1.7;
    max-width: 30ch;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 0.625rem;
}
.footer__social a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--ink-4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stone);
    transition:
        border-color var(--dur-base) var(--ease-out),
        color var(--dur-base) var(--ease-out);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__social svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.75; }

.footer__title {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer__links a {
    font-size: var(--text-sm);
    color: var(--stone);
    transition: color var(--dur-base) var(--ease-out);
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 0;
    gap: 1rem;
}
.footer__tagline {
    font-size: var(--text-sm);
    color: var(--gold);
    font-style: italic;
    margin: 0;
}
.footer__bottom > p:last-child {
    font-size: var(--text-xs);
    color: var(--stone);
    margin: 0;
}

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--ink);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity var(--dur-base) var(--ease-out),
        transform var(--dur-base) var(--ease-out),
        visibility var(--dur-base) var(--ease-out),
        background-color var(--dur-base) var(--ease-out);
    z-index: 99;
}
.back-to-top:hover { background: var(--gold-dark); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2.5; fill: none; }

/* ============================================================
   SCROLL REVEAL
============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity var(--dur-slow) var(--ease-out),
        transform var(--dur-slow) var(--ease-out);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: 80ms; }
[data-reveal][data-delay="2"] { transition-delay: 160ms; }
[data-reveal][data-delay="3"] { transition-delay: 240ms; }
[data-reveal][data-delay="4"] { transition-delay: 320ms; }
[data-reveal][data-delay="5"] { transition-delay: 400ms; }
[data-reveal][data-delay="6"] { transition-delay: 480ms; }

/* Service item "More" link */
.service-item__more {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-top: 1rem;
    padding-bottom: 2rem;
    transition: gap var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
    text-decoration: none;
}
.service-item__more:hover {
    color: var(--gold-dark);
    gap: 0.625rem;
}
.service-item__more svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--dur-base) var(--ease-out);
}
.service-item__more:hover svg { transform: translateX(3px); }

/* ============================================================
   RESPONSIVE â€” Tablet (â‰¤ 1024px)
============================================================ */
@media (max-width: 1024px) {
    /* Cap hero height on tall portrait tablets to avoid excessive blank space */
    .hero { min-height: min(100svh, 820px); }

    .services-head { grid-template-columns: 1fr; gap: 1.5rem; }
    .why-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .cta-inner { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ============================================================
   RESPONSIVE â€” Mobile (â‰¤ 768px)
============================================================ */
@media (max-width: 768px) {
    /* Show hamburger, hide nav */
    .menu-toggle { display: flex; }

    .main-nav {
        position: fixed;
        inset: 0;
        background-color: var(--ink);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition:
            opacity var(--dur-slow) var(--ease-out),
            visibility var(--dur-slow) var(--ease-out);
        z-index: 100;
    }
    .main-nav.active { opacity: 1; visibility: visible; }

    .nav__list {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }
    .nav__link {
        font-family: var(--font-display);
        font-size: var(--text-2xl);
        font-weight: 700;
        padding: 1rem 2rem;
        color: var(--cream);
        letter-spacing: -0.02em;
    }
    .nav__item--cta .nav__link {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    /* Hero mobile â€” tighten min-height, keep content accessible */
    .hero { min-height: 100svh; }
    .hero__inner { padding-top: 7rem; }
    .hero__layout { grid-template-columns: 1fr; gap: 2rem; }
    .hero__buttons { flex-direction: column; gap: 0.75rem; }
    .hero__buttons .btn { width: 100%; justify-content: center; }

    /* Services mobile */
    .service-item__trigger { grid-template-columns: 2.5rem 1fr auto; gap: 1rem; }
    .service-item__body-inner { padding-left: calc(2.5rem + 1rem); padding-right: 0; }

    /* Why Us mobile */
    .why-principles { grid-template-columns: 1fr; }
    .why-item:nth-child(odd)  { padding-right: 0; }
    .why-item:nth-child(even) { padding-left: 0; border-left: none; }

    /* Footer mobile */
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ============================================================
   RESPONSIVE â€” Small mobile (â‰¤ 480px)
============================================================ */
@media (max-width: 480px) {
    /* Scale hero title down further on very small screens */
    :root { --hero-size: clamp(2rem, 9vw, 2.75rem); }

    /* Tagline: tighten spacing so it fits without clipping */
    .hero__tagline {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }
    .hero__tagline::before { width: 22px; }
}

/* ============================================================
   UTILITY OVERRIDES (keeps Customizer-generated CSS compatible)
============================================================ */
.section { padding: var(--section-py) 0; }
.section--gray { background-color: var(--canvas); }
.section--dark { background-color: var(--ink); }

/* Legacy class compatibility */
.hero__content { position: relative; z-index: 1; }
.cta { background-color: var(--gold); padding: clamp(4.5rem, 9vw, 8rem) 0; }
.cta .container { position: relative; }
.cta h2 {
    font-size: clamp(var(--text-3xl), 4.5vw, 4.5rem);
    letter-spacing: -0.04em;
    color: var(--ink);
}
.cta p { color: rgba(18,17,9,0.6); margin-top: 1rem; }
.cta .btn--white {
    background-color: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}

/* ============================================================
   SERVICES PAGE â€” page-services.php
============================================================ */

/* Page Hero */
.page-hero {
    position: relative;
    background-color: var(--ink);
    overflow: hidden;
    padding-bottom: 0;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--gold-rule) 1px, transparent 1px),
        linear-gradient(90deg, var(--gold-rule) 1px, transparent 1px);
    background-size: 96px 96px;
    pointer-events: none;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    padding-top: clamp(7rem, 14vw, 10rem);
    padding-bottom: clamp(3.5rem, 7vw, 5rem);
}

.page-hero__meta {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 3rem;
}

.page-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    transition: color var(--dur-base) var(--ease-out);
}
.page-hero__back svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.page-hero__back:hover { color: var(--gold); }

.page-hero__divider {
    font-size: var(--text-xs);
    color: var(--ink-4);
}

.page-hero__crumb {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.page-hero__content {
    display: grid;
    grid-template-columns: 1fr minmax(auto, 380px);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: end;
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.95;
    color: var(--cream);
    margin: 0;
}

.page-hero__desc {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--stone);
    margin: 0;
    align-self: end;
}

.page-hero__rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(201,162,39,0.08) 70%, transparent 100%);
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* Services detail list */
.svc-list {
    padding: var(--section-py) 0;
    background-color: var(--white);
}

.svc-row {
    border-top: 1px solid var(--border-light);
    padding: clamp(3rem, 6vw, 5rem) 0;
}
.svc-row:last-child { border-bottom: 1px solid var(--border-light); }

.svc-row__header {
    display: grid;
    grid-template-columns: 3.25rem 1fr auto;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.svc-row__num {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.1em;
    padding-top: 0.15rem;
}

.svc-row__name {
    font-family: var(--font-display);
    font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1.05;
}

.svc-row__rule {
    height: 1px;
    width: clamp(40px, 6vw, 80px);
    background-color: var(--gold);
    flex-shrink: 0;
}

.svc-row__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 6rem);
    padding-left: calc(3.25rem + 1.5rem);
}

.svc-row__lead p {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--stone);
    margin-bottom: 1.5rem;
}
.svc-row__lead p:last-child { margin-bottom: 0; }

.svc-row__outcome {
    font-size: var(--text-base) !important;
    color: var(--ink) !important;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}
.svc-row__outcome strong {
    color: var(--gold);
    font-weight: 700;
}

.svc-row__features-label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 1.25rem;
}

.svc-row__feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svc-row__feature-list li {
    font-size: var(--text-base);
    color: var(--ink);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.4;
}
.svc-row__feature-list li:first-child { border-top: 1px solid var(--border-light); }

.svc-row__feature-list li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--gold);
    flex-shrink: 0;
}

/* Process section */
.svc-process {
    background-color: var(--ink-2);
    padding: var(--section-py) 0;
    position: relative;
}
.svc-process::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(201,162,39,0.12) 55%, transparent 100%);
}

.svc-process__heading {
    font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--cream);
    max-width: 22ch;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
}

.process-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.process-step {
    padding: 2.5rem 2.5rem 2.5rem 0;
    border-left: 1px solid var(--ink-3);
    padding-left: 2rem;
}
.process-step:first-child {
    border-left: none;
    padding-left: 0;
}

.process-step__num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: var(--text-sm);
    color: var(--stone);
    line-height: 1.65;
    margin: 0;
}

/* Services page responsive */
@media (max-width: 1024px) {
    .page-hero__content { grid-template-columns: 1fr; gap: 1.5rem; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 0; }
    .process-step:nth-child(3) { border-left: none; padding-left: 0; }
    .process-step:nth-child(odd) { padding-right: 2rem; }
    .process-step:nth-child(even) { padding-right: 0; }
}

@media (max-width: 768px) {
    .svc-row__header { grid-template-columns: 2.5rem 1fr; }
    .svc-row__rule { display: none; }
    .svc-row__body { grid-template-columns: 1fr; padding-left: 0; gap: 2rem; }
    .process-steps { grid-template-columns: 1fr; }
    .process-step { border-left: none; padding-left: 0; border-top: 1px solid var(--ink-3); padding-top: 2rem; }
    .process-step:first-child { border-top: none; padding-top: 0; }
}
.cta .btn--white:hover { background-color: transparent; color: var(--ink); }

/* ============================================================
   ABOUT PAGE â€” page-about.php
============================================================ */

/* Story â€” editorial two-column */
.about-story-section {
    padding: var(--section-py) 0;
    background-color: var(--white);
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.about-story__heading {
    font-size: clamp(var(--text-3xl), 4vw, 4.25rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--ink);
    line-height: 1.04;
}

.about-story__lead {
    font-size: var(--text-lg);
    color: var(--gold);
    font-style: italic;
    line-height: 1.7;
    margin-top: 1.5rem;
}

.about-story__body p {
    font-size: var(--text-base);
    line-height: 1.75;
    color: var(--stone);
}

/* Values â€” dark section, 3Ã—2 numbered grid */
.about-values-section {
    padding: var(--section-py) 0;
    background-color: var(--ink-2);
    position: relative;
    overflow: hidden;
}

.about-values-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(201,162,39,0.12) 55%, transparent 100%);
}

.about-values__heading {
    font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--cream);
    max-width: 26ch;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
}

.about-values-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.about-value {
    padding: 2.5rem;
    border-top: 1px solid var(--ink-3);
    border-left: 1px solid var(--ink-3);
}

.about-value:nth-child(-n+3) { border-top: none; }
.about-value:nth-child(3n+1) { border-left: none; padding-left: 0; }
.about-value:nth-child(3n)   { padding-right: 0; }

.about-value__num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.about-value__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.625rem;
}

.about-value__desc {
    font-size: var(--text-sm);
    color: var(--stone);
    line-height: 1.65;
    margin: 0;
}

/* Positioning â€” three-column comparison */
.about-positioning-section {
    padding: var(--section-py) 0;
    background-color: var(--white);
}

.about-positioning__heading {
    font-size: clamp(var(--text-3xl), 4vw, 4.25rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--ink);
    line-height: 1.04;
    margin-bottom: 1rem;
}

.about-positioning__lead {
    font-size: var(--text-lg);
    color: var(--stone);
    line-height: 1.7;
    max-width: 52ch;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.positioning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.positioning-card {
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    border-left: none;
}

.positioning-card:first-child {
    border-left: 1px solid var(--border-light);
}

.positioning-card--highlight {
    background-color: var(--ink);
    border-color: var(--ink-3);
    position: relative;
}

.positioning-card--highlight::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background-color: var(--gold);
}

.positioning-card h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--ink);
}

.positioning-card--highlight h3 {
    color: var(--gold);
}

.positioning-card p {
    font-size: var(--text-sm);
    line-height: 1.65;
    color: var(--stone);
    margin: 0;
}

.positioning-card--highlight p {
    color: var(--stone-light);
}

.positioning-card--highlight strong {
    color: var(--cream);
}

/* Audience â€” bordered card grid */
.about-audience-section {
    padding: var(--section-py) 0;
    background-color: var(--canvas);
}

.about-audience__heading {
    font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.about-audience__lead {
    font-size: var(--text-base);
    color: var(--stone);
    line-height: 1.65;
    margin-bottom: clamp(3rem, 6vw, 4rem);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.audience-card {
    padding: 2.25rem;
    border: 1px solid var(--border-light);
    background-color: var(--white);
    transition: border-color var(--dur-base) var(--ease-out);
}

.audience-card:nth-child(even) { border-left: none; }
.audience-card:nth-child(n+3)  { border-top: none; }

.audience-card:hover {
    border-color: var(--gold-rule);
}

.audience-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.audience-card p {
    font-size: var(--text-sm);
    color: var(--stone);
    line-height: 1.6;
    margin: 0;
}

/* About page responsive â€” tablet */
@media (max-width: 1024px) {
    .about-story { grid-template-columns: 1fr; gap: 2rem; }

    .about-values-grid { grid-template-columns: 1fr 1fr; }
    /* Reset desktop border rules, apply 2-col rules */
    .about-value,
    .about-value:nth-child(-n+3),
    .about-value:nth-child(3n+1),
    .about-value:nth-child(3n) {
        border-top: 1px solid var(--ink-3);
        border-left: 1px solid var(--ink-3);
        padding: 2.5rem;
    }
    .about-value:nth-child(-n+2) { border-top: none; }
    .about-value:nth-child(2n+1) { border-left: none; padding-left: 0; }
    .about-value:nth-child(2n)   { padding-right: 0; }
}

/* About page responsive â€” mobile */
@media (max-width: 768px) {
    .about-values-grid { grid-template-columns: 1fr; }
    .about-value,
    .about-value:nth-child(-n+2),
    .about-value:nth-child(2n+1),
    .about-value:nth-child(2n) {
        border-top: 1px solid var(--ink-3);
        border-left: none;
        padding: 2.5rem 0;
    }
    .about-value:first-child { border-top: none; }

    .positioning-grid { grid-template-columns: 1fr; }
    .positioning-card {
        border-left: 1px solid var(--border-light);
        border-top: none;
    }
    .positioning-card:first-child { border-top: 1px solid var(--border-light); }
    .positioning-card--highlight { border-color: var(--ink-3); }

    .audience-grid { grid-template-columns: 1fr; }
    .audience-card,
    .audience-card:nth-child(even),
    .audience-card:nth-child(n+3) {
        border: 1px solid var(--border-light);
        border-top: none;
    }
    .audience-card:first-child { border-top: 1px solid var(--border-light); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background-color: var(--canvas);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: start;
}

/* Form column */
.contact-form-heading {
    font-size: clamp(var(--text-xl), 2.5vw, var(--text-3xl));
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.25rem;
}

.form-row--2 {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.01em;
}

.form-required {
    color: var(--gold);
    margin-left: 2px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--ink);
    transition: border-color 200ms, box-shadow 200ms;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237D7563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 16px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--stone);
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.btn--full {
    width: 100%;
    justify-content: center;
    gap: 0.625rem;
}

/* Error state */
.contact-form-error {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.25rem;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 4px;
    color: #991b1b;
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.contact-form-error svg {
    stroke: #991b1b;
    flex-shrink: 0;
}

/* Success state */
.contact-success {
    padding: 3rem 2.5rem;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-align: center;
}

.contact-success__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-success__icon svg {
    stroke: var(--white);
    width: 26px;
    height: 26px;
}

.contact-success h2 {
    font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.contact-success p {
    font-size: var(--text-base);
    color: var(--stone);
    margin-bottom: 2rem;
}

/* Info sidebar */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: calc(var(--header-h) + 2rem);
}

.contact-info-block {
    padding: 2rem;
    border-radius: 6px;
    background-color: var(--white);
    border: 1px solid var(--border-light);
}

.contact-info-block--dark {
    background-color: var(--ink-2);
    border-color: var(--ink-3);
}

.contact-info-block__heading {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 1.25rem;
}

.contact-info-block--dark .contact-info-block__heading {
    color: var(--stone);
}

/* Contact detail list */
.contact-detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-detail-item:first-child {
    padding-top: 0;
}

.contact-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-detail-item__label {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
}

.contact-detail-item__value {
    font-size: var(--text-base);
    color: var(--ink);
    font-weight: 500;
    text-decoration: none;
    transition: color 180ms;
}

.contact-detail-item__value:hover {
    color: var(--gold);
}

/* What happens next */
.contact-next-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.5rem;
}

.contact-next-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--ink-3);
    font-size: var(--text-sm);
    color: var(--cream);
    line-height: 1.5;
}

.contact-next-steps li:first-child {
    padding-top: 0;
}

.contact-next-steps li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-next-steps__num {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    flex-shrink: 0;
    padding-top: 2px;
}

.contact-response-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-xs);
    color: var(--stone);
}

.contact-response-time svg {
    stroke: var(--stone);
    flex-shrink: 0;
}

/* Booking page extras */
.booking-expect-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.booking-expect-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.booking-expect-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.booking-expect-item__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--gold-subtle);
    border: 1px solid var(--gold-rule);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-expect-item__icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
}

.booking-expect-item strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.2rem;
}

.booking-expect-item p {
    font-size: var(--text-sm);
    color: var(--stone);
    line-height: 1.5;
    margin: 0;
}

.booking-email-link {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: color var(--dur-base) var(--ease-out);
}

.booking-email-link:hover { color: var(--gold-dark); }

/* Contact responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-info-col {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .form-row--2 {
        grid-template-columns: 1fr;
    }
    .contact-info-col {
        grid-template-columns: 1fr;
    }
}
/* =========================================================================
   12. Products Page UI (GroundControl Glassmorphism)
   ========================================================================= */

.platform-card {
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--ink-3);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.platform-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    margin: 0;
}

.platform-badge {
    background: rgba(255,255,255,0.05);
    color: var(--cream);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.platform-badge--available { color: #81c784; border-color: rgba(129, 199, 132, 0.2); }
.platform-badge--coming_soon { color: var(--gold); border-color: rgba(201, 162, 39, 0.2); }

.platform-summary {
    color: var(--cream);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.product-vision-box {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3.5rem;
    border-left: 4px solid var(--gold);
    box-shadow: inset 0 1px 1px var(--glass-highlight), 0 20px 40px rgba(0,0,0,0.3);
}

.product-vision-box h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin: 0 0 0.75rem 0;
}

.product-vision-box p {
    color: var(--stone-light);
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.platform-cta {
    margin-bottom: 4rem;
}

.components-header {
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}
.components-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.component-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem !important; /* Override why-item base */
    transition: transform var(--dur-base), box-shadow var(--dur-base), border-color var(--dur-base);
}

.component-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 1px var(--glass-highlight);
}

.component-card__type {
    display: inline-block;
    padding: 4px 10px !important;
    background: rgba(201,162,39,0.1) !important;
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 4px;
    margin-bottom: 1.5rem !important;
    font-size: 0.8rem !important;
    font-weight: 600;
    color: var(--gold) !important;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

.component-card__title {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
}

.component-card__desc {
    color: var(--stone);
    margin-bottom: 2rem !important;
    line-height: 1.6;
}

.component-card__list-group {
    margin-bottom: 1.5rem;
}
.component-card__list-group:last-child {
    margin-bottom: 0;
}

.component-card__list-group h5 {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.component-card__list-group ul {
    color: var(--stone-light);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.25rem;
    margin: 0;
}
.component-card__list-group ul li {
    margin-bottom: 0.5rem;
}
.component-card__list-group ul li::marker {
    color: var(--gold);
}
/* =========================================================================
   13. Products Page UI High-Contrast (Light Mode Overrides)
   ========================================================================= */

/* Light theme inversions (for elements within a .svc-list white section) */
.section-products.svc-list .platform-title {
    color: var(--ink);
}

.section-products.svc-list .platform-badge {
    background: rgba(0,0,0,0.05);
    color: var(--ink);
    border-color: rgba(0,0,0,0.1);
}

.section-products.svc-list .platform-badge--available { 
    color: #388e3c; 
    border-color: rgba(56, 142, 60, 0.2); 
}
.section-products.svc-list .platform-badge--coming_soon { 
    color: var(--gold-dark); 
    border-color: rgba(201, 162, 39, 0.3); 
}

.section-products.svc-list .platform-summary {
    color: var(--ink-2);
}

.section-products.svc-list .product-vision-box {
    background: rgba(0, 0, 0, 0.02);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.05);
    border-left: 4px solid var(--gold);
}

.section-products.svc-list .product-vision-box h4 {
    color: var(--ink);
}

.section-products.svc-list .product-vision-box p {
    color: var(--ink-2);
}

.section-products.svc-list .components-header {
    color: var(--ink);
}
.section-products.svc-list .components-header::after {
    background: var(--gold);
}

.section-products.svc-list .component-card__type {
    background: rgba(0,0,0,0.04) !important;
    color: var(--ink-4) !important;
    border: 1px solid rgba(0,0,0,0.1);
}

.section-products.svc-list .component-card__desc {
    color: var(--ink-3);
}

.section-products.svc-list .component-card__list-group ul {
    color: var(--ink-3);
}

.section-products.svc-list .platform-card {
    border-bottom: 1px solid var(--border-light);
}
.section-products.svc-list .component-card__title {
    color: var(--ink) !important;
}
/* =========================================================================
   14. Products Page UI Components Grid (Native, Non-Conflicting)
   ========================================================================= */
.section-products-components {
    padding: var(--section-py) 0;
}
.component-grid-native {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 900px) {
    .component-grid-native {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   PLUGIN OVERRIDES — Fluent Forms & Fluent Booking
   ============================================================ */

/* Fluent Forms Button Styling */
.fluentform .ff-btn-submit {
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark)) !important;
    color: var(--ink) !important;
    border: 1px solid #ba931b !important;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 4px 14px var(--amber-glow) !important;
    transition: all var(--dur-base) var(--ease-out) !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    padding: 0.875rem 2rem !important;
    height: auto !important;
}

.fluentform .ff-btn-submit:hover {
    background: linear-gradient(180deg, var(--gold), #917215) !important;
    border-color: #826613 !important;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 6px 20px var(--gold-glow) !important;
    transform: translateY(-2px) !important;
}

/* Fluent Booking Calendar Accents */
:root {
    --fcal_primary_color: var(--gold) !important;
}

/* Force booking buttons to match theme */
.fcal_booking_btn, 
.fluent_booking_app .btn-primary {
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark)) !important;
    color: var(--ink) !important;
    border-color: #ba931b !important;
}
