:root {
  --bg: #F7F8F6;
  --bg-soft: #EDF4F3;
  --bg-white: #FFFFFF;
  --teal: #17454C;
  --teal-mid: #26707A;
  --rose: #8A4458;
  --rose-dark: #713747;
  --text: #1B2E31;
  --text-mid: #44595D;
  --text-soft: #5A6E71;
  --border: #E3E9E8;
  --border-strong: #CBD8D8;
  --gold: #E8A33D;
  --footer-muted: #A8C6C8;
  --max: 1280px;
  --header-h: 84px;
  --font-serif: "Source Serif 4", Georgia, serif;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
  --shadow: 0 14px 36px rgba(23, 69, 76, 0.18);
  --radius: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal-mid);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

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

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--teal);
  text-wrap: pretty;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
}

.eyebrow--muted {
  color: var(--text-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--rose);
  color: #fff;
}

.btn--primary:hover {
  background: var(--rose-dark);
  color: #fff;
}

.btn--secondary {
  background: #fff;
  color: var(--teal);
  border-color: var(--teal);
}

.btn--secondary:hover {
  background: var(--teal);
  color: #fff;
}

.btn--outline {
  background: #fff;
  color: var(--teal);
  border-color: var(--teal);
}

.btn--outline:hover {
  background: var(--teal);
  color: #fff;
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn--block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 0.7rem 0;
  min-height: var(--header-h);
}

.site-logo img {
  height: 58px;
  width: auto;
}

.site-nav {
  display: none;
  flex: 1;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.site-nav > a,
.nav-dropdown > a {
  color: #1D3A40;
  text-decoration: none;
  padding: 0.65rem 0.75rem;
  display: inline-block;
}

.site-nav > a:hover,
.nav-dropdown > a:hover,
.site-nav > a.is-active,
.nav-dropdown > a.is-active {
  color: var(--rose);
}

.site-nav > a.is-active,
.nav-dropdown > a.is-active {
  box-shadow: inset 0 -2px 0 var(--rose);
  color: var(--teal);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -0.5rem;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  z-index: 60;
}

.nav-dropdown__menu--services {
  grid-template-columns: 1fr 1fr;
  width: min(600px, 90vw);
  gap: 0.15rem 0.875rem;
}

.nav-dropdown__menu--areas {
  grid-template-columns: 1fr 1fr;
  width: min(420px, 90vw);
  gap: 0.15rem 0.875rem;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  display: grid;
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: #1D3A40;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0;
  border-radius: 6px;
}

.nav-dropdown__menu a:hover {
  background: var(--bg-soft);
  color: var(--teal);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.header-phone {
  text-decoration: none;
  text-align: right;
}

.header-phone span {
  display: block;
}

.header-phone__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--rose);
}

.header-phone__num {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal);
}

.menu-toggle {
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal);
  margin-inline: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.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-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 1.25rem;
  color: #1D3A40;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.mobile-nav details summary {
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.mobile-nav details summary::-webkit-details-marker {
  display: none;
}

.mobile-nav details a {
  padding-left: 1.75rem;
  font-size: 0.9375rem;
}

.mobile-nav__cta {
  padding: 1rem 1.25rem 1.5rem;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .site-logo img {
    height: 66px;
  }

  .site-nav,
  .header-actions {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* Hero — Claude split layout (high converting) */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(38, 112, 122, 0.12), transparent 55%),
    linear-gradient(180deg, #EDF4F3 0%, #E4EEED 100%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0 4.25rem;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    padding: 4.75rem 0 5.25rem;
  }
}

.hero__copy {
  min-width: 0;
  animation: fadeUp 0.75s ease both;
}

.hero__copy .eyebrow {
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0 0 1rem;
}

.hero__brand {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 1.9rem);
  letter-spacing: 0.04em;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.hero__title {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  line-height: 1.06;
  color: var(--teal);
  font-weight: 700;
}

.hero__stars {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
  font-weight: 700;
  color: #1D3A40;
  font-size: 0.95rem;
}

.hero__stars .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.hero__lead {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 0.75rem;
  color: #33484C;
}

.hero__support {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0 0 1.75rem;
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
}

.hero__bullets span {
  border-left: 3px solid var(--teal-mid);
  padding-left: 0.65rem;
}

.hero__media {
  position: relative;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: #D5E4E2;
  box-shadow: 0 18px 40px rgba(23, 69, 76, 0.14);
  animation: fadeUp 0.85s ease 0.08s both;
}

@media (min-width: 900px) {
  .hero__media {
    min-height: 460px;
    aspect-ratio: auto;
    height: 460px;
  }
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Trust strip */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
}

.trust-item {
  border-left: 3px solid var(--teal-mid);
  padding-left: 0.85rem;
}

