/* ==========================================================================
   Barrow Me — Handyman & General Contracting, Central Oregon
   Master stylesheet
   ========================================================================== */

:root {
  --navy: #0e2440;
  --navy-800: #143257;
  --navy-600: #1e4576;
  --gold: #c08a2e;
  --gold-light: #e0a94a;
  --ivory: #fbf8f3;
  --sand: #f2ece2;
  --line: #e5ddd0;
  --ink: #1a2231;
  --muted: #5d6878;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 18px rgba(14, 36, 64, .06);
  --shadow: 0 18px 50px rgba(14, 36, 64, .10);
  --shadow-lg: 0 34px 90px rgba(14, 36, 64, .16);
  --ff-head: 'Poppins', system-ui, sans-serif;
  --ff-body: 'Roboto', system-ui, sans-serif;
  --header-h: 88px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .display-alt {
  font-family: var(--ff-head);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.14;
}

h1 { font-size: clamp(2.15rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1.15rem; text-align: justify; }
a { color: var(--navy-600); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }

.container-xl { max-width: 1240px; }

::selection { background: var(--gold); color: #fff; }

/* --------------------------------------------------------- shared bits -- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--ff-head);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow.centered { justify-content: center; }

.lead-text { font-size: 1.14rem; color: var(--muted); }
.text-muted-soft { color: var(--muted); }

.section { padding: clamp(64px, 8vw, 118px) 0; position: relative; }
.section-sand { background: var(--sand); }
.section-white { background: var(--white); }

.divider-gold {
  width: 76px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.15rem 0 1.6rem;
}
.divider-gold.mx-auto { margin-left: auto; margin-right: auto; }

/* buttons */
.btn-bm,
.btn-bm-ghost {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .92rem 1.75rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s ease, background .28s ease, color .28s ease;
  position: relative;
  overflow: hidden;
}
.btn-bm {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-600) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(14, 36, 64, .22);
}
.btn-bm:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 38px rgba(14, 36, 64, .3); }
.btn-bm-gold {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #17202e;
  box-shadow: 0 10px 26px rgba(192, 138, 46, .3);
}
.btn-bm-gold:hover { color: #17202e; }
.btn-bm-ghost {
  border-color: rgba(14, 36, 64, .22);
  color: var(--navy);
  background: transparent;
}
.btn-bm-ghost:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }
.btn-bm-ghost.on-dark { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-bm-ghost.on-dark:hover { background: #fff; color: var(--navy); }

.btn-bm-ghost svg, .btn-bm-gold svg{
  width: 18px; height: 18px;
}

/* ------------------------------------------------------------- header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1080;
  background: rgba(251, 248, 243, .88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-stuck { box-shadow: 0 10px 34px rgba(14, 36, 64, .09); background: rgba(251,248,243,.97); }

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -.02em;
}
.brand-tag {
  font-size: .62rem;
  letter-spacing: .27em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
}

.main-nav { display: flex; justify-content: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list > li { position: relative; }
.nav-link-bm {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: .95rem;
  color: var(--navy);
  padding: .65rem .85rem;
  border-radius: 10px;
  position: relative;
}
.nav-link-bm::after {
  content: "";
  position: absolute;
  left: .85rem; right: .85rem; bottom: .42rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.nav-link-bm:hover::after,
.nav-link-bm.active::after { transform: scaleX(1); transform-origin: left; }
.nav-link-bm:hover, .nav-link-bm.active { color: var(--navy); }
.nav-link-bm.active { font-weight: 600; }
.caret { width: 10px; height: 10px; transition: transform .3s ease; }
.has-mega:hover .caret { transform: rotate(180deg); }

/* mega dropdown */
.mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, 14px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, transform .38s cubic-bezier(.2,.7,.3,1), visibility .3s;
  z-index: 1090;
}
.mega::before {
  content: "";
  position: absolute;
  top: -8px; left: 50%;
  width: 16px; height: 16px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}
.has-mega:hover > .mega,
.has-mega:focus-within > .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega-services { width: min(860px, 92vw); }
.mega-areas { width: min(520px, 92vw); }
.mega-grid { display: grid; gap: .2rem; }
.mega-services .mega-grid { grid-template-columns: repeat(3, 1fr); }
.mega-areas .mega-grid { grid-template-columns: repeat(2, 1fr); }

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .55rem .62rem;
  border-radius: 10px;
  font-size: .875rem;
  line-height: 1.35;
  color: var(--ink);
  font-family: var(--ff-body);
  transition: background .25s ease, transform .25s ease;
}
.mega-item:hover { background: var(--sand); transform: translateX(4px); color: var(--navy); }
.mega-item .mi-icon {
  flex: 0 0 30px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(192,138,46,.16), rgba(14,36,64,.09));
  color: var(--navy);
  transition: background .3s ease, color .3s ease, transform .35s ease;
}
.mega-item:hover .mi-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  transform: rotate(-6deg) scale(1.06);
}
.mega-item .mi-icon svg { width: 15px; height: 15px; }
.mega-sub {
  grid-column: 1 / -1;
  margin-top: .5rem;
  padding: .8rem .75rem .5rem;
  border-top: 1px dashed var(--line);
}
.mega-sub-label {
  font-family: var(--ff-head);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
  display: block;
}
.mega-sub-list { display: flex; flex-wrap: wrap; gap: .4rem; }
.mega-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: var(--sand);
  color: var(--navy);
  transition: background .25s ease, transform .25s ease;
}
.mega-chip:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.mega-chip svg { width: 12px; height: 12px; }

