/* =========================================================================
   Liverpool Blinds — design tokens
   Edit these to retheme. Everything else uses these variables.
   ========================================================================= */
:root {
  /* Brand */
  --color-teal:        #18bece;       /* measured from source (round 3) */
  --color-teal-dark:   #14a4b2;
  --color-blue:        #0386b8;
  --color-blue-deep:   #036a92;
  --color-topbar:      #007aab;       /* source topbar is slightly darker than --color-blue */
  --color-footer:      #262626;       /* measured from source (round 3) — was #1a1a1a */

  /* Neutrals */
  --color-ink:         #1d1d1d;
  --color-text:        #4a4a4a;
  --color-muted:       #6f7780;
  --color-line:        #e1e6ea;
  --color-bg-soft:     #f5f7f9;
  --color-white:       #ffffff;

  /* Type */
  --font-body:    'Roboto', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --fw-light:  300;
  --fw-reg:    400;
  --fw-med:    500;
  --fw-bold:   700;

  /* Spacing */
  --gap-xs:  0.5rem;
  --gap-sm:  1rem;
  --gap:     1.5rem;
  --gap-lg:  3rem;
  --gap-xl:  5rem;

  /* Layout */
  --container: 1180px;
  --radius:    4px;
  --radius-lg: 8px;
  --shadow:    0 6px 18px rgba(13, 78, 105, 0.08);
  --shadow-md: 0 12px 32px rgba(13, 78, 105, 0.12);

  /* Layers — explicit so mobile menu / fixed elements compose correctly */
  --z-topbar:    50;
  --z-header:    100;
  --z-cta:       110;
  --z-nav:       200;
  --z-backdrop:  190;
}

/* =========================================================================
   Reset
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-reg);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: var(--color-blue);
  text-decoration: none;
}
a:hover, a:focus { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2 {
  margin: 0 0 var(--gap-sm);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: var(--fw-reg);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
h3, h4 {
  margin: 0 0 var(--gap-sm);
  color: var(--color-ink);
  font-weight: var(--fw-bold);
  line-height: 1.3;
}
h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
p  { margin: 0 0 var(--gap-sm); }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-blue);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
}
.skip-link:focus { left: 0; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: var(--fw-bold);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 150ms ease, background 200ms ease, box-shadow 200ms ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--color-teal);
  color: #fff;
  border-color: var(--color-teal);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
  text-decoration: none;
}
.btn-cta {
  background: var(--color-teal);
  color: #fff;
  border-color: #62d1de;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.05);
}
.btn-cta:hover, .btn-cta:focus {
  background: var(--color-teal-dark);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-block { width: 100%; }

/* =========================================================================
   Topbar — utility info above the header
   ========================================================================= */
.topbar {
  background: var(--color-topbar);
  color: #fff;
  font-size: 0.95rem;        /* source measured 15px */
  position: relative;
  z-index: var(--z-topbar);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-sm);
  padding: 0.55rem 0;
  flex-wrap: wrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.topbar-item:hover, .topbar-item:focus {
  color: var(--color-teal);
  text-decoration: none;
}
.topbar-icon {
  width: 14px; height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .topbar-inner { justify-content: center; gap: 0.5rem 1rem; font-size: 0.8rem; }
  .topbar-hours { display: none; }
}

/* =========================================================================
   Site header — 2-row layout: brand + CTA on top, nav below
   ========================================================================= */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: var(--z-header);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  padding: 1rem 0;
}
.logo img {
  width: clamp(150px, 16vw, 200px);
  height: auto;
}
.header-cta { display: inline-flex; }
.header-cta .nav-cta {
  font-size: 1.1rem;          /* source measured 20px on BOOK AN APPOINTMENT ONLINE */
  font-weight: var(--fw-reg);
  padding: 0.9rem 1.6rem;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.primary-nav {
  background: #fff;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.primary-nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  max-width: var(--container);
  margin: 0 auto;
}
.primary-nav ul a {
  color: var(--color-ink);
  font-weight: var(--fw-bold);
  font-size: 1.125rem;        /* source measured 17-20px on main nav links */
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  transition: color 150ms ease;
  white-space: nowrap;
}
.primary-nav ul a:hover, .primary-nav ul a:focus,
.primary-nav ul a.is-active {
  color: var(--color-teal);
  text-decoration: none;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 0;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  margin: 0 auto;
  transition: transform 200ms ease, opacity 200ms ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .burger { display: flex; }
  .header-cta { display: none; }
  .primary-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 80vw);
    background: #fff;
    padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 250ms ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: var(--z-nav);
    border: none;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-width: none;
  }
  .primary-nav ul li { border-bottom: 1px solid var(--color-line); }
  .primary-nav ul a {
    display: block;
    padding: 0.85rem 0;
  }
  .nav-cta {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
  }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(13, 30, 45, 0.45);
    z-index: var(--z-backdrop);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
  }
  .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
  body.nav-locked { overflow: hidden; }
}

