
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

:root {
    --brand: #044645;
    /* EliteBook green */
    --accent: rgb(172, 155, 113);
    /* EliteBook gold */
    --ink: #0b1220;
    /* Primary text */
    --muted: #5b6270;
    /* Secondary text */
    --bg: #f7f8fb;
    /* Page background */
    --card: #ffffff;
    /* Card background */
    --shadow: 0 10px 30px rgba(3, 16, 29, 0.08);
    --radius: 24px;
    --container: 1200px;
    --speed: 600ms;
    color: var(--ink);
    background: var(--bg);
}

html {
    scroll-behavior: smooth;

}

body {
    /* background: linear-gradient(70deg, #b1aeae 0%, #333f44 20%,  #818080 100%); */
    /* background-color: rgb(4, 70, 69); */
    background-color: #EFE9DC;
}

a,
li,
ul {
    list-style: none;
    text-decoration: none;
}

/* =======BUTTONS */
.eb-button {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 10px;
    font-family: "Ubuntu", serif;
    letter-spacing: 1.2px;
}

/* Booking Button */
.eb-booking {
    background: #C8A84E;
    /* Gold */
    color: white;
    border: 2px solid #C8A84E;
    font-size: 1.2rem;
}
.eb-booking:hover {
    background: #1F6B3A;
    color: #C8A84E;
}

/* Services Button */
.eb-services {
    background: #1F6B3A;
    /* Green */
    color: white;
    border: 2px solid #1F6B3A;
    font-family: "Ubuntu", serif;
    font-size: 1.2rem;
}
.eb-services:hover {
    background: #C8A84E;
    color: #1F6B3A;
}

/* =========SECONDARY BUTTON */
.eb-btn {
    font-family: "Ubuntu", serif;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    user-select: none;
    width: max-content;
    margin-top: 2rem;
}

/* Secondary (Outline) */
.eb-btn--secondary {
    color: #1F6B3A;
    /* EliteBook green */
    border: 2px solid #1F6B3A;
    background: transparent;
}
.eb-btn--secondary:hover {
    background: rgba(31,107,58,.06);
}
.eb-btn--secondary:active {
    transform: translateY(1px);
}
.eb-btn--secondary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(31,107,58,.25);
}

/* Optional icon sizing */
.eb-btn svg {
    width: 18px;
    height: 18px;
}

/* Dark mode tweak (optional) */
@media (prefers-color-scheme: dark) {
    .eb-btn--secondary {
        color: #C8E1D1;
        /* lighter green for contrast */
        border-color: #2E8B57;
        /* accent green */
    }
    .eb-btn--secondary:hover {
        background: rgba(46,139,87,.18);
    }
}


/* ===== EliteBook — Services Dropdown ===== */
.eb-dropdown { position: relative; }

.eb-dropdown__toggle{
  display:flex; align-items:center; gap:.35rem;
  padding:.55rem .7rem; border-radius:10px; border:1px solid transparent;
  background: transparent; color:#fff; font-weight:700; cursor:pointer;
}
.eb-dropdown__toggle .chev{ transition: transform .2s ease; opacity:.9; }
.eb-dropdown__toggle[aria-expanded="true"] .chev{ transform: rotate(180deg); }

/* Menu panel */
.eb-dropdown__menu{
  position:absolute; top: calc(100% + 10px); left:0; min-width: 220px;
  padding:.4rem; margin:0; list-style:none; z-index: 50;
  background: rgba(15,32,27,.98); /* deep green */
  border:1px solid rgba(200,168,78,.35); border-radius:14px;
  box-shadow: 0 18px 48px rgba(0,0,0,.35);
  transform-origin: top left;
  transform: scale(.98) translateY(-6px);
  opacity:0; pointer-events:none; transition: opacity .18s ease, transform .18s ease;
}

/* Links */
.eb-dropdown__link{
  display:block; padding:.6rem .7rem; border-radius:10px;
  color:#e8edf2; text-decoration:none; font-weight:600;
}
.eb-dropdown__link:hover,
.eb-dropdown__link:focus{
  background: rgba(255,255,255,.06);
  outline:none;
}

/* Hover open on desktop (fine pointer) */
@media (pointer:fine){
  .eb-dropdown:hover > .eb-dropdown__menu,
  .eb-dropdown:focus-within > .eb-dropdown__menu{
    opacity:1; pointer-events:auto; transform: none;
  }
}

/* Gold focus ring */
.eb-dropdown__toggle:focus-visible,
.eb-dropdown__link:focus-visible{
  outline:none; box-shadow: 0 0 0 6px rgba(200,168,78,.22);
}

/* Optional: keep menu within viewport on the rightmost item */
.eb-dropdown--align-right .eb-dropdown__menu{ left:auto; right:0; transform-origin: top right; }

/* *************NAVIGATION */
.site-header {
    position: sticky;
    height: 100%;

    top: 0;
    z-index: 1000;
    background: radial-gradient(1200px 600px at 90% -20%, color-mix(in srgb, var(--gold) 12%, transparent), transparent), radial-gradient(1000px 600px at 0% 120%, color-mix(in srgb, var(--deep-teal) 12%, transparent), transparent), var(--bg);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid color-mix(in srgb, var(--deep-teal) 18%, transparent);
    font-family: "Ubuntu", serif;
}
.nav-wrap {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    /* adds spacing between logo and nav */
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 100%;
    max-width: 800px;
}

.brand img {
    width: 0;
    display: block;
}

/* Desktop nav */
nav ul {
    list-style: none;
    margin: auto;
    padding: 0;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    align-items: center;
}

nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-size: 1rem;
    letter-spacing: 2px;
    font-family: "Ubuntu", serif;
    color: rgb(207, 230, 245);
    transition: transform 0.12s ease, background 0.2s ease, color 0.2s ease;
}

nav a.home-link {
    color: rgb(200, 168, 78);
    font-family: "Ubuntu", serif;
}

/* Hover shimmer underline + soft pill */
nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 8px;
    height: 2px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(.4);
    transition: transform 0.25s ease, opacity 0.25s ease;
    border-radius: 2px;
}

nav a:hover {
    transform: translateY(-1px);
    background: color-mix(in srgb, var(--deep-teal) 12%, transparent);
}

nav a:hover::after {
    opacity: 0.75;
    transform: scaleX(1);
}

/* Hamburger (mobile) */
.hamburger {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, #46C7C2 30%, transparent);
    background: color-mix(in srgb, rgb(233, 165, 28) 8%, transparent);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.12s ease, background 0.2s ease;
}

.hamburger:hover {
    transform: translateY(-1px);
}

.bars {
    width: 22px;
    height: 16px;
    position: relative;
}

.bars span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: rgb(233, 165, 28);
    border-radius: 2px;
    transition: top 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.bars span:nth-child(1) {
    top: 0;
}

.bars span:nth-child(2) {
    top: 7px;
    width: 17px;
}

.bars span:nth-child(3) {
    top: 14px;
    width: 12px;
}

