/* ==========================================================================
   Cooling Solutions — site stylesheet
   Brand: navy #2B3990 · teal #2E9BB0 · orange #F26B24 · grey #7C7A7B
   ========================================================================== */

:root {
  --blue: #2b3990;
  --navy: #1a2455;
  --navy-deep: #131b40;
  --teal: #2e9bb0;
  --teal-dark: #22758a;
  --orange: #f26b24;
  --orange-dark: #d9581a;
  --ink: #1c2540;
  --muted: #5b6478;
  --line: #e3e9f2;
  --ice: #f2f7fb;
  --white: #ffffff;
  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(19, 27, 64, 0.06);
  --shadow-md: 0 10px 30px rgba(19, 27, 64, 0.10);
  --shadow-lg: 0 24px 60px rgba(19, 27, 64, 0.16);
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--orange); }

.wrap { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- typography helpers ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}

h1, h2, h3, h4 { line-height: 1.15; color: var(--navy); font-weight: 800; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin: 14px 0 18px;
  letter-spacing: -0.02em;
}
.section-title .tint { color: var(--teal); }
.section-title .warm { color: var(--orange); }

.lead { font-size: clamp(17px, 2vw, 19px); color: var(--muted); max-width: 62ch; }

section { padding: clamp(64px, 9vw, 110px) 0; }
section.tight { padding: clamp(40px, 6vw, 70px) 0; }