.trust-item strong {
  display: block;
  color: var(--teal);
  font-size: 0.95rem;
}

.trust-item span {
  display: block;
  color: var(--text-soft);
  font-size: 0.875rem;
  margin-top: 0.15rem;
}

@media (min-width: 768px) {
  .trust-strip__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 1.75rem 0;
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section--white {
  background: #fff;
}

.section--teal {
  background: var(--teal);
  color: var(--footer-muted);
}

.section--teal h2 {
  color: #fff;
}

.section__head {
  max-width: 45rem;
  margin-bottom: 2.5rem;
}

.section__head h2,
.section h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.375rem);
  margin: 0 0 0.85rem;
}

.section__head p {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin: 0;
}

.section-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.section-cta p {
  margin: 0;
  color: var(--footer-muted);
}

/* Service cards — interaction links, not decorative cards clutter */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Homepage: compact text-only service cards (Claude design) */
.service-grid--text {
  gap: 1rem;
}

@media (min-width: 960px) {
  .service-grid--text {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #FBFCFC;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.35rem 1.4rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: var(--teal-mid);
  box-shadow: 0 8px 24px rgba(23, 69, 76, 0.1);
  color: inherit;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 0.45rem;
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.service-link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #FBFCFC;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-link:hover {
  border-color: var(--teal-mid);
  box-shadow: 0 8px 24px rgba(23, 69, 76, 0.1);
  transform: translateY(-2px);
  color: inherit;
}

.service-link__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}

.service-link__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-link:hover .service-link__img img {
  transform: scale(1.04);
}

.service-link__body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.service-link__body h3 {
  font-size: 1.125rem;
  margin: 0 0 0.45rem;
}

.service-link__body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.service-link--plain .service-link__body {
  padding: 1.5rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
  }
}

.about-grid__media {
  border-radius: 14px;
  overflow: hidden;
  min-height: 280px;
}

.about-grid__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.about-grid p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
}

.licence-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
}

.licence-row span {
  border-left: 3px solid var(--teal-mid);
  padding-left: 0.65rem;
}

/* Reviews */
.review-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  background: #FBFCFC;
}

.review .stars {
  color: var(--rose);
  letter-spacing: 2px;
  margin-bottom: 0.85rem;
}

.review blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1D3A40;
}

.review cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.reviews-head p {
  margin: 0;
  font-weight: 600;
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 56rem;
  margin-inline: auto;
}

.faq-list details {
  border: 1px solid #D8E3E2;
  border-radius: 12px;
  background: #fff;
  padding: 0 1.5rem;
  transition: box-shadow 0.2s ease;
}

.faq-list details[open] {
  box-shadow: 0 6px 20px rgba(23, 69, 76, 0.08);
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
  padding: 1.25rem 0;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--rose);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  font-size: 0.975rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 1.25rem;
  animation: fadeIn 0.25s ease;
}

.faq-intro {
  text-align: center;
  margin-bottom: 2.25rem;
}

/* Areas chips */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.area-chips a {
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1D3A40;
  text-decoration: none;
  background: #fff;
}

.area-chips a:hover {
  border-color: var(--teal-mid);
  color: var(--teal-mid);
}

/* Page hero (inner) */
.page-hero {
  background: var(--bg-soft);
  padding: 2.75rem 0 3rem;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 5vw, 2.75rem);
}

.page-hero p {
  margin: 1rem 0 0;
  max-width: 60ch;
  font-size: 1.1rem;
  color: var(--text-mid);
}

.breadcrumbs {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: var(--teal-mid);
  text-decoration: none;
}

.breadcrumbs span {
  margin: 0 0.4rem;
}

/* Content layouts */
.content-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2.75rem;
  align-items: flex-start;
}

.content-main {
  flex: 999 1 28rem;
  min-width: 0;
}

.content-aside {
  flex: 1 1 18rem;
  max-width: 27rem;
  display: grid;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.content-main > p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #33484C;
}

.feature-img {
  border-radius: 14px;
  overflow: hidden;
  margin: 0 0 2rem;
}

.feature-img img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.point-list {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 2rem;
}

.point-list li {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  background: #FBFCFC;
  font-weight: 600;
  color: #1D3A40;
}

.point-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--rose);
  border-radius: 2px;
  flex-shrink: 0;
  transform: translateY(-1px);
}

.aside-card {
  border-radius: 14px;
  padding: 1.75rem;
}

.aside-card--teal {
  background: var(--teal);
  color: var(--footer-muted);
}

.aside-card--teal h2,
.aside-card--teal .aside-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.aside-card--teal a.phone-lg {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.aside-card--soft {
  border: 1px solid var(--border);
  background: #FBFCFC;
}

.aside-card--soft .aside-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--rose);
  margin-bottom: 0.85rem;
}

