/* =========================================================
   Enterprise Network International Group
   Brand stylesheet. All colours derive from the ENI logo:
   deep navy, enterprise green, white.
   ========================================================= */

:root {
  --navy: #0d2a56;
  --navy-dark: #081b39;
  --navy-soft: #16407c;
  --green: #0f9d3f;
  --green-dark: #0b7c31;
  --ink: #14202f;
  --body: #46525f;
  --line: #dde3ea;
  --surface: #ffffff;
  --surface-alt: #f4f7fa;
  --surface-tint: #eef3f8;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(13, 42, 86, 0.08);
  --shadow-md: 0 12px 30px rgba(13, 42, 86, 0.12);
  --shadow-lg: 0 24px 60px rgba(13, 42, 86, 0.18);
  --wrap: 1240px;
  --font-head: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--surface);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--navy-soft); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--green); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .6em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.45rem); }
p { margin: 0 0 1.1em; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(56px, 7vw, 104px) 0; }
.section-alt { background: var(--surface-alt); }
.section-navy { background: var(--navy); color: #cfdbec; }
.section-navy h2, .section-navy h3 { color: var(--white); }
.lead { font-size: 1.12rem; max-width: 68ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.measure { max-width: 74ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: .92rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.btn svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 10px 24px rgba(15, 157, 63, .28); }
.btn-primary:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(15, 157, 63, .34); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-soft); color: var(--white); transform: translateY(-2px); }

.btn-ghost { border-color: rgba(255, 255, 255, .75); color: var(--white); background: rgba(255, 255, 255, .12); }
.btn-ghost:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }

.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.center .btn-row { justify-content: center; }

/* ---------- top information bar ---------- */
.topbar {
  background: var(--navy-dark);
  color: #b9c8dd;
  font-size: .84rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 44px; }
.topbar-left { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.topbar a { color: #b9c8dd; display: inline-flex; align-items: center; gap: .45rem; }
.topbar a:hover { color: var(--white); }
.topbar svg { width: 15px; height: 15px; flex: none; }
.topbar-social { display: flex; align-items: center; gap: .35rem; }
.topbar-social a {
  width: 30px; height: 30px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .07);
  transition: background .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}
.topbar-social a:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.topbar-hours { opacity: .85; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: linear-gradient(180deg, rgba(8, 27, 57, .38), rgba(8, 27, 57, 0));
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.site-header .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: .7rem 0;
}
.logo, .nav-brand img, .footer-brand img, .site-logo {
  border-radius: 16px;
  background: #fff;
  padding: 6px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}
.nav-brand { display: inline-flex; align-items: center; }
.nav-brand img { width: 108px; height: auto; transition: width .35s var(--ease), border-radius .35s var(--ease); }

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(.6rem, 1.6vw, 1.6rem);
}
.main-nav a {
  position: relative;
  display: block;
  padding: .55rem .2rem;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a:hover, .main-nav a.is-active { color: var(--white); }
.main-nav a.is-active { color: #8ff0ab; }

.main-nav .mobile-cta { display: none; }
.header-cta { display: flex; align-items: center; gap: .6rem; }
.header-cta .btn { padding: .68rem 1.15rem; font-size: .82rem; }

.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(13, 42, 86, .12);
}
.site-header.scrolled .main-nav a { color: var(--navy); }
.site-header.scrolled .main-nav a.is-active { color: var(--green-dark); }
.site-header.scrolled .nav-brand img { width: 92px; }
.site-header.scrolled .logo { border-radius: 12px; }
.site-header.scrolled .btn-ghost { border-color: var(--navy); color: var(--navy); background: transparent; }
.site-header.scrolled .btn-ghost:hover { background: var(--navy); color: var(--white); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 0; border-radius: 12px;
  background: rgba(255, 255, 255, .14);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--white);
  position: relative; transition: background .2s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--white);
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.site-header.scrolled .nav-toggle { background: var(--surface-tint); }
.site-header.scrolled .nav-toggle span,
.site-header.scrolled .nav-toggle span::before,
.site-header.scrolled .nav-toggle span::after { background: var(--navy); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- hero slider ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 860px);
  margin-top: -84px;
  padding-top: 84px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 9s linear;
}
.hero-slide.is-active img { transform: scale(1.16); }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8, 27, 57, .78) 0%, rgba(8, 27, 57, .5) 48%, rgba(13, 42, 86, .35) 100%);
}
.hero-inner { position: relative; z-index: 3; width: min(100% - 40px, var(--wrap)); margin-inline: auto; padding: 90px 0 110px; }
.hero-copy { max-width: 780px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.4vw, 4.1rem);
  text-shadow: 0 3px 24px rgba(0, 0, 0, .45);
  margin-bottom: .35em;
}
.hero h2 {
  color: #d8e6f7;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.5;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .4);
  max-width: 40ch;
}
.hero p { color: #cbdaee; max-width: 60ch; }
.hero .btn-row { margin-top: 1.6rem; }
.hero-strip {
  position: relative; z-index: 3;
  display: flex; flex-wrap: wrap; gap: 2.4rem;
  margin-top: 2.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .22);
  color: #cbdaee;
  font-size: .92rem;
}
.hero-strip strong { display: block; color: var(--white); font-family: var(--font-head); font-size: 1.9rem; line-height: 1; margin-bottom: .25rem; }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 34px; z-index: 4; display: flex; justify-content: center; gap: .5rem; }
.hero-dots button {
  width: 34px; height: 4px; border: 0; border-radius: 4px; padding: 0; cursor: pointer;
  background: rgba(255, 255, 255, .35); transition: background .3s var(--ease), width .3s var(--ease);
}
.hero-dots button.is-active { background: var(--green); width: 54px; }

