/* ==========================================================================
   Blueseven Cleaning Services — shared stylesheet
   Design tokens (custom properties) + base + reusable components.
   Fonts are loaded via <link> in each page <head> (Archivo, Hanken Grotesk, DM Mono).
   ========================================================================== */

:root{
  /* Type */
  --font-heading: 'Archivo', 'Hanken Grotesk', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --font-mono: 'DM Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* Text colors */
  --c-ink: #101418;       /* headings, primary text */
  --c-ink-2: #16202B;     /* nav links, card headers */
  --c-body: #2C3238;      /* hero / lead paragraphs */
  --c-body-2: #3E464D;    /* secondary paragraphs */
  --c-body-3: #22282D;    /* list items, review copy */
  --c-muted: #59626A;     /* fine print */
  --c-muted-2: #8494A3;   /* meta text, breadcrumbs */
  --c-faint: #B8C4CF;     /* disabled marks */

  /* Brand */
  --c-navy: #12324E;      /* primary buttons, dark cards, trust bar */
  --c-navy-deep: #0E2740; /* footer background */
  --c-navy-hover: #1B4670;
  --c-green: #177A52;     /* accent — eyebrows, checks, hover states */
  --c-green-light: #5FD3A0;
  --c-green-bg: #EFF6F2;
  --c-green-border: #D6E8DF;
  --c-blue: #2C6FB8;      /* links */
  --c-blue-accent: #4A8FD4; /* badges, focus rings */
  --c-blue-soft: #6BA9E5;
  --c-blue-pale: #8FBEE9;
  --c-blue-light: #A9C4DE;
  --c-blue-lighter: #E4EDF6;
  --c-blue-bg: #EAF2FA;
  --c-blue-bg-2: #F4F8FC;
  --c-yellow: #F2B01E;    /* star ratings */

  /* Surfaces & borders */
  --c-white: #FFFFFF;
  --c-bg: #FAFBFC;        /* off-white section background */
  --c-bg-green-tint: #F1F7F4;
  --c-border: #E6EAEF;
  --c-border-2: #EEF1F5;
  --c-border-3: #F0F3F7;
  --c-border-4: #DDE4EB;
  --c-border-5: #C9D6E3;
  --c-border-6: #D8DFE7;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-2xl: 28px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-card: 0 1px 0 rgba(16,32,50,.05), 0 14px 34px -16px rgba(16,32,50,.28);
  --shadow-card-sm: 0 1px 1px rgba(16,32,50,.04), 0 10px 20px -12px rgba(16,32,50,.3);
  --shadow-card-hover: 0 2px 2px rgba(16,32,50,.04), 0 16px 28px -14px rgba(23,122,82,.45);
  --shadow-hero: 0 20px 50px rgba(16,32,50,.12);
  --shadow-navy: 0 10px 24px rgba(18,50,78,.22);
  --shadow-navy-lg: 0 16px 40px rgba(18,50,78,.22);
  --shadow-panel: 0 1px 2px rgba(16,32,50,.04), 0 12px 34px rgba(16,32,50,.07);

  /* Layout */
  --container-max: 1160px;
  --container-narrow: 820px;
  --container-copy: 700px;
  --space-x: clamp(1.125rem, 0.85rem + 1.3vw, 2.25rem);
  --space-section-sm: clamp(1.75rem, 1.15rem + 2.9vw, 3.25rem);
  --space-section-md: clamp(2.125rem, 1.3rem + 3.8vw, 3.875rem);
  --space-section-lg: clamp(2.75rem, 1.5rem + 5.8vw, 5.25rem);

  --header-h: 68px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1,h2,h3,h4{ font-family: var(--font-heading); margin: 0; }
p{ margin: 0; }
ul, ol{ margin: 0; padding: 0; }
img{ max-width: 100%; display: block; }
a{ color: var(--c-blue); text-decoration: none; }
a:hover{ color: var(--c-ink); }
button{ font-family: inherit; }
input, textarea, select{ font-family: inherit; }

summary{ list-style: none; cursor: pointer; }
summary::-webkit-details-marker{ display: none; }

.visually-hidden{
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link{
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--c-navy); color: #fff; padding: 12px 18px; border-radius: var(--radius-sm);
  font-weight: 700; transition: top .15s ease;
}
.skip-link:focus{ top: 12px; color: #fff; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container{ max-width: var(--container-max); margin-inline: auto; }
.container--narrow{ max-width: var(--container-narrow); }
.container--copy{ max-width: var(--container-copy); }

.section{ padding: var(--space-section-md) var(--space-x); }
.section--sm{ padding-block: var(--space-section-sm); }
.section--lg{ padding-block: var(--space-section-lg); }
.section--top-border{ border-top: 1px solid var(--c-border-2); }
.section--white{ background: var(--c-white); }
.section--bg{ background: var(--c-bg); }
.section--navy{ background: var(--c-navy); }

.section--dotted{
  background-color: var(--c-white);
  background-image: radial-gradient(rgba(16,32,50,.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.section--dotted-bg{
  background-color: var(--c-bg);
  background-image: radial-gradient(rgba(16,32,50,.075) 1px, transparent 1px);
  background-size: 22px 22px;
}
.section--dotted-green{
  background: linear-gradient(180deg,#F1F7F4 0%,#FAFBFC 100%);
  background-image: radial-gradient(rgba(23,122,82,.10) 1px, transparent 1px),
                     linear-gradient(180deg,#F1F7F4 0%,#FAFBFC 100%);
  background-size: 20px 20px, 100% 100%;
}
.section--gradient-blue{
  background: linear-gradient(180deg,#F4F8FC 0%,#FAFBFC 100%);
}

.grid{ display: grid; gap: clamp(0.875rem, 0.6rem + 1vw, 1.375rem); }
.grid--auto-260{ grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--auto-240{ grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--auto-220{ grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid--auto-210{ grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.grid--auto-200{ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid--auto-160{ grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.grid--auto-150{ grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.grid--split{ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: center; }
.grid--split-top{ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: start; }

.eyebrow{
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-green);
  margin: 0 0 .75rem;
}

.h1{
  font-size: clamp(2rem, 1.55rem + 3.4vw, 3.375rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  font-weight: 800;
  color: var(--c-ink);
  text-wrap: balance;
}
.h2{
  font-size: clamp(1.75rem, 1.5rem + 2vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 800;
  color: var(--c-ink);
}
.h2--md{ font-size: clamp(1.625rem, 1.4rem + 1.6vw, 2.5rem); }
.h3{
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-ink);
}
.lead{
  font-size: clamp(1.0625rem, 1rem + .5vw, 1.25rem);
  line-height: 1.55;
  color: var(--c-body);
}
.copy{
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--c-body);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  padding: 1.0625rem 1.875rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-align: center;
  min-height: 48px;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn--primary{
  background: var(--c-navy);
  color: #fff;
  box-shadow: var(--shadow-navy);
}
.btn--primary:hover{ background: var(--c-green); color: #fff; }
.btn--secondary{
  background: #fff;
  color: var(--c-ink);
  border: 1.5px solid var(--c-border-5);
}
.btn--secondary:hover{ border-color: var(--c-ink); color: var(--c-ink); }
.btn--on-navy{
  background: #fff;
  color: var(--c-ink);
}
.btn--on-navy:hover{ background: var(--c-blue-lighter); color: var(--c-ink); }
.btn--outline-on-navy{
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
}
.btn--outline-on-navy:hover{ border-color: #fff; color: #fff; }
.btn--sm{ font-size: .9375rem; padding: .875rem 1.375rem; min-height: 44px; }
.btn--block{ display: flex; width: 100%; }
.btn--flex{ flex: 1 1 200px; }
.btn-row{ display: flex; flex-wrap: wrap; gap: .75rem; }
.btn-row--center{ justify-content: center; }

/* ==========================================================================
   Promo banner
   ========================================================================== */
.promo-banner{
  background: var(--c-green);
  color: #fff;
}
.promo-banner__inner{
  position: relative;
  padding: .5625rem calc(var(--space-x) + 40px) .5625rem var(--space-x);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
}
.promo-banner__text{
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  margin: 0;
}
.promo-banner__text strong{ font-weight: 800; }
.promo-banner__close{
  position: absolute;
  right: max(.5rem, calc(var(--space-x) - .875rem));
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  cursor: pointer;
  padding: 0;
}
.promo-banner__close:hover{ background: rgba(255,255,255,.18); }

@media (max-width: 374px){
  .promo-banner__inner{ padding-inline: 2.25rem .5rem; }
  .promo-banner__text{ font-size: .75rem; }
}

/* ==========================================================================
   Header & navigation
   ========================================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
}
.site-header__bar{
  max-width: var(--container-max);
  margin-inline: auto;
  padding: .875rem var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.site-header__logo{ display: block; flex: none; }
.site-header__logo img{ height: 42px; width: auto; }

.site-nav{
  display: none;
  align-items: center;
  gap: 1.875rem;
}
.site-nav a{
  font-size: .9375rem;
  font-weight: 600;
  color: var(--c-ink-2);
}
.site-nav a:hover{ color: var(--c-blue); }
.site-nav__phone{ font-weight: 700 !important; color: var(--c-ink) !important; }
.site-nav .btn--primary, .site-nav .btn--primary:hover{ color: #fff; }

.header-actions{ display: flex; align-items: center; gap: .5rem; }
.header-actions .btn{ padding: .75rem 1.125rem; min-height: 44px; }

.menu-toggle{
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; flex: none; padding: 0;
}
.menu-toggle span{ display: block; width: 20px; height: 2px; background: var(--c-navy); border-radius: 2px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu{
  border-top: 1px solid var(--c-border);
  background: #fff;
  padding: .625rem 1.125rem 1.375rem;
  display: flex;
  flex-direction: column;
}
.mobile-menu[hidden]{ display: none; }
.mobile-menu a{
  padding: .9375rem .25rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--c-ink-2);
  border-bottom: 1px solid var(--c-border-3);
}
.mobile-menu a.mobile-menu__sub{
  padding-left: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-body-2);
}
.mobile-menu__call{
  margin-top: 1rem;
  text-align: center;
  border: 1.5px solid var(--c-navy);
  color: var(--c-ink);
  font-size: 1rem;
  font-weight: 700;
  padding: .875rem;
  border-radius: var(--radius-md);
}

@media (min-width: 1024px){
  .site-nav{ display: flex; }
  .header-actions--mobile{ display: none; }
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb{
  padding: .875rem var(--space-x) 0;
}
.breadcrumb ol{
  max-width: var(--container-max);
  margin-inline: auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  font-size: .8125rem;
  color: var(--c-muted-2);
}
.breadcrumb--narrow ol{ max-width: var(--container-narrow); }
.breadcrumb li:not(:last-child)::after{ content: "/"; padding: 0 .375rem; }
.breadcrumb li[aria-current] { color: var(--c-body-2); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{ padding: clamp(1.75rem,1.4rem + 1.8vw,3.25rem) var(--space-x) clamp(2.125rem,1.6rem + 2.5vw,3.75rem); }
.hero__grid{
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.75rem, 1.3rem + 2.2vw, 3.5rem);
  align-items: center;
}
.hero__stats{ display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.375rem; }
.hero__stat p:first-child{ margin: 0; font-size: .8125rem; color: var(--c-muted-2); }
.hero__stat p:last-child{ margin: .125rem 0 0; font-size: 1.625rem; font-weight: 800; color: var(--c-ink); }
.hero__benefit{ font-size: 1.0625rem; font-weight: 700; line-height: 1.4; color: var(--c-ink); margin: .625rem 0 0; max-width: 52ch; }
.hero__note{ font-size: .875rem; color: var(--c-muted); margin-top: 1rem; }
.hero__cta-row{ margin-top: 1.625rem; }

@media (max-width: 479px){
  .hero{ padding-top: .625rem; }
  .hero .eyebrow{ margin-bottom: .25rem; }
  .hero__benefit{ font-size: .9375rem; line-height: 1.3; margin-top: .375rem; }
  .hero__stats{ margin-top: .625rem; gap: .875rem; }
  .hero__cta-row{ margin-top: .625rem; }
}
.hero__badges{ display: flex; flex-wrap: wrap; gap: .625rem 1.125rem; margin-top: 1.375rem; }
.hero__badges span{ font-size: .875rem; font-weight: 600; color: var(--c-green); }

.media{
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-hero);
  background: repeating-linear-gradient(135deg,#E7EFF8 0 10px,#F3F8FC 10px 20px);
  position: relative;
  width: 100%;
}
.media--square{ aspect-ratio: 1/1; }
.media--4-3{ aspect-ratio: 4/3; }
.media--4-5{ aspect-ratio: 4/5; }
.media--16-11{ aspect-ratio: 16/11; }
.media img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media__caption{
  position: absolute;
  left: 1.125rem;
  bottom: 1.125rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: .6875rem;
  line-height: 1.5;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--c-body-2);
  background: rgba(255,255,255,.9);
  border-radius: 8px;
  padding: .5rem .625rem;
}
.hero__media{ display: none; }
@media (min-width: 1024px){ .hero__media{ display: flex; } }
.hero__media--mobile{ display: block; padding-top: 0; }
@media (min-width: 1024px){ .hero__media--mobile{ display: none; } }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar{
  background: var(--c-navy);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 2px, transparent 2px 9px);
  border-top: 3px solid var(--c-green);
  border-bottom: 3px solid var(--c-green);
  padding: 1rem var(--space-x);
}
.trust-bar__list{
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: .875rem 1.375rem;
  list-style: none;
  scrollbar-width: none;
}
.trust-bar__list::-webkit-scrollbar{ display: none; }
.trust-bar__list > li{ flex: 1 1 auto; }
.trust-bar__item{
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  display: flex;
  gap: .5625rem;
  align-items: center;
  line-height: 1.3;
  white-space: nowrap;
}
.trust-bar__item svg{ color: var(--c-green-light); flex: none; }

@media (max-width: 767px){
  .trust-bar__list{ flex-wrap: nowrap; overflow-x: auto; }
  .trust-bar__list > li{ flex: none; }
}

/* ==========================================================================
   Icons & checklists
   ========================================================================== */
.icon-tile{
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  background: var(--c-green-bg);
  border: 1px solid var(--c-green-border);
  color: var(--c-green);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.icon-tile--sm{ width: 46px; height: 46px; }

.check-list{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .625rem; }
.check-list li{ font-size: .9375rem; color: var(--c-body-3); display: flex; gap: .5625rem; line-height: 1.5; }
.check-list li svg{ color: var(--c-green); flex: none; margin-top: 2px; }
.check-list--on-navy li{ color: #E4EDF6; }
.check-list--on-navy li svg{ color: var(--c-green-light); }
.check-list--muted li{ color: var(--c-muted); }
.check-list--muted li span{ color: var(--c-faint); }

/* ==========================================================================
   Cards
   ========================================================================== */
.card{
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.375rem,1.15rem + 1vw,2rem);
  box-shadow: var(--shadow-card);
}
.card--flat{ box-shadow: none; }
.card--soft{ background: var(--c-bg); box-shadow: none; }
.card--navy{
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: #fff;
  box-shadow: var(--shadow-navy-lg);
}
.card--rel{ position: relative; }
.card--col{ display: flex; flex-direction: column; }

.badge{
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .3125rem .75rem;
  border-radius: var(--radius-pill);
  color: #fff;
}
.badge--blue{ background: var(--c-blue-accent); }
.badge--green{ background: var(--c-green); }
.badge--floating{ position: absolute; top: -11px; left: clamp(1.375rem,1.15rem + 1vw,2rem); }

/* Tappable service rows (mobile "what do you need cleaned") */
.service-row{
  display: flex;
  align-items: center;
  gap: .875rem;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  min-height: 76px;
  color: var(--c-ink);
  box-shadow: var(--shadow-card-sm);
  position: relative;
}
.service-row:hover{ border-color: var(--c-green); color: var(--c-ink); box-shadow: var(--shadow-card-hover); }
.service-row__icon{ flex: none; }
.service-row__body{ flex: 1; }
.service-row__title{ display: block; font-size: 1.0625rem; font-weight: 700; letter-spacing: -.01em; }
.service-row__meta{ display: block; font-size: .875rem; color: var(--c-muted); margin-top: 2px; }
.service-row__arrow{ color: var(--c-green); flex: none; }
.service-row__tag{
  position: absolute; top: -9px; right: 14px;
  background: var(--c-green); color: #fff;
  font-size: .6875rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .25rem .5625rem; border-radius: var(--radius-pill);
}

/* Location / area cards & chips */
.pin-card{
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-md);
  padding: 1rem; font-size: 1rem; font-weight: 600; color: var(--c-ink);
  min-height: 44px; display: flex; align-items: center; gap: .625rem;
  box-shadow: 0 1px 1px rgba(16,32,50,.04);
}
.pin-card svg{ color: var(--c-green); flex: none; }
.pin-card:hover{ border-color: var(--c-green); color: var(--c-ink); box-shadow: 0 2px 2px rgba(16,32,50,.04), 0 12px 22px -14px rgba(23,122,82,.5); }

.chip-card{
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-sm);
  padding: 1rem; font-size: .9375rem; font-weight: 600; color: var(--c-ink);
  min-height: 44px; display: flex; align-items: center;
}
.chip-card:hover{ border-color: var(--c-blue-accent); color: var(--c-ink); }

.link-card{
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-md);
  padding: 1.25rem; display: block;
}
.link-card:hover{ border-color: var(--c-blue-accent); }
.link-card__title{ display: block; font-size: 1.0625rem; font-weight: 700; color: var(--c-ink); }
.link-card__meta{ display: block; font-size: .875rem; color: var(--c-muted); margin-top: 4px; }

/* Reviews */
.review-card{ background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-card); }
.review-card__head{ display: flex; gap: .75rem; align-items: center; }
.review-card__avatar{
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: repeating-linear-gradient(135deg,#E7EFF8 0 6px,#F3F8FC 6px 12px);
  border: 1px solid var(--c-border);
}
.review-card__name{ margin: 0; font-size: .9375rem; font-weight: 700; color: var(--c-ink-2); }
.review-card__meta{ margin: 1px 0 0; font-size: .8125rem; color: var(--c-muted-2); }
.stars{ color: var(--c-yellow); font-size: .875rem; letter-spacing: 1.5px; margin: .875rem 0 .5rem; }
.review-card__body{ font-size: .9375rem; line-height: 1.65; color: var(--c-body-3); margin: 0; }

.rating-panel{
  display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: space-between;
  background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  padding: clamp(1.25rem,1.05rem + .8vw,1.875rem);
}
.rating-panel__left{ display: flex; align-items: center; gap: 1.125rem; }
.rating-panel__g{
  width: 52px; height: 52px; border-radius: 50%; background: var(--c-blue-bg);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: var(--c-blue);
  flex: none;
}
.rating-panel__label{ margin: 0; font-size: .9375rem; color: var(--c-body-2); font-weight: 600; }
.rating-panel__score{ margin: 2px 0 0; display: flex; align-items: center; gap: .625rem; }
.rating-panel__score strong{ font-size: 1.875rem; font-weight: 800; color: var(--c-ink); letter-spacing: -.02em; }
.rating-panel__count{ margin: 2px 0 0; font-size: .875rem; color: var(--c-muted); }

/* ==========================================================================
   Steps / feature tiles
   ========================================================================== */
.step-card{ background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: clamp(1.375rem,1.15rem + 1vw,1.875rem); }
.step-card__num{ font-family: var(--font-mono); font-size: .8125rem; font-weight: 500; color: var(--c-blue); }
.step-card h3{ font-size: 1.1875rem; font-weight: 700; color: var(--c-ink); margin: .75rem 0 .5rem; }
.step-card p{ font-size: 1rem; line-height: 1.6; color: var(--c-body-2); margin: 0; }

.feature-card{ background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: clamp(1.375rem,1.15rem + 1vw,2rem); box-shadow: var(--shadow-card); }
.feature-card h3{ font-size: 1.25rem; font-weight: 700; color: var(--c-ink); margin: 1.125rem 0 .5rem; }
.feature-card p{ font-size: 1rem; line-height: 1.6; color: var(--c-body-2); margin: 0; }

.value-item h3{ font-size: 1.125rem; font-weight: 700; color: var(--c-ink); margin: 0 0 .3125rem; }
.value-item p{ font-size: 1rem; line-height: 1.6; color: var(--c-body-2); margin: 0; }
.value-list{ display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.625rem; }

.checklist-card{ background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 1.5rem; }
.checklist-card h3{ font-size: 1.0625rem; font-weight: 700; color: var(--c-ink); margin: 0 0 .875rem; }

/* Before / after */
.ba-pair{ display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.ba-tile{ border-radius: var(--radius-md); border: 1px solid var(--c-border); aspect-ratio: 1/1; display: flex; align-items: flex-start; padding: .625rem; background: repeating-linear-gradient(135deg,#EDEFF3 0 8px,#F6F7F9 8px 16px); position: relative; overflow: hidden; } .ba-tile--after{ background: repeating-linear-gradient(135deg,#E7EFF8 0 8px,#F3F8FC 8px 16px); } .ba-tile img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; } .ba-tile span{ position: relative; z-index: 1; font-family: var(--font-mono); font-size: .625rem; text-transform: uppercase; letter-spacing: .06em; color: var(--c-muted); background: #fff; border-radius: 6px; padding: .25rem .375rem; } .ba-tile--after span{ color: var(--c-green); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{ background: var(--c-navy); padding: clamp(2.375rem,1.9rem + 2.4vw,4.375rem) var(--space-x); }
.cta-band__inner{ max-width: var(--container-copy); margin-inline: auto; text-align: center; }
.cta-band h2{ color: #fff; font-size: clamp(1.75rem,1.5rem + 1.6vw,2.875rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.1; text-wrap: balance; }
.cta-band p{ color: var(--c-blue-light); font-size: clamp(1.0625rem,1rem + .4vw,1.25rem); line-height: 1.55; margin-top: 1rem; }
.cta-band .btn-row{ margin-top: 1.875rem; justify-content: center; }

/* ==========================================================================
   FAQ accordion (native details/summary)
   ========================================================================== */
.faq-list{ border-top: 1px solid var(--c-border); }
.faq-list details{ border-bottom: 1px solid var(--c-border); }
.faq-list summary{
  display: flex; gap: 1rem; align-items: center; justify-content: space-between;
  padding: 1.25rem .125rem; font-size: clamp(1.0625rem,1rem + .3vw,1.1875rem); font-weight: 700;
  color: var(--c-ink); min-height: 44px;
}
.faq-list summary:hover{ color: var(--c-green); }
.faq-list p{ font-size: 1rem; line-height: 1.7; color: var(--c-body-2); margin: 0 0 1.25rem; max-width: 65ch; }

.chev{ flex: none; transition: transform .2s ease; }
.chev--corner{ width: 11px; height: 11px; border-right: 2px solid var(--c-blue); border-bottom: 2px solid var(--c-blue); transform: rotate(-135deg); }
details[open] .chev{ transform: rotate(45deg); }

/* Package "what's included" accordion */
.included{ margin-top: .75rem; border-top: 1px solid var(--c-border-4); }
.included--on-navy{ border-top-color: rgba(255,255,255,.16); }
.included summary{
  display: flex; align-items: center; justify-content: space-between; gap: .625rem;
  padding: .8125rem .125rem; font-size: .875rem; font-weight: 700; color: var(--c-green); min-height: 44px;
}
.included--on-navy summary{ color: var(--c-blue-pale); }
.included ul{ list-style: none; margin: 0 0 .875rem; display: flex; flex-direction: column; gap: .5625rem; }
.included li{ font-size: .875rem; line-height: 1.5; color: var(--c-body-3); display: flex; gap: .5rem; }
.included li svg{ color: var(--c-green); flex: none; margin-top: 2px; }
.included--on-navy li{ color: #E4EDF6; }
.included--on-navy li svg{ color: var(--c-green-light); }

/* ==========================================================================
   Table (services comparison)
   ========================================================================== */
.table-wrap{ background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; }
.table-scroll{ overflow-x: auto; }
.compare-table{ width: 100%; min-width: 620px; border-collapse: collapse; }
.compare-table thead tr{ background: var(--c-blue-bg-2); }
.compare-table th{ font-size: .875rem; font-weight: 700; color: var(--c-ink); padding: 1rem 1.25rem; border-bottom: 1px solid var(--c-border); }
.compare-table thead th:not(:first-child){ padding: 1rem .75rem; text-align: center; }
.compare-table tbody th{ text-align: left; font-size: .9375rem; font-weight: 500; color: var(--c-body-3); padding: .9375rem 1.25rem; border-bottom: 1px solid var(--c-border-3); }
.compare-table tbody td{ text-align: center; border-bottom: 1px solid var(--c-border-3); color: var(--c-green); font-weight: 700; }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td{ border-bottom: none; }
.compare-table td.is-off{ color: var(--c-faint); font-weight: 400; }
.compare-table td.is-addon{ color: var(--c-muted-2); font-size: .8125rem; font-weight: 400; }

/* Add-ons */
.addon{ background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 1.125rem; display: flex; justify-content: space-between; gap: .75rem; align-items: center; }
.addon__name{ font-size: .9375rem; font-weight: 600; color: var(--c-ink-2); }
.addon__price{ font-size: .9375rem; font-weight: 700; color: var(--c-blue); }

/* Recurring banner */
.banner{
  background: var(--c-blue-bg); border: 1px solid #CFE0F0; border-radius: var(--radius-lg);
  padding: clamp(1.25rem,1.05rem + .8vw,1.75rem);
  margin-top: clamp(1.125rem,.95rem + .6vw,1.625rem);
  display: flex; flex-wrap: wrap; gap: 1.125rem; align-items: center; justify-content: space-between;
}
.banner h3{ font-size: 1.1875rem; font-weight: 700; color: var(--c-ink); margin: 0 0 .375rem; }
.banner p{ font-size: 1rem; line-height: 1.6; color: var(--c-body-3); margin: 0; max-width: 52ch; }

/* ==========================================================================
   Pricing cards
   ========================================================================== */
.price-card h3{ font-size: 1.3125rem; font-weight: 700; margin: 0; }
.price-card__desc{ font-size: .9375rem; color: var(--c-muted); margin: .375rem 0 0; }
.price-card--navy .price-card__desc{ color: var(--c-blue-light); }
.price-card__price{ margin: 1.125rem 0 0; font-size: .9375rem; color: var(--c-body-2); }
.price-card--navy .price-card__price{ color: var(--c-blue-light); }
.price-card__price strong{ font-size: 2.125rem; font-weight: 800; color: var(--c-ink); letter-spacing: -.02em; }
.price-card--navy .price-card__price strong{ color: #fff; }
.price-card__duration{ font-size: .8125rem; color: var(--c-muted-2); margin: .25rem 0 0; }
.price-card--navy .price-card__duration{ color: #7EA3C5; }
.price-card .btn{ margin-top: auto; }
.price-card__cta-wrap{ margin-top: 1.25rem; }

/* ==========================================================================
   Booking / contact layout
   ========================================================================== */
.booking-panel{
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-panel); overflow: hidden;
}
.booking-panel__head{
  padding: 1.125rem clamp(1.125rem,1rem + .6vw,1.625rem); border-bottom: 1px solid var(--c-border-3);
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; justify-content: space-between;
}
.booking-panel__head h2{ font-size: 1.125rem; font-weight: 700; margin: 0; }
.booking-panel__tag{ font-family: var(--font-mono); font-size: .6875rem; letter-spacing: .06em; text-transform: uppercase; color: var(--c-muted-2); }
.booking-panel__body{
  padding: clamp(1.125rem,1rem + .8vw,2.125rem);
  min-height: 500px;
  display: flex; flex-direction: column; gap: 1rem;
}
.zenmaid-container{ width: 100%; min-height: 700px; border-radius: var(--radius-lg); overflow: hidden; }
.zenmaid-container iframe{ border: 0; width: 100% !important; }

.quote-panel{ background: var(--c-navy); border-radius: var(--radius-xl); padding: clamp(1.5rem,1.3rem + 1vw,2.125rem); box-shadow: var(--shadow-navy-lg); color: #fff; }
.quote-panel h2{ font-size: clamp(1.3125rem,1.2rem + .5vw,1.625rem); line-height: 1.2; font-weight: 800; letter-spacing: -.02em; margin: 0; color: #fff; }
.quote-panel > p{ font-size: 1rem; line-height: 1.6; color: var(--c-blue-light); margin: .75rem 0 0; }
.quote-panel ul{ list-style: none; margin: 1.25rem 0 0; display: flex; flex-direction: column; gap: .625rem; }
.quote-panel li{ font-size: .9375rem; color: #E4EDF6; display: flex; gap: .625rem; }
.quote-panel li span{ color: var(--c-blue-soft); }
.quote-panel .btn{ display: flex; width: 100%; margin-top: 1.5rem; }
.quote-panel__contact{ display: flex; flex-wrap: wrap; gap: .625rem; margin-top: .75rem; }
.quote-panel__contact a{ flex: 1 1 130px; }
.quote-panel__note{ font-size: .875rem; color: #7EA3C5; margin: .875rem 0 0; text-align: center; }

.confidence-list{ display: flex; flex-direction: column; gap: 1rem; }
.confidence-list__item{ display: flex; gap: .75rem; }
.confidence-list__item > span{ color: var(--c-green); font-weight: 700; font-size: 1.0625rem; }
.confidence-list__item h3{ margin: 0; font-size: 1rem; font-weight: 700; color: var(--c-ink-2); }
.confidence-list__item p{ margin: .1875rem 0 0; font-size: .9375rem; line-height: 1.55; color: var(--c-body-2); }

.side-stack{ display: flex; flex-direction: column; gap: 1rem; }

/* Contact / quote form */
.form-panel{
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-xl);
  padding: clamp(1.375rem,1.2rem + .8vw,2.125rem); box-shadow: var(--shadow-panel);
  display: flex; flex-direction: column; gap: 1.125rem;
}
.form-panel h2{ font-size: 1.25rem; font-weight: 700; margin: 0; }
.field{ display: flex; flex-direction: column; gap: .4375rem; }
.field span{ font-size: .875rem; font-weight: 600; color: var(--c-body-3); }
.field input, .field select, .field textarea{
  border: 1px solid var(--c-border-6); border-radius: var(--radius-md); padding: .9375rem;
  font-family: inherit; font-size: 1rem; color: var(--c-ink-2); min-height: 48px; outline: none; background: #fff;
}
.field textarea{ resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--c-blue-accent); }
.field-row{ display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .875rem; }
.field--checkbox{ flex-direction: row; align-items: flex-start; gap: .625rem; }
.field--checkbox input[type="checkbox"]{
  width: 18px; height: 18px; min-height: 0; padding: 0; margin: .1875rem 0 0;
  border-radius: 4px; flex-shrink: 0; accent-color: var(--c-navy);
}
.field--checkbox label{ font-size: .875rem; line-height: 1.5; font-weight: 500; color: var(--c-body-3); }
.form-submit{
  background: var(--c-navy); color: #fff; font-family: inherit; font-size: 1.0625rem; font-weight: 700;
  padding: 1.125rem; border: none; border-radius: var(--radius-md); cursor: pointer; min-height: 52px;
  box-shadow: var(--shadow-navy);
}
.form-submit:hover{ background: var(--c-navy-hover); }
.form-note{ font-size: .8125rem; line-height: 1.6; color: var(--c-muted-2); margin: 0; text-align: center; }
.form-error-banner{ background: #FDEDEC; border: 1px solid #F3C6C2; color: #9A2A22; font-size: .875rem; font-weight: 600; padding: .875rem 1rem; border-radius: var(--radius-md); }
.form-error-banner[hidden]{ display: none; }
.hp-field{ position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-card{ background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-xl); padding: clamp(1.375rem,1.2rem + .8vw,1.875rem); }
.contact-card h2{ font-size: 1.1875rem; font-weight: 700; margin: 0 0 1.125rem; }
.contact-list{ display: flex; flex-direction: column; gap: 1rem; }
.contact-list dt{ margin: 0; font-size: .8125rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--c-muted-2); }
.contact-list dd{ margin: .125rem 0 0; }
.contact-list .phone-link{ font-size: 1.25rem; font-weight: 800; color: var(--c-ink); letter-spacing: -.01em; }
.contact-list .phone-link:hover{ color: var(--c-blue); }
.contact-list .email-link{ font-size: 1rem; font-weight: 600; color: var(--c-ink); word-break: break-word; }
.contact-list .email-link:hover{ color: var(--c-blue); }
.contact-list p{ margin: .125rem 0 0; font-size: 1rem; line-height: 1.55; color: var(--c-body-3); }
.contact-card__actions{ display: flex; flex-wrap: wrap; gap: .625rem; margin-top: 1.25rem; }
.contact-card__actions .btn{ flex: 1 1 130px; padding: .9375rem; min-height: 48px; }

.map-card{ display: block; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--c-border); background: repeating-linear-gradient(135deg,#E7EFF8 0 10px,#F3F8FC 10px 20px); aspect-ratio: 16/11; position: relative; }
.map-card:hover{ border-color: var(--c-blue-accent); }
.map-card__embed{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-card__link{ position: absolute; right: 1rem; top: 1rem; background: #fff; border-radius: var(--radius-pill); padding: .5rem .875rem; font-size: .8125rem; font-weight: 700; color: var(--c-ink); }

/* ==========================================================================
   FAQ page — search & category chips
   ========================================================================== */
.faq-search{
  display: flex; align-items: center; gap: .75rem; background: #fff; border: 1px solid var(--c-border-6);
  border-radius: var(--radius-md); padding: 0 1.125rem; margin-top: 1.625rem; box-shadow: 0 1px 2px rgba(16,32,50,.04);
}
.faq-search svg{ color: var(--c-muted); flex: none; }
.faq-search input{ flex: 1; border: none; outline: none; background: transparent; font-family: inherit; font-size: 1rem; color: var(--c-ink-2); padding: 1.0625rem 0; min-height: 44px; }
.faq-cats{ display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.faq-cat{ background: #fff; border: 1px solid var(--c-border); color: var(--c-body-3); font-size: .875rem; font-weight: 600; padding: .625rem 1rem; border-radius: var(--radius-pill); min-height: 40px; display: flex; align-items: center; }
.faq-cat:hover{ border-color: var(--c-blue-accent); color: var(--c-ink); }
.faq-cat.is-active{ background: var(--c-navy); border-color: var(--c-navy); color: #fff; }
.faq-section-title{ font-size: clamp(1.375rem,1.2rem + .8vw,1.875rem); font-weight: 800; letter-spacing: -.02em; color: var(--c-ink); margin: clamp(2.125rem,1.9rem + 1.2vw,3.25rem) 0 0; scroll-margin-top: 90px; }
.faq-closer{ background: var(--c-navy); border-radius: var(--radius-xl); padding: clamp(1.5rem,1.3rem + 1vw,2.125rem); margin-top: clamp(2.25rem,2rem + 1.2vw,3.5rem); text-align: center; }
.faq-closer h2{ font-size: clamp(1.375rem,1.2rem + .8vw,1.875rem); font-weight: 800; color: #fff; margin: 0; letter-spacing: -.02em; }
.faq-closer p{ font-size: 1rem; line-height: 1.6; color: var(--c-blue-light); margin: .75rem 0 1.375rem; }

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal{ background: #fff; padding: clamp(1.75rem,1.5rem + 1.2vw,3rem) var(--space-x) clamp(3rem,2.6rem + 2.2vw,5.625rem); }
.legal h1{ font-size: clamp(1.875rem,1.6rem + 1.4vw,2.75rem); line-height: 1.1; letter-spacing: -.03em; font-weight: 800; color: var(--c-ink); margin: 0; }
.legal .updated{ font-size: .9375rem; color: var(--c-muted-2); margin: .75rem 0 0; }
.legal p{ font-size: 1.0625rem; line-height: 1.75; color: var(--c-body-3); margin: 1.625rem 0 0; }
.legal h2{ font-size: 1.375rem; font-weight: 700; color: var(--c-ink); margin: 2.25rem 0 0; letter-spacing: -.01em; }
.legal h2 + p{ margin-top: .75rem; }
.legal ul{ margin: .75rem 0 0; padding-left: 1.375rem; display: flex; flex-direction: column; gap: .5625rem; }
.legal li{ font-size: 1.0625rem; line-height: 1.7; color: var(--c-body-3); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--c-navy-deep); padding: clamp(2.75rem,2.4rem + 1.8vw,4.75rem) var(--space-x) 0; }
.site-footer__grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: clamp(1.75rem,1.55rem + 1vw,2.75rem); }
.site-footer__brand img{ height: 40px; width: auto; margin-bottom: 1rem; }
.site-footer__brand p{ font-size: .9375rem; line-height: 1.65; color: #94AFC8; margin: 0; max-width: 34ch; }
.site-footer__rating{ display: flex; align-items: center; gap: .625rem; margin-top: 1.125rem; background: rgba(255,255,255,.06); border-radius: var(--radius-md); padding: .75rem .875rem; width: fit-content; }
.site-footer__rating .stars{ margin: 0; font-size: .8125rem; }
.site-footer__rating span:last-child{ font-size: .8125rem; color: #E4EDF6; font-weight: 600; }
.site-footer__social{ display: flex; gap: .625rem; margin-top: 1rem; }
.site-footer__social a{ width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; color: #94AFC8; }
.site-footer__social a:hover{ border-color: var(--c-green-light); color: #fff; }
.site-footer__social a.is-google{ background: #fff; border-color: rgba(255,255,255,.3); }

.site-footer h3{ font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #6B8BA8; margin: 0 0 1rem; }
.site-footer__links{ display: flex; flex-direction: column; gap: .75rem; }
.site-footer__links a{ font-size: .9375rem; color: #D6E3EF; }
.site-footer__links a:hover{ color: #fff; }
.site-footer__contact{ display: flex; flex-direction: column; gap: 1rem; }
.site-footer__contact .phone-link{ font-size: 1rem; font-weight: 700; color: #fff; }
.site-footer__contact .phone-link:hover{ color: #6BA9E5; }
.site-footer__contact .email-link{ font-size: .9375rem; color: #D6E3EF; word-break: break-word; }
.site-footer__contact .email-link:hover{ color: #fff; }
.site-footer__contact p{ font-size: .9375rem; line-height: 1.6; color: #94AFC8; margin: 0; }
.site-footer__contact .btn{ margin-top: .25rem; background: var(--c-blue-accent); color: #fff; padding: .875rem 1.25rem; min-height: 44px; }
.site-footer__contact .btn:hover{ background: #5F9EDD; color: #fff; }

.site-footer__bottom{
  border-top: 1px solid rgba(255,255,255,.1); margin-top: clamp(2rem,1.8rem + .8vw,3.25rem); padding: 1.375rem 0;
  display: flex; flex-wrap: wrap; gap: .875rem 1.5rem; align-items: center; justify-content: space-between;
}
.site-footer__bottom p{ font-size: .875rem; color: #6B8BA8; margin: 0; }
.site-footer__legal{ display: flex; flex-wrap: wrap; gap: 1.5rem; }
.site-footer__legal a{ font-size: .875rem; color: #94AFC8; }
.site-footer__legal a:hover{ color: #fff; }

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */
.sticky-cta{
  position: sticky; bottom: 0; z-index: 50;
  background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
  border-top: 1px solid var(--c-border);
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
  display: flex; gap: .625rem;
}
.sticky-cta a:first-child{ flex: 0 0 auto; border: 1.5px solid var(--c-border-5); color: var(--c-ink); font-size: 1rem; font-weight: 700; padding: .9375rem 1.25rem; border-radius: var(--radius-md); min-height: 48px; display: flex; align-items: center; }
.sticky-cta a:last-child{ flex: 1; background: var(--c-navy); color: #fff; font-size: 1rem; font-weight: 700; padding: .9375rem; border-radius: var(--radius-md); min-height: 48px; display: flex; align-items: center; justify-content: center; }
@media (min-width: 1024px){ .sticky-cta{ display: none; } }

/* ==========================================================================
   Responsive tweaks
   ========================================================================== */
@media (min-width: 640px){
  .ba-gallery{ grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px){
  .site-header__bar{ padding-block: 1.125rem; }
  .site-header__logo img{ height: 48px; }
}
