*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --forest: #121F1A;
    --forest-light: #1E352B;
    --gold: #D8B15F;
    --gold-dim: #B89244;
    --black: #0C0C0C;
    --off-white: #F7F4EE;
    --warm-gray: #EBE7DF;
    --mid-gray: #7C7870;
    --rule: 1px solid rgba(18, 31, 26, 0.12);
    --rule-inv: 1px solid rgba(255, 255, 255, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--forest);
    overflow-x: hidden;
    cursor: default;
}

/* ── TYPOGRAPHY ── */
.display {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.02em;
    line-height: 0.92;
}

.serif {
    font-family: 'DM Serif Display', serif;
}

.serif-italic {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
}

.label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    border-bottom: var(--rule-inv);
    background: rgba(18, 31, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.06em;
    color: #fff;
    text-decoration: none;
}

.nav-logo-mark {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: var(--gold);
    color: var(--forest);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
}

.nav-logo-img {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--gold);
}

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

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

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

.nav-cta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
    background: var(--gold);
    padding: 9px 22px;
    text-decoration: none;
    transition: background 0.2s, opacity 0.2s;
}

.nav-cta:hover {
    background: var(--gold-dim);
    color: #fff;
}

/* ── HERO ── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: var(--forest);
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero_office.png');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.45;
}

/* Gritty grain overlay */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.4;
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 56px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.hero-eyebrow .label {
    color: rgba(255, 255, 255, 0.6);
}

.hero-title {
    font-size: clamp(52px, 8vw, 118px);
    color: #fff;
    max-width: 950px;
    margin-bottom: 0;
}

.hero-title .accent {
    color: var(--gold);
}

/* Offset second line */
.hero-line2 {
    padding-left: clamp(30px, 5vw, 80px);
}

.hero-bottom-bar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    border-top: var(--rule-inv);
}

.hbb-cell {
    padding: 28px 36px;
    border-right: var(--rule-inv);
}

.hbb-cell:last-child {
    border-right: none;
}

.hbb-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.hbb-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-weight: 300;
}

.hbb-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 36px;
}

.scroll-ring {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background-color 0.2s;
    cursor: pointer;
}

.scroll-ring:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.scroll-ring svg {
    color: rgba(255, 255, 255, 0.7);
}

/* ── TICKER ── */
.ticker-wrap {
    background: var(--gold);
    overflow: hidden;
    border-top: 2px solid var(--forest);
    border-bottom: 2px solid var(--forest);
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
}

.ticker-track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    letter-spacing: 0.12em;
    color: var(--forest);
    padding: 10px 32px;
}

.ticker-sep {
    color: rgba(18, 31, 26, 0.3) !important;
    padding: 10px 4px !important;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ── ABOUT ── */
#about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.about-left {
    background: var(--forest);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.about-left-img {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    transition: transform 0.1s ease-out;
}

.about-left-content {
    position: relative;
    z-index: 1;
}

.about-left-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 220px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    bottom: -20px;
    right: -10px;
    pointer-events: none;
}

.about-right {
    background: var(--off-white);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.section-label-line {
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.about-heading {
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 0.95;
    margin-bottom: 28px;
}

.about-body {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: #5A625E;
    margin-bottom: 48px;
    max-width: 480px;
}

/* Stats as a ruled list */
.stats-list {
    border-top: var(--rule);
}

.stat-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: var(--rule);
}

.stat-key {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mid-gray);
}

.stat-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 0.04em;
    color: var(--forest);
}

.stat-val.accent {
    color: var(--gold-dim);
}

/* ── SERVICES ── */
#services {
    background: var(--warm-gray);
    padding: 100px 48px;
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
    border-bottom: var(--rule);
    padding-bottom: 32px;
}

.services-heading {
    font-size: clamp(42px, 5.5vw, 80px);
    max-width: 600px;
}

.services-subtext {
    font-size: 13px;
    font-weight: 300;
    color: var(--mid-gray);
    max-width: 280px;
    line-height: 1.6;
    text-align: right;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: var(--rule);
    background: var(--warm-gray);
}

