/* ============================================================
   Frontier Equipment Company
   North Slope · Alaska
   ============================================================ */

:root {
  --navy:        #0B2545;
  --navy-900:    #071a31;
  --navy-800:    #0a2240;
  --navy-700:    #103258;
  --steel:       #1c3e63;
  --orange:      #E87722;
  --orange-600:  #d4670f;
  --orange-300:  #f3a15a;
  --ice:         #D9E2EC;
  --ice-bg:      #eef3f8;
  --paper:       #ffffff;
  --ink:         #0B2545;
  --body:        #33445a;
  --muted:       #6b7c91;
  --line:        #e1e8f0;
  --line-dark:   rgba(255,255,255,.12);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --f-display: 'Archivo', 'Arial Narrow', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(11,37,69,.06), 0 2px 8px rgba(11,37,69,.05);
  --shadow-md: 0 10px 30px rgba(11,37,69,.10), 0 2px 8px rgba(11,37,69,.06);
  --shadow-lg: 0 30px 70px rgba(7,26,49,.30);

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--body);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0;
  font-weight: 800;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.wrap--wide { max-width: 1340px; }

/* eyebrow / section label */
.eyebrow {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--orange);
  display: inline-block;
}
.on-dark .eyebrow, .eyebrow--ondark { color: var(--orange-300); }

.section { padding: clamp(72px, 9vw, 132px) 0; position: relative; }
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--body);
  max-width: 60ch;
}

.h-sec { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.h-big { font-size: clamp(2.4rem, 6vw, 4.6rem); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: 15px 26px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(232,119,34,.32); }
.btn--primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(232,119,34,.4); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(11,37,69,.22); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--ondark { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn--ondark:hover { border-color: #fff; background: rgba(255,255,255,.06); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 11px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* Logo lockup */
.logo { display: inline-flex; align-items: center; gap: 13px; }
.logo__emblem {
  height: 58px; width: auto; flex: 0 0 auto;
  background: #fff; padding: 6px 10px; border-radius: 9px;
  box-shadow: 0 5px 16px rgba(7,26,49,.24);
  transition: height .3s var(--ease), box-shadow .3s var(--ease);
}
.scrolled .logo__emblem { height: 49px; box-shadow: 0 2px 9px rgba(7,26,49,.16); }
.logo__text { display: flex; flex-direction: column; line-height: 1.3; }
.logo__tag {
  font-family: var(--f-display); font-weight: 700;
  font-size: .64rem; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.72); transition: color .35s;
}
.scrolled .logo__tag { color: var(--muted); }

/* prominent standalone emblem — rendered as a white sign plate (matches the real signage) */
.brand-emblem {
  width: auto; display: block;
  background: #fff; border-radius: 16px; padding: 16px 22px;
  box-shadow: 0 16px 38px rgba(0,0,0,.3);
}
.brand-emblem--center { margin: 0 auto clamp(22px,3vw,32px); }

/* Nav */
.nav { display: flex; align-items: center; gap: 34px; }
.nav__links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-family: var(--f-display); font-weight: 600;
  font-size: .92rem; color: rgba(255,255,255,.86);
  letter-spacing: .01em; position: relative; padding: 4px 0;
  transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--orange); transition: right .3s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { right: 0; }
.scrolled .nav__links a { color: var(--body); }
.scrolled .nav__links a:hover { color: var(--ink); }

.nav__cta { padding: 11px 20px; font-size: .88rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: none; background: transparent;
  cursor: pointer; padding: 0; position: relative; z-index: 120;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 6px auto; transition: transform .3s var(--ease), opacity .2s; }
.scrolled .nav-toggle span { background: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,26,49,.62) 0%, rgba(7,26,49,.12) 32%, rgba(7,26,49,.30) 64%, rgba(7,26,49,.92) 100%),
    linear-gradient(90deg, rgba(7,26,49,.55) 0%, rgba(7,26,49,0) 60%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(54px, 8vw, 104px); padding-top: 150px; }