.header-cta { display: flex; align-items: center; gap: .8rem; justify-self: end; }
.call-block { text-align: right; line-height: 1.15; display: none; }
.call-block small { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
@media (min-width: 1200px) { .call-block { display: block; } }

.nav-toggle {
  display: none;
  width: 48px; height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  align-items: center; justify-content: center;
  color: var(--navy);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* mobile drawer */
@media (max-width: 1199.98px) {
  .main-nav { display: none; }
  .header-cta .btn-bm { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { grid-template-columns: auto 1fr; }
  .header-cta { justify-self: end; }
}

.mobile-drawer {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  height: calc(100dvh - var(--header-h));
  background: var(--ivory);
  z-index: 1070;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 1.4rem 1.2rem 3rem;
  transform: translateY(-14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, transform .35s ease, visibility .3s;
}
.mobile-drawer.open { opacity: 1; visibility: visible; transform: translateY(0); }
.m-item { border-bottom: 1px solid var(--line); }
.m-link {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 1rem .25rem;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  background: none; border: 0; text-align: left;
}
.m-panel { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.m-panel.open { max-height: 1400px; }
.m-panel a {
  display: flex; align-items: center; gap: .55rem;
  padding: .5rem .25rem .5rem 1rem;
  font-size: .92rem;
  color: var(--muted);
}
.m-panel a:hover { color: var(--gold); }
.m-panel .sub-tag {
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); padding: .7rem .25rem .2rem 1rem; display: block;
}
.m-link .chev { transition: transform .3s ease; width: 14px; height: 14px; }
.m-link.open .chev { transform: rotate(180deg); }

@media (max-width:768px){
.m-panel a svg{
width: 14px;

}
}

/* ---------------------------------------------------------------- hero -- */
.hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(192,138,46,.16), transparent 62%),
    radial-gradient(900px 460px at -8% 8%, rgba(30,69,118,.13), transparent 60%),
    var(--ivory);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(14,36,64,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14,36,64,.05) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(75% 62% at 50% 34%, #000 20%, transparent 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 span.hl {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.4rem 0 1.9rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: .45rem .9rem;
  font-size: .8rem; font-weight: 500; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.hero-badge svg { width: 14px; height: 14px; color: var(--gold); }

.hero-media { position: relative; }
.hero-media .frame {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1400px) rotateY(-5deg) rotateX(1.5deg);
  transition: transform .8s cubic-bezier(.2,.7,.3,1);
}
.hero-media:hover .frame { transform: perspective(1400px) rotateY(0) rotateX(0); }
.hero-media .frame img { width: 100%; aspect-ratio: 16/13; object-fit: cover; }
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: .9rem 1.1rem;
  display: flex; align-items: center; gap: .75rem;
  border: 1px solid var(--line);
}
.float-card .fc-num { font-family: var(--ff-head); font-weight: 700; font-size: 1.5rem; color: var(--navy); line-height: 1; }
.float-card .fc-lbl { font-size: .74rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.float-a { left: -18px; bottom: 42px; animation: floaty 6s ease-in-out infinite; }
.float-b { right: -10px; top: 30px; animation: floaty 6s ease-in-out infinite 1.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (max-width: 767.98px) { .float-a, .float-b { position: static; margin-top: .8rem; animation: none; } }

/* page hero (inner pages) */
.page-hero {
  position: relative;
  padding: clamp(64px, 8vw, 116px) 0 clamp(56px, 7vw, 96px);
  background:
    linear-gradient(180deg, rgba(14,36,64,.92), rgba(14,36,64,.78)),
    var(--navy);
  color: #fff;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url('../images/pattern-blueprint.jpg');
  background-size: cover; background-position: center;
  opacity: .13; mix-blend-mode: screen;
}
.page-hero > .container-xl { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.86); }
.page-hero .eyebrow { color: var(--gold-light); }
.crumbs { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.crumbs a { color: rgba(255,255,255,.82); }
.crumbs a:hover { color: var(--gold-light); }

/* --------------------------------------------------------------- cards -- */
.card-bm {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem 1.65rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s ease, border-color .4s ease;
}
.card-bm::before {
  content: "";
  position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width .5s cubic-bezier(.2,.7,.3,1);
}
.card-bm:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card-bm:hover::before { width: 100%; }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(192,138,46,.18), rgba(14,36,64,.08));
  color: var(--navy);
  margin-bottom: 1.15rem;
  transition: background .4s ease, color .4s ease, transform .5s ease;
}
.card-bm:hover .card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}
.card-icon svg { width: 26px; height: 26px; }
.card-bm h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.card-bm p { font-size: .96rem; color: var(--muted); margin-bottom: 0; }

/* stats strip */
.stats-strip {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-600) 100%);
  color: #fff;
  border-radius: 26px;
  padding: clamp(30px, 4vw, 52px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.stats-strip::after {
  content: "";
  position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,138,46,.35), transparent 70%);
}
.stat-num {
  font-family: var(--ff-head); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem); color: #fff; line-height: 1;
}
.stat-num span { color: var(--gold-light); }
.stat-lbl { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: .5rem; }

