:root {
  --teal-950: #0A2624;
  --teal-900: #0D302D;
  --teal-800: #123F3A;
  --teal-700: #1A544D;
  --teal-600: #246B62;
  --teal-100: #E4EEEC;
  --teal-50: #F2F7F6;
  --cream: #F6F3EC;
  --paper: #FFFFFF;
  --ink: #152220;
  --ink-soft: #4D5B58;
  --red: #D5151C;
  --red-dark: #A80F15;
  --line: #DDE4E1;
  --shadow-sm: 0 4px 16px rgba(10, 38, 36, .06);
  --shadow-md: 0 12px 36px rgba(10, 38, 36, .10);
  --shadow-lg: 0 24px 56px rgba(10, 38, 36, .14);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --radius: 0.75rem;
  --radius-lg: 1.25rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.display-serif {
  font-family: var(--font-display);
  color: var(--teal-950);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: var(--teal-700);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: var(--red);
}

.text-red {
  color: var(--red) !important;
}

.bg-teal-950 {
  background: var(--teal-950) !important;
}

.bg-teal-900 {
  background: var(--teal-900) !important;
}

.bg-teal-100 {
  background: var(--teal-100) !important;
}

.bg-teal-50 {
  background: var(--teal-50) !important;
}

.bg-cream {
  background: var(--cream) !important;
}

.bg-primary {
  background-color: var(--red) !important;
}

.rounded-full {
  border-radius: 50%;
}

.w-9 {
  width: 2.25rem;
}

.h-9 {
  height: 2.25rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.eyebrow-light {
  color: rgba(255, 255, 255, .7);
}

.eyebrow-light::before {
  background: var(--red);
}

/* ---------- Buttons ---------- */
.btn-brand {
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 24px rgba(213, 21, 28, .28);
}

.btn-brand:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(213, 21, 28, .35);
}

.btn-outline-brand {
  background: transparent;
  border: 1.5px solid var(--teal-950);
  color: var(--teal-950);
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px !important;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.btn-outline-brand:hover {
  background: var(--teal-950);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-light-line {
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .45);
  color: #fff;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px !important;
  backdrop-filter: blur(6px);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.btn-outline-light-line:hover {
  background: #fff;
  color: var(--teal-950);
  border-color: #fff;
  transform: translateY(-1px);
}

.btn-nav-cta {
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background .2s ease, box-shadow .2s ease;
}

.btn-nav-cta:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(213, 21, 28, .3);
}

/* ---------- Navbar ---------- */
.site-nav {
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 1rem 0;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, padding .35s ease;
  z-index: 1030;
}

.site-nav .navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--teal-950);
  letter-spacing: -0.02em;
}

.site-nav .navbar-brand span {
  letter-spacing: .025em;
  font-weight: 600;
}

.site-nav .nav-link {
  min-width: 120px;
  text-align: left;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.45rem 0.75rem !important;
  position: relative;
  transition: color .2s ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--red);
}

.site-nav .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  margin-top: 0.5rem !important;
}

.site-nav .dropdown-item {
  border-radius: calc(var(--radius) - 2px);
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav .dropdown-item:hover {
  background: var(--teal-100);
  color: var(--teal-950);
}

.nav-transparent {
  background: transparent;
  border-bottom-color: transparent;
}

.nav-transparent .nav-link {
  color: rgba(255, 255, 255, .88);
}

.nav-transparent .nav-link:hover,
.nav-transparent .nav-link.active,
.nav-transparent .navbar-brand {
  color: #fff;
}

.nav-transparent .navbar-brand span {
  color: var(--white);
}

.nav-transparent .navbar-toggler {
  border-color: rgba(255, 255, 255, .4);
  border-radius: 0.5rem;
  padding: 0.4rem 0.55rem;
}

.nav-transparent .navbar-toggler-icon {
  filter: invert(1);
}

.site-nav.nav-scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  padding: 0.65rem 0;
}

.site-nav.nav-scrolled .nav-link {
  color: var(--ink);
}

.site-nav.nav-scrolled .nav-link:hover,
.site-nav.nav-scrolled .nav-link.active {
  color: var(--red);
}

.site-nav.nav-scrolled .navbar-brand {
  color: var(--teal-950);
}

.site-nav.nav-scrolled .navbar-brand span {
  color: var(--red);
}

.site-nav.nav-scrolled .navbar-toggler-icon {
  filter: none;
}

.site-nav.nav-scrolled .navbar-toggler {
  border-color: var(--line);
}

