/* ============================================
   RIDGEWAY.CLOUD — STYLES
   Grounded · Clear · Confident
   ============================================ */

:root {
    --cream:        #f4f1eb;
    --cream-deep:   #e8e3d8;
    --bone:         #faf8f3;
    --ink:          #1a1917;
    --ink-soft:     #5a5850;
    --forest:       #2a3d28;
    --forest-deep:  #1e2c1c;
    --sage:         #4a6347;
    --amber:        #b8892e;
    --amber-soft:   rgba(184, 137, 46, 0.14);
    --slate:        #3d4a5c;
    --rule:         #d4cfc4;
    --accent:       #1a3a1a;

    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body:    'DM Sans', -apple-system, system-ui, sans-serif;

    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
    --shadow-soft: 0 20px 48px rgba(26, 25, 23, 0.10);
    --shadow-lift: 0 24px 56px rgba(26, 25, 23, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--cream);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* Subtle paper-grain overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--forest); color: var(--cream); }

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Skip link */
.skip-link {
    position: fixed;
    top: -100px;
    left: 1rem;
    z-index: 1200;
    background: var(--forest);
    color: var(--cream);
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: top 0.25s ease;
}
.skip-link:focus { top: 1rem; }

/* Reveal-on-scroll utility */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* Ridge-line divider — a nod to Ridgeway's namesake contours */
.ridge-divider {
    display: flex;
    justify-content: center;
    padding: 0.25rem 0 1.75rem;
}
.ridge-divider svg { display: block; }
.ridge-divider--dark { color: rgba(244, 241, 235, 0.35); }
.ridge-divider--light { color: var(--rule); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 4vw;
    background-color: rgba(244, 241, 235, 0.9);
    backdrop-filter: blur(10px) saturate(1.1);
    -webkit-backdrop-filter: blur(10px) saturate(1.1);
    border-bottom: 1px solid transparent;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar.is-scrolled {
    border-bottom-color: var(--rule);
    box-shadow: 0 8px 24px rgba(26, 25, 23, 0.06);
    padding: 0.85rem 4vw;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-mark {
    height: 44px;
    width: 44px;
    padding: 0;
    background: var(--forest);
    color: var(--cream);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: 0;
    border-radius: 6px;
    transition: transform 0.3s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.05); }

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-line-1 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}
.logo-line-2 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--ink-soft);
    margin-top: 3px;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    position: relative;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 0.2s ease;
    letter-spacing: 0.02em;
    padding-bottom: 2px;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; right: 100%;
    bottom: -2px;
    height: 1.5px;
    background: var(--amber);
    transition: right 0.3s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { right: 0; }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--forest);
    color: var(--cream);
    border: none;
    padding: 0.65rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
}
.nav-cta:hover {
    background: var(--ink);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.nav-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--rule);
    border-radius: 6px;
}
.nav-menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-menu-toggle.open span:nth-child(2) { opacity: 0; }
.nav-menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--bone);
    z-index: 99;
    padding: 6rem 2rem 2.5rem;
    flex-direction: column;
    gap: 1.75rem;
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow-lift);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--ink);
    border-bottom: 1px solid var(--rule);
    padding-bottom: 1rem;
}
.mobile-menu .nav-cta { align-self: flex-start; }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 88vh;
    min-height: 560px;
    max-height: 860px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 62%;
    transform: scale(1.08);
    animation: heroZoom 22s ease-out forwards;
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        190deg,
        rgba(20, 24, 18, 0.15) 0%,
        rgba(20, 24, 18, 0.35) 45%,
        rgba(16, 20, 14, 0.82) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 6vw 5.5rem;
    max-width: 800px;
    animation: heroRise 1s var(--ease) 0.2s both;
}

@keyframes heroRise {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(244, 241, 235, 0.8);
    margin-bottom: 1.4rem;
    font-weight: 500;
}
.hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--amber);
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6.4vw, 5.6rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 1.4rem;
}
.hero-content h1 em {
    font-style: italic;
    color: #d9b872;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(244, 241, 235, 0.82);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.25rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--cream);
    color: var(--ink);
    padding: 0.95rem 1.9rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}
.hero-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--cream);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(244, 241, 235, 0.4);
    padding-bottom: 3px;
    transition: border-color 0.25s ease, gap 0.25s ease;
}
.hero-btn-secondary:hover { border-color: var(--cream); gap: 0.8rem; }

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
}
.hero-chip {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    color: rgba(244, 241, 235, 0.75);
    font-weight: 400;
    letter-spacing: 0.01em;
}
.hero-chip svg { color: var(--amber); flex-shrink: 0; }

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(244, 241, 235, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.scroll-cue svg { animation: scrollBob 2.2s ease-in-out infinite; }
@keyframes scrollBob {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(7px); opacity: 1; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--bone);
    border-bottom: 1px solid var(--rule);
    padding: 1.6rem 4vw;
}
.trust-bar-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
    font-weight: 500;
}
.trust-item svg { color: var(--sage); flex-shrink: 0; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 7rem 4vw 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    text-align: center;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    text-align: center;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 4rem;
    max-width: 680px;
}
.section-title em {
    font-style: italic;
    color: var(--sage);
}