.center { text-align: center; }
.center .lead { margin-inline: auto; }
.center .eyebrow::before { display: none; }
.center .eyebrow::after { display: none; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 0;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 10px 26px rgba(242, 107, 36, 0.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(242, 107, 36, 0.46); color: #fff; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.22); color: #fff; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-md); }
.btn-navy:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}

.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 62px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > a, .dropdown > button {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 10px;
  transition: color 0.15s ease, background 0.15s ease;
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.main-nav > a:hover, .dropdown > button:hover { color: var(--teal-dark); background: var(--ice); }
.main-nav > a.active { color: var(--blue); background: var(--ice); }

.dropdown { position: relative; }
.dropdown > button svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.dropdown.open > button svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  translate: -50% 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.dropdown.open .dropdown-menu, .dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
@media (hover: hover) {
  .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.dropdown-menu a:hover { background: var(--ice); color: var(--teal-dark); }
.dropdown-menu a svg { width: 16px; height: 16px; color: var(--teal); flex: none; }

.header-cta { flex: none; }
.header-cta .btn { padding: 12px 24px; font-size: 14.5px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
}
.nav-toggle svg { width: 28px; height: 28px; color: var(--navy); display: block; }

@media (max-width: 960px) {
  .header-inner { height: 72px; }
  .brand img { height: 50px; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 18px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  body.nav-open .main-nav { display: flex; }
  .main-nav > a, .dropdown > button { padding: 14px 16px; font-size: 16px; width: 100%; justify-content: space-between; }
  .dropdown-menu {
    position: static;
    translate: none;
    transform: none;
    opacity: 1;
    visibility: hidden;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 16px;
    min-width: 0;
  }
  .dropdown.open .dropdown-menu { display: block; visibility: visible; }
}

/* ---------- hero (home) ---------- */

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  padding: 160px 0 120px;
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide.active .hero-slide-img { animation: kenburns 9s ease-out forwards; }
.hero-slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(78deg, rgba(15, 22, 54, 0.94) 0%, rgba(20, 32, 78, 0.82) 34%, rgba(21, 38, 82, 0.45) 62%, rgba(19, 27, 64, 0.25) 100%);
}
.hero-scrim::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(15, 22, 54, 0.55));
}

.hero-content { position: relative; z-index: 2; max-width: 640px; color: #fff; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9fdcec;
  background: rgba(46, 155, 176, 0.18);
  border: 1px solid rgba(159, 220, 236, 0.35);
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 12px var(--orange); }

.hero h1 {
  color: #fff;
  font-size: clamp(36px, 5.6vw, 62px);
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero h1 .hl { color: #7fd6e8; }
.hero h1 .hl2 {
  background: linear-gradient(90deg, #ffb37e, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p { font-size: clamp(17px, 2vw, 20px); color: rgba(255, 255, 255, 0.85); max-width: 54ch; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 92px;
  left: 50%;
  translate: -50% 0;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 34px;
  height: 5px;
  border-radius: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: background 0.25s ease;
  padding: 0;
}
.hero-dots button.active { background: var(--orange); }

/* ---------- page hero (inner pages) ---------- */

.page-hero {
  position: relative;
  padding: 190px 0 110px;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.page-hero .hero-scrim { background: linear-gradient(80deg, rgba(15, 22, 54, 0.93) 10%, rgba(21, 38, 82, 0.62) 60%, rgba(21, 38, 82, 0.38) 100%); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .crumb { font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #9fdcec; margin-bottom: 14px; }
.page-hero .crumb a { color: #9fdcec; }
.page-hero .crumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 54px); letter-spacing: -0.02em; margin-bottom: 14px; }
.page-hero p { max-width: 60ch; color: rgba(255, 255, 255, 0.85); font-size: clamp(16px, 2vw, 19px); }

/* ---------- trust strip ---------- */

.trust-strip { position: relative; z-index: 4; margin-top: -58px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}
.trust-item { padding: 30px 28px; display: flex; gap: 16px; align-items: flex-start; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; }
.trust-item .t-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(46, 155, 176, 0.14), rgba(43, 57, 144, 0.10));
  color: var(--teal-dark);
}
.trust-item .t-icon svg { width: 24px; height: 24px; }
.trust-item h3 { font-size: 16px; margin-bottom: 4px; }
.trust-item p { font-size: 14px; color: var(--muted); line-height: 1.55; }

@media (max-width: 960px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(-n+2) { border-top: 0; }
  .trust-item:nth-child(even) { border-left: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-left: 0 !important; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
}

/* ---------- about / welcome ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-media { position: relative; }
.about-media .photo-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  width: 100%;
}
.about-media .photo-float {
  position: absolute;
  right: -8%;
  bottom: -14%;
  width: 52%;
  border-radius: var(--radius);
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-media::before {
  content: "";
  position: absolute;
  inset: -26px auto auto -26px;
  width: 130px;
  height: 130px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 2px 2px, rgba(46, 155, 176, 0.5) 2.4px, transparent 2.6px);
  background-size: 18px 18px;
  z-index: -1;
}
.badge-years {
  position: absolute;
  left: 6%;
  bottom: -9%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.badge-years svg { width: 34px; height: 34px; color: #8fd8e8; flex: none; }
.badge-years strong { display: block; font-size: 17px; line-height: 1.25; }
.badge-years span { font-size: 13px; color: rgba(255, 255, 255, 0.75); }

.about-copy p { color: var(--muted); margin-bottom: 18px; }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill-list li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: var(--ice);
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 999px;
}
.pill-list svg { width: 15px; height: 15px; color: var(--orange); flex: none; }

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { margin-bottom: 60px; }
}

/* ---------- pillars (mission / safety / quality) ---------- */

.band-ice { background: linear-gradient(180deg, var(--ice), #fff); }

.card-grid { display: grid; gap: 26px; margin-top: 54px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 960px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.pillar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--teal), var(--blue));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar-card:hover::before { opacity: 1; }
.pillar-card .p-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  box-shadow: 0 10px 22px rgba(46, 155, 176, 0.35);
}
.pillar-card .p-icon svg { width: 28px; height: 28px; }
.pillar-card h3 { font-size: 20px; margin-bottom: 12px; }
.pillar-card p { color: var(--muted); font-size: 15.5px; }
.pillar-card p + p { margin-top: 10px; }

/* ---------- services ---------- */

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(46, 155, 176, 0.4); }
.service-card .s-icon {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(242, 107, 36, 0.12), rgba(46, 155, 176, 0.12));
  color: var(--orange);
}
.service-card .s-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 17px; margin-bottom: 6px; }
.service-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ---------- specials callout ---------- */

.specials {
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--navy) 0%, var(--blue) 55%, var(--teal-dark) 120%);
  color: #fff;
  padding: clamp(36px, 5vw, 56px);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.specials::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 107, 36, 0.35), transparent 70%);
}
.specials .sp-icon {
  flex: none;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
}
.specials .sp-icon svg { width: 32px; height: 32px; color: #ffb37e; }
.specials h2 { color: #fff; font-size: clamp(22px, 3vw, 30px); margin-bottom: 6px; }
.specials p { color: rgba(255, 255, 255, 0.82); max-width: 60ch; }
.specials .sp-body { flex: 1; min-width: 260px; position: relative; z-index: 1; }
.specials .btn { position: relative; z-index: 1; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}
.cta-band .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.cta-band .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 56ch; }
.cta-contacts { display: grid; gap: 16px; }
.cta-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 18px 22px;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cta-contact:hover { background: rgba(255, 255, 255, 0.13); color: #fff; transform: translateX(4px); }
.cta-contact svg { width: 24px; height: 24px; color: #8fd8e8; flex: none; }
.cta-contact strong { display: block; font-size: 16px; }
.cta-contact span { font-size: 13.5px; color: rgba(255, 255, 255, 0.65); }
@media (max-width: 860px) { .cta-band .wrap { grid-template-columns: 1fr; } }

/* ---------- offer page: policy rows ---------- */

.policy-row {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
}
.policy-row .pol-icon {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
}
.policy-row .pol-icon svg { width: 24px; height: 24px; }
.policy-row h3 { font-size: 17px; margin-bottom: 6px; letter-spacing: 0.02em; }
.policy-row p { color: var(--muted); font-size: 15px; }

/* ---------- sizing guide ---------- */

.sizer {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.sizer-calc {
  padding: clamp(30px, 4vw, 48px);
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 70%, var(--teal-dark) 130%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sizer-calc h3 { color: #fff; font-size: 24px; margin-bottom: 8px; }
.sizer-calc > p { color: rgba(255, 255, 255, 0.78); font-size: 15px; margin-bottom: 30px; }
.sizer-value { font-size: 15px; font-weight: 600; color: #9fdcec; margin-bottom: 10px; }
.sizer-value output { font-size: 34px; font-weight: 800; color: #fff; }
input[type="range"].room-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  outline: none;
  margin: 6px 0 28px;
}
input[type="range"].room-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid #fff;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
input[type="range"].room-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid #fff;
  cursor: pointer;
}
.sizer-result {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 20px 24px;
}
.sizer-result .label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: #9fdcec; margin-bottom: 4px; }
.sizer-result .value { font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: #ffb37e; line-height: 1.2; }
.sizer-result .note { font-size: 13px; color: rgba(255, 255, 255, 0.65); margin-top: 6px; }

.sizer-table { padding: clamp(30px, 4vw, 48px); }
.sizer-table h3 { font-size: 20px; margin-bottom: 18px; }
.table-modern { width: 100%; border-collapse: collapse; }
.table-modern th {
  text-align: left;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 12px 16px;
  border-bottom: 2px solid var(--line);
}
.table-modern td { padding: 14px 16px; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--ink); }
.table-modern td:last-child { color: var(--teal-dark); }
.table-modern tr:last-child td { border-bottom: 0; }
.table-modern tbody tr { transition: background 0.15s ease; }
.table-modern tbody tr:hover, .table-modern tbody tr.hit { background: var(--ice); }
.table-modern tbody tr.hit td:last-child { color: var(--orange); }

@media (max-width: 860px) { .sizer { grid-template-columns: 1fr; } }

/* ---------- products / brochures ---------- */

.note-banner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff7f1;
  border: 1px solid #ffd9bd;
  border-radius: 14px;
  padding: 18px 22px;
  margin: 30px 0 0;
}
.note-banner svg { width: 22px; height: 22px; color: var(--orange); flex: none; margin-top: 2px; }
.note-banner p { font-size: 14.5px; color: #8a4b21; }

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.brochure-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  color: var(--ink);
}
.brochure-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(242, 107, 36, 0.45); color: var(--ink); }
.brochure-card .b-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(242, 107, 36, 0.14), rgba(242, 107, 36, 0.05));
  color: var(--orange);
}
.brochure-card .b-icon svg { width: 24px; height: 24px; }
.brochure-card strong { display: block; font-size: 15px; line-height: 1.35; }
.brochure-card span { font-size: 12.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.brochure-card:hover span { color: var(--orange); }

.group-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 56px;
  font-size: 22px;
}
.group-title:first-of-type { margin-top: 40px; }
.group-title .g-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  flex: none;
}
.group-title .g-icon svg { width: 22px; height: 22px; }

/* ---------- contact pages ---------- */

.branch-tabs { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.branch-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid var(--line);
  color: var(--muted);
  background: #fff;
  transition: all 0.2s ease;
}
.branch-tab svg { width: 17px; height: 17px; }
.branch-tab.active {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.branch-tab:not(.active):hover { border-color: var(--teal); color: var(--teal-dark); }

.contact-layout { display: grid; grid-template-columns: 1fr 1.35fr; gap: 30px; align-items: start; }
@media (max-width: 960px) { .contact-layout { grid-template-columns: 1fr; } }

.person-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  margin-bottom: 22px;
}
.person-card .ph {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.person-card .avatar {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 19px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}
.person-card h3 { font-size: 19px; }
.person-card .role { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 15.5px;
}
.contact-line svg { width: 18px; height: 18px; color: var(--teal); flex: none; }
.contact-line a { color: var(--ink); }
.contact-line a:hover { color: var(--orange); }
.contact-line .tag { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); width: 52px; flex: none; }

.map-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.map-card iframe { width: 100%; height: 100%; min-height: 520px; border: 0; display: block; }
.map-card .map-head {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.map-card .map-head svg { width: 22px; height: 22px; color: var(--orange); flex: none; }
.map-card .map-head strong { font-size: 16px; color: var(--navy); display: block; }
.map-card .map-head span { font-size: 14px; color: var(--muted); }

/* ---------- footer ---------- */

.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.75); position: relative; }
.footer-swoosh { display: block; width: 100%; height: 70px; }
.footer-main { padding: 40px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 78px; width: auto; border-radius: 12px; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; line-height: 1.7; max-width: 34ch; }

.site-footer h4 {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 11px; }
.site-footer ul a { color: rgba(255, 255, 255, 0.72); font-size: 14.5px; transition: color 0.15s ease, padding-left 0.15s ease; }
.site-footer ul a:hover { color: #ffb37e; padding-left: 4px; }

.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--teal); flex: none; margin-top: 4px; }
.footer-contact a { color: rgba(255, 255, 255, 0.72); }
.footer-contact a:hover { color: #ffb37e; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255, 255, 255, 0.65); }
.footer-bottom a:hover { color: #ffb37e; }

/* ---------- reveal animations ---------- */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide.active .hero-slide-img { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- back to top ---------- */

.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 22px; height: 22px; }

::selection { background: rgba(46, 155, 176, 0.25); }