/* Circular reveal dropdown */
.mobile-panel {
    position: absolute;
    right: 1rem;
    top: calc(100% + .5rem);
    width: min(92vw, 420px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;

    border: 1px solid color-mix(in srgb, #044645 25%, transparent);
    border-radius: 16px;
    box-shadow: 0 18px 50px color-mix(in srgb, #044645 20%, transparent);
    overflow: hidden;
    transform-origin: 100% 0;
    clip-path: circle(0% at 100% 0%);
    opacity: 0;
    transition: clip-path 0.35s ease, opacity 0.25s ease;
}

.mobile-panel.open {
    clip-path: circle(140% at 100% 0%);
    opacity: 1;
    background: radial-gradient(1200px 600px at 85% -10%, rgba(233,165,28,.25), transparent 60%), radial-gradient(800px 400px at 5% 110%, rgba(31,107,58,.25), transparent 60%), linear-gradient(180deg, #0A0D13, #0A0C10 60%, #0A0D13);
}

.mobile-menu {
    display: grid;
    gap: 0.25rem;
    padding: 0.6rem;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgb(233, 165, 28);
    border: 1px solid transparent;
    transition: background 0.2s ease, transform 0.12s ease, border-color 0.2s ease;
}

.mobile-menu a.home-link {
    color: #044645;
}

.mobile-menu a:hover {
    background: color-mix(in srgb, #044645 10%, transparent);
    border-color: color-mix(in srgb, rgb(233, 165, 28) 25%, transparent);
    transform: translateX(2px);
}

.hs {
    --hs-green: #0f2a23;
    --hs-green2: #0b201b;
    --hs-gold: #C8A84E;
    --hs-gold-soft: #e4d495;
    --hs-ink: #ffffff;
    --hs-ink-soft: #e8edf2;
}

/* ---------- Section shell ---------- */
.hs {
    color: var(--hs-ink);
    background: radial-gradient(900px 520px at 85% 12%, rgba(200,168,78,0.10), transparent 60%), radial-gradient(900px 520px at 12% 88%, rgba(31,107,58,0.16), transparent 60%), linear-gradient(180deg, var(--hs-green), var(--hs-green2));
    overflow: hidden;
    padding: clamp(56px, 8vw, 96px) 0;
}

/* ---------- Grid ---------- */
.hs__inner {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: grid;
    gap: clamp(18px, 4vw, 36px);
    align-items: center;
}
@media (min-width: 980px) {
    .hs__inner {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

/* ---------- Copy block ---------- */
.hs {
    position: relative;
    height: 55vh;
    font-family: "Ubuntu", serif;
    background: radial-gradient(1200px 600px at 120% -10%, rgba(4,70,69,0.08), 
    transparent 60%), radial-gradient(800px 400px at -10% 110%, rgba(172,155,113,0.12), 
    transparent 60%), linear-gradient(180deg, #044645, #EFE9DC);  
}

.hs::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(90deg, rgba(4,70,69,.06) 2px, transparent 3px), linear-gradient(0deg, rgba(4,70,69,.06) 2px, transparent 3px);
    background-size: 36px 36px;
    mask: radial-gradient(1200px 600px at 70% 20%, #000, transparent 70%);
    mix-blend-mode: multiply;
}

.hs__kicker {
    display: inline-block;
    font-variant-caps: all-small-caps;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: var(--hs-gold-soft);
    border: 1px solid rgba(255,255,255,.18);
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: rgba(0,0,0,.25);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.hs__title {
    margin: 0.7rem 0 0.4rem;
    font-family: "Georgia","Times New Roman",serif;
    font-weight: 900;
    letter-spacing: -.015em;
    line-height: 1.02;
    /* safe line-height (no experimental text-wrap) */
    font-size: clamp(2.2rem, 6.4vw, 4.6rem);
}
.hs__accent {
    background: linear-gradient(90deg, var(--hs-gold), #1F6B3A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hs__dek {
    max-width: 60ch;
    color: var(--hs-ink-soft);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.6;
}
.hs__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: clamp(14px, 3vw, 22px);
}
.hs__btn {
    display: inline-block;
    padding: 0.9rem 1.2rem;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.hs__btn--gold {
    color: #111;
    background: linear-gradient(180deg, var(--hs-gold-soft), var(--hs-gold));
    border-color: rgba(200,168,78,.7);
    box-shadow: 0 12px 30px rgba(200,168,78,.30), inset 0 1px 0 rgba(255,255,255,.35);
}
.hs__btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(200,168,78,.38);
}
.hs__btn--ghost {
    color: #f1f5f9;
    background: transparent;
    border-color: rgba(255,255,255,.28);
}
.hs__btn--ghost:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.06);
    box-shadow: 0 10px 26px rgba(0,0,0,.25);
}

/* ---------- Media frame ---------- */
.hs__media {
    position: relative;
}
.hs__frame {
    position: relative;
    border: 1px solid rgba(200,168,78,.28);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 64px rgba(0,0,0,.35);
    background: rgba(0,0,0,.2);
}
.hs__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(1.05) brightness(.92);
}
@media (prefers-reduced-motion: no-preference) {
    .hs__video {
        transform: scale(1.02);
        animation: hsKen 12s ease-in-out infinite alternate;
    }
    @keyframes hsKen {
        0% {
            transform: scale(1.02);
        }
        100% {
            transform: scale(1.08);
        }
    }
}
/* Corner ticks (antique detail) */
.hs__corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(200,168,78,.65);
    pointer-events: none;
}
.hs__corner--tl {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}
.hs__corner--tr {
    top: -1px;
    right: -1px;
    border-left: none;
    border-bottom: none;
}
.hs__corner--bl {
    bottom: -1px;
    left: -1px;
    border-right: none;
    border-top: none;
}
.hs__corner--br {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

/* ---------- A11y helpers ---------- */
.hs__sr {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
}

/* ====== Design Tokens ABOUT US ====== */
:root {
    --eb-gold: #C8A84E;
    --eb-green: #1F6B3A;
    --ink: #fff;
    --ink-soft: #E6EAF1;
    --bg-0: #0b0f14;
    --bg-1: #0f141a;
    --card: rgba(255,255,255,.06);
    --stroke: rgba(255,255,255,.10);
    --rad: 18px;
    --shadow: 0 22px 64px rgba(0,0,0,.38);
    --ring: 0 0 0 6px rgba(200,168,78,.22);
}

/* ====== Section Shell ====== */
.about-wrap {
    position: relative;
    isolation: isolate;
    color: var(--ink);
    background: radial-gradient(1200px 520px at 10% -10%, rgba(31,107,58,.18), transparent 60%), radial-gradient(1200px 520px at 90% 110%, rgba(200,168,78,.16), transparent 60%), linear-gradient(180deg, var(--bg-0), var(--bg-1));
    overflow: clip;
    padding: clamp(56px, 8vw, 96px) 0;
}
.layout {
    width: min(1200px, 92%);
    margin-inline: auto;
}

/* Ambient Auras */
.about-auras .glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
    background: radial-gradient(closest-side, rgba(200,168,78,.28), transparent 60%);
    animation: float 12s ease-in-out infinite;
}
.about-auras .g1 {
    width: 520px;
    height: 520px;
    left: -140px;
    top: -80px;
}
.about-auras .g2 {
    width: 420px;
    height: 420px;
    right: -120px;
    bottom: -100px;
    animation-delay: -6s;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(18px);
    }
}

/* ====== Header ====== */
.about-head {
    text-align: center;
    width: min(1100px,92%);
    margin-inline: auto;
    margin-bottom: clamp(24px, 5vw, 40px);
    font-family: "Ubuntu", serif;
}
.about-kicker {
    display: inline-block;
    font-variant-caps: all-small-caps;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: var(--ink-soft);
    border: 1px solid rgba(255,255,255,.22);
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: rgba(0,0,0,.28);
    backdrop-filter: blur(3px);
}
.about-title {
    margin: 0.7rem 0 0.35rem;
    font-family: "Georgia","Times New Roman",serif;
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -.015em;
    font-size: clamp(2rem, 6.2vw, 4.2rem);
    text-wrap: balance;
}
.about-title span {
    background: linear-gradient(90deg, var(--eb-gold), var(--eb-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}
.about-dek {
    margin-inline: auto;
    max-width: 80ch;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.55;
    letter-spacing: 1px;
}

/* ====== Narrative + Proof ====== */
.about-lead {
    display: grid;
    gap: clamp(18px, 4vw, 36px);
    grid-template-columns: 1fr;
    align-items: start;
}
@media (min-width: 980px) {
    .about-lead {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.lead-copy .lead {
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.8;
    color: #F5F7FB;
    margin: 0 0 0.9rem;
}
.lead-copy .lead::first-letter {
    float: left;
    line-height: 0.72;
    font-family: "Georgia","Times New Roman",serif;
    font-weight: 900;
    font-size: clamp(3.2rem, 8vw, 5rem);
    margin: 0.1rem 0.6rem 0 0;
    background: linear-gradient(90deg, var(--eb-gold), var(--eb-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sig {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.6rem;
}
.sig-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.28));
}
.sig-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: "Ubuntu", serif;
    letter-spacing: 1px;
}
.sig-meta strong {
    font-weight: 800;
}
.sig-meta span {
    color: #B9C2CF;
    font-size: 0.92rem;
}

.lead-proof .proof-card {
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)), #EFE9DC;
    border: 1px solid var(--stroke);
    border-radius: var(--rad);
    padding: clamp(14px, 2vw, 20px);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}
.proof-title {
    margin: 0 0 0.4rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1F6B3A;
    font-family: "Ubuntu", serif;
}
.proof-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
    color: #242424;
    font-family: "Ubuntu", serif;
    letter-spacing: 1px;
}

.stats {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0,1fr));
    margin-top: 10px;
}
.stat {
    text-align: center;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--stroke);
    border-radius: 14px;
    padding: 0.7rem;
}
.stat-num {
    font-weight: 900;
    font-size: clamp(1.4rem, 3.6vw, 2rem);
}
.stat-unit {
    margin-left: 3px;
    opacity: 0.9;
    font-weight: 800;
}
.stat-label {
    margin: 0.1rem 0 0;
    color: #C9D2DE;
    font-size: 0.92rem;
    font-family: "Ubuntu", serif;
}
.stat-note {
    color: #9FAAB9;
    font-size: 0.86rem;
    margin-top: 0.45rem;
    font-family: "Ubuntu", serif;
    letter-spacing: 1px;
}

/* ====== Pillars ====== */
.pillars {
    margin-top: clamp(26px, 6vw, 54px);
}
.pillars-title {
    text-align: center;
    margin: 0 0 0.8rem;
    font-weight: 900;
    font-family: "Ubuntu", serif;
    letter-spacing: -.01em;
}
.pillars-grid {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: clamp(12px, 2.2vw, 20px);
    grid-template-columns: 1fr;
}
@media (min-width: 760px) {
    .pillars-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}
@media (min-width: 1100px) {
    .pillars-grid {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }
}

.pillar {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)), #EFE9DC;
    border: 1px solid var(--stroke);
    border-radius: var(--rad);
    padding: clamp(14px, 2vw, 20px);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
    transition: transform 0.45s cubic-bezier(.2,.6,.2,1), border-color 0.35s;
}
.pillar:hover {
    transform: translateY(-3px);
    border-color: rgba(200,168,78,.42);
}
.pill-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 8px;
    color: #1F6B3A;
    background: radial-gradient(closest-side, rgba(200,168,78,.18), transparent 70%), linear-gradient(180deg, rgba(200,168,78,.10), rgba(31,107,58,.10));
    border: 1px solid rgba(200,168,78,.45);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.pillar h3 {
    margin: 0.2rem 0;
    font-size: 1.2rem;
    color: #1F6B3A;
    font-family: "Ubuntu", serif;
    letter-spacing: 1px;
}
.pillar p {
    color: #0A0C10;
    font-size: 0.98rem;
    line-height: 1.55;
    letter-spacing: 1px;
    font-family: "Ubuntu", serif;
}

