/* ===========================================================
   Illini Truck & Trailer Repair — styles
   Display: Squada One  ·  Body: Nunito Sans
   Orange #fe5e00 · Navy #222747 · Gray #d9d9d9 · Off-white #f7f7f7
   =========================================================== */

:root {
  --orange: #fe5e00;
  --orange-dark: #d94f00;
  --navy: #222747;
  --navy-deep: #1a1e39;
  --gray: #d9d9d9;
  --gray-mid: #8a8d9c;
  --offwhite: #f7f7f7;
  --white: #ffffff;
  --ink: #1d2033;
  --body: #44485c;

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 72px);
  --nav-h: 84px;
  --topbar-h: 39px;

  --font-display: "Squada One", "Arial Narrow", sans-serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, sans-serif;

  --shadow-lg: 0 30px 70px -28px rgba(26, 30, 57, 0.45);
  --shadow-md: 0 18px 44px -22px rgba(26, 30, 57, 0.38);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + var(--topbar-h)); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--navy);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0;
  text-transform: uppercase;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  color: var(--orange);
  margin: 0 0 18px;
  display: inline-block;
}
.eyebrow.on-dark { color: var(--orange); }

/* ---------- Buttons / link-CTAs ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  line-height: 1;
}
.btn:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn.btn-navy { background: var(--navy); }
.btn.btn-navy:hover { background: var(--navy-deep); }
.btn.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn.btn-outline:hover { background: #fff; color: var(--navy); }

.link-cta {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--orange);
  transition: gap .2s ease, color .2s;
}
.link-cta.on-dark { color: #fff; border-color: var(--orange); }
.link-cta:hover { color: var(--orange-dark); }

.site-header { position: sticky; top: 0; z-index: 100; }

/* ===========================================================
   TOP BAR
   =========================================================== */
.topbar {
  background: var(--orange);
  color: #fff;
}
.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 9px var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  flex-wrap: wrap;
  font-size: 14px;
}
.topbar-label {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--navy);
}
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  font-size: 16px;
}
.topbar-phone svg { width: 17px; height: 17px; }
.topbar-phone:hover { text-decoration: underline; }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: relative;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #ececef;
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 100%;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 14px; height: 100%; }
.nav-logo img { height: 60px; width: auto; }
.nav-wordmark {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  max-width: 7.5em;
}

.nav-right { display: flex; align-items: center; gap: 38px; }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.nav-contact {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff !important;
  padding: 11px 26px;
  border-radius: 2px;
}
.nav-contact::after { display: none !important; }
.nav-contact:hover { background: var(--orange-dark); }

/* phone icon + burger (hidden on desktop) */
.nav-mobile { display: none; align-items: center; gap: 6px; }
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border: none;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  border-radius: 4px;
}
.icon-btn:hover { background: var(--offwhite); }
.icon-btn svg { width: 26px; height: 26px; }
.phone-btn { color: var(--orange); }

.burger { flex-direction: column; }
.burger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
}
.burger span + span { margin-top: 5px; }
.nav.open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .burger span:nth-child(2) { opacity: 0; }
.nav.open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* mobile dropdown panel */
.mobile-menu {
  position: fixed;
  top: calc(var(--nav-h) + var(--topbar-h));
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid #ececef;
  box-shadow: var(--shadow-md);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 99;
}
.nav.open + .mobile-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu ul { list-style: none; margin: 0; padding: 8px var(--pad) 22px; }
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 16px 0;
  border-bottom: 1px solid #efeff2;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.is-contact { color: var(--orange); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  background: var(--navy);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: min(78vh, 720px);
}
.hero-copy {
  position: relative;
  padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 80px) clamp(80px, 9vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1.5px, transparent 0) 0 0 / 22px 22px,
    linear-gradient(160deg, #272c50 0%, var(--navy) 55%, var(--navy-deep) 100%);
}
.hero-copy h1 {
  color: #fff;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.95;
  margin: 0 0 26px;
}
.hero-copy h1 .accent { color: var(--orange); }
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: #c9cbd9;
  max-width: 32ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-media {
  position: relative;
  background: #000;
  overflow: hidden;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* hero info strip */
.hero-strip {
  background: var(--orange);
  color: #fff;
}
.hero-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 48px;
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: center;
}
.hero-strip .item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
}
.hero-strip .item svg { width: 22px; height: 22px; flex: none; }
.hero-strip .item span.label {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 18px;
}
.hero-strip a.item:hover { text-decoration: underline; }