.hero__eyebrow {
  font-family: var(--f-display); font-weight: 700; font-size: .82rem;
  letter-spacing: .28em; text-transform: uppercase; color: #fff;
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 26px;
}
.hero__eyebrow .dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 4px rgba(232,119,34,.3); }
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 6.6vw, 5.6rem); font-weight: 800;
  letter-spacing: -.025em; max-width: 16ch; text-wrap: balance;
}
.hero h1 .accent { color: var(--orange-300); }
.hero__sub {
  margin-top: 26px; max-width: 56ch;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem); line-height: 1.6;
  color: rgba(255,255,255,.9);
}
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__contact { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px 30px; font-size: .94rem; color: rgba(255,255,255,.8); }
.hero__contact a { color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 2px; }
.hero__contact a:hover { border-color: var(--orange); }

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 26px; z-index: 3;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 600; font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7);
}

/* ============================================================
   STAT BAR
   ============================================================ */
.statbar { background: var(--navy); color: #fff; position: relative; z-index: 4; }
.statbar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(34px, 4vw, 52px) clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--line-dark);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(2.3rem, 4vw, 3.3rem); line-height: 1; color: #fff;
  letter-spacing: -.02em;
}
.stat__num .u { color: var(--orange-300); font-size: .5em; font-weight: 700; margin-left: 5px; letter-spacing: 0; white-space: nowrap; }
.stat__label {
  margin-top: 12px; font-size: .82rem; letter-spacing: .04em;
  color: rgba(217,226,236,.72); line-height: 1.4;
}
.stat__label strong { color: #fff; font-weight: 600; display: block; font-size: .92rem; margin-bottom: 2px; letter-spacing: 0; }

/* ============================================================
   GENERIC SECTION HEADERS
   ============================================================ */
.sec-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow::before { display: none; }
.sec-head--center .eyebrow { gap: 0; }
.sec-head p { margin: 22px 0 0; }

/* ============================================================
   PROPERTY OVERVIEW (cards)
   ============================================================ */
.bg-ice { background: var(--ice-bg); }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.split--reverse .split__media { order: 2; }

.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 12px; }
.fcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}
.fcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #cfdbe8; }
.fcard__ico { width: 50px; height: 50px; border-radius: 11px; background: var(--navy); display: grid; place-items: center; margin-bottom: 22px; }
.fcard__ico svg { width: 26px; height: 26px; stroke: var(--orange-300); fill: none; stroke-width: 1.7; }
.fcard h3 { font-size: 1.28rem; margin-bottom: 9px; }
.fcard p { margin: 0; font-size: .98rem; color: var(--muted); line-height: 1.62; }

/* media frame */
.media-frame { position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-md); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 4/5; }
.media-frame--wide { aspect-ratio: 3/2; }
.media-tag {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(11,37,69,.82); backdrop-filter: blur(6px);
  color: #fff; font-family: var(--f-display); font-weight: 600;
  font-size: .76rem; letter-spacing: .04em; padding: 8px 14px; border-radius: 6px;
  border-left: 3px solid var(--orange);
}

/* ============================================================
   HERITAGE / TIMELINE
   ============================================================ */
.heritage { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.heritage::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5; pointer-events: none;
}
.heritage .h-sec, .heritage h3 { color: #fff; }
.heritage .lede { color: rgba(217,226,236,.86); }
.heritage-top { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,80px); align-items: end; margin-bottom: clamp(48px,6vw,76px); }
.heritage-top__media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.heritage-top__media .media-frame { box-shadow: var(--shadow-lg); }
.heritage-top__media .media-frame:nth-child(1) { aspect-ratio: 3/4; margin-top: 30px; }
.heritage-top__media .media-frame:nth-child(2) { aspect-ratio: 3/4; }

.timeline { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 14px; border-top: 2px solid rgba(255,255,255,.16); }
.tl {
  position: relative; padding: 30px 22px 8px 0;
}
.tl::before {
  content: ""; position: absolute; top: -8px; left: 0; width: 13px; height: 13px;
  border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px var(--navy), 0 0 0 6px rgba(232,119,34,.4);
}
.tl__year { font-family: var(--f-display); font-weight: 800; font-size: 1.25rem; color: var(--orange-300); letter-spacing: 0; }
.tl__title { font-family: var(--f-display); font-weight: 700; font-size: 1.02rem; color: #fff; margin: 8px 0 8px; }
.tl__body { font-size: .9rem; color: rgba(217,226,236,.72); line-height: 1.55; margin: 0; padding-right: 8px; }

/* archival brochure strip */
.archive-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0 0 clamp(50px, 6vw, 80px); }
.arch { margin: 0; }
.arch img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center;
  border-radius: 9px; border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow-lg); background: #0a1c30;
}
.arch figcaption { margin-top: 14px; font-size: .82rem; line-height: 1.5; color: rgba(217,226,236,.66); font-style: italic; }