/* =========================================================================
   Hero slider
   ========================================================================= */
.hero {
  background: #f0f3f5;
  position: relative;
  overflow: hidden;
}
.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 700;
  min-height: 240px;
  overflow: hidden;
}
.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms ease;
}
.slide.is-active { opacity: 1; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.7);
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 150ms ease;
  opacity: 0;
  pointer-events: none;
}
.slider:hover .slider-arrow,
.slider:focus-within .slider-arrow { opacity: 1; pointer-events: auto; }
.slider-arrow:hover { background: #fff; }
.slider-arrow svg { width: 24px; height: 24px; fill: var(--color-ink); }
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }

.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 150ms ease, transform 150ms ease;
}
.slider-dots button.is-active {
  background: #fff;
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .slider { aspect-ratio: 4 / 3; min-height: 320px; }
  .slide img { object-position: left center; }
  .slider-arrow { display: none; }
}

/* =========================================================================
   Tagline strip
   ========================================================================= */
.tagline {
  text-align: center;
  padding: var(--gap-lg) 0 var(--gap-sm);
}
.tagline p {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 720px) {
  .tagline p { font-size: 1.5rem; }
}

/* =========================================================================
   Services — 3-card grid
   ========================================================================= */
.services {
  padding: var(--gap-lg) 0 var(--gap-xl);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
}
.service-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
}
.service-image img {
  object-position: top center;
}
.service-image--banded {
  position: relative;
}
.service-image--banded .service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 38%,
    rgba(0, 0, 0, 0.55) 38%,
    rgba(0, 0, 0, 0.55) 62%,
    transparent 62%,
    transparent 100%
  );
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.03em;
  padding: 0 1rem;
  text-transform: uppercase;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.service-card:hover .service-image img { transform: scale(1.04); }
.service-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(0deg, rgba(13, 78, 105, 0.92), rgba(13, 78, 105, 0.7) 60%, transparent);
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.03em;
  padding: 4rem 1rem 1.25rem;
  text-transform: uppercase;
}
.service-body { padding: 1.25rem 0.5rem 0; }
.service-body ul li {
  padding: 0.25rem 0;
  border-bottom: none;
  font-weight: var(--fw-med);
  color: var(--color-text);
  text-align: center;
}
.service-body ul li a {
  color: var(--color-ink);
  font-weight: var(--fw-med);
  font-size: 0.95rem;
  text-decoration: none;
}
.service-body ul li a:hover { text-decoration: underline; }

@media (max-width: 880px) {
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .service-image { aspect-ratio: 16 / 9; }
}

/* =========================================================================
   Why band — blue section
   ========================================================================= */
.why-band {
  background: var(--color-blue);
  color: #fff;
  padding: var(--gap-xl) 0;
  text-align: center;
}
.why-inner { max-width: 800px; margin-inline: auto; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: var(--fw-med);
  margin: 0 0 0.5rem;
  color: rgba(255,255,255,0.75);
}
.eyebrow-light { color: var(--color-teal); }
.why-band h2 {
  color: #fff;
  font-weight: var(--fw-light);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin-bottom: var(--gap);
}
.why-body {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: #fff;
}
@media (max-width: 720px) {
  .why-body { font-size: 1.125rem; }
}

/* =========================================================================
   Features — 3 columns with icons
   ========================================================================= */