.aside-card--soft a {
  display: block;
  color: #1D3A40;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}

.aside-card--soft a:hover {
  color: var(--teal-mid);
}

/* Forms */
.quote-form {
  flex: 999 1 28rem;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  background: #FBFCFC;
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.quote-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1D3A40;
}

.quote-form input,
.quote-form textarea {
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  background: #fff;
  width: 100%;
  color: var(--text);
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--teal-mid);
  outline-offset: 1px;
}

.quote-form input.is-invalid,
.quote-form textarea.is-invalid {
  border-color: #b42318;
  outline: 2px solid rgba(180, 35, 24, 0.25);
  outline-offset: 1px;
}

.quote-form .form-error {
  margin: 0;
  color: #b42318;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Shop teaser (homepage) */
.shop-teaser__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 2rem;
}

.shop-teaser__head h2 {
  margin: 0 0 0.65rem;
}

.shop-teaser__head p {
  margin: 0;
  max-width: 52ch;
  color: var(--text-mid);
}

.product-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.btn--pill {
  border-radius: 999px;
}

.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  border-color: var(--teal-mid);
  box-shadow: 0 10px 28px rgba(23, 69, 76, 0.12);
  transform: translateY(-3px);
  color: inherit;
}

.product-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef1f5;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__img img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-card__cat {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: #ffffff;
  border: 1px solid #d5dde4;
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
}

.product-card h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0.15rem 0 0;
  color: var(--teal);
}

.product-card__meta {
  margin-top: auto;
  padding-top: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-card__price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
}

.product-card__shop {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rose);
  white-space: nowrap;
}

.product-card:hover .product-card__shop {
  text-decoration: underline;
}

.shop-teaser__foot {
  margin-top: 1.75rem;
  text-align: center;
}

/* Blog */
.blog-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
  border-color: var(--teal-mid);
  box-shadow: 0 8px 24px rgba(23, 69, 76, 0.1);
  transform: translateY(-2px);
  color: inherit;
}

.blog-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__date {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--rose);
  margin-bottom: 0.5rem;
}

.blog-card h2,
.blog-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.55rem;
}

.blog-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.article {
  max-width: 720px;
}

.article__meta {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.article p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #33484C;
  margin: 0 0 1.15rem;
}

.article h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.85rem;
}

.article ul {
  margin: 0 0 1.25rem 1.25rem;
  list-style: disc;
  color: #33484C;
}

.article li {
  margin-bottom: 0.45rem;
  line-height: 1.65;
}

.article .cta-box {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--bg-soft);
  border-radius: 12px;
  border-left: 4px solid var(--rose);
}

/* Shop / thank you */
.coming-soon {
  text-align: center;
  padding: 5rem 0;
  max-width: 36rem;
  margin-inline: auto;
}

.coming-soon h1 {
  margin-bottom: 1rem;
}

.coming-soon p {
  color: var(--text-mid);
  font-size: 1.1rem;
}

/* Footer */
.site-footer {
  background: var(--teal);
  color: var(--footer-muted);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1.3fr 1.2fr 1fr 1fr;
    gap: 2.5rem;
  }
}

.site-footer__brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.site-footer p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 0.75rem;
  color: var(--footer-muted);
}

.site-footer__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 0.85rem;
}

.site-footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1rem;
  font-size: 0.875rem;
}

.site-footer__links a {
  color: var(--footer-muted);
  text-decoration: none;
}

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

.site-footer .phone-lg {
  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  display: block;
}

.site-footer .email-link {
  color: #CFE0E0;
  text-decoration: none;
  font-weight: 600;
  display: block;
  margin-top: 0.5rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: #8FB0B3;
}

.site-footer__credit {
  color: inherit;
  text-decoration: none;
}

.site-footer__credit:hover {
  color: #fff;
  text-decoration: underline;
}

/* Mobile call bar */
.mobile-callbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  background: var(--teal);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-callbar a {
  flex: 1;
  text-align: center;
  padding: 0.9rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
}

.mobile-callbar a:last-child {
  background: var(--rose);
}

.mobile-callbar a:hover {
  color: #fff;
  opacity: 0.92;
}

body.has-callbar {
  padding-bottom: 3.5rem;
}

@media (min-width: 1024px) {
  .mobile-callbar {
    display: none;
  }

  body.has-callbar {
    padding-bottom: 0;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Area grid */
.area-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .area-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .area-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.area-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.35rem 1.4rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.area-link:hover {
  border-color: var(--teal-mid);
  box-shadow: 0 8px 24px rgba(23, 69, 76, 0.1);
  transform: translateY(-2px);
  color: inherit;
}

.area-link h2,
.area-link h3 {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.area-link p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-soft);
}