.product-grid {
    width: 100%;
    max-width: 1080px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* ============================================
   SERVICE CARD
   ============================================ */
.product-card {
    background: var(--bone);
    border: 1px solid var(--rule);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s ease;
}
.product-card:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-10px) scale(1.015);
    border-color: var(--forest);
}

.product-image-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(150deg, var(--forest) 0%, var(--forest-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><path d='M-20 60 Q60 20 120 60 T260 60' stroke='%23f4f1eb' stroke-width='1' fill='none' opacity='0.5'/><path d='M-20 120 Q60 80 120 120 T260 120' stroke='%23f4f1eb' stroke-width='1' fill='none' opacity='0.35'/><path d='M-20 180 Q60 140 120 180 T260 180' stroke='%23f4f1eb' stroke-width='1' fill='none' opacity='0.2'/></svg>");
    opacity: 0.5;
}

.product-index {
    position: absolute;
    top: 14px;
    left: 16px;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: rgba(244, 241, 235, 0.5);
    letter-spacing: 0.05em;
}

/* Service icon illustration */
.service-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(244, 241, 235, 0.8);
    position: relative;
    z-index: 1;
    transition: transform 0.4s var(--ease);
}
.product-card:hover .service-illustration { transform: scale(1.08); }
.service-illustration svg {
    width: 116px;
    height: 116px;
}

.product-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.product-price {
    background: var(--amber-soft);
    color: var(--amber);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-desc {
    color: var(--ink-soft);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.75;
    flex-grow: 1;
}

.add-to-cart {
    background: var(--forest);
    color: var(--cream);
    border: none;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 0.65rem;
}
.add-to-cart:hover {
    background: var(--ink);
    transform: translateY(-1px);
}

/* Detail toggle */
.detail-toggle {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--rule);
    padding: 0.85rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.detail-toggle:hover { border-color: var(--ink); background: var(--cream); }
.detail-toggle svg { transition: transform 0.3s ease; }
.detail-toggle.open svg { transform: rotate(180deg); }

.product-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease), margin-top 0.4s ease;
}
.product-detail.open {
    max-height: 1000px;
    margin-top: 1rem;
}

.detail-inner {
    padding: 1.25rem;
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.7;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.product-detail.open .detail-inner {
    opacity: 1;
    transform: translateY(0);
}
.detail-inner h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.65rem;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: 6rem 4vw 7rem;
    background: var(--cream-deep);
}
.process-inner {
    max-width: 1080px;
    margin: 0 auto;
}
.process-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    counter-reset: step;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 27px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--sage) 0 8px, transparent 8px 16px);
    opacity: 0.5;
}
.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.process-step-num {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--cream);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    box-shadow: 0 0 0 6px var(--cream-deep);
    transition: background 0.3s ease, transform 0.3s ease;
}
.process-step:hover .process-step-num {
    background: var(--amber);
    transform: scale(1.06);
}
.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
}
.process-step p {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
    position: relative;
    background: var(--forest);
    padding: 6.5rem 4vw;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><path d='M-40 80 Q60 20 160 80 T360 80 T560 80' stroke='%23f4f1eb' stroke-width='1' fill='none' opacity='0.06'/><path d='M-40 160 Q60 100 160 160 T360 160 T560 160' stroke='%23f4f1eb' stroke-width='1' fill='none' opacity='0.05'/><path d='M-40 240 Q60 180 160 240 T360 240 T560 240' stroke='%23f4f1eb' stroke-width='1' fill='none' opacity='0.04'/><path d='M-40 320 Q60 260 160 320 T360 320 T560 320' stroke='%23f4f1eb' stroke-width='1' fill='none' opacity='0.03'/></svg>");
    pointer-events: none;
}

.why-inner {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
}

.why-section .page-eyebrow {
    color: rgba(244, 241, 235, 0.5);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 0;
}

.why-card {
    padding: 2rem;
    border: 1px solid rgba(244, 241, 235, 0.12);
    border-radius: 10px;
    color: var(--cream);
    background: rgba(244, 241, 235, 0.04);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}
.why-card:hover {
    background: rgba(244, 241, 235, 0.07);
    border-color: rgba(184, 137, 46, 0.4);
    transform: translateY(-6px);
}

.why-icon {
    width: 48px;
    height: 48px;
    background: rgba(244, 241, 235, 0.08);
    border-radius: 8px;
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
    color: var(--amber);
    transition: background 0.3s ease;
}
.why-card:hover .why-icon { background: var(--amber-soft); }

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--cream);
}