.features {
  background: var(--color-bg-soft);
  padding: var(--gap-xl) 0;
  margin-bottom: 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.feature-card {
  background: #fff;
  padding: var(--gap-lg) var(--gap);
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--gap);
  display: grid;
  place-items: center;
}
.feature-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  filter: brightness(0) saturate(100%) invert(50%) sepia(78%) saturate(420%) hue-rotate(140deg) brightness(95%) contrast(88%);
}
.feature-card h3 {
  font-weight: var(--fw-bold);
  margin-bottom: var(--gap-sm);
}
.feature-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 880px) {
  .features-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* =========================================================================
   Contact section
   ========================================================================= */
.contact {
  padding: var(--gap-xl) 0;
  background: #fff;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--gap-lg);
  align-items: start;
}
.contact-info h2 {
  font-weight: var(--fw-bold);
  margin-bottom: var(--gap);
}
.contact-info .eyebrow-light { color: var(--color-teal); }
.contact-lead {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-bottom: var(--gap-lg);
}
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.contact-meta li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.contact-meta svg {
  width: 22px; height: 22px;
  fill: var(--color-teal);
  flex-shrink: 0;
}
.contact-meta a { color: var(--color-ink); font-weight: var(--fw-med); }
.contact-meta a:hover { color: var(--color-blue); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  position: relative;
}
.contact-form-title {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-weight: var(--fw-reg);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.contact-form label:not(.checkbox) {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: var(--fw-reg);
  color: var(--color-ink);
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid #c8c8c8;
  border-radius: 0;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  background: #fff;
  transition: border-color 150ms ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-teal);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form .subject-group {
  border: 1px solid #c8c8c8;
  border-radius: 0;
  padding: 0.5rem 0.7rem 0.7rem;
  margin: 0;
}
.contact-form .subject-group legend {
  padding: 0 0.35rem;
  font-size: 0.85rem;
  font-weight: var(--fw-reg);
  color: var(--color-ink);
}
.contact-form .checkbox {
  display: block;
  font-size: 0.95rem;
  font-weight: var(--fw-reg);
  padding: 0.15rem 0;
  cursor: pointer;
}
.contact-form .checkbox input { margin-right: 0.4rem; vertical-align: middle; }

.btn-submit-plain {
  background: #ececec;
  color: var(--color-ink);
  border: 1px solid #c8c8c8;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: var(--fw-reg);
  font-size: 0.95rem;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 150ms ease;
}
.btn-submit-plain:hover { background: #dcdcdc; }

/* Contact page section headings (Address, Opening Hours, Phone, Email) */
.contact-page-info h2 {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: var(--fw-reg);
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}

/* Footer ABN line */
.footer-abn {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
}

@media (max-width: 880px) {
  .contact-inner { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .contact-form { padding: var(--gap); }
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* =========================================================================
   Page banner — used on every inner page below the header
   ========================================================================= */
.page-banner {
  background: var(--color-teal);
  color: #fff;
  text-align: center;
  padding: 2.5rem 1rem;
}
.page-banner h1 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 40px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

/* Sub-nav strip used on product pages — quick links to sibling products */
.subnav {
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-line);
  padding: 1.5rem 0;
  font-size: 0.85rem;
}
.subnav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: start;
}
.subnav-col h4 {
  color: var(--color-teal);
  font-size: 1.125rem;       /* source measured 18px */
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: var(--fw-reg);
  margin: 0 0 0.5rem;
  text-align: center;
}
.subnav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.subnav-col ul li { padding: 0.15rem 0; }
.subnav-col:first-child ul {
  column-count: 2;
  column-gap: 0.4rem;
}
.subnav-col a {
  color: #333;
  font-weight: var(--fw-reg);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 1rem;           /* source measured 16px */
  text-decoration: none;
}
.subnav-col a.is-active { color: #0085b4; }
.subnav-col a:hover, .subnav-col a.is-active {
  color: var(--color-teal);
  text-decoration: none;
}
@media (max-width: 720px) {
  .subnav-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .subnav-col h4 { margin-top: 0.5rem; }
}

/* =========================================================================
   Product page — intro + 3-card detail grid
   ========================================================================= */
.product-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: var(--gap-xl) var(--gap-sm) var(--gap-lg);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--color-text);
}
.product-detail {
  padding: 0 0 var(--gap-xl);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.detail-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  border: 0;
}
.detail-card-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-bg-soft);
}
.detail-card-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.detail-card-body {
  padding: var(--gap) var(--gap-sm);
  text-align: center;
}
.detail-card h3 {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  text-align: center;
  color: #0085b4;
  font-size: 1.875rem;       /* source measured 30px */
  margin: 0.6rem 0 0.8rem;
  text-transform: none;
  letter-spacing: 0;
}
.detail-card p, .detail-card li {
  color: #262626;
  font-size: 1.5rem;          /* source measured 24px */
  line-height: 1.4;
  text-align: center;
  margin: 0.25rem 0;
}
.detail-card .row-label { text-align: center; }
.detail-card .row-label {
  font-weight: var(--fw-bold);
  color: var(--color-ink);
  margin-top: 0.5rem;
}
.detail-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0 0 var(--gap-sm);
}
@media (max-width: 880px) {
  .product-detail-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* =========================================================================
   About page — service blocks + testimonials
   ========================================================================= */
.about-section { padding: var(--gap-xl) 0; }
.about-section.alt { background: var(--color-bg-soft); }
.about-h2 {
  text-align: center;
  font-family: var(--font-display);
  font-weight: var(--fw-reg);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink);
  margin-bottom: var(--gap-lg);
}
.service-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
  text-align: center;
}
.service-block .service-block-icon {
  width: 88px; height: 88px; margin: 0 auto var(--gap);
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--color-teal);
}
.service-block .service-block-icon img {
  width: 42px; height: 42px;
  filter: brightness(0) invert(1);
}
.service-block h3 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-weight: var(--fw-reg);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  margin-bottom: var(--gap-sm);
}
.service-block p { color: var(--color-text); font-size: 0.92rem; }

