@font-face {
  font-family: "Be Vietnam Pro";
  src: url("./fonts/BeVietnamPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("./fonts/BeVietnamPro-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("./fonts/BeVietnamPro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("./fonts/BeVietnamPro-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("./fonts/BeVietnamPro-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(16, 37, 29, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 37, 29, 0.035) 1px, transparent 1px),
    var(--cloud);
  background-size: 72px 72px;
  color: var(--root-ink);
  font-family: "Be Vietnam Pro", "Aptos", "Segoe UI", system-ui, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
  border-radius: 8px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.7vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.18;
}

body > .page {
  overflow-x: clip;
}

.shell {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 840px;
}

.nav-wrap {
  position: sticky;
  top: 16px;
  z-index: 20;
  padding-top: 16px;
}

.nav {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto 44px;
  column-gap: 8px;
  align-items: center;
  min-height: 64px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius-pill);
  background: rgba(247, 248, 241, 0.82);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(18px) saturate(140%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(21, 63, 45, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 24%, var(--sage-glass) 0 4px, transparent 5px),
    linear-gradient(135deg, var(--canopy), var(--rain-teal));
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.34);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(16, 37, 29, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: var(--radius-pill);
}

.nav-links a:hover {
  background: rgba(168, 183, 157, 0.22);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(21, 63, 45, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 900;
}

.language-switcher a {
  min-width: 30px;
  padding: 7px 8px;
  border-radius: var(--radius-pill);
  color: rgba(16, 37, 29, 0.58);
  text-align: center;
}

.language-switcher a:hover {
  color: var(--canopy);
}

.language-switcher a.active {
  background: var(--canopy);
  color: var(--white);
}

.cart-icon {
  justify-self: end;
}

.nav-cta {
  justify-self: end;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: #000;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  transition: transform var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}

.button:active {
  transform: translateY(1px);
}

.button.primary {
  background: var(--rain-teal);
  color: var(--white);
}

.button.primary:hover {
  background: #095752;
}

.button.secondary {
  border-color: rgba(16, 37, 29, 0.22);
  background: rgba(255, 255, 255, 0.58);
}

.hero,
.page-hero {
  padding: 78px 0 60px;
}

.hero {
  min-height: 82dvh;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 42px;
  align-items: center;
}

.compact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}

.kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(16, 37, 29, 0.16);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.58);
  color: var(--rain-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rain-teal);
  box-shadow: 0 0 0 6px rgba(13, 107, 102, 0.10);
}

.hero h1,
.page-hero h1 {
  margin-top: 8px;
}

.hero-emotion {
  margin: 0 0 24px;
  color: var(--leaf);
  font-size: clamp(17px, 1.5vw, 21px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.01em;
  opacity: 0.88;
}

.hero-copy {
  max-width: 660px;
  color: rgba(16, 37, 29, 0.72);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
}

.category-description {
  max-width: 820px;
}

.category-description p {
  margin-bottom: 16px;
}

.category-description p:last-child {
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.note {
  min-height: 112px;
  padding: 18px 16px;
  border-right: 1px solid var(--line);
}

.note:last-child {
  border-right: 0;
}

.note b {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.note span {
  display: block;
  color: var(--wet-stone);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.image-stack {
  position: absolute;
  inset: 0;
}

.image-main,
.image-side,
.wide-image,
.page-hero-media,
.maintenance-visual,
.single-hero-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
}

.image-main {
  position: absolute;
  inset: 0 0 82px 92px;
  box-shadow: 0 38px 90px rgba(16, 37, 29, 0.20);
}

.image-main img,
.image-side img,
.wide-image img,
.page-hero-media img,
.maintenance-visual img,
.single-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-side {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42%;
  height: 42%;
  border: 10px solid var(--cloud);
  box-shadow: 0 24px 60px rgba(16, 37, 29, 0.16);
}

.field-card {
  position: absolute;
  right: 26px;
  bottom: 22px;
  width: min(360px, 64%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.50);
  border-radius: var(--radius);
  background: rgba(247, 248, 241, 0.80);
  box-shadow: 0 20px 70px rgba(16, 37, 29, 0.20);
  backdrop-filter: blur(18px) saturate(140%);
}

.field-card small,
.spec-label {
  display: block;
  color: var(--rain-teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-card h2 {
  margin: 10px 0;
  font-size: 19px;
  line-height: 1.15;
}

.field-card p {
  margin: 0;
  color: rgba(16, 37, 29, 0.72);
  font-size: 14px;
}

.section {
  padding: 74px 0;
}

.section.compact {
  padding-top: 42px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 14px 0 0;
}

.section-heading p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--wet-stone);
  font-size: 16px;
}

.split-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.solutions {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.solution-item {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.solution-item p,
.package p,
.protocol-step p,
.service-card p,
.project-card p,
.blog-card p {
  margin-bottom: 0;
  color: var(--wet-stone);
}

.solution-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  padding: 28px;
  background: rgba(168, 183, 157, 0.18);
}

.wide-image {
  min-height: 250px;
}

.project-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.archive-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card,
.blog-card,
.contact-card,
.service-card,
.empty-state {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.project-card a,
.blog-card a {
  display: block;
}

.project-card figure,
.blog-card figure {
  height: 220px;
  margin: 0;
  background: var(--mist);
}

.project-card img,
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card div,
.blog-card div,
.empty-state {
  padding: 20px;
}

.project-card h2,
.blog-card h2,
.project-card h3,
.blog-card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
}

.media-placeholder {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: var(--wet-stone);
  font-size: 13px;
}

.package-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.package {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
}

.package.featured {
  background: var(--canopy);
  color: var(--white);
}

.package.featured p,
.package.featured .package-meta {
  color: rgba(255, 255, 255, 0.74);
}

.package-img {
  overflow: hidden;
  height: 220px;
  margin: -24px -24px 22px;
  background: var(--mist);
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.package-spec {
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(16, 37, 29, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(247, 248, 241, 0.62);
}

.package.featured .package-spec {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.package.featured .spec-label {
  color: rgba(255, 255, 255, 0.68);
}

.package-spec b {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 37, 29, 0.14);
  color: var(--wet-stone);
  font-size: 13px;
}

.package.featured .package-meta {
  border-color: rgba(255, 255, 255, 0.20);
}

.dark-band {
  position: relative;
  padding: 74px 0;
  background: var(--canopy);
  color: var(--white);
}

.dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.dark-band .shell {
  position: relative;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.pillar {
  min-height: 280px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
}

.pillar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.cta-strip {
  padding: 58px 0;
  background:
    linear-gradient(90deg, rgba(21, 63, 45, 0.88), rgba(21, 63, 45, 0.52)),
    url("./images/cta-maintenance-strip.webp") center / cover;
  color: var(--white);
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-grid h2 {
  max-width: 760px;
  margin: 14px 0 0;
}

.page-hero-media {
  position: relative;
  min-height: 440px;
  margin: 0;
}

.page-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strip-media {
  position: relative;
  min-height: 360px;
  margin: 0;
}

.strip-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maintenance {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.protocol {
  border-top: 1px solid var(--line);
}

.protocol-step {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.step-no {
  color: var(--rain-teal);
  font-size: 14px;
  font-weight: 900;
}

.maintenance-visual {
  position: sticky;
  top: 104px;
  min-height: 610px;
}

.maintenance-visual .caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(247, 248, 241, 0.86);
  backdrop-filter: blur(14px);
}

.warranty-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(16, 37, 29, 0.16);
}

#warranty {
  background: var(--canopy);
  color: var(--white);
}

.warranty-copy,
.warranty-list {
  margin: 0;
  background: rgba(255, 255, 255, 0.055);
}

.warranty-copy {
  padding: clamp(28px, 5vw, 54px);
}

.warranty-copy h2 {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--white);
}

.warranty-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.warranty-note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
}

.warranty-list {
  display: grid;
  align-content: stretch;
}

.warranty-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.warranty-item:last-child {
  border-bottom: 0;
}

.warranty-item dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.warranty-item dd {
  margin: 0;
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  text-align: right;
}

.caption span {
  color: var(--wet-stone);
  font-size: 14px;
}

.service-board,
.table-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-board.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-disclaimer {
  margin: 18px 0 0;
  color: var(--wet-stone);
  font-size: 13px;
  font-style: italic;
}

.service-card,
.contact-card {
  padding: 22px;
}

.price-state {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(13, 107, 102, 0.10);
  color: var(--rain-teal);
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

th {
  width: 46%;
  color: var(--rain-teal);
  font-size: 13px;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
}

.faq-list p {
  max-width: 780px;
  margin: 12px 0 0;
  color: var(--wet-stone);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-list strong {
  display: block;
  margin-top: 4px;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-map {
  overflow: hidden;
  min-height: 240px;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--rain-teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(16, 37, 29, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  color: var(--root-ink);
  font: inherit;
  padding: 10px 12px;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rain-teal);
}

.notice {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(13, 107, 102, 0.10);
  color: var(--rain-teal);
  font-weight: 700;
}

.single-hero-image {
  overflow: visible;
  max-height: 620px;
  margin-bottom: 42px;
  background: transparent;
}

.single-hero-image img {
  height: auto;
  max-height: 620px;
  border-radius: var(--radius);
  background: var(--mist);
}

.single-hero-image figcaption {
  margin-top: 10px;
  color: var(--wet-stone);
  font-size: 13px;
  line-height: 1.5;
}

body.single-post .single-hero-image {
  position: relative;
  overflow: hidden;
  width: min(920px, calc(100% - 40px));
  max-height: none;
  aspect-ratio: 16 / 9;
  margin-bottom: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 70px rgba(16, 37, 29, 0.12);
}

body.single-post .single-hero-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
}

body.single-post .single-hero-image figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  width: fit-content;
  max-width: calc(100% - 32px);
  margin: 0;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: rgba(247, 248, 241, 0.84);
  color: rgba(16, 37, 29, 0.72);
  backdrop-filter: blur(12px);
}

.entry-content {
  font-size: 16px;
}

.entry-content h2 {
  margin-top: 42px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.entry-content p,
.entry-content li {
  color: rgba(16, 37, 29, 0.78);
}

.entry-content a {
  color: var(--rain-teal);
  font-weight: 700;
  text-decoration: underline;
}

.project-back-nav {
  display: flex;
  margin-top: 32px;
  margin-bottom: 64px;
}

.project-back {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(16, 37, 29, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(247, 248, 241, 0.72);
  color: var(--canopy);
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}

.project-back::before {
  content: "\2190";
  margin-right: 8px;
}

.project-back:hover {
  border-color: rgba(13, 107, 102, 0.32);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.legal-updated {
  margin: 18px 0 0;
  color: var(--wet-stone);
  font-size: 13px;
  font-weight: 700;
}

.legal-layout {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0;
  font-size: clamp(21px, 2vw, 28px);
}

.legal-section ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.legal-section li {
  color: rgba(16, 37, 29, 0.78);
}

.single-entry.post .entry-content .wp-block-image {
  overflow: hidden;
  margin: 34px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.single-entry.post .entry-content .wp-block-image img {
  width: 100%;
  height: auto;
}

.single-entry.post .entry-content .wp-block-image figcaption {
  margin: 0;
  padding: 10px 14px;
  color: var(--wet-stone);
  font-size: 13px;
  line-height: 1.5;
}

.blog-exit {
  display: grid;
  gap: 22px;
  margin-top: 44px;
  margin-bottom: 64px;
}

.blog-exit-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.blog-exit-card {
  display: grid;
  min-height: 112px;
  align-content: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.blog-exit-card.primary {
  background: var(--canopy);
  color: var(--white);
}

.blog-exit-card span,
.blog-related small {
  color: var(--rain-teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-exit-card.primary span {
  color: rgba(255, 255, 255, 0.66);
}

.blog-exit-card b {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.18;
}

.blog-related {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.blog-related-title {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 800;
}

.blog-related-list {
  display: grid;
  gap: 10px;
}

.blog-related-list a {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.blog-related-list span {
  color: var(--canopy);
  font-weight: 800;
  line-height: 1.35;
}

.blog-back {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(16, 37, 29, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(247, 248, 241, 0.72);
  color: var(--canopy);
  font-weight: 800;
}

.archive-list {
  display: grid;
  gap: 16px;
}

.list-card {
  padding: 22px;
}

.pagination {
  display: flex;
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 18px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
}

.pagination .page-numbers {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.62);
  color: var(--canopy);
  font-weight: 800;
}

.pagination .page-numbers.current {
  background: var(--canopy);
  color: var(--white);
}

.pagination .prev,
.pagination .next {
  min-width: 112px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.footer {
  padding: 58px 0 28px;
  background: var(--root-ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer h3,
.footer h4 {
  margin-top: 0;
}

.footer p,
.footer a,
.footer span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.footer a,
.footer span {
  margin-top: 8px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.footer .bct-badge,
.footer .dmca-badge {
  display: inline-flex;
  width: fit-content;
  margin-top: 0;
  border-radius: 8px;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}

.footer .bct-badge:hover,
.footer .dmca-badge:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.footer .bct-badge img {
  width: 190px;
  height: auto;
}

.footer .dmca-badge img {
  width: 100px;
  height: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

@media (max-width: 1024px) {
  .nav {
    grid-template-columns: 1fr auto auto auto;
    border-radius: 28px;
    position: relative;
    column-gap: 10px;
  }

  .nav-toggle { display: flex; order: 4; position: relative; z-index: 50; }
  .cart-icon { order: 3; }
  .language-switcher { order: 2; }
  .brand { order: 1; }

  .nav-links {
    display: none;
  }

  body.nav-open .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    order: 5;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 10px;
    border: 1px solid rgba(21, 63, 45, 0.12);
    border-radius: 22px;
    background: #f7f8f1;
    box-shadow: 0 8px 32px rgba(21, 63, 45, 0.18), 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 9999;
    font-size: 15px;
  }

  .nav {
    background: #f7f8f1;
    border: 1px solid rgba(21, 63, 45, 0.14);
    box-shadow: 0 2px 12px rgba(21, 63, 45, 0.10);
  }

  body.nav-open .nav-links a {
    padding: 12px 14px;
  }

  .hero-grid,
  .compact-grid,
  .solutions,
  .maintenance,
  .warranty-panel,
  .contact-layout,
  .table-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .image-main {
    inset: 0 0 70px 54px;
  }

  .project-grid,
  .blog-grid,
  .archive-grid,
  .package-grid,
  .pillar-grid,
  .service-board.three,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .maintenance-visual {
    position: relative;
    top: auto;
  }

  .warranty-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, var(--container));
  }

  .nav {
    padding: 10px;
  }

  .brand span:last-child {
    max-width: 120px;
  }

  .button {
    min-height: 40px;
    padding-inline: 14px;
    white-space: normal;
  }

  .hero,
  .page-hero {
    padding: 44px 0 38px;
  }

  h1 {
    font-size: clamp(32px, 9vw, 40px);
  }

  h2 {
    font-size: clamp(24px, 7vw, 31px);
  }

  .hero-notes,
  .solution-list,
  .project-grid,
  .blog-grid,
  .archive-grid,
  .package-grid,
  .pillar-grid,
  .service-board,
  .service-board.three,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .image-main {
    inset: 0 0 80px 0;
  }

  .image-side {
    width: 52%;
    height: 34%;
    border-width: 8px;
  }

  .field-card {
    right: 12px;
    bottom: 12px;
    width: min(320px, 78%);
  }

  .note,
  .solution-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .solution-item:last-child,
  .note:last-child {
    border-bottom: 0;
  }

  .split-heading,
  .cta-grid,
  .footer-bottom {
    display: grid;
    align-items: start;
  }

  .package-specs {
    grid-template-columns: 1fr;
  }

  .protocol-step {
    grid-template-columns: 54px 1fr;
  }

  .warranty-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }

  .warranty-item dd {
    text-align: left;
  }

  .page-hero-media,
  .strip-media,
  .maintenance-visual {
    min-height: 320px;
  }

  body.single-post .single-hero-image {
    width: min(100% - 28px, var(--container));
    margin-bottom: 28px;
  }

  body.single-post .single-hero-image figcaption {
    position: static;
    width: auto;
    max-width: none;
    border-radius: 0;
  }

  .blog-exit-actions {
    grid-template-columns: 1fr;
  }

  .blog-exit-card {
    min-height: 92px;
  }

  .blog-back {
    width: 100%;
  }

  .project-back {
    width: 100%;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .pagination,
  .pagination .nav-links {
    justify-content: stretch;
  }

  .pagination .page-numbers {
    flex: 1 1 auto;
  }

  .pagination .prev,
  .pagination .next {
    min-width: 0;
  }
}

/* Mobile hero: image-first hook (image appears immediately, headline + CTA below).
   On phones the hero grid stacks; by default text came first and the photo sat
   far below the 3 pillar notes. Here the photo leads and fills most of the first
   screen, with the editorial field-card overlaid as the hook line. */
@media (max-width: 1024px) {
  .hero .hero-grid {
    gap: 22px;
    align-items: start;
  }

  .hero .hero-visual {
    order: -1;          /* photo before the text block */
    min-height: 0;
  }

  .hero .image-stack {
    position: relative; /* was absolute inset:0 */
    inset: auto;
    height: 56dvh;
    min-height: 320px;
    max-height: 460px;
  }

  .hero .image-main {
    inset: 0;
    box-shadow: 0 22px 55px rgba(16, 37, 29, 0.20);
  }

  .hero .image-side {
    display: none;      /* single clean image on mobile */
  }

  .hero .field-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }

  .hero .hero-notes {
    margin-top: 28px;   /* pillars sit below the fold, after headline + CTA */
  }
}

@media (max-width: 680px) {
  .hero .image-stack {
    height: 52dvh;
    min-height: 300px;
  }
}

/* Homepage identity refresh: inspired by a lifestyle green-wall hero while
   keeping the existing WordPress theme, routes, and section structure. */
.brand {
  gap: 10px;
}

.brand .brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  color: var(--canopy);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-copy small {
  color: rgba(16, 37, 29, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-home {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  min-height: 86dvh;
  padding: 84px 0 58px;
  background:
    radial-gradient(circle at 55% 44%, rgba(168, 183, 157, 0.16), transparent 34%),
    radial-gradient(circle at 78% 24%, rgba(168, 183, 157, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(247, 248, 241, 0.72), rgba(247, 248, 241, 0.38));
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 248, 241, 0.46), rgba(247, 248, 241, 0.08) 44%, rgba(247, 248, 241, 0.28));
  pointer-events: none;
  z-index: 0;
}

.hero-home::after {
  content: "";
  position: absolute;
  top: 96px;
  bottom: 58px;
  left: 39%;
  width: min(34vw, 430px);
  background:
    radial-gradient(ellipse at 42% 44%, rgba(247, 248, 241, 0.72), rgba(236, 239, 231, 0.38) 46%, transparent 74%),
    linear-gradient(90deg, rgba(247, 248, 241, 0.58), rgba(168, 183, 157, 0.12), transparent 76%);
  filter: blur(3px);
  pointer-events: none;
  z-index: 0;
}

.hero-home .hero-grid {
  position: relative;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: 36px;
  align-items: center;
  min-height: calc(86dvh - 142px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-home .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(24px, 4vh, 48px);
}

.hero-home h1 {
  max-width: 580px;
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--canopy);
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.hero-home .hero-copy {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(16, 37, 29, 0.68);
  font-size: clamp(15px, 1.2vw, 16.5px);
  line-height: 1.7;
}

.hero-home .hero-actions {
  margin-top: 28px;
  gap: 14px;
}

.hero-home .button {
  min-height: 46px;
  padding: 0 22px;
  font-size: 14px;
}

.hero-home .button.primary {
  background: var(--canopy);
}

.hero-home .button.primary:hover {
  background: #244d34;
}

.hero-home .button.secondary {
  border-color: rgba(16, 37, 29, 0.28);
  background: rgba(247, 248, 241, 0.66);
}

.hero-home .hero-notes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
  border-color: rgba(16, 37, 29, 0.10);
}

.hero-home .note {
  min-height: 100px;
  padding: 16px 16px 16px 0;
  border-color: rgba(16, 37, 29, 0.10);
}

.hero-home .note + .note {
  padding-left: 16px;
}

.hero-home .note b {
  color: var(--canopy);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.hero-home .note span {
  font-size: 12.5px;
  line-height: 1.5;
}

.hero-home .hero-visual {
  position: relative;
  z-index: 1;
  min-height: clamp(620px, 68dvh, 680px);
  transform: translateY(16px);
}

.hero-photo-frame {
  position: absolute;
  inset: 0 0 0 -24px;
  overflow: hidden;
  margin: 0;
  border-radius: 0 0 0 120px;
  background: var(--mist);
  box-shadow: 0 36px 100px rgba(16, 37, 29, 0.18);
}

.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 44%;
  background:
    linear-gradient(90deg, rgba(247, 248, 241, 0.80), rgba(247, 248, 241, 0.36) 44%, transparent 100%),
    radial-gradient(ellipse at 18% 52%, rgba(168, 183, 157, 0.24), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 248, 241, 0.10), transparent 46%),
    linear-gradient(0deg, rgba(16, 37, 29, 0.16), transparent 38%);
  pointer-events: none;
  z-index: 2;
}

.hero-photo-frame picture,
.hero-photo-frame img {
  width: 100%;
  height: 100%;
}

.hero-photo-frame img {
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1024px) {
  .hero-home {
    padding-top: 42px;
  }

  .hero-home .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .hero-home .hero-visual {
    order: -1;
    min-height: 56dvh;
    transform: none;
  }

  .hero-photo-frame {
    inset: 0;
    border-radius: 34px;
  }

  .hero-content {
    max-width: none;
  }

  .hero-home .hero-content {
    padding-top: 0;
    justify-content: flex-start;
  }

  .hero-home h1 {
    max-width: 620px;
    margin-bottom: 12px;
  }

  .hero-home .hero-copy {
    max-width: 580px;
  }

  .hero-home .hero-emotion {
    margin-bottom: 18px;
  }
}

@media (max-width: 680px) {
  .brand .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-home {
    padding: 28px 0 38px;
  }

  .hero-home .hero-visual {
    min-height: 40dvh;
  }

  .hero-home h1 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.12;
    margin-bottom: 10px;
  }

  .hero-home .hero-emotion {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .hero-home .hero-copy {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-photo-frame::before {
    width: 28%;
    background:
      linear-gradient(90deg, rgba(247, 248, 241, 0.34), transparent 100%);
  }

  .hero-photo-frame::after {
    background:
      linear-gradient(0deg, rgba(16, 37, 29, 0.12), transparent 34%);
  }

  .hero-home .hero-notes {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-home .note,
  .hero-home .note + .note {
    min-height: auto;
    padding: 14px 0;
    border-right: 0;
  }
}

@media (max-width: 480px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) auto auto 40px;
    column-gap: 4px;
    padding-left: 12px;
  }

  .brand {
    min-width: 0;
    gap: 6px;
  }

  .brand .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .brand-copy {
    display: grid;
    min-width: 0;
  }

  .brand-copy strong {
    font-size: clamp(12px, 3.7vw, 14px);
    white-space: nowrap;
  }

  .language-switcher {
    gap: 0;
    padding: 2px;
  }

  .language-switcher a {
    min-width: 26px;
    padding: 6px 5px;
  }

  .nav .cart-icon,
  .nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}

@media (max-width: 340px) {
  .brand-copy strong {
    font-size: 11.5px;
  }

  .language-switcher a {
    min-width: 23px;
    padding-inline: 4px;
  }
}

/* Cart icon */
.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--canopy, #153f2d);
  border-radius: 14px;
  border: 1px solid rgba(21, 63, 45, 0.12);
  background: transparent;
  transition: background-color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}

.cart-icon:hover {
  border-color: rgba(21, 63, 45, 0.24);
  background: rgba(168, 183, 157, 0.22);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border: 2px solid var(--cloud);
  border-radius: 999px;
  background: var(--rain-teal, #0d6b66);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  line-height: 14px;
  text-align: center;
}

/* Warranty table */
.warranty-table {
  width: 100%;
  max-width: 480px;
  margin-top: 20px;
  border-collapse: collapse;
}

.warranty-table th,
.warranty-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line, rgba(16, 37, 29, 0.10));
  font-size: 15px;
}

.warranty-table th {
  text-align: left;
  font-weight: 600;
  color: var(--root-ink);
}

.warranty-table td {
  text-align: right;
  font-weight: 700;
  color: var(--rain-teal, #0d6b66);
}

/* Package price + add-to-cart (WooCommerce demo pricing) */
.package-price {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.package-price .price-state {
  font-size: 20px;
  font-weight: 700;
  color: var(--rain-teal, #0d6b66);
}
.package-price .price-state .woocommerce-Price-amount {
  color: inherit;
}
.package-price .price-demo {
  font-size: 12px;
  letter-spacing: 0.02em;
  opacity: 0.6;
}
.package-price .package-buy {
  align-self: stretch;
  text-align: center;
  margin-top: 4px;
}
.package-price .package-detail-link,
.calc-detail-link a {
  font-size: 14px;
  font-weight: 600;
  color: var(--rain-teal, #0d6b66);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.package-price .package-detail-link {
  align-self: flex-start;
  margin-top: 2px;
}
.package-price .package-detail-link::after,
.calc-detail-link a::after {
  content: " \2192";
}
.package-price .package-detail-link:hover,
.calc-detail-link a:hover {
  border-bottom-color: currentColor;
}
.calc-detail-link {
  margin-top: 18px;
  text-align: center;
}

/* ============================================================
   Decor packages — rich cards (savings, includes, notes)
   ============================================================ */
.package {
  display: flex;
  flex-direction: column;
}

.package-save {
  align-self: flex-start;
  margin: 0 0 10px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(184, 107, 79, 0.14);
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.package.featured .package-save {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.package-includes {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.package-includes li {
  position: relative;
  padding-left: 24px;
  font-size: 13px;
  font-weight: 700;
}

.package-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 3px, var(--rain-teal) 3px 5px, transparent 6px),
    rgba(13, 107, 102, 0.14);
}

.package.featured .package-includes li::before {
  background: rgba(255, 255, 255, 0.22);
}

.package-notes {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--wet-stone);
  font-size: 12px;
  line-height: 1.5;
}

.package-notes li {
  padding: 2px 0;
}

.package.featured .package-notes {
  color: rgba(255, 255, 255, 0.70);
}

.package .package-price {
  margin-top: auto;
  padding-top: 18px;
}

.package.featured .package-price .price-state,
.package.featured .package-price .price-state .woocommerce-Price-amount {
  color: var(--white);
}

/* ============================================================
   Decor size calculator
   ============================================================ */
.calc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 32px;
  align-items: start;
}

.calc-intro h2 {
  margin: 10px 0 14px;
}

.calc-intro p {
  max-width: 520px;
  color: var(--wet-stone);
}

.calc-rates {
  display: grid;
  gap: 1px;
  margin: 24px 0 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.calc-rates li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.calc-rates li span {
  color: var(--wet-stone);
}

.calc-rates li b {
  color: var(--rain-teal);
  white-space: nowrap;
}

.calc-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-1);
}

.calc-field {
  display: grid;
  gap: 9px;
}

.calc-field label,
.calc-legend {
  font-size: 13px;
  font-weight: 800;
  color: var(--root-ink);
}

.calc-field input[type="number"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(16, 37, 29, 0.20);
  border-radius: var(--radius-sm);
  background: var(--white);
  font: inherit;
  font-weight: 700;
}

.calc-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calc-choice label {
  position: relative;
  flex: 1 1 0;
  min-width: 84px;
  cursor: pointer;
}

.calc-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calc-choice span {
  display: block;
  padding: 11px 12px;
  border: 1px solid rgba(16, 37, 29, 0.20);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: border-color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}

.calc-choice input:checked + span {
  border-color: var(--rain-teal);
  background: var(--rain-teal);
  color: var(--white);
}

.calc-choice input:focus-visible + span {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

.calc-result {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--canopy);
  color: var(--white);
}

.calc-result-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.calc-result-value {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.1;
}

.calc-result-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.calc-disclaimer {
  margin: 0;
  color: var(--wet-stone);
  font-size: 13px;
  font-style: italic;
}

.calc-cta {
  align-self: stretch;
  text-align: center;
}

/* ============================================================
   Maintenance plan conditions
   ============================================================ */
.plan-freq {
  margin: 0 0 6px;
  color: var(--rain-teal);
  font-size: 13px;
  font-weight: 800;
}

.maintenance-conditions {
  margin-top: 20px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
}

.conditions-label {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rain-teal);
}

.maintenance-conditions ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--wet-stone);
  font-size: 14px;
}

/* Bottom-align the price/CTA across the three maintenance plan cards. */
.service-board.three .service-card {
  display: flex;
  flex-direction: column;
}

.service-board.three .service-card .package-price {
  margin-top: auto;
}

@media (max-width: 960px) {
  .calc-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================================
   Single product page (Permeable Botanical, VI + EN)
   ============================================================ */
.product-hero .product-buy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}
.product-hero .product-price,
.product-hero .product-price .woocommerce-Price-amount,
.product-hero .product-price .price {
  font-size: 26px;
  font-weight: 700;
  color: var(--rain-teal, #0d6b66);
}
.product-hero .product-short {
  margin-top: 14px;
}
.product-description {
  font-size: 17px;
  line-height: 1.72;
}
.product-description h2 {
  font-size: 22px;
  margin: 32px 0 10px;
}
.product-description h2:first-child {
  margin-top: 0;
}
.product-description p {
  margin: 0 0 14px;
}
.product-hub-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 720px) {
  .product-hero .product-price,
  .product-hero .product-price .woocommerce-Price-amount,
  .product-hero .product-price .price {
    font-size: 22px;
  }
  .product-description {
    font-size: 16px;
  }
}

/* Decor package comparison (template-parts/decor-compare.php) */
.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 8px;
}

.compare-table {
  min-width: 620px;
}

/* Global rule sets th{width:46%}, which collapses a four-column table. */
.compare-table th,
.compare-table td {
  width: auto;
  padding: 14px 16px;
  font-size: 15px;
  vertical-align: middle;
}

.compare-table thead th {
  font-size: 16px;
  font-weight: 700;
  color: var(--root-ink);
  white-space: nowrap;
}

.compare-table thead th small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: var(--rain-teal);
}

.compare-table thead th.is-featured {
  background: rgba(13, 107, 102, 0.08);
}

.compare-table tbody th {
  width: 26%;
  color: var(--rain-teal);
  font-size: 13px;
  font-weight: 600;
}

.compare-table tbody tr.is-key {
  background: rgba(13, 107, 102, 0.05);
}

.compare-table tbody tr.is-key th,
.compare-table tbody tr.is-key td {
  font-weight: 700;
  color: var(--root-ink);
}

.compare-help {
  margin-top: 28px;
  max-width: 760px;
}

.compare-help h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.compare-help ol {
  margin: 0 0 22px;
  padding-left: 20px;
}

.compare-help li {
  margin-bottom: 12px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .compare-table th,
  .compare-table td {
    padding: 12px;
    font-size: 14px;
  }
  .compare-help h3 {
    font-size: 18px;
  }
}