.why-card p {
    font-size: 0.9rem;
    color: rgba(244, 241, 235, 0.65);
    line-height: 1.75;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 7rem 4vw 6rem;
    display: flex;
    justify-content: center;
}

.contact-inner {
    max-width: 640px;
    text-align: center;
}

.contact-sub {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    margin-top: -2rem;
}

.contact-btn-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--forest);
    color: var(--cream);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.contact-btn:hover {
    background: var(--ink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.contact-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--ink-soft);
}
.contact-location svg { color: var(--sage); }

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bone);
    border-top: 1px solid var(--rule);
}
.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 3.5rem 4vw 2.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.footer-brand .logo-mark { height: 36px; width: 36px; font-size: 1.3rem; }
.footer-brand-text { line-height: 1.3; }
.footer-brand-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--ink);
}
.footer-brand-text span {
    font-size: 0.78rem;
    color: var(--ink-soft);
}
.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.35rem;
}
.footer-col a,
.footer-col span {
    font-size: 0.85rem;
    color: var(--ink-soft);
    transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
    border-top: 1px solid var(--rule);
    padding: 1.5rem 4vw;
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.8rem;
}

/* ============================================
   DRAWER (re-used for service detail)
   ============================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 25, 23, 0.5);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background: var(--cream);
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(26, 25, 23, 0.15);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
    padding: 1.75rem;
    border-bottom: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
}

.cart-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--ink);
    transition: transform 0.2s ease;
}
.cart-close:hover { transform: rotate(90deg); }

.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 2rem 1.75rem;
}

.drawer-service-icon {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(150deg, var(--forest) 0%, var(--forest-deep) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(244,241,235,0.3);
    margin-bottom: 2rem;
}

.drawer-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.5rem;
}

.drawer-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.drawer-desc {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.drawer-includes h4 {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
}

.drawer-includes ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.drawer-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.drawer-includes li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
    margin-top: 0.45rem;
}

.cart-footer {
    padding: 1.75rem;
    border-top: 1px solid var(--rule);
    background: var(--bone);
}

.checkout-btn {
    display: block;
    width: 100%;
    background: var(--forest);
    color: var(--cream);
    border: none;
    padding: 1.05rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}
.checkout-btn:hover {
    background: var(--ink);
    transform: translateY(-1px);
}

/* ============================================
   CONTACT DRAWER — DIRECT INFO + ENQUIRY FORM
   ============================================ */
.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.25rem;
}

.contact-direct-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.15rem 1.25rem;
    background: var(--bone);
    border: 1.5px solid var(--rule);
    border-radius: 8px;
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--ink);
    transition: all 0.25s ease;
}
.contact-direct-link:hover {
    border-color: var(--forest);
    background: var(--cream-deep);
}
.contact-direct-link svg {
    flex-shrink: 0;
    color: var(--sage);
}

.contact-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rule);
}
.contact-divider span { padding: 0 0.85rem; }

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.enquiry-field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.enquiry-field span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sage);
}
.enquiry-field span em {
    font-style: normal;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--ink-soft);
}

.enquiry-field input,
.enquiry-field textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    background: var(--bone);
    border: 1.5px solid var(--rule);
    border-radius: 8px;
    padding: 1rem 1.15rem;
    line-height: 1.4;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.enquiry-field textarea {
    min-height: 140px;
}
.enquiry-field input::placeholder,
.enquiry-field textarea::placeholder {
    color: var(--ink-soft);
    opacity: 0.55;
}
.enquiry-field input:hover,
.enquiry-field textarea:hover {
    border-color: #c3bcae;
}
.enquiry-field input:focus,
.enquiry-field textarea:focus {
    outline: none;
    background: var(--cream);
    border-color: var(--forest);
    box-shadow: 0 0 0 4px rgba(42, 61, 40, 0.1);
}

.enquiry-status {
    font-size: 0.9rem;
    line-height: 1.6;
    min-height: 1.2em;
}
.enquiry-status.success { color: var(--sage); }
.enquiry-status.error { color: #a33d2b; }

#enquiry-submit {
    margin-top: 0.25rem;
}
#enquiry-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 860px) {
    .process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
    .process-steps::before { display: none; }
}

@media (max-width: 640px) {
    .navbar { padding: 1rem 4vw; }
    .nav-links { display: none; }
    .nav-menu-toggle { display: flex; }
    .mobile-menu { display: flex; }
    .logo-line-1 { font-size: 1.15rem; }
    .logo-line-2 { display: none; }
    .hero { height: 78vh; min-height: 480px; }
    .hero-content h1 { font-size: 2.4rem; }
    .hero-chips { gap: 1rem 1.5rem; }
    .services-section { padding: 4.5rem 4vw; }
    .product-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; }
    .footer-links { gap: 2rem; }
}