/* ============================================================
   LOCATION / SCHEMATIC
   ============================================================ */
.loc-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px,5vw,72px); align-items: center; }
.schematic {
  background: var(--navy); border-radius: 16px; padding: 30px; color: #fff;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.schematic svg { width: 100%; height: auto; display: block; }
.schematic__cap { font-size: .76rem; letter-spacing: .04em; color: rgba(217,226,236,.6); margin-top: 14px; text-align: center; font-family: var(--f-display); }

.adv-list { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 4px; }
.adv {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.adv:last-child { border-bottom: none; }
.adv__ico { width: 42px; height: 42px; border-radius: 10px; background: var(--ice-bg); display: grid; place-items: center; }
.adv__ico svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.8; }
.adv h4 { font-size: 1.08rem; margin: 2px 0 5px; }
.adv p { margin: 0; font-size: .94rem; color: var(--muted); line-height: 1.55; }

/* ============================================================
   FACILITIES (alternating)
   ============================================================ */
.facility { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,80px); align-items: center; }
.facility + .facility { margin-top: clamp(56px, 7vw, 104px); }
.facility--rev .facility__media { order: 2; }
.facility__kicker { font-family: var(--f-display); font-weight: 800; font-size: .9rem; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.facility__kicker .n { font-size: 1.4rem; color: var(--ice); -webkit-text-stroke: 1px var(--navy); }
.facility h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 16px; }
.facility p { color: var(--body); }
.spec-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.spec {
  background: var(--ice-bg); border: 1px solid var(--line); border-radius: 9px;
  padding: 14px 18px; min-width: 120px;
}
.spec b { display: block; font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; color: var(--navy); line-height: 1; }
.spec span { font-size: .8rem; color: var(--muted); letter-spacing: .03em; }

.facility__media.stack { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 14px; }
.facility__media.stack .media-frame:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }

/* ============================================================
   LEASING OFFER
   ============================================================ */