/* ===========================================================
   INTRO overlapping card
   =========================================================== */
/* ===========================================================
   INTRO  (team photo + overlapping owner box)
   =========================================================== */
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section.tight { padding-top: clamp(40px, 6vw, 80px); }

.intro-section { padding-top: clamp(56px, 8vw, 110px); }
.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.intro-media { position: relative; }
.intro-media .photo-main {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.intro-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -26px; top: -26px;
  width: 55%; height: 50%;
  background: radial-gradient(circle at 1px 1px, var(--gray) 1.5px, transparent 0) 0 0 / 18px 18px;
  opacity: 0.8;
}
.owner-box {
  position: absolute;
  z-index: 3;
  left: -18px;
  bottom: -22px;
  background: var(--orange);
  color: #fff;
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.owner-eyebrow {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  opacity: 0.92;
}
.owner-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.intro-copy .lede { margin-bottom: 24px; }

.lede {
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.5;
  color: var(--navy);
  font-weight: 600;
  max-width: 30ch;
}

/* ===========================================================
   ABOUT
   =========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}
.about-media { position: relative; }
.about-media .photo-main {
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.about-media.is-logo .photo-main {
  object-fit: contain;
  background: var(--offwhite);
  padding: clamp(30px, 5vw, 60px);
  aspect-ratio: 4/5;
}
.about-media .badge {
  position: absolute;
  z-index: 3;
  right: -22px;
  bottom: 34px;
  background: var(--orange);
  color: #fff;
  padding: 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-media .badge .big {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
}
.about-media .badge .small {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}
.about-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -26px; top: -26px;
  width: 60%; height: 55%;
  background:
    radial-gradient(circle at 1px 1px, var(--gray) 1.5px, transparent 0) 0 0 / 18px 18px;
  opacity: 0.8;
}
.section-head h2 { font-size: clamp(38px, 5vw, 66px); margin-bottom: 8px; }
.about-copy .section-head { margin-bottom: 22px; }

/* ===========================================================
   SERVICES (navy, numbered accordion)
   =========================================================== */
.services {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1.5px, transparent 0) 0 0 / 26px 26px;
  pointer-events: none;
}
.services .wrap { position: relative; z-index: 1; }
.services h2 { color: #fff; font-size: clamp(38px, 5vw, 66px); }
.services .intro { color: #c9cbd9; max-width: 52ch; margin-top: 14px; }

.acc-list { margin-top: clamp(36px, 5vw, 56px); border-top: 1px solid rgba(255,255,255,0.16); }
.acc-item { border-bottom: 1px solid rgba(255,255,255,0.16); }
.acc-head {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 42px);
  padding: clamp(22px, 3vw, 32px) 4px;
  text-align: left;
  font-family: var(--font-body);
}
.acc-num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.acc-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 40px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  transition: color .25s ease;
  line-height: 1;
}
.acc-item.open .acc-title,
.acc-head:hover .acc-title { color: #fff; }
.acc-plus {
  width: 40px; height: 40px;
  position: relative;
  flex: none;
}
.acc-plus::before, .acc-plus::after {
  content: "";
  position: absolute;
  background: var(--orange);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.acc-plus::before { left: 50%; top: 8px; width: 3px; height: 24px; transform: translateX(-50%); }
.acc-plus::after { top: 50%; left: 8px; height: 3px; width: 24px; transform: translateY(-50%); }
.acc-item.open .acc-plus::before { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.acc-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.acc-panel-inner {
  padding: 0 4px clamp(26px, 3vw, 36px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(16px, 3vw, 42px);
}
.acc-panel-inner .spacer { width: 14px; }
.acc-body {
  grid-column: 2;
  color: #cfd1de;
  max-width: 62ch;
  font-size: 17px;
}
.acc-body .shurco {
  margin-top: 18px;
  background: #fff;
  display: inline-block;
  padding: 14px 20px;
  border-radius: 3px;
}
.acc-body .shurco img { height: 34px; width: auto; }

/* ===========================================================
   GALLERY band
   =========================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.gallery figure { margin: 0; position: relative; aspect-ratio: 1/1; overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.06); }

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonials { background: var(--offwhite); }
.t-slider { margin-top: clamp(36px, 5vw, 52px); }
.t-viewport { overflow: hidden; }
.t-track { display: flex; transition: transform .45s cubic-bezier(.4,.0,.2,1); }
.t-slide { min-width: 100%; box-sizing: border-box; display: flex; justify-content: center; padding: 0 10px; }
@media (min-width: 1025px) { .t-slide { min-width: 50%; } }
@media (min-width: 681px) and (max-width: 1024px) { .t-slide { min-width: 50%; } }
.t-card {
  background: #fff;
  padding: clamp(28px, 3vw, 40px);
  border-radius: 3px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--orange);
  display: flex;
  flex-direction: column;
  width: 100%;
}
.t-stars { color: var(--orange); letter-spacing: 3px; font-size: 19px; margin-bottom: 16px; }
.t-quote { color: var(--navy); font-size: clamp(18px, 1.5vw, 21px); line-height: 1.5; font-weight: 600; flex: 1; }
.t-by {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.t-loc { font-size: 14px; font-weight: 700; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.08em; }

.t-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 30px; }
.t-controls.hidden { display: none; }
.t-arrow {
  width: 50px; height: 50px;
  border: none; cursor: pointer;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.t-arrow:hover { background: var(--orange); transform: translateY(-2px); }
.t-arrow svg { width: 22px; height: 22px; }
.t-dots { display: flex; gap: 10px; }
.t-dot {
  width: 11px; height: 11px; padding: 0;
  border: none; cursor: pointer;
  border-radius: 50%;
  background: var(--gray);
  transition: background .2s, transform .2s;
}
.t-dot:hover { background: var(--gray-mid); }
.t-dot.active { background: var(--orange); transform: scale(1.25); }

/* ===========================================================
   FAQ
   =========================================================== */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.faq-list { border-top: 2px solid var(--gray); }
.faq-item { border-bottom: 2px solid var(--gray); }
.faq-q {
  width: 100%;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 2px;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 27px);
  color: var(--navy);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  transition: color .2s;
}
.faq-q:hover { color: var(--orange); }
.faq-icon { position: relative; width: 28px; height: 28px; flex: none; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--orange); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.faq-icon::before { left: 50%; top: 4px; width: 3px; height: 20px; transform: translateX(-50%); }
.faq-icon::after { top: 50%; left: 4px; height: 3px; width: 20px; transform: translateY(-50%); }
.faq-item.open .faq-icon::before { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-panel { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq-panel p { padding: 0 2px 26px; color: var(--body); }

/* ===========================================================
   WISEHART breakout
   =========================================================== */
.wisehart {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.wisehart .wrap { position: relative; z-index: 1; }
.wisehart::before {
  content: "";
  position: absolute; right: -8%; top: -30%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(254,94,0,0.16), transparent 70%);
}
.wisehart-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.wisehart h2 { color: #fff; font-size: clamp(34px, 4.4vw, 56px); }
.wisehart .sub { color: var(--orange); }
.wisehart p { color: #cfd1de; }
.wh-services { list-style: none; padding: 0; margin: 22px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; max-width: 460px; }
.wh-services li { display: flex; align-items: center; gap: 12px; font-weight: 700; color: #fff; }
.wh-services li::before { content: ""; width: 9px; height: 9px; background: var(--orange); transform: rotate(45deg); flex: none; }

/* ===========================================================
   CONTACT + MAP
   =========================================================== */
.contact { background: var(--navy); color: #fff; }
.contact .eyebrow { color: var(--orange); }
.contact-info h2 { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-info { color: #cfd1de; }
.contact-info .detail-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-info .detail-row svg { width: 26px; height: 26px; color: var(--orange); flex: none; margin-top: 3px; }
.contact-info .detail-row .label { font-family: var(--font-display); font-size: 18px; color: #fff; letter-spacing: 0.04em; margin-bottom: 2px; }
.contact-info .detail-row a { color: #cfd1de; }
.contact-info .detail-row a:hover { color: var(--orange); }

form.cform { display: grid; gap: 18px; background: #fff; padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow-md); border-radius: 3px; }
form.cform label { font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); margin-bottom: 7px; display: block; }
form.cform input, form.cform textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 2px solid #e3e3ea;
  border-radius: 3px;
  background: #fbfbfc;
  color: var(--ink);
  transition: border-color .2s;
}
form.cform input:focus, form.cform textarea:focus { outline: none; border-color: var(--orange); }
form.cform textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 14px; color: var(--gray-mid); }
.form-status { font-weight: 700; color: var(--navy); display: none; }
.form-status.show { display: block; }

.map-embed { width: 100%; border: 0; aspect-ratio: 16/8; display: block; border-radius: 4px; box-shadow: var(--shadow-md); margin-top: 8px; max-width: 480px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--offwhite); color: #50525e; padding: clamp(54px, 7vw, 84px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr; gap: clamp(32px, 5vw, 56px); padding-bottom: 56px; }
.footer-logo { display: inline-block; }
.footer a { color: var(--navy); }
.footer-wisehart .wh-name { font-family: var(--font-display); font-size: 22px; color: var(--navy); letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 10px; line-height: 1; }
.footer-wisehart p { font-size: 15px; }
.footer-wisehart .wh-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 16px; }
.footer-wisehart .link-cta { font-size: 16px; }
.footer-wisehart .wh-visit { font-weight: 800; color: var(--navy); font-size: 14px; }
.footer-wisehart .wh-visit:hover { color: var(--orange); }
.footer-logo img { height: 120px; width: auto; }
.footer h4 { color: var(--navy); font-size: 22px; margin-bottom: 20px; letter-spacing: 0.04em; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 12px; }
.footer ul a:hover { color: var(--orange); }
.footer .f-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer .f-detail svg { width: 20px; height: 20px; color: var(--orange); flex: none; margin-top: 3px; }
.socials { display: flex; gap: 12px; margin-top: 8px; }
.socials a {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(34,39,71,0.08);
  border-radius: 4px;
  transition: background .2s, transform .2s;
}
.socials a:hover { background: var(--orange); transform: translateY(-2px); }
.socials svg { width: 22px; height: 22px; color: var(--navy); }
.socials a:hover svg { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(34,39,71,0.16);
  padding: 24px 0;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  font-size: 14px;
}
.footer-bottom .sister a { color: var(--navy); font-weight: 800; }
.footer-bottom .sister a:hover { color: var(--orange); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
  :root { --nav-h: 76px; }
  .nav-right .nav-links, .nav-right .nav-contact { display: none; }
  .nav-mobile { display: flex; }
  .nav-logo img { height: 52px; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 320px; order: -1; }
  .hero-media img { height: 100%; }

  .intro-grid { grid-template-columns: 1fr; }
  .intro-media { max-width: 480px; margin: 0 auto 18px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin: 0 auto; }
  .about-media .badge { right: 8px; }

  .faq-grid { grid-template-columns: 1fr; }
  .wisehart-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-logo { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .nav-wordmark { display: none; }
  .hero-strip .wrap { gap: 12px 28px; }
  .wh-services { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .about-media .badge { right: 0; bottom: 12px; padding: 16px 18px; }
  .about-media .badge .big { font-size: 30px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