/* ====== Timeline ====== */
.timeline {
    margin-top: clamp(28px, 6vw, 56px);
}
.timeline-title {
    text-align: center;
    margin: 0 0 0.8rem;
    font-weight: 900;
    letter-spacing: -.01em;
    color: #F1F5F9;
    font-family: "Ubuntu", serif;
}
.timeline-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: clamp(10px, 2vw, 16px);
    grid-template-columns: 1fr;
}
@media (min-width: 900px) {
    .timeline-steps {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }
}

.step {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)), #EFE9DC;
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: clamp(14px, 2vw, 20px);
    box-shadow: var(--shadow);
}
.step-badge {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-weight: 800;
    color: #0f141a;
    transform: rotate(-6deg);
    background: radial-gradient(closest-side, #E9D990, var(--eb-gold));
    border: 1px solid rgba(200,168,78,.65);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.32);
    margin-bottom: 0.4rem;
}
.step h3 {
    margin: 0.1rem 0 0.2rem;
    font-size: 1.2rem;
    font-family: "Ubuntu", serif;
    color: #1F6B3A;
    letter-spacing: 1px;
}
.step p {
    color: #0A0C10;
    font-size: 0.98rem;
    line-height: 1.55;
    font-family: "Ubuntu", serif;
    letter-spacing: 1px;
}

/* ====== CTA ====== */
.about-cta {
    margin-top: clamp(28px, 6vw, 56px);
    display: grid;
    gap: 12px;
    align-items: center;
    justify-items: center;
    text-align: center;
}
.trust {
    color: #B5C0CF;
    font-size: 0.95rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-family: "Ubuntu", serif;
    letter-spacing: 1px;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}
.cta-btn {
    display: inline-block;
    padding: 0.92rem 1.2rem;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.cta-btn.primary {
    color: #0b0f14;
    background: linear-gradient(180deg, #DDC877, var(--eb-gold));
    border-color: rgba(200,168,78,.7);
    box-shadow: 0 10px 26px rgba(200,168,78,.28), inset 0 1px 0 rgba(255,255,255,.35);
}
.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(200,168,78,.34);
}
.cta-btn.ghost {
    color: #F1F5F9;
    background: transparent;
    border-color: rgba(255,255,255,.18);
}
.cta-btn.ghost:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.28);
    box-shadow: 0 10px 26px rgba(0,0,0,.25);
}

/* ====== Reveal Animations ====== */
.reveal {
    opacity: 1;
    transform: none;
}

/* When JS adds .will-reveal, we’ll animate in */
.will-reveal {
    opacity: 0;
    transform: translateY(16px);
}
.will-reveal.in {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: calc(var(--i,0) * 80ms);
}

/* (unchanged) prefer-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .will-reveal,
    .will-reveal.in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =================WHY US SECTION TWO=========== */
.why-us {
    width: 100% !important;
}