/* zigzag service rows */
.zig-row { position: relative; padding: clamp(38px, 5vw, 62px) 0; }
.zig-row + .zig-row { border-top: 1px solid var(--line); }
.zig-media { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.zig-media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.3,1); }
.zig-media:hover img { transform: scale(1.06); }
.zig-index {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  font-family: var(--ff-head); font-weight: 700;
  font-size: .82rem; letter-spacing: .1em;
  padding: .35rem .8rem; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.zig-list { list-style: none; padding: 0; margin: 1rem 0 1.4rem; }
.zig-list li {
  position: relative; padding-left: 1.7rem; margin-bottom: .5rem;
  font-size: .97rem; color: var(--muted);
}
.zig-list li::before {
  content: ""; position: absolute; left: 0; top: .58rem;
  width: 9px; height: 9px; border-radius: 3px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: rotate(45deg);
}

/* sub-service (demolition children) */
.sub-panel {
  background: var(--sand);
  border: 1px dashed var(--line);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 36px);
  margin-top: 1.5rem;
}
.sub-panel-title {
  font-family: var(--ff-head); font-weight: 600;
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem; display: block;
}
.sub-card {
  display: flex; gap: .95rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 1rem; height: 100%;
  transition: transform .35s ease, box-shadow .35s ease;
}
.sub-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.sub-card img { width: 78px; height: 78px; border-radius: 12px; object-fit: cover; flex: 0 0 78px; }
.sub-card h4 { font-size: .98rem; margin: 0 0 .25rem; }
.sub-card p { font-size: .84rem; color: var(--muted); margin: 0; line-height: 1.55; }
.sub-card .sub-num {
  font-size: .68rem; font-weight: 700; color: var(--gold);
  letter-spacing: .1em; display: block; margin-bottom: .2rem;
  font-family: var(--ff-head);
}