@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    background: var(--paper);
    border-radius: var(--radius-lg);
    margin-top: 0.85rem;
    padding: 1rem 1.15rem 1.25rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
  }

  .nav-transparent .navbar-collapse .nav-link,
  .site-nav.nav-scrolled .navbar-collapse .nav-link {
    color: var(--ink);
  }

  .nav-transparent .navbar-collapse .nav-link:hover,
  .nav-transparent .navbar-collapse .nav-link.active {
    color: var(--red);
  }

  .site-nav .navbar-collapse .btn-nav-cta {
    display: inline-block;
    margin-top: 0.75rem;
    text-align: center;
  }
}

/* ---------- Parallax / layered sections ---------- */
.parallax {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.parallax-overlay-teal {
  background:
    linear-gradient(115deg, rgba(10, 38, 36, .94) 0%, rgba(10, 38, 36, .78) 45%, rgba(18, 63, 58, .55) 100%),
    linear-gradient(0deg, rgba(10, 38, 36, .35) 0%, transparent 40%);
}

.parallax-overlay-dark {
  background:
    linear-gradient(180deg, rgba(10, 38, 36, .78) 0%, rgba(10, 38, 36, .68) 100%);
}

.parallax-overlay-deep {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(213, 21, 28, .18) 0%, transparent 50%),
    linear-gradient(120deg, rgba(10, 38, 36, .92) 0%, rgba(13, 48, 45, .8) 100%);
}

.parallax .container,
.parallax>.container-fluid {
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .parallax {
    background-attachment: scroll;
  }
}

/* ---------- Hero ---------- */
.hero-v2 {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 7.5rem 0 5rem;
}

.hero-v2 h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.8vw, 4.4rem);
  line-height: 1.05;
  max-width: 16ch;
}

.hero-v2 .lead {
  color: rgba(255, 255, 255, .82);
  font-size: 1.1rem;
  max-width: 34rem;
  font-weight: 400;
}

.hero-v2 .scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .65);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  animation: cueBob 2.2s ease-in-out infinite;
}

@keyframes cueBob {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: .65;
  }

  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 1;
  }
}

.hero-brand-mark {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-brand-mark span {
  color: var(--red);
}

/* ---------- Sections ---------- */
.section-pad {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

@media (min-width:992px) {
  .section-pad {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }
}

.section-head {
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  max-width: 18ch;
  margin-bottom: 0.85rem;
}

.section-head p {
  color: var(--ink-soft);
  max-width: 36rem;
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ---------- Category tiles ---------- */
.cat-tile {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 300px;
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease;
}

.cat-tile:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: #fff;
}

.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .65s cubic-bezier(.22, 1, .36, 1);
}

.cat-tile:hover img {
  transform: scale(1.08);
}

.cat-tile .cat-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 38, 36, .92) 0%, rgba(10, 38, 36, .25) 55%, rgba(10, 38, 36, .1) 100%);
  transition: background .3s ease;
}

.cat-tile:hover .cat-scrim {
  background: linear-gradient(0deg, rgba(10, 38, 36, .94) 0%, rgba(10, 38, 36, .35) 55%, rgba(10, 38, 36, .15) 100%);
}

.cat-tile .cat-label {
  position: relative;
  z-index: 1;
}

.cat-tile .cat-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}

.cat-tile:hover .cat-arrow {
  opacity: 1;
  transform: translateY(0);
}

.cat-cta-tile {
  background: linear-gradient(145deg, var(--teal-950) 0%, var(--teal-800) 100%);
  border-radius: var(--radius-lg);
  min-height: 300px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Stats ---------- */
.stat-counter {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.25rem);
  color: #fff;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-label {
  color: rgba(255, 255, 255, .72);
  font-size: 0.92rem;
  font-weight: 500;
}

/* ---------- Product cards ---------- */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) grayscale(1) brightness(0.25);
}

.product-carousel .carousel-control-prev,
.product-carousel .carousel-control-next {
  width: 3.5rem;
}

.product-carousel .carousel-control-prev {
  left: -0.5rem;
}

.product-carousel .carousel-control-next {
  right: -0.5rem;
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  height: 100%;
  overflow: hidden;
  transition: box-shadow .28s ease, transform .28s ease, border-color .28s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: transparent;
}