.section__container {
    max-width: 1200px;
    margin: auto;
    padding: 10rem 1rem;
}

.section__header {
    margin-bottom: 1rem;
    font-size: 3rem;
    color: rgba(29, 35, 50, 1);
    letter-spacing: 3px;
    font-family: "Ubuntu", serif;
}

.section__subheader {
    color: rgb(207, 230, 245);
    letter-spacing: 2px;
    line-height: 30px;
    font-size: 1.2rem;
    font-family: "Ubuntu", serif;
    color: rgba(29, 35, 50, 1);
}

.choose__container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}

.choose__container .choose__bg {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-3rem);
    max-width: 300px;
    opacity: 0.4;
    z-index: -1;
}

.choose__bg img {
    color: rgba(29, 35, 50, 1);
}

.choose__grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
}

.choose__card span {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 5px 10px;
    font-size: 1.25rem;
    background: #044645;
    border-radius: 100%;
    color: rgb(172, 155, 113);
}

.choose__card h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(172, 155, 113);

    letter-spacing: 2px;
    font-family: "Ubuntu", serif;
}

.choose__card p {
    color: rgba(29, 35, 50, 1);
    font-family: "Ubuntu", serif;
}

.choose__image {
    max-width: 500px;
    min-height: 55vh;
    border-radius: 10px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.choose__image video {
    position: absolute;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/* ==================SECTION THREE SERVICES */
#services-honeycomb {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, Noto Sans;
    color: var(--ink);
    background: radial-gradient(1200px 600px at 90% -20%, color-mix(in srgb, var(--gold) 12%, transparent), transparent), radial-gradient(1000px 600px at 0% 120%, color-mix(in srgb, var(--deep-teal) 12%, transparent), transparent), var(--bg);
    padding: clamp(2rem, 4vw, 4rem) 1rem;
}

.hc-wrap {
    position: relative;
}
.hc-bgword {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(4rem, 14vw, 12rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--deep-teal);
    opacity: 0.05;
    /* faded effect */
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    animation: fadeInBg 3s ease forwards;
}

.hc-grid {
    position: relative;
    z-index: 1;
    /* keeps cards above background text */
}

.hc-wrap {
    width: min(1200px, 100%);
    margin: 0 auto;
}

#hc-title {
    margin: 0 0 0.35rem;
    text-align: center;
    font-size: clamp(1.8rem, 3.6vw, 2.4rem);
    color: rgb(200, 168, 78);
    letter-spacing: 0.2px;
    font-family: "Ubuntu", serif;
    text-transform: capitalize;
}

.hc-sub {
    text-align: center;
    margin: 0 auto 1.25rem;
    max-width: 70ch;
    color: rgb(207, 230, 245);
    padding: 1rem 0;
    font-size: 1.2rem;
}

.hc-network {
    position: relative;
}
.hc-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.hc-lines line {
    stroke: color-mix(in srgb, var(--deep-teal) 70%, var(--gold) 20%);
    stroke-width: 2px;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 1s forwards ease, glow 3s infinite ease-in-out alternate;
    opacity: 0.7;
}
.hc-grid {
    position: relative;
    z-index: 1;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes glow {
    0% {
        filter: drop-shadow(0 0 0 transparent);
        opacity: 0.6;
    }
    50% {
        filter: drop-shadow(0 0 8px color-mix(in srgb, var(--deep-teal) 50%, var(--gold) 20%));
        opacity: 1;
    }
    100% {
        filter: drop-shadow(0 0 0 transparent);
        opacity: 0.6;
    }
}

/* Honeycomb Grid */

/* Layout pattern (honeycomb stagger) */
.hc-item {
    width: 100%;
    max-width: 260px;
}
.row-1 {
    grid-column: 2 / span 2;
}
.row-1b {
    grid-column: 4 / span 2;
}

.row-2 {
    grid-column: 1 / span 2;
}
.row-2b {
    grid-column: 3 / span 2;
}
.row-2c {
    grid-column: 5 / span 2;
}

/* Hex card */
.hex {
    aspect-ratio: 1 / 0.9;
    position: relative;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1rem;
    font-family: "Ubuntu", serif;
    color: rgb(207, 230, 245);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: linear-gradient(180deg, color-mix(in srgb, var(--card-bg) 90%, transparent), transparent), radial-gradient(120% 120% at 20% 10%, color-mix(in srgb, var(--gold) 10%, transparent), transparent);
    border: 1px solid color-mix(in srgb, var(--deep-teal) 24%, transparent);
    box-shadow: 0 16px 50px color-mix(in srgb, var(--deep-teal) 14%, transparent);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hex h3 {
    font-family: "Ubuntu", serif;

}

.hex p {
    color: rgb(207, 230, 245) !important;
    font-family: "Ubuntu", serif;
}
.hex::before {
    /* shine sweep */
    content: "";
    position: absolute;
    inset: -20%;
    background: linear-gradient(120deg, transparent 40%, color-mix(in srgb, white 60%, transparent) 50%, transparent 60%);
    transform: translateX(-60%) rotate(10deg);
    animation: sweep 6s ease-in-out infinite;
    opacity: 0.25;
    pointer-events: none;
}
@keyframes sweep {
    0%,
    40% {
        transform: translateX(-60%) rotate(10deg);
    }
    60% {
        transform: translateX(60%) rotate(10deg);
    }
    100% {
        transform: translateX(60%) rotate(10deg);
    }
}
.hex:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--deep-teal) 40%, transparent);
    box-shadow: 0 24px 80px color-mix(in srgb, var(--deep-teal) 22%, transparent);
}

.svc {
    display: grid;
    gap: 0.4rem;
    padding: 0.2rem 1rem;
}
.svc h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--deep-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, var(--coral), color-mix(in srgb, var(--coral) 50%, var(--gold)));
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--coral) 15%, transparent);
}
.svc p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: color-mix(in srgb, var(--ink) 80%, transparent);
}
.svc a {
    justify-self: center;
    margin-top: 0.25rem;
    font-weight: 700;
    color: var(--deep-teal);
    text-decoration: none;
    border-bottom: 2px solid color-mix(in srgb, var(--deep-teal) 35%, transparent);
    padding-bottom: 2px;
}
.svc a:hover {
    color: color-mix(in srgb, var(--deep-teal) 80%, black);
    border-color: var(--coral);
}

/* Responsive: 3-column honeycomb on tablet, 1-2 column on mobile */
@media (max-width: 980px) {
    .hc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .row-1,
    .row-1b,
    .row-2,
    .row-2b,
    .row-2c {
        grid-column: auto;
    }
    .hc-item {
        max-width: 320px;
    }
}
@media (max-width: 640px) {
    .hc-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }
    .hc-item {
        max-width: 420px;
        margin: 0 auto;
    }
    .hex {
        aspect-ratio: 1.1 / 0.85;
    }
}






* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

:root {
    --brand: #044645;
    /* EliteBook green */
    --accent: rgb(172, 155, 113);
    /* EliteBook gold */
    --ink: #0b1220;
    /* Primary text */
    --muted: #5b6270;
    /* Secondary text */
    --bg: #f7f8fb;
    /* Page background */
    --card: #ffffff;
    /* Card background */
    --shadow: 0 10px 30px rgba(3, 16, 29, 0.08);
    --radius: 24px;
    --container: 1200px;
    --speed: 600ms;
    color: var(--ink);
    background: var(--bg);
}