/* process timeline */
.process-item { position: relative; padding-left: 3.6rem; padding-bottom: 2.2rem; }
.process-item::before {
  content: ""; position: absolute; left: 21px; top: 44px; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--line), transparent);
}
.process-item:last-child::before { display: none; }
.process-num {
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-600));
  color: #fff; font-family: var(--ff-head); font-weight: 700; font-size: .95rem;
  box-shadow: 0 8px 20px rgba(14,36,64,.2);
  padding: 10px;
}
.process-item h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.process-item p { font-size: .95rem; color: var(--muted); margin: 0; }

/* areas */
.area-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 22px; overflow: hidden; height: 100%;
  transition: transform .45s cubic-bezier(.2,.7,.3,1), box-shadow .45s ease;
}
.area-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.area-thumb { position: relative; overflow: hidden; }
.area-thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.3,1); }
.area-card:hover .area-thumb img { transform: scale(1.08); }
.area-pin {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255,255,255,.95); color: var(--navy);
  border-radius: 999px; padding: .35rem .85rem;
  font-size: .74rem; font-weight: 600; font-family: var(--ff-head);
  letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .35rem;
}
.area-pin svg { width: 13px; height: 13px; color: var(--gold); }
.area-body { padding: 1.5rem 1.5rem 1.7rem; }
.area-body h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.area-body p { font-size: .95rem; color: var(--muted); }
.area-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .9rem; }
.area-tags span {
  font-size: .73rem; padding: .28rem .68rem; border-radius: 999px;
  background: var(--sand); color: var(--navy-600);
}

/* youtube */
.yt-section {
  background: linear-gradient(140deg, var(--navy) 0%, #0a1a30 100%);
  color: #fff; position: relative; overflow: hidden;
}
.yt-section::before {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,138,46,.28), transparent 68%);
  top: -180px; left: -140px;
}
.yt-section h2, .yt-section h3 { color: #fff; }
.yt-section p { color: rgba(255,255,255,.78); }
.yt-frame {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: #08111f;
}
.yt-frame img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.yt-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: none; border: 0;
}
.yt-play .ring {
  width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: grid; place-items: center;
  box-shadow: 0 0 0 0 rgba(224,169,74,.5);
  animation: pulsering 2.6s infinite;
  transition: transform .35s ease;
}
.yt-play:hover .ring { transform: scale(1.08); }
.yt-play svg { width: 30px; height: 30px; color: #12203a; margin-left: 4px; }
@keyframes pulsering {
  0% { box-shadow: 0 0 0 0 rgba(224,169,74,.45); }
  70% { box-shadow: 0 0 0 26px rgba(224,169,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,169,74,0); }
}
.yt-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.yt-list li {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.82); font-size: .95rem;
}
.yt-list svg { width: 18px; height: 18px; color: var(--gold-light); flex: 0 0 18px; margin-top: 3px; }

/* FAQ */
.faq-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; margin-bottom: .8rem; overflow: hidden;
  transition: box-shadow .35s ease, border-color .35s ease;
}
.faq-item.open { box-shadow: var(--shadow); border-color: transparent; }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-family: var(--ff-head); font-weight: 600; font-size: 1.02rem; color: var(--navy);
}
.faq-q .fq-ico {
  flex: 0 0 30px; width: 30px; height: 30px; border-radius: 9px;
  background: var(--sand); display: grid; place-items: center;
  transition: background .3s ease, transform .35s ease, color .3s ease;
  color: var(--navy);
}
.faq-item.open .fq-ico { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #fff; transform: rotate(180deg); }
.fq-ico svg { width: 14px; height: 14px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.2,.7,.3,1); }
.faq-a-inner { padding: 0 1.35rem 1.3rem; color: var(--muted); font-size: .97rem; }