.product-card .thumb {
  background: linear-gradient(160deg, var(--teal-50) 0%, var(--teal-100) 100%);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.product-card .thumb img {
  max-height: 140px;
  max-width: 85%;
  object-fit: contain;
  transition: transform .35s ease;
}

.product-card:hover .thumb img {
  transform: scale(1.05);
}

.product-card .body {
  padding: 1.2rem 1.3rem 1.4rem;
}

.product-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.3rem;
  line-height: 1.35;
}

.product-card .pack {
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.tag-pill {
  display: inline-block;
  border: 1px solid var(--line);
  background: var(--teal-50);
  padding: 0.28rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-700);
  border-radius: 999px;
}

/* ---------- Feature / why-us cards ---------- */
.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.5rem;
  height: 100%;
  transition: box-shadow .28s ease, transform .28s ease, border-color .28s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--teal-100);
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: var(--shadow-md);
}

.about-visual-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 38, 36, .15) 0%, rgba(10, 38, 36, .55) 100%);
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-950);
  line-height: 1.1;
}

.about-badge span {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ---------- Sister companies ---------- */
.sister-card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  transition: box-shadow .28s ease, transform .28s ease, border-color .28s ease;
}

.sister-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.sister-card .name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--teal-950);
}

.sister-card .sister-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.sister-card .sister-link:hover {
  color: var(--red);
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(165deg, var(--teal-950) 0%, #071a18 100%);
  color: rgba(255, 255, 255, .78);
  padding: 4.5rem 0 1.75rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 21, 28, .12) 0%, transparent 70%);
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer h5 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.site-footer a {
  color: rgba(255, 255, 255, .72);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .footer-links li {
  margin-bottom: 0.7rem;
  font-size: 0.93rem;
}

.site-footer .logo-red {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}

.site-footer .logo-red span {
  letter-spacing: .025em;
  font-weight: 600;
}

.site-footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  margin-right: 0.5rem;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.site-footer .social-icons a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.site-footer .bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 3.25rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .5);
}

.site-footer .contact-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.site-footer .contact-chip i {
  color: var(--red);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ---------- Lang switch ---------- */
.lang-switch-btn {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  background: transparent;
  transition: all .2s ease;
}

.lang-switch-btn:hover {
  background: var(--teal-950);
  color: #fff;
  border-color: var(--teal-950);
}

.nav-transparent .lang-switch-btn {
  border-color: rgba(255, 255, 255, .35);
  color: rgba(255, 255, 255, .9);
}

.nav-transparent .lang-switch-btn:hover {
  background: #fff;
  color: var(--teal-950);
  border-color: #fff;
}

.site-nav.nav-scrolled .lang-switch-btn {
  border-color: var(--line);
  color: var(--ink);
}

.site-nav.nav-scrolled .lang-switch-btn:hover {
  background: var(--teal-950);
  color: #fff;
  border-color: var(--teal-950);
}

/* ---------- Products dropdown ---------- */
.products-dropdown {
  min-width: 240px;
  max-height: 70vh;
  overflow-y: auto;
}

.products-dropdown .dropdown-cat {
  font-weight: 700;
  color: var(--teal-950);
  font-size: 0.9rem;
}

.products-dropdown .dropdown-sub {
  padding-inline-start: 1.6rem !important;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ---------- Inner page hero ---------- */
.page-hero {
  padding-top: 6.5rem;
  padding-bottom: 3rem;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

.page-breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .7);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, .78);
}

.page-breadcrumb a:hover {
  color: #fff;
}

.page-breadcrumb .current {
  color: #fff;
  font-weight: 600;
}

.page-inner .page-breadcrumb:not(.page-hero .page-breadcrumb) a {
  color: var(--teal-700);
}

.page-inner .page-breadcrumb:not(.page-hero .page-breadcrumb) {
  color: var(--ink-soft);
}

/* ---------- Product detail ---------- */
.product-detail-media {
  background: linear-gradient(160deg, var(--teal-50) 0%, var(--teal-100) 100%);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.product-detail-media img {
  max-height: 420px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ---------- Contact ---------- */
.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width:768px) {
  .contact-form-card {
    padding: 2.5rem;
  }
}

.contact-label {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.contact-input {
  border-radius: 0.65rem;
  border-color: var(--line);
  padding: 0.7rem 0.95rem;
}

.contact-input:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 0.2rem rgba(36, 107, 98, .15);
}

.contact-info-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}

.contact-info-card .icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  background: var(--teal-100);
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .label {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.contact-map iframe {
  display: block;
}

/* ---------- CTA band ---------- */
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  color: rgba(255, 255, 255, .78);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}