html {
    scroll-behavior: smooth;

}

body {
    /* background: linear-gradient(70deg, #b1aeae 0%, #333f44 20%,  #818080 100%); */
    /* background-color: rgb(4, 70, 69); */
    background-color: #EFE9DC;
}

a,
li,
ul {
    list-style: none;
    text-decoration: none;
}

/* *************NAVIGATION */
.site-header {
    position: sticky;
    height: 100%;

    top: 0;
    z-index: 1000;
    background: radial-gradient(1200px 600px at 90% -20%, color-mix(in srgb, var(--gold) 12%, transparent), transparent), radial-gradient(1000px 600px at 0% 120%, color-mix(in srgb, var(--deep-teal) 12%, transparent), transparent), var(--bg);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid color-mix(in srgb, var(--deep-teal) 18%, transparent);
    font-family: "Ubuntu", serif;
}
.nav-wrap {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    /* adds spacing between logo and nav */
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;

}

.brand img {
    width: 40%;
    display: block;
}

/* Desktop nav */
nav ul {
    list-style: none;
    margin: auto;
    padding: 0;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    align-items: center;
}

nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-family: "Ubuntu", serif;
    color: rgb(207, 230, 245);
    transition: transform 0.12s ease, background 0.2s ease, color 0.2s ease;
}

nav a.home-link {
    color: rgb(233, 165, 28);
    font-family: "Ubuntu", serif;
}

/* Hover shimmer underline + soft pill */
nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 8px;
    height: 2px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(.4);
    transition: transform 0.25s ease, opacity 0.25s ease;
    border-radius: 2px;
}

nav a:hover {
    transform: translateY(-1px);
    background: color-mix(in srgb, var(--deep-teal) 12%, transparent);
}

nav a:hover::after {
    opacity: 0.75;
    transform: scaleX(1);
}

/* Hamburger (mobile) */
.hamburger {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, #46C7C2 30%, transparent);
    background: color-mix(in srgb, rgb(233, 165, 28) 8%, transparent);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.12s ease, background 0.2s ease;
}

.hamburger:hover {
    transform: translateY(-1px);
}

.bars {
    width: 22px;
    height: 16px;
    position: relative;
}

.bars span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: rgb(233, 165, 28);
    border-radius: 2px;
    transition: top 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.bars span:nth-child(1) {
    top: 0;
}

.bars span:nth-child(2) {
    top: 7px;
    width: 17px;
}

.bars span:nth-child(3) {
    top: 14px;
    width: 12px;
}

/* Circular reveal dropdown */
.mobile-panel {
    position: absolute;
    right: 1rem;
    top: calc(100% + .5rem);
    width: min(92vw, 420px);
    background: color-mix(in srgb, #EFE9DC 85%, #46C7C2 15%);
    border: 1px solid color-mix(in srgb, #044645 25%, transparent);
    border-radius: 16px;
    box-shadow: 0 18px 50px color-mix(in srgb, #044645 20%, transparent);
    overflow: hidden;
    transform-origin: 100% 0;
    clip-path: circle(0% at 100% 0%);
    opacity: 0;
    transition: clip-path 0.35s ease, opacity 0.25s ease;
}

.mobile-panel.open {
    clip-path: circle(140% at 100% 0%);
    opacity: 1;
}
.mobile-menu {
    display: grid;
    gap: 0.25rem;
    padding: 0.6rem;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgb(233, 165, 28);
    border: 1px solid transparent;
    transition: background 0.2s ease, transform 0.12s ease, border-color 0.2s ease;
}

.mobile-menu a.home-link {
    color: #044645;
}

.mobile-menu a:hover {
    background: color-mix(in srgb, #044645 10%, transparent);
    border-color: color-mix(in srgb, rgb(233, 165, 28) 25%, transparent);
    transform: translateX(2px);
}

/* Responsive visibility */
@media (max-width: 900px) {
    nav {
        display: none;
    }
    .hamburger {
        display: grid;
    }
}
@media (min-width: 901px) {
    .hamburger,
    .mobile-panel {
        display: none;
    }
}

/* Bars morph to X when open */
.hamburger[aria-expanded="true"] .bars span:nth-child(1) {
    top: 7px;
    width: 22px !important;
    transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] .bars span:nth-child(2) {
    opacity: 0;
    width: 22px !important;
}

.hamburger[aria-expanded="true"] .bars span:nth-child(3) {
    top: 7px;
    width: 22px !important;
    transform: rotate(-45deg);
}



/* =================WHY US SECTION TWO=========== */
.why-us {
    width: 100% !important;
    /* background: rgba(29, 35, 50, 1) */
}

.section__container {
    max-width: 1200px;
    margin: auto;
    padding: 10rem 1rem;
}

.section__header {
    margin-bottom: 1rem;
    font-size: 3rem;
    color: rgba(29, 35, 50, 1);
    letter-spacing: 3px;
    font-family: "Ubuntu", serif;
}

.section__subheader {
    color: rgb(207, 230, 245);
    letter-spacing: 2px;
    line-height: 30px;
    font-size: 1.2rem;
    font-family: "Ubuntu", serif;
    color: rgba(29, 35, 50, 1);
}

.choose__container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}

.choose__container .choose__bg {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-3rem);
    max-width: 300px;
    opacity: 0.4;
    z-index: -1;
}

.choose__bg img {
    color: rgba(29, 35, 50, 1);
}

.choose__grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
}

.choose__card span {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 5px 10px;
    font-size: 1.25rem;
    background: #044645;
    border-radius: 100%;
    color: rgb(172, 155, 113);
}

.choose__card h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(172, 155, 113);

    letter-spacing: 2px;
    font-family: "Ubuntu", serif;
}

.choose__card p {
    color: rgba(29, 35, 50, 1);
    font-family: "Ubuntu", serif;
}

.choose__image {
    max-width: 500px;
    min-height: 55vh;
    border-radius: 10px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.choose__image video {
    position: absolute;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/* ==================SECTION THREE SERVICES */
#services-honeycomb {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, Noto Sans;
    color: var(--ink);
    background: radial-gradient(1200px 600px at 90% -20%, color-mix(in srgb, var(--gold) 12%, transparent), transparent), radial-gradient(1000px 600px at 0% 120%, color-mix(in srgb, var(--deep-teal) 12%, transparent), transparent), var(--bg);
    padding: clamp(2rem, 4vw, 4rem) 1rem;
}

.hc-wrap {
    position: relative;
}
.hc-bgword {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(4rem, 14vw, 12rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--deep-teal);
    opacity: 0.05;
    /* faded effect */
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    animation: fadeInBg 3s ease forwards;
}

.hc-grid {
    position: relative;
    z-index: 1;
    /* keeps cards above background text */
}

.hc-wrap {
    width: min(1200px, 100%);
    margin: 0 auto;
}

#hc-title {
    margin: 0 0 0.35rem;
    text-align: center;
    font-size: clamp(1.8rem, 3.6vw, 2.4rem);
    color: rgb(233, 165, 28);
    letter-spacing: 0.2px;
    font-family: "Ubuntu", serif;
    text-transform: capitalize;
}