.service-card {
    border-right: var(--rule);
    border-bottom: var(--rule);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    background: transparent;
    transition: background 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Fix borders for 3 column grid */
.services-grid .service-card:nth-child(3n) {
    border-right: none;
}

.services-grid .service-card:nth-child(n+4) {
    border-bottom: none;
}

.service-card:hover {
    background: var(--forest);
}

.service-card:hover .service-number,
.service-card:hover .service-name,
.service-card:hover .service-desc {
    color: #fff;
}

.service-card:hover .service-name {
    color: var(--gold);
}

.service-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--mid-gray);
    margin-bottom: 48px;
    display: block;
    transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 24px;
    filter: grayscale(100%);
    transition: filter 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

.service-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 0.04em;
    color: var(--forest);
    margin-bottom: 10px;
    transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--mid-gray);
    line-height: 1.6;
    transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── STRATEGY / PROCESS ── */
#process {
    display: grid;
    grid-template-columns: 55% 45%;
}

.strategy-left {
    background: var(--off-white);
    padding: 100px 64px;
}

.strategy-heading {
    font-size: clamp(48px, 5vw, 80px);
    margin: 32px 0 64px;
    max-width: 500px;
}

.strategy-item {
    border-top: var(--rule);
    padding: 32px 0;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
}

.strategy-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--gold-dim);
    padding-top: 2px;
}

.strategy-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.strategy-desc {
    font-size: 14px;
    font-weight: 300;
    color: #5A625E;
    line-height: 1.65;
}

.strategy-right {
    position: relative;
    background: var(--forest);
    overflow: hidden;
}

.strategy-img-stack {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
}

.strategy-img-stack img {
    flex: 1;
    width: 100%;
    object-fit: cover;
    min-height: 0;
    display: block;
}

.strategy-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(247, 244, 238, 0.15) 0%, transparent 40%);
}

/* big rotated text on right */
.strategy-vert-label {
    position: absolute;
    bottom: 40px;
    right: -60px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 90px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.04);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    pointer-events: none;
    user-select: none;
}

/* ── DIFFERENTIATION ── */
#different {
    background: var(--forest);
    padding: 100px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.diff-image-block {
    position: relative;
}

.diff-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.diff-img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--gold);
    padding: 12px 20px;
}

.diff-img-label span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.15em;
    color: var(--forest);
}

.diff-content {}

.diff-heading {
    font-size: clamp(42px, 4.5vw, 72px);
    color: #fff;
    margin: 24px 0 48px;
}

.diff-list {
    list-style: none;
}

.diff-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    padding: 24px 0;
    border-top: var(--rule-inv);
    align-items: start;
}

.diff-check {
    width: 22px;
    height: 22px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.diff-check svg {
    width: 11px;
    height: 11px;
    color: var(--gold);
}

.diff-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.diff-item-desc {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* ── FAQ ── */
#faq {
    background: var(--off-white);
    padding: 100px 48px;
}

details {
    border-bottom: var(--rule);
}

details summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 24px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--forest);
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    color: var(--mid-gray);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), color 0.5s ease;
    display: inline-block;
    transform-origin: center;
}

details[open] summary::after {
    transform: rotate(45deg);
    color: var(--gold-dim);
}

/* Smooth height transition */
details .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

details[open] .faq-content {
    grid-template-rows: 1fr;
}

details .faq-content-inner {
    overflow: hidden;
}

details p {
    padding-bottom: 24px;
    color: #5A625E;
    font-size: 14px;
    line-height: 1.65;
}

/* ── CONTACT ── */
#contact {
    background: var(--off-white);
    padding: 120px 48px;
}

.contact-inner {
    max-width: 980px;
    margin: 0 auto;
    border: var(--rule);
    padding: 80px;
    position: relative;
    overflow: hidden;
    background: var(--off-white);
}

/* Corner marks */
.corner {
    position: absolute;
    width: 20px;
    height: 20px;
}