.leasing { background: var(--navy); color: #fff; }
.leasing .h-sec { color: #fff; }
.leasing .lede { color: rgba(217,226,236,.85); }
.lease-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 8px; }
.lease-card {
  position: relative; border: 1px solid var(--line-dark); border-radius: 14px;
  padding: 34px 30px 30px; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  overflow: hidden; transition: transform .35s var(--ease), border-color .3s, background .3s;
}
.lease-card:hover { transform: translateY(-6px); border-color: rgba(232,119,34,.6); background: linear-gradient(180deg, rgba(232,119,34,.10), rgba(255,255,255,.02)); }
.lease-card__num { font-family: var(--f-display); font-weight: 800; font-size: .8rem; letter-spacing: .2em; color: var(--orange-300); }
.lease-card h3 { color: #fff; font-size: 1.55rem; margin: 14px 0 12px; }
.lease-card p { color: rgba(217,226,236,.78); font-size: .96rem; margin: 0 0 20px; }
.lease-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.lease-card li { font-size: .92rem; color: rgba(217,226,236,.9); padding-left: 26px; position: relative; line-height: 1.45; }
.lease-card li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 9px; height: 9px;
  border-right: 2px solid var(--orange); border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
}
.lease-note { margin-top: 34px; font-size: .92rem; color: rgba(217,226,236,.62); text-align: center; }

/* ============================================================
   FUTURE / DEMAND DRIVERS
   ============================================================ */
.drivers { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.driver { background: var(--paper); padding: 34px 30px; transition: background .3s; }
.driver:hover { background: var(--ice-bg); }
.driver__n { font-family: var(--f-display); font-weight: 800; font-size: .82rem; color: var(--orange); letter-spacing: .12em; }
.driver h4 { font-size: 1.18rem; margin: 14px 0 9px; }
.driver p { margin: 0; font-size: .93rem; color: var(--muted); line-height: 1.58; }

.commit {
  margin-top: clamp(44px,5vw,64px); background: var(--navy); border-radius: 16px;
  padding: clamp(40px,5vw,64px); color: #fff; position: relative; overflow: hidden;
}
.commit__inner { position: relative; z-index: 2; max-width: 760px; }
.commit h3 { color: #fff; font-size: clamp(1.5rem,2.6vw,2.1rem); margin-bottom: 18px; }
.commit p { color: rgba(217,226,236,.86); margin: 0; font-size: 1.06rem; }
.commit__mark { position: absolute; right: -40px; bottom: -50px; width: 280px; opacity: .06; z-index: 1; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gitem { position: relative; overflow: hidden; border-radius: 10px; cursor: pointer; aspect-ratio: 4/3; background: var(--ice-bg); }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gitem:hover img { transform: scale(1.07); }
.gitem::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,26,49,.55)); opacity: 0; transition: opacity .3s; }
.gitem:hover::after { opacity: 1; }
.gitem span { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-family: var(--f-display); font-weight: 600; font-size: .8rem; opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s; }
.gitem:hover span { opacity: 1; transform: translateY(0); }
.gitem--wide { grid-column: span 2; aspect-ratio: 8/3; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--navy-900); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5vw,80px); align-items: stretch; }
.contact .h-sec { color: #fff; }
.contact__lede { color: rgba(217,226,236,.82); margin-top: 22px; max-width: 46ch; }
.contact-cards { display: grid; gap: 16px; margin-top: 36px; }
.ccard { display: flex; align-items: center; gap: 18px; padding: 20px 24px; border: 1px solid var(--line-dark); border-radius: 12px; transition: border-color .3s, background .3s; }
.ccard:hover { border-color: rgba(232,119,34,.5); background: rgba(255,255,255,.03); }
.ccard__ico { width: 46px; height: 46px; border-radius: 11px; background: var(--orange); display: grid; place-items: center; flex: 0 0 auto; }
.ccard__ico svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.9; }
.ccard small { display: block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(217,226,236,.55); font-family: var(--f-display); font-weight: 600; }
.ccard b { font-size: 1.16rem; color: #fff; font-weight: 600; font-family: var(--f-display); }

.lease-form {
  background: #fff; border-radius: 16px; padding: clamp(28px,3.4vw,42px);
  box-shadow: var(--shadow-lg);
}
.lease-form h3 { color: var(--ink); font-size: 1.5rem; margin-bottom: 6px; }
.lease-form p.sub { color: var(--muted); font-size: .95rem; margin: 0 0 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--f-display); font-weight: 600; font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; font-family: var(--f-body); font-size: 1rem;
  border: 1.5px solid var(--line); border-radius: 8px; background: var(--ice-bg); color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(232,119,34,.12); }
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lease-form .btn { width: 100%; justify-content: center; margin-top: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #050f1d; color: rgba(217,226,236,.6); padding: 70px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .logo__name, .footer .logo__sub { color: #fff; }
.footer .logo__sub { color: rgba(217,226,236,.5); }
.footer__about { margin-top: 22px; font-size: .95rem; line-height: 1.7; max-width: 38ch; }
.footer h5 { font-family: var(--f-display); font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a { font-size: .95rem; transition: color .2s; }
.footer ul a:hover { color: var(--orange-300); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 28px; font-size: .85rem; }
.footer-bottom .loc { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-display); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; color: rgba(217,226,236,.7); }
.footer-bottom .loc .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(5,15,29,.94); display: none; align-items: center; justify-content: center; padding: 5vw; opacity: 0; transition: opacity .3s; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 24px; right: 28px; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); color: #fff; font-size: 1.5rem; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.lightbox__close:hover { background: rgba(255,255,255,.16); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); color: #fff; font-size: 1.6rem; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.lightbox__nav:hover { background: rgba(255,255,255,.16); }
.lightbox__nav.prev { left: 20px; }
.lightbox__nav.next { right: 20px; }
.lightbox__cap { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-family: var(--f-display); font-size: .9rem; letter-spacing: .04em; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .statbar__grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-dark); }
  .split, .loc-grid, .facility, .facility--rev .facility__media, .contact-grid, .heritage-top { grid-template-columns: 1fr; }
  .split--reverse .split__media, .facility--rev .facility__media { order: 0; }
  .feature-cards, .lease-grid, .drivers, .archive-strip { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(2,1fr); gap: 12px 0; border-top: none; }
  .tl { padding-left: 26px; border-left: 2px solid rgba(255,255,255,.16); padding-top: 6px; }
  .tl::before { left: -7px; top: 4px; }
  .heritage-top__media .media-frame:nth-child(1) { margin-top: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__links, .nav__cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; gap: 4px;
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: var(--navy); padding: 110px 32px 40px; z-index: 110;
    box-shadow: var(--shadow-lg);
  }
  .nav.open .nav__links a { color: #fff; font-size: 1.3rem; padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
  .nav.open .nav__cta { display: inline-flex; margin-top: 20px; }
  body.nav-open { overflow: hidden; }
  body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(5,15,29,.5); z-index: 105; }
  .feature-cards, .lease-grid, .drivers, .form-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gitem--wide { grid-column: span 2; aspect-ratio: 16/7; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .facility__media.stack { grid-template-columns: 1fr; }
  .facility__media.stack .media-frame:first-child { aspect-ratio: 3/2; }
  .hero__scroll { display: none; }
}