.hc-sub {
    text-align: center;
    margin: 0 auto 1.25rem;
    max-width: 70ch;
    color: rgb(207, 230, 245);
    padding: 1rem 0;
    font-size: 1.2rem;
}

.hc-network {
    position: relative;
}
.hc-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.hc-lines line {
    stroke: color-mix(in srgb, var(--deep-teal) 70%, var(--gold) 20%);
    stroke-width: 2px;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 1s forwards ease, glow 3s infinite ease-in-out alternate;
    opacity: 0.7;
}
.hc-grid {
    position: relative;
    z-index: 1;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes glow {
    0% {
        filter: drop-shadow(0 0 0 transparent);
        opacity: 0.6;
    }
    50% {
        filter: drop-shadow(0 0 8px color-mix(in srgb, var(--deep-teal) 50%, var(--gold) 20%));
        opacity: 1;
    }
    100% {
        filter: drop-shadow(0 0 0 transparent);
        opacity: 0.6;
    }
}

/* Honeycomb Grid */
.hc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(.65rem, 1.4vw, 1rem);
    align-items: center;
    justify-items: center;
    padding-top: 0.75rem;
    z-index: 999;
}
/* Layout pattern (honeycomb stagger) */
.hc-item {
    width: 100%;
    max-width: 260px;
}
.row-1 {
    grid-column: 2 / span 2;
}
.row-1b {
    grid-column: 4 / span 2;
}

.row-2 {
    grid-column: 1 / span 2;
}
.row-2b {
    grid-column: 3 / span 2;
}
.row-2c {
    grid-column: 5 / span 2;
}

/* Hex card */
.hex {
    aspect-ratio: 1 / 0.9;
    position: relative;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1rem;
    font-family: "Ubuntu", serif;
    color: rgb(207, 230, 245);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: linear-gradient(180deg, color-mix(in srgb, var(--card-bg) 90%, transparent), transparent), radial-gradient(120% 120% at 20% 10%, color-mix(in srgb, var(--gold) 10%, transparent), transparent);
    border: 1px solid color-mix(in srgb, var(--deep-teal) 24%, transparent);
    box-shadow: 0 16px 50px color-mix(in srgb, var(--deep-teal) 14%, transparent);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hex h3 {
    font-family: "Ubuntu", serif;

}

.hex p {
    color: rgb(207, 230, 245) !important;
    font-family: "Ubuntu", serif;
}
.hex::before {
    /* shine sweep */
    content: "";
    position: absolute;
    inset: -20%;
    background: linear-gradient(120deg, transparent 40%, color-mix(in srgb, white 60%, transparent) 50%, transparent 60%);
    transform: translateX(-60%) rotate(10deg);
    animation: sweep 6s ease-in-out infinite;
    opacity: 0.25;
    pointer-events: none;
}
@keyframes sweep {
    0%,
    40% {
        transform: translateX(-60%) rotate(10deg);
    }
    60% {
        transform: translateX(60%) rotate(10deg);
    }
    100% {
        transform: translateX(60%) rotate(10deg);
    }
}
.hex:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--deep-teal) 40%, transparent);
    box-shadow: 0 24px 80px color-mix(in srgb, var(--deep-teal) 22%, transparent);
}

.svc {
    display: grid;
    gap: 0.4rem;
    padding: 0.2rem 1rem;
}
.svc h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--deep-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, var(--coral), color-mix(in srgb, var(--coral) 50%, var(--gold)));
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--coral) 15%, transparent);
}
.svc p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: color-mix(in srgb, var(--ink) 80%, transparent);
}
.svc a {
    justify-self: center;
    margin-top: 0.25rem;
    font-weight: 700;
    color: var(--deep-teal);
    text-decoration: none;
    border-bottom: 2px solid color-mix(in srgb, var(--deep-teal) 35%, transparent);
    padding-bottom: 2px;
}
.svc a:hover {
    color: color-mix(in srgb, var(--deep-teal) 80%, black);
    border-color: var(--coral);
}

/* Responsive: 3-column honeycomb on tablet, 1-2 column on mobile */
@media (max-width: 980px) {
    .hc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .row-1,
    .row-1b,
    .row-2,
    .row-2b,
    .row-2c {
        grid-column: auto;
    }
    .hc-item {
        max-width: 320px;
    }
}
@media (max-width: 640px) {
    .hc-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }
    .hc-item {
        max-width: 420px;
        margin: 0 auto;
    }
    .hex {
        aspect-ratio: 1.1 / 0.85;
    }
}

/* ===================TESTIMONIAL SECTION======= */
.eb-editorial {
    --gold: #C8A84E;
    --green: #1F6B3A;
    --green2: #2E8B57;
    --ink: #141414;
    --muted: #666;
    --bg: #faf9f7;
    --card: #fff;
    --radius: 18px;
    font-family: "Ubuntu",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    background: var(--bg);
    color: var(--ink);
}
.eb-editorial .wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(22px,3vw,40px);
}

/* Header */
.eb-editorial .header {
    text-align: center;
    margin-bottom: 22px;
}
.eb-editorial .eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
}
.eb-editorial h2 {
    font-family: "Playfair Display",serif;
    font-weight: 700;
    font-size: clamp(1.7rem,3.8vw,2.6rem);
    line-height: 1.12;
    margin: 0.35rem 0 0.6rem;
}
.eb-editorial .lead {
    color: var(--muted);
    max-width: 68ch;
    margin: 0 auto;
}
.header {
    margin-top: 4rem;
}

.grid {
    margin-bottom: 4rem;
}

/* Grid (staggered, editorial) */
.eb-editorial .grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
    margin-top: 18px;
}
@media (min-width:880px) {
    .eb-editorial .grid {
        grid-template-columns: 1.05fr 0.95fr;
    }
    .eb-editorial .card:nth-child(2) {
        grid-row: span 2;
    }
    /* tall middle feature */
}

/* Card */
.eb-editorial .card {
    position: relative;
    background: var(--card);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: var(--radius);
    padding: 22px 22px 18px;
    display: grid;
    gap: 14px;
    box-shadow: 0 14px 28px rgba(0,0,0,.06);
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.25s ease;
}
.eb-editorial .card.is-visible {
    opacity: 1;
    transform: none;
}
.eb-editorial .card:hover {
    box-shadow: 0 18px 36px rgba(0,0,0,.1);
}

/* Decorative left rule (gold) */
.eb-editorial .card::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 18px;
    bottom: 18px;
    width: 3px;
    background: linear-gradient(180deg,var(--gold),var(--green));
    border-radius: 2px;
}

/* Oversized quote glyph */
.eb-editorial .bigquote {
    position: absolute;
    right: -8px;
    top: -16px;
    font-family: "Playfair Display",serif;
    font-weight: 700;
    font-size: 120px;
    line-height: 0.8;
    color: rgba(31,107,58,.08);
    pointer-events: none;
}

/* Quote text */
.eb-editorial blockquote {
    margin: 0;
    font-family: "Playfair Display",serif;
    font-weight: 600;
    font-size: clamp(1.1rem,2.1vw,1.35rem);
    line-height: 1.6;
    color: #242424;
}

/* Pull line (accent) */
.eb-editorial .pull {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--green2);
    font-size: 0.78rem;
}