/* ---------- inner page banner ---------- */
.page-banner {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  margin-top: -84px;
  padding-top: 84px;
  overflow: hidden;
}
.page-banner img.banner-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  animation: bannerDrift 18s ease-out forwards;
}
@keyframes bannerDrift { from { transform: scale(1.1); } to { transform: scale(1); } }
.page-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 27, 57, .55) 0%, rgba(8, 27, 57, .3) 40%, rgba(8, 27, 57, .8) 100%);
}
.page-banner .wrap { position: relative; z-index: 3; padding: 56px 0 48px; }
.page-banner h1 { color: var(--white); text-shadow: 0 3px 22px rgba(0, 0, 0, .5); margin-bottom: .3em; }
.page-banner p { color: #d5e3f5; max-width: 62ch; text-shadow: 0 2px 14px rgba(0, 0, 0, .45); margin-bottom: .6rem; }
.crumbs { font-size: .82rem; color: #a9c1df; letter-spacing: .04em; }
.crumbs a { color: #d5e3f5; }
.crumbs span { opacity: .6; padding: 0 .4rem; }

/* ---------- generic content ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #c6d5e6; }
.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .45em; }
.card-body p { font-size: .97rem; }
.card-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .9rem; color: var(--green-dark);
}
.card-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.card:hover .card-link svg { transform: translateX(5px); }
.card-tag { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--green-dark); font-weight: 700; margin-bottom: .5rem; }

.pillar { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.pillar h3 { font-size: 1.15rem; }
.pillar p { font-size: .95rem; margin: 0; }

.icon-badge {
  width: 46px; height: 46px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(15, 157, 63, .12); color: var(--green-dark); margin-bottom: 1rem;
}
.icon-badge svg { width: 22px; height: 22px; }

.tick-list { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: .6rem; }
.tick-list li { position: relative; padding-left: 1.9rem; }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 10px; height: 10px; border-radius: 3px; background: var(--green);
}

.need-list { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.need-item {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 18px 22px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.need-item:hover { border-color: var(--green); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.need-item strong { display: block; color: var(--ink); font-size: 1rem; }
.need-item span { font-size: .88rem; color: var(--body); }
.need-item svg { width: 20px; height: 20px; color: var(--green-dark); flex: none; transition: transform .25s var(--ease); }
.need-item:hover svg { transform: translateX(4px); }

.split { display: grid; gap: 44px; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.stat-band { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.stat { border-left: 3px solid var(--green); padding-left: 18px; }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.6rem; line-height: 1; color: var(--white); }
.stat span { font-size: .92rem; }

.cta-band { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 100%); color: #d6e3f4; text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 62ch; margin-inline: auto; }

/* ---------- partner carousel ---------- */
.partner-band { background: var(--surface-alt); padding: 62px 0; border-top: 1px solid var(--line); }
.marquee { overflow: hidden; margin-top: 34px; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner-chip {
  display: flex; align-items: center; justify-content: center;
  min-width: 210px; height: 84px; padding: 0 26px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-head); font-size: 1.02rem; color: var(--navy); text-align: center;
  box-shadow: var(--shadow-sm);
}

/* ---------- accordion ---------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 22px 4px; text-align: left;
  font-family: var(--font-head); font-size: 1.1rem; color: var(--ink);
}
.acc-head svg { width: 20px; height: 20px; flex: none; color: var(--green-dark); transition: transform .3s var(--ease); }
.acc-item.open .acc-head svg { transform: rotate(180deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), opacity .4s var(--ease); opacity: 0; }
.acc-item.open .acc-panel { opacity: 1; }
.acc-panel div { padding: 0 4px 22px; }

/* ---------- forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; font: inherit; font-size: .98rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(15, 157, 63, .14);
}
.field-row { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: .84rem; color: #71808f; }
.form-status { display: none; margin-top: 14px; padding: 14px 16px; border-radius: 12px; font-size: .94rem; }
.form-status.show { display: block; animation: fadeUp .4s var(--ease) both; }
.form-status.ok { background: rgba(15, 157, 63, .12); color: var(--green-dark); }
.form-status.err { background: rgba(200, 40, 40, .1); color: #a52121; }
.btn.is-loading { pointer-events: none; opacity: .75; }
.btn .spinner { width: 16px; height: 16px; border: 2px solid rgba(255, 255, 255, .4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.btn.is-loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.contact-tiles { display: grid; gap: 18px; }
.contact-tile { display: flex; gap: 14px; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.contact-tile svg { width: 22px; height: 22px; color: var(--green-dark); flex: none; margin-top: 4px; }
.contact-tile strong { display: block; color: var(--ink); }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); line-height: 0; }
.map-frame iframe { width: 100%; height: 380px; border: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-dark); color: #a8bcd6; padding: 72px 0 0; }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; }
.footer-brand img { width: 132px; margin-bottom: 1.2rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .93rem; }
.site-footer a { color: #a8bcd6; }
.site-footer a:hover { color: var(--white); }
.footer-social { display: flex; gap: .5rem; margin-top: 1rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255, 255, 255, .08); display: inline-flex; align-items: center; justify-content: center; transition: background .25s var(--ease), transform .25s var(--ease); }
.footer-social a:hover { background: var(--green); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-statement { margin-top: 56px; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, .1); text-align: center; font-family: var(--font-head); font-size: 1rem; color: var(--white); letter-spacing: .04em; }
.footer-base { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-bottom: 28px; font-size: .85rem; }
.footer-base ul { display: flex; flex-wrap: wrap; gap: 1.1rem; }

/* ---------- floating controls ---------- */
.float-wa, .scroll-top-btn {
  position: fixed; right: 20px; z-index: 950;
  width: 54px; height: 54px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); border: 0; cursor: pointer;
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.float-wa { bottom: 22px; background: #1faa53; color: #fff; }
.float-wa:hover { transform: translateY(-4px) scale(1.04); }
.float-wa svg { width: 27px; height: 27px; }
.scroll-top-btn { bottom: 88px; background: var(--navy); color: #fff; opacity: 0; pointer-events: none; }
.scroll-top-btn.show { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover { background: var(--navy-soft); transform: translateY(-4px); }
.scroll-top-btn svg { width: 20px; height: 20px; }

.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 980;
  max-width: 640px; margin-inline: auto;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px 22px;
  display: none;
  gap: 1rem; align-items: center; flex-wrap: wrap;
}
.cookie-banner.show { display: flex; animation: fadeUp .5s var(--ease) both; }
.cookie-banner p { margin: 0; font-size: .9rem; flex: 1 1 280px; }

/* ---------- motion ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.page-loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.page-loader img { width: 130px; border-radius: 16px; background: #fff; padding: 10px 14px; animation: pulseIn .9s var(--ease) both; }
@keyframes pulseIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }
body.loaded .page-loader { opacity: 0; visibility: hidden; }

/* ---------- blog / article ---------- */
.article { max-width: 78ch; margin-inline: auto; }
.article h2 { margin-top: 1.6em; }
.article-meta { font-size: .88rem; color: #71808f; margin-bottom: 1.6rem; }
.pull-quote { border-left: 3px solid var(--green); padding: .4rem 0 .4rem 1.4rem; font-family: var(--font-head); font-size: 1.2rem; color: var(--ink); margin: 1.8em 0; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav a { font-size: .8rem; letter-spacing: .04em; }
}

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .site-header .wrap { grid-template-columns: auto auto; justify-content: space-between; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: 100%;
    background: var(--navy-dark);
    padding: 96px 24px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .38s var(--ease);
    z-index: 1000;
  }
  body.nav-open .main-nav { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav li { border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .main-nav a { color: var(--white); font-size: 1rem; padding: 1rem .2rem; letter-spacing: .05em; }
  .main-nav a::after { display: none; }
  .main-nav .mobile-cta { display: block; margin-top: 26px; }
  .main-nav .mobile-cta .btn { width: 100%; justify-content: center; margin-bottom: .7rem; }
  .site-header.scrolled .main-nav a { color: var(--white); }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle { position: relative; z-index: 1001; background: rgba(255, 255, 255, .16); }
  body.nav-open .nav-toggle span::before, body.nav-open .nav-toggle span::after { background: #fff; }
  .topbar-hours, .topbar-address { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .topbar .wrap { justify-content: center; gap: .8rem; }
  .topbar-left { gap: .9rem; }
  .topbar span.label { display: none; }
  .hero { min-height: 620px; }
  .hero-inner { padding: 70px 0 96px; }
  .hero-strip { gap: 1.4rem; }
  .hero-strip strong { font-size: 1.5rem; }
  .page-banner { min-height: 380px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { justify-content: center; text-align: center; }
  .nav-brand img { width: 92px; }
  .float-wa, .scroll-top-btn { width: 50px; height: 50px; }
  .logo, .nav-brand img, .footer-brand img, .site-logo { border-radius: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