/* contact */
.contact-panel {
  background: #fff; border: 1px solid var(--line);
  border-radius: 26px; padding: clamp(24px, 3.5vw, 44px);
  box-shadow: var(--shadow);
}
.form-label-bm {
  font-family: var(--ff-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .06em; color: var(--navy); margin-bottom: .4rem; display: block;
}
.form-control-bm {
  width: 100%;
  border: 1.5px solid var(--line);
  background: var(--ivory);
  border-radius: 12px;
  padding: .82rem 1rem;
  font-size: .96rem;
  font-family: var(--ff-body);
  color: var(--ink);
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.form-control-bm:focus {
  outline: none; background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(192,138,46,.14);
}
textarea.form-control-bm { min-height: 140px; resize: vertical; }
.form-note { font-size: .84rem; color: var(--muted); }
.form-success {
  display: none; margin-top: 1rem; padding: .9rem 1.1rem;
  border-radius: 12px; background: rgba(192,138,46,.12);
  border: 1px solid rgba(192,138,46,.35); color: var(--navy); font-size: .93rem;
}
.form-success.show { display: block; }

.info-tile {
  display: flex; gap: 1rem; align-items: flex-start;
  flex-direction: column; 
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 1.3rem; height: 100%;
  transition: transform .35s ease, box-shadow .35s ease;
}
.info-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.info-tile .it-ico {
  width: 46px; height: 46px; flex: 0 0 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(192,138,46,.18), rgba(14,36,64,.08));
  color: var(--navy);
}
.info-tile svg { width: 20px; height: 20px; }
.info-tile h4 { font-size: 1rem; margin: 0 0 .2rem; }
.info-tile p, .info-tile a { font-size: .93rem; color: var(--muted); margin: 0; word-break: break-word; }
.info-tile a:hover { color: var(--gold); }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-600) 60%, #21518a 100%);
  color: #fff; border-radius: 28px;
  padding: clamp(34px, 5vw, 62px);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('../images/pattern-blueprint.jpg');
  background-size: cover; opacity: .12; mix-blend-mode: screen;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); }

/* alert / note */
.note-gold {
  border-left: 4px solid var(--gold);
  background: rgba(192,138,46,.09);
  border-radius: 0 14px 14px 0;
  padding: 1rem 1.2rem;
  font-size: .95rem;
  color: var(--navy);
}

/* ------------------------------------------------------------- footer --- */
.site-footer {
  background: #0a1a30;
  color: rgba(255,255,255,.7);
  padding: clamp(52px, 6vw, 84px) 0 0;
  position: relative;
}
.site-footer h5 {
  font-family: var(--ff-head); color: #fff; font-size: .82rem;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.site-footer a { color: rgba(255,255,255,.7); font-size: .93rem; }
.site-footer a:hover { color: var(--gold-light); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-brand img { width: 56px; height: 56px; }
.footer-bottom {
  margin-top: clamp(34px, 4vw, 54px);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.4rem 0;
  font-size: .85rem;
}
.social-row { display: flex; gap: .6rem; margin-top: 1rem; }
.social-row a {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.07);
  color: #fff;
  transition: background .3s ease, transform .3s ease;
}
.social-row a:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); transform: translateY(-3px); color: #12203a; }
.social-row svg { width: 18px; height: 18px; }

/* sticky mobile call bar */
.mobile-callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1060;
  display: none;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: .55rem .8rem;
  gap: .5rem;
}
.mobile-callbar a { flex: 1; justify-content: center; padding: .78rem 1rem; font-size: .9rem; }
@media (max-width: 767.98px) {
 
}

/* reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1100; transition: width .1s linear;
}

/* misc utilities */
.rounded-frame { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.rounded-frame img { width: 100%; object-fit: cover;     aspect-ratio: 16 / 16; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative; padding-left: 2rem; margin-bottom: .7rem; font-size: .98rem; color: var(--muted);
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .35rem;
  width: 20px; height: 20px; border-radius: 7px;
  background: linear-gradient(135deg, rgba(192,138,46,.2), rgba(14,36,64,.1));
}
.checklist li::after {
  content: ""; position: absolute; left: 6px; top: .68rem;
  width: 8px; height: 4px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.value-quote {
  font-family: var(--ff-head); font-weight: 500;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem); line-height: 1.5; color: var(--navy);
}

/* Prevent CTA button label wrapping */
.btn-bm, .btn-bm-outline, .btn-gold, .btn-call, .header-cta .btn-bm { white-space: nowrap; }

@media (max-width:768px){
	.stats-strip::after{
		display:none;
	}
}