/* Meta row */
.eb-editorial .meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0,0,0,.06);
    padding-top: 10px;
}
.eb-editorial .who {
    font-weight: 800;
}
.eb-editorial .role {
    color: var(--muted);
}
.eb-editorial .stars {
    color: var(--gold);
    letter-spacing: 2px;
}

/* Optional badge/monogram */
.eb-editorial .badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: conic-gradient(from 220deg, rgba(31,107,58,.12), rgba(200,168,78,.18));
    border: 1px solid rgba(0,0,0,.06);
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--green);
}



/* ====================BOOK NOW===== */
:root {
    --deep-teal: #044645;
    /* Solution */
    --gold: #AC9B71;
    /* EliteBook */
    --coral: #E65C3A;
    --sand: #EFE9DC;
    --ink: #0f1f1f;
    --bg: #ffffff;
}
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #0b1414;
        --ink: #e9f2f2;
        --sand: #203332;
    }
}
#book-now {
    background: transparent;
    /* keep transparent if placed on colored section */
    font-family: "Ubuntu", serif;
    color: var(--ink);
    padding: clamp(2rem, 3vw, 3rem) 1rem;
    display: grid;
    place-items: center;
    /* background-color: #000; */

    background: radial-gradient(1200px 600px at 90% -20%, color-mix(in srgb, var(--gold) 12%, transparent), transparent), radial-gradient(1000px 600px at 0% 120%, color-mix(in srgb, var(--deep-teal) 12%, transparent), transparent), var(--bg);
}

.bn-wrap {
    width: min(1100px, 100%);
    border: 1px solid color-mix(in srgb, var(--deep-teal) 25%, transparent);
    background: linear-gradient(180deg, color-mix(in srgb, var(--sand) 45%, transparent), transparent 120%);
    border-radius: 16px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    display: grid;
    grid-template-columns: 1.1fr;
    gap: 1.25rem;
}

.bn-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bn-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, #EFE9DC 12%, transparent);
    color: var(--deep-teal);
}

.bn-title {
    margin: 0;
    font-size: 3rem;
    letter-spacing: 0.2px;
    font-weight: bold;
    color: rgb(200, 168, 78) !important;
}
.bn-sub {
    margin: 0.25rem 0 0;
    color: color-mix(in srgb, rgb(207, 230, 245) 80%, transparent);
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-family: "Ubuntu", serif;
}

.bn-chips {
    margin: 0.75rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.bn-chips li {
    font-size: 0.9rem;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
    background: color-mix(in srgb, var(--gold) 12%, transparent);
    color: color-mix(in srgb, rgb(200, 168, 78) 85%, black);
    white-space: nowrap;
    letter-spacing: 1.2px;
}
.bn-actions {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.cta-btn {
    --btn-bg: var(--deep-teal);
    --btn-fg: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--btn-bg);
    color: var(--btn-fg);
    padding: 0.85rem 1.15rem;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--deep-teal) 50%, black 0%);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 20px color-mix(in srgb, var(--deep-teal) 18%, transparent);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease;
}
.cta-btn:hover {
    transform: translateY(-1px);
    background: color-mix(in srgb, var(--deep-teal) 85%, var(--coral) 15%);
    box-shadow: 0 10px 26px color-mix(in srgb, var(--deep-teal) 28%, transparent);
}
.cta-btn:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--coral) 60%, white 40%);
    outline-offset: 3px;
}
.cta-btn svg {
    width: 18px;
    height: 18px;
}

.ghost-btn {
    --btn-bg: transparent;
    --btn-fg: var(--deep-teal);
    color: var(--deep-teal);
    border: 1.5px solid color-mix(in srgb, var(--deep-teal) 40%, transparent);
    background: var(--btn-bg);
    padding: 0.78rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}
.ghost-btn:hover {
    background: color-mix(in srgb, var(--deep-teal) 10%, transparent);
}



/* ===================USE CASE SECTION SECTION======= */
#use-cases {
    font-family: "Ubuntu", serif;
    margin-bottom: 4rem !important;
    color: var(--ink);
    margin-top: 4rem;
}

.uc-wrap {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

#uc-title {
    margin: 0;
    font-size: 3rem;
    color: var(--deep-teal);
    text-align: center;
    font-family: "Ubuntu", serif;
}

.uc-sub {
    margin: 0.25rem auto 1rem;
    max-width: 62ch;
    text-align: center;
    color: var(--muted);
    font-size: 1.2rem;
}

/* Tabs */
.uc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.uc-tabs label {
    cursor: pointer;
    user-select: none;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--deep-teal) 28%, transparent);
    background: color-mix(in srgb, var(--deep-teal) 8%, transparent);
    color: var(--deep-teal);
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: background 0.2s ease, transform 0.12s ease, border-color 0.2s ease;
}
.uc-tabs label:hover {
    transform: translateY(-1px);
    background: color-mix(in srgb, var(--deep-teal) 12%, transparent);
}
input.uc-tab {
    position: absolute;
    left: -9999px;
}

/* Panels */
.uc-panels {
    position: relative;
    margin-top: 0.75rem;
}
.uc-panel {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(.8rem, 1.6vw, 1.2rem);
}
@media (max-width: 900px) {
    .uc-panel {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .uc-panel {
        grid-template-columns: 1fr;
    }
}

/* Active tab styling */
#tab-all:checked ~ .uc-tabs label[for="tab-all"],
#tab-startups:checked ~ .uc-tabs label[for="tab-startups"],
#tab-retail:checked ~ .uc-tabs label[for="tab-retail"],
#tab-service:checked ~ .uc-tabs label[for="tab-service"],
#tab-nonprofit:checked ~ .uc-tabs label[for="tab-nonprofit"],
#tab-contract:checked ~ .uc-tabs label[for="tab-contract"] {
    background: var(--deep-teal);
    color: #fff;
    border-color: color-mix(in srgb, var(--deep-teal) 60%, black 0%);
}

/* Show correct panel */
#tab-all:checked ~ .uc-panels .p-all,
#tab-contract:checked ~ .uc-panels .p-contract,
#tab-nonprofit:checked ~ .uc-panels .p-nonprofit,
#tab-retail:checked ~ .uc-panels .p-retail,
#tab-service:checked ~ .uc-panels .p-service,
#tab-startups:checked ~ .uc-panels .p-startups {
    display: grid;
    animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* Cards */
.uc-card {
    background: #044645;
    border: 1px solid color-mix(in srgb, var(--deep-teal) 20%, transparent);
    border-radius: 16px;
    box-shadow: 0 16px 40px color-mix(in srgb, var(--deep-teal) 12%, transparent);
    padding: 1rem;
    display: grid;
    gap: 0.55rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}
.uc-card::after {
    content: "";
    position: absolute;
    inset: -40% 0 0 -40%;
    background: linear-gradient(120deg, transparent 45%, rgba(255,255,255,.25) 50%, transparent 55%);
    transform: translateX(-60%) rotate(10deg);
    transition: transform 0.6s ease;
    pointer-events: none;
}
.uc-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--deep-teal) 36%, transparent);
    box-shadow: 0 24px 70px color-mix(in srgb, var(--deep-teal) 18%, transparent);
}
.uc-card:hover::after {
    transform: translateX(60%) rotate(10deg);
}

.uc-eyebrow {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgb(207, 230, 245);
}
.uc-title {
    margin: 0;
    font-size: 1.05rem;
    color: rgb(200, 168, 78);
    font-weight: 800;
}