/* "Top quality" + "Customers like us" — 2-column layout */
.about-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--gap-xl);
  align-items: start;
}
.about-row h2 {
  text-align: left;
  font-family: var(--font-display);
  font-weight: var(--fw-reg);
  font-size: 1.4rem;
  color: var(--color-ink);
  margin-bottom: var(--gap);
}
.about-row .customers-col h2 { text-align: center; }
.testimonials-stack {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.testimonial {
  background: var(--color-teal);
  color: #fff;
  padding: 1rem 1.25rem;
  text-align: center;
  font-weight: var(--fw-med);
}
.testimonial p { margin: 0; }

@media (max-width: 880px) {
  .service-blocks { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; gap: var(--gap); }
  .about-row { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .about-row .customers-col h2 { text-align: left; }
}

/* =========================================================================
   FAQ accordion
   ========================================================================= */
.faq-list { max-width: 880px; margin: 0 auto; padding: var(--gap-xl) 0; }
.faq-item {
  background: var(--color-blue);
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,0.18);
}
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: var(--fw-med);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  margin-left: auto;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: rgba(255,255,255,0.05); }
.faq-item .faq-answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.95);
}

/* =========================================================================
   Contact page — address column + form
   ========================================================================= */
.contact-page {
  padding: var(--gap-xl) 0;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--gap-lg);
}
.contact-page-info h2 {
  color: var(--color-blue);
  font-weight: var(--fw-bold);
  margin-bottom: 0.5rem;
}
.contact-page-info .meta-block { margin-bottom: var(--gap-lg); }
.contact-page-info p { margin: 0; color: var(--color-text); }
.contact-page-info a { color: var(--color-ink); font-weight: var(--fw-med); }
.contact-page-info a:hover { color: var(--color-blue); }
@media (max-width: 880px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: var(--gap-lg); }
}

/* =========================================================================
   Site footer
   ========================================================================= */
.site-footer {
  background: var(--color-footer);
  color: #fff;
  padding-top: var(--gap-xl);
  font-size: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: var(--gap-lg);
  padding-bottom: var(--gap-lg);
}
.footer-brand .footer-logo {
  filter: brightness(0) invert(1);
  margin-bottom: var(--gap-sm);
}
.footer-tag {
  font-size: 0.85rem;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--gap-sm);
}
.footer-meta {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgb(171, 171, 171);
  line-height: 1.6;
}
.footer-meta a {
  color: rgb(171, 171, 171);
}
.footer-meta a:hover { color: var(--color-teal); }

.footer-col h4 {
  color: var(--color-teal);
  font-size: 1.1875rem;
  margin-bottom: var(--gap-sm);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.footer-col ul li { padding: 0.25rem 0; }
.footer-col ul a {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}
.footer-col ul a:hover { color: var(--color-teal); text-decoration: none; }

.footer-col--menu ul li:first-child a {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--gap); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Thanks page
   ========================================================================= */
.thanks-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 4rem 1rem;
  background: var(--color-bg-soft);
}
.thanks-card {
  background: #fff;
  padding: var(--gap-xl) var(--gap-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 520px;
}
.thanks-card h1 { margin-bottom: var(--gap); }
.thanks-card p { margin-bottom: var(--gap); color: var(--color-muted); }

@media (prefers-reduced-motion: reduce) {
  .slide { transition: none; }
}