/* ============================================================
   LANGUAGE SWITCHER (Google Translate, custom dropdown)
   ============================================================ */
.nav__lang { display: flex; align-items: center; }
.lang-switch { position: relative; display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.86); transition: color .25s; }
.scrolled .nav .lang-switch { color: var(--body); }
.nav .lang-switch:hover { color: #fff; }
.scrolled .nav .lang-switch:hover { color: var(--ink); }
.lang-switch .globe { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.7; flex: 0 0 auto; }
.lang-switch .chev { position: absolute; right: 2px; width: 11px; height: 11px; pointer-events: none; stroke: currentColor; fill: none; stroke-width: 2; opacity: .75; }
.lang-switch select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background: transparent; border: none; color: inherit; cursor: pointer; outline: none;
  font-family: var(--f-display); font-weight: 600; font-size: .9rem; letter-spacing: .01em;
  padding: 4px 18px 4px 0; max-width: 140px;
}
.lang-switch select:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 3px; }
.lang-switch select option { color: #0B2545; background: #fff; font-family: system-ui, sans-serif; }

@media (max-width: 760px) {
  .nav.open .nav__lang { padding: 14px 0 4px; }
  .nav.open .lang-switch { color: #fff; }
  .nav.open .lang-switch select { font-size: 1.25rem; max-width: none; padding: 4px 24px 4px 0; }
  .nav.open .lang-switch .globe { width: 22px; height: 22px; }
  .nav.open .lang-switch .chev { width: 14px; height: 14px; }
}

/* Google Translate widget cleanup — hide its banner/gadget, keep our dropdown */
#google_translate_element { position: absolute !important; left: -9999px !important; top: -9999px !important; height: 0 !important; width: 0 !important; overflow: hidden !important; }
.goog-te-banner-frame, .goog-te-balloon-frame, #goog-gt-tt, .goog-tooltip { display: none !important; }
.goog-te-gadget { height: 0; overflow: hidden; }
body { top: 0 !important; position: static !important; }
.skiptranslate iframe { display: none !important; visibility: hidden !important; }
font.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 46px 22px 0; position: relative;
  font-family: var(--f-display); font-weight: 700; font-size: 1.12rem; color: var(--ink);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 8px; top: 28px; width: 10px; height: 10px;
  border-right: 2px solid var(--orange); border-bottom: 2px solid var(--orange);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(225deg); top: 32px; }
.faq-item summary:hover { color: var(--orange-600); }
.faq-item p { margin: 0 0 24px; color: var(--body); font-size: 1.02rem; line-height: 1.65; max-width: 72ch; }
.faq-item a { color: var(--orange-600); font-weight: 600; border-bottom: 1px solid currentColor; }

/* ============================================================
   LOCATION MAP
   ============================================================ */
.loc-map { margin-top: clamp(30px, 4vw, 48px); }
.loc-map__frame {
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--line); background: var(--ice-bg);
  height: clamp(380px, 46vw, 540px);
}
.loc-map__frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.loc-map__bar { display: flex; align-items: center; justify-content: space-between; gap: 18px 28px; margin-top: 20px; flex-wrap: wrap; }
.loc-map__bar p { margin: 0; color: var(--muted); font-size: .96rem; line-height: 1.55; max-width: 60ch; }
.loc-map__bar .btn { flex: 0 0 auto; }
@media (max-width: 600px) { .loc-map__bar .btn { width: 100%; justify-content: center; } }