.corner-tl {
    top: -1px;
    left: -1px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

.corner-tr {
    top: -1px;
    right: -1px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

.corner-bl {
    bottom: -1px;
    left: -1px;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

.corner-br {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

.contact-overline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-overline-bar {
    width: 32px;
    height: 2px;
    background: var(--gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-heading {
    font-size: clamp(42px, 5.5vw, 80px);
    line-height: 0.95;
    margin-bottom: 24px;
    color: var(--forest);
}

.contact-sub {
    font-size: 15px;
    font-weight: 300;
    color: #5A625E;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hours-box {
    border-left: 2px solid var(--gold);
    padding-left: 16px;
    margin: 24px 0;
}

.hours-box strong {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mid-gray);
    margin-bottom: 4px;
}

.hours-box span {
    font-size: 14px;
    font-weight: 500;
    color: var(--forest);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mid-gray);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: var(--rule);
    background: rgba(255, 255, 255, 0.5);
    font-family: inherit;
    font-size: 14px;
    color: var(--forest);
    outline: none;
    transition: border-color 0.2s, background-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    background: #fff;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%237C7870' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
}

.form-note {
    font-size: 12px;
    color: var(--gold-dim);
    margin-top: 8px;
    line-height: 1.5;
}

.btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--forest);
    border: none;
    padding: 16px 36px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, opacity 0.2s;
}

.btn-primary:hover {
    background: var(--gold-dim);
    color: #fff;
}

.btn-outline {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: transparent;
    color: var(--forest);
    border: 1px solid var(--forest);
    padding: 14px 32px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
    background: var(--forest);
    color: #fff;
}

.contact-bg-text {
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 180px;
    line-height: 1;
    color: rgba(18, 31, 26, 0.02);
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* ── FOOTER ── */
footer {
    background: var(--forest);
    border-top: 2px solid var(--gold);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 0;
    border-bottom: var(--rule-inv);
}

.footer-cell {
    padding: 56px 48px;
    border-right: var(--rule-inv);
}

.footer-cell:last-child {
    border-right: none;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.06em;
    color: #fff;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-tagline {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 300px;
}

.footer-col-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.05em;
}

.footer-polygon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.polygon-dot {
    width: 6px;
    height: 6px;
    background: #52C41A;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(82, 196, 26, 0.6);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(82, 196, 26, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(82, 196, 26, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(82, 196, 26, 0);
    }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeUp 0.7s ease both;
}

.hero-eyebrow {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.25s;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Liquid Reveal */
.reveal-liquid {
    opacity: 0;
    transform: scale(0.96) translateY(20px);
    filter: blur(12px);
    transition: opacity 1.2s cubic-bezier(0.1, 0.7, 0.1, 1),
                transform 1.2s cubic-bezier(0.1, 0.7, 0.1, 1),
                filter 1.2s cubic-bezier(0.1, 0.7, 0.1, 1);
}

.reveal-liquid.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
}

/* Staggered delays for Services grid */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.35s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.45s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.55s; }

/* ── PRELOADER ── */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--forest);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.preloader-logo-img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(216, 177, 95, 0.2);
    border: 2px solid var(--gold);
    animation: preloaderLogoPulse 2s infinite ease-in-out;
}

@keyframes preloaderLogoPulse {
    0% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.05); opacity: 1; box-shadow: 0 0 30px rgba(216, 177, 95, 0.4); }
    100% { transform: scale(1); opacity: 0.85; }
}

.preloader-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: #fff;
    letter-spacing: 0.1em;
}

.preloader-logo span {
    color: var(--gold);
}

.preloader-bar-wrap {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.preloader-bar {
    width: 0%;
    height: 100%;
    background: var(--gold);
    position: absolute;
    top: 0;
    left: 0;
    animation: load 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes load {
    to { width: 100%; }
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav {
        padding: 0 20px;
    }

    nav .nav-links {
        display: none;
    }

    #about {
        grid-template-columns: 1fr;
    }

    .about-left {
        min-height: 320px;
        padding: 60px 32px;
    }

    .about-right {
        padding: 60px 32px;
    }

    #services {
        padding: 60px 20px;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 40px;
    }

    .services-subtext {
        text-align: left;
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid .service-card {
        border-right: none;
        border-bottom: var(--rule);
        padding: 36px 24px;
    }

    .services-grid .service-card:last-child {
        border-bottom: none;
    }

    #process {
        grid-template-columns: 1fr;
    }

    .strategy-left {
        padding: 60px 32px;
    }

    .strategy-right {
        height: 400px;
    }

    #different {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 32px;
    }

    #faq {
        padding: 60px 32px;
    }

    #contact {
        padding: 60px 20px;
    }

    .contact-inner {
        padding: 40px 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-cell {
        padding: 36px 24px;
        border-right: none;
        border-bottom: var(--rule-inv);
    }

    .footer-cell:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding: 20px 24px;
    }

    /* Responsive Hero Bottom Bar */
    .hero-bottom-bar {
        grid-template-columns: 1fr;
    }

    .hbb-cell {
        border-right: none;
        border-bottom: var(--rule-inv);
        padding: 20px 24px;
    }

    .hbb-cell:last-child {
        border-bottom: none;
    }
}