.uc-text {
    margin: 0;
    color: color-mix(in srgb, rgb(207, 230, 245) 85%, transparent);
    line-height: 1.55;
    letter-spacing: 2px;
}

.uc-meta {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.2rem;
    font-size: 0.9rem;
    color: rgb(172, 155, 113) !important;
}

.uc-chip {
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: color-mix(in srgb, rgb(207, 230, 245) 10%, transparent);
    color: rgb(200, 168, 78);
    font-weight: 700;
    border: 1px solid color-mix(in srgb, rgb(207, 230, 245) 22%, transparent);
}

.uc-cta {
    margin-top: 0.35rem;
    font-weight: 700;
    color: rgb(172, 155, 113);
    text-decoration: none;
    border-bottom: 2px solid color-mix(in srgb, var(--deep-teal) 35%, transparent);
    padding-bottom: 2px;
    align-self: start;
}

.uc-cta:hover {
    color: color-mix(in srgb, #46C7C2 80%, rgb(207, 230, 245));
    border-color: #46C7C2;
}

.uc-ctaBar {
    position: sticky;
    top: 0.5rem;
    /* adjust if you have a fixed header */
    z-index: 5;
    margin: 0.5rem auto 0;
}
.uc-ctaBar-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1rem;
    align-items: center;
    background: color-mix(in srgb, #ffffff 80%, var(--sand) 20%);
    border: 1px solid color-mix(in srgb, var(--deep-teal) 25%, transparent);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    box-shadow: 0 10px 28px color-mix(in srgb, var(--deep-teal) 14%, transparent);
    backdrop-filter: blur(6px);
}
@media (prefers-color-scheme: dark) {
    .uc-ctaBar-inner {
        background: color-mix(in srgb, #0f1a19 85%, var(--sand) 15%);
    }
}
.uc-ctaBar-text {
    margin: 0;
    color: color-mix(in srgb, var(--ink) 88%, transparent);
    font-weight: 600;
    font-family: "Ubuntu", serif;
}
.uc-ctaBar-actions {
    display: inline-flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-self: end;
}
.uc-ctaBar-btn {
    background: var(--deep-teal);
    color: #fff;
    text-decoration: none;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: 1px solid color-mix(in srgb, var(--deep-teal) 50%, black 0%);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--deep-teal) 20%, transparent);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease;
}
.uc-ctaBar-btn:hover {
    transform: translateY(-1px);
    background: color-mix(in srgb, var(--deep-teal) 85%, #E65C3A 15%);
    /* subtle coral blend on hover */
    box-shadow: 0 12px 28px color-mix(in srgb, var(--deep-teal) 28%, transparent);
}
.uc-ctaBar-ghost {
    color: var(--deep-teal);
    text-decoration: none;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    border: 1.5px solid color-mix(in srgb, var(--deep-teal) 35%, transparent);
    background: transparent;
}
.uc-ctaBar-ghost:hover {
    background: color-mix(in srgb, var(--deep-teal) 10%, transparent);
}

@media (max-width: 640px) {
    .uc-ctaBar-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .uc-ctaBar-actions {
        justify-content: center;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --btp-bg: #0b1020;
        --btp-fg: #e5e7eb;
        --btp-shadow: 0 10px 25px rgba(0,0,0,.4);
    }
}



/* ===================FOOTER SECTION======= */
#site-footer {
    position: relative;
    color: var(--ink);
    background: radial-gradient(1200px 600px at 90% -20%, color-mix(in srgb, var(--gold) 12%, transparent), transparent), radial-gradient(1000px 600px at 0% 120%, color-mix(in srgb, var(--deep-teal) 12%, transparent), transparent), var(--bg);
    padding: clamp(3rem, 5vw, 5rem) 1rem 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, Noto Sans;
    overflow: hidden;
}

/* Curved Top Edge */
#site-footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 110px;
    background: var(--bg);
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150' preserveAspectRatio='none'><path fill='black' d='M0,0 C280,130 1160,-10 1440,120 L1440,0 L0,0 Z'></path></svg>") no-repeat center / cover;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150' preserveAspectRatio='none'><path fill='black' d='M0,0 C280,130 1160,-10 1440,120 L1440,0 L0,0 Z'></path></svg>") no-repeat center / cover;
    z-index: 1;
}

/* Decorative background shapes (SVG layer) */
.footer-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.18;
}

.footer-bg-shapes svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-wrap {
    width: min(1200px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    gap: 2rem;
}

/* Grid: 4 columns on desktop, down to 1 on mobile */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: clamp(1rem, 2vw, 2rem);
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .logo {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: var(--deep-teal);
    width: 100%;
}

.logo-img {
    width: min(250px, 30vw) !important;
    block-size: auto;
    display: block;
    filter: drop-shadow(0 6px 18px color-mix(in srgb, var(--deep-teal) 18%, transparent));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-brand p {
    margin: 0.75rem 0 0;
    max-width: 36ch;
    color: color-mix(in srgb, rgb(207, 230, 245) 78%, transparent);
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 1.5px;
    font-family: "Ubuntu", serif;
}

.footer-col h4 {
    margin: 0 0 0.6rem;
    color: rgb(200, 168, 78);
    font-family: "Ubuntu", serif;
    font-size: 2rem;
    letter-spacing: 0.3px;
    padding-bottom: 1.5rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
    font-family: "Ubuntu", serif;

}

.footer-list li a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 1.5px;
    color: color-mix(in srgb, rgb(207, 230, 245) 85%, transparent);
    text-decoration: none;
    padding: 0.2rem 0;
    border-bottom: 1.5px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.12s ease;
}

.footer-list li a:hover {
    color: var(--deep-teal);
    border-color: color-mix(in srgb, var(--deep-teal) 35%, transparent);
    transform: translateX(2px);
}

/* Socials */
.socials {
    display: grid;
    gap: 0.5rem;
    margin: 0.4rem 0 0.8rem;
}

.socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: color-mix(in srgb, rgb(207, 230, 245) 85%, transparent);
    text-decoration: none;
    padding: 0.28rem 0.1rem;
    transition: color 0.2s ease, transform 0.12s ease;
    font-family: "Ubuntu", serif;
    letter-spacing: 1.5px;
}

.socials a:hover {
    color: var(--deep-teal);
    transform: translateX(2px);
}

.socials svg {
    width: 18px;
    height: 18px;
}

.address {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: color-mix(in srgb, rgb(207, 230, 245) 75%, transparent);
    line-height: 1.5;
    font-family: "Ubuntu", serif;
    letter-spacing: 1.5px;
}

/* Bottom bar */
.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid color-mix(in srgb, var(--deep-teal) 18%, transparent);
    padding: 0.9rem 0;
    text-align: center;
    color: color-mix(in srgb, var(--deep-teal) 70%, transparent);
    font-size: 0.92rem;
    font-family: "Ubuntu", serif;
}

.underline {
    width: 100%;
    height: 5px;
    background-color: rgb(148, 146, 141);
    border-radius: 3px;
    position: absolute;
    top: 35px;
    left: 0;
    overflow: hidden;
}

.underline span {
    width: 15px;
    height: 100%;
    background: #333e43;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 3s linear infinite;
}

@keyframes moving {
    0% {
        left: -20px;
    }

    100% {
        left: 100%;
    }
}

