:root {
  --ink: #172326;
  --muted: #5f696b;
  --paper: #f6f1e8;
  --surface: #fffaf1;
  --green: #2f6f5e;
  --blue: #2f6385;
  --gold: #d8a64f;
  --line: rgba(23, 35, 38, 0.14);
  --shadow: 0 18px 55px rgba(23, 35, 38, 0.14);
  --max: 1120px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(246, 241, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(210px, 48vw);
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(47, 111, 94, 0.1);
  outline: none;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 74px));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #162326;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 35, 38, 0.88), rgba(23, 35, 38, 0.46) 48%, rgba(23, 35, 38, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 92px 0 clamp(58px, 10vw, 96px);
  color: #fffaf1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.45rem, 7vw, 5.4rem);
  line-height: 0.98;
}

.hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: #172326;
}

.button.secondary {
  border-color: rgba(255, 250, 241, 0.6);
  color: #fffaf1;
}

.button.secondary.dark {
  border-color: rgba(23, 35, 38, 0.2);
  color: var(--ink);
}

.home-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.home-page .site-header {
  position: relative;
  padding-top: 8px;
  padding-bottom: 8px;
}

.home-page .brand {
  width: min(178px, 44vw);
}

.home-main {
  min-height: 0;
  display: grid;
  align-items: center;
  padding: clamp(10px, 2vh, 22px) clamp(18px, 4vw, 44px);
  background:
    linear-gradient(90deg, rgba(23, 35, 38, 0.84), rgba(23, 35, 38, 0.54) 52%, rgba(246, 241, 232, 0.24)),
    url("/assets/images/home-background.jpg?v=1.0.17") center / cover no-repeat;
}

.home-screen {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.home-copy,
.home-side {
  border: 1px solid rgba(255, 250, 241, 0.46);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.64), rgba(255, 250, 241, 0.38));
  box-shadow: 0 18px 60px rgba(14, 22, 24, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(18px) saturate(1.25);
}

.home-copy .eyebrow,
.home-side .eyebrow {
  color: #000000;
}

.home-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 3vw, 32px);
}

.home-copy h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4.7vw, 4rem);
  line-height: 0.98;
}

.home-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.home-area {
  margin-top: 18px;
  padding: 13px;
  border: 1px solid rgba(255, 250, 241, 0.42);
  border-radius: var(--radius);
  background: rgba(238, 244, 241, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.home-area span,
.home-links span {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-area p {
  margin: 5px 0 0;
  color: var(--muted);
}

.home-side {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.home-side > div {
  width: 100%;
  padding: 14px;
}

.home-photo img {
  width: 100%;
  height: 100%;
  min-height: 96px;
  object-fit: cover;
}

.home-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.home-links a {
  min-height: 56px;
  padding: 10px;
  border: 1px solid rgba(255, 250, 241, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.home-links a:hover,
.home-links a:focus-visible {
  border-color: rgba(47, 111, 94, 0.45);
  outline: none;
  transform: translateY(-2px);
}

.home-links strong {
  display: block;
  margin-top: 4px;
  line-height: 1.16;
}

.home-page .site-footer {
  padding: 8px 18px;
  font-size: 0.86rem;
}

.home-page .site-version {
  width: auto;
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(var(--max), calc(100vw - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--line);
}

.intro div {
  padding: 24px;
  background: var(--surface);
}

.intro span,
.service-card span,
.info-list span,
.price-row span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro strong {
  display: block;
  margin-top: 6px;
  font-size: 1.25rem;
}

.intro p,
.service-card p,
.section-heading p,
.split-section p {
  color: var(--muted);
}

.intro p {
  margin: 8px 0 0;
}

.section-shell {
  width: min(var(--max), calc(100vw - 36px));
  margin: 92px auto 0;
}

.section-heading {
  max-width: 680px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.service-card {
  display: block;
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(47, 111, 94, 0.45);
  outline: none;
  transform: translateY(-2px);
}

.service-card h3 {
  margin: 42px 0 12px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.service-card p {
  margin: 0;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: min(var(--max), calc(100vw - 36px));
  margin: 78px auto 96px;
}

.split-section > div {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eef4f1;
}

.split-section > div:last-child {
  background: #eef3f8;
}

.split-section h2 {
  font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.split-section.compact {
  margin-top: 56px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.page-hero {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 94px) 0 34px;
}

.page-hero > div {
  max-width: 760px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 18px;
  width: min(var(--max), calc(100vw - 36px));
  margin: 28px auto 96px;
}

.page-copy,
.note-card,
.inquiry-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.note-card {
  background: #eef4f1;
}

.page-copy h2,
.note-card h2,
.inquiry-form h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.page-copy p,
.note-card p,
.inquiry-form p {
  color: var(--muted);
}

.page-copy p:last-child,
.note-card p:last-child {
  margin-bottom: 0;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.info-list,
.price-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.info-list li,
.price-row {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 241, 232, 0.62);
}

.info-list strong,
.price-row strong {
  display: block;
  margin-top: 3px;
  font-size: 1.05rem;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

.price-row strong {
  margin: 0;
  font-size: 1.35rem;
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.brand-list li {
  padding: 8px 11px;
  border: 1px solid rgba(47, 111, 94, 0.24);
  border-radius: var(--radius);
  background: #fffaf1;
  color: var(--green);
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  gap: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(47, 99, 133, 0.55);
  outline: 3px solid rgba(47, 99, 133, 0.16);
}

.form-note {
  margin: -4px 0 0;
  font-size: 0.92rem;
}

.contact-page .page-hero {
  padding-bottom: 18px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
  gap: 18px;
  width: min(var(--max), calc(100vw - 36px));
  margin: 28px auto 96px;
}

.contact-form {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(23, 35, 38, 0.08);
}

.contact-form .field-grid {
  margin-top: 26px;
}

.contact-form .button {
  margin-top: 20px;
  cursor: pointer;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.contact-aside {
  display: grid;
  align-content: start;
  gap: 18px;
}

.contact-aside > div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eef4f1;
}

.contact-aside h2 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.15;
}

.contact-aside p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-aside a {
  color: var(--green);
  font-weight: 800;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.form-status {
  min-height: 1.55em;
  margin: 14px 0 0;
  font-weight: 700;
}

.form-status.is-success {
  color: #0f6c45;
}

.form-status.is-error {
  color: #aa050b;
}

.climate-offer-form .field-grid {
  margin-top: 26px;
}

.package-selection {
  padding: 18px;
  border: 1px solid rgba(47, 111, 94, 0.3);
  border-radius: var(--radius);
  background: #eef4f1;
}

.package-selection h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.15;
}

.package-selection p {
  margin: 7px 0 0;
  color: var(--muted);
}

.package-selection .package-summary {
  color: var(--green);
  font-weight: 800;
}

.climate-page {
  background: var(--paper);
}

.climate-main {
  padding: 28px 0 42px;
  background: var(--paper);
}

.climate-choice,
.multi-planner {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
}

.choice-hero,
.multi-hero {
  max-width: 820px;
  padding: clamp(34px, 6vw, 72px) 0 28px;
}

.choice-hero h1,
.multi-hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1;
}

.choice-hero p:not(.eyebrow),
.multi-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.choice-card {
  display: grid;
  gap: 18px;
  min-height: 440px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.78)),
    radial-gradient(circle at 88% 14%, rgba(216, 166, 79, 0.2), transparent 30%);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.unit-card:hover,
.unit-card:focus-visible {
  border-color: rgba(47, 111, 94, 0.48);
  outline: none;
  transform: translateY(-2px);
}

.choice-card.is-unavailable {
  align-content: start;
}

.availability-note {
  padding: 18px;
  border: 1px solid rgba(47, 99, 133, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink) !important;
  font-weight: 650;
  line-height: 1.55;
}

.choice-card span,
.choice-note-grid span,
.multi-info span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.choice-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.choice-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.choice-card ul,
.unit-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.choice-card li,
.unit-card li {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 8px;
  color: var(--ink);
}

.choice-card li::before,
.unit-card li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--green);
}

.choice-card strong {
  align-self: end;
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fffaf1;
}

.power-selector {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.power-selector-title {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 800;
}

.power-option {
  display: grid;
  gap: 3px;
  min-height: 84px;
  align-content: center;
  padding: 12px 10px;
  border: 1px solid rgba(23, 35, 38, 0.82);
  border-radius: 6px;
  background: var(--ink);
  color: #fffaf1;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.power-option:hover,
.power-option:focus-visible {
  border-color: var(--green);
  background: var(--green);
  outline: none;
  transform: translateY(-2px);
}

.power-option strong {
  display: block;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 1.08rem;
}

.power-option small {
  color: rgba(255, 250, 241, 0.84);
  font-size: 0.76rem;
}

.choice-note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.choice-note-grid div {
  padding: 22px;
  background: var(--surface);
}

.choice-note-grid p {
  margin: 7px 0 0;
  color: var(--muted);
}

.climate-backlink {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.climate-backlink:hover,
.climate-backlink:focus-visible {
  text-decoration: underline;
  outline: none;
}

.power-page-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 18px;
}

.power-page-switcher a {
  display: grid;
  gap: 2px;
  min-width: 118px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.power-page-switcher a small {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
}

.power-page-switcher a:hover,
.power-page-switcher a:focus-visible {
  border-color: var(--green);
  outline: none;
}

.power-page-switcher a[aria-current="page"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #fffaf1;
}

.power-page-switcher a[aria-current="page"] small {
  color: rgba(255, 250, 241, 0.78);
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.unit-card {
  display: grid;
  gap: 14px;
  min-height: 430px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(23, 35, 38, 0.1);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.unit-number {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fffaf1;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.unit-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.06;
}

.unit-card p {
  margin: 0;
  color: var(--muted);
}

.unit-card strong {
  align-self: end;
  color: var(--green);
}

.multi-info {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  margin-top: 18px;
}

.multi-info > div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eef4f1;
}

.multi-info > div:last-child {
  background: #eef3f8;
}

.multi-info h2 {
  margin-top: 8px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.multi-info p {
  color: var(--muted);
}

.availability-panel {
  max-width: 760px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.availability-panel span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.availability-panel h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.availability-panel p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.availability-panel .button {
  margin-top: 22px;
}

.climate-offers {
  width: min(1520px, calc(100vw - 32px));
  margin: 0 auto;
}

.climate-head {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-align: center;
}

.climate-head .eyebrow {
  margin-bottom: 4px;
}

.climate-head h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1;
}

.climate-head p:not(.eyebrow) {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
}

.climate-head p strong {
  color: var(--blue);
}

.climate-head-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.18;
  text-align: left;
}

.climate-head-trust span {
  display: inline-grid;
  grid-template-columns: 34px minmax(0, 92px);
  align-items: center;
  gap: 8px;
}

.climate-head-trust i {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.climate-head-trust span:first-child i {
  border-radius: 10px 10px 13px 13px;
}

.climate-head-trust i::after {
  content: "\2713";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.12rem;
}

.climate-head-trust span:last-child i::before {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: 11px;
  height: 14px;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.climate-head-trust span:last-child i::after {
  content: "";
  width: 9px;
  height: 9px;
  justify-self: end;
  align-self: end;
  margin: 0 2px 4px 0;
  border-radius: 50%;
  background: var(--ink);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.package-card {
  --brand: #0f6c45;
  --brand-dark: #06462b;
  --brand-soft: #edf7f1;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  min-width: 0;
  padding: 18px 16px 14px;
  border: 1px solid rgba(7, 16, 40, 0.08);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(7, 16, 40, 0.08);
}

.package-card.is-remko {
  --brand: #006a39;
  --brand-dark: #004b2a;
  --brand-soft: #e9f5ef;
}

.package-card.is-bosch,
.package-card.is-mitsubishi {
  --brand: #d60b12;
  --brand-dark: #aa050b;
  --brand-soft: #fff0f0;
}

.package-card.is-samsung {
  --brand: #0645a8;
  --brand-dark: #04337e;
  --brand-soft: #eef4ff;
}

.package-card.is-daikin {
  --brand: #008fe3;
  --brand-dark: #006eb0;
  --brand-soft: #eef8ff;
}

.brand-mark {
  min-height: 48px;
  display: grid;
  place-items: center;
  color: var(--brand);
  font-size: clamp(1.32rem, 1.8vw, 1.7rem);
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
}

.brand-mark em {
  display: block;
  color: var(--ink);
  font-style: normal;
  font-size: 0.82em;
  font-weight: 800;
}

.ac-visual {
  display: grid;
  place-items: center;
  height: 168px;
  margin: 4px 0 12px;
  overflow: hidden;
}

.ac-visual img {
  width: 94%;
  height: 94%;
  object-fit: contain;
}

.package-card h2 {
  min-height: 58px;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid color-mix(in srgb, var(--brand) 62%, transparent);
  color: var(--brand);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.2;
}

.spec-list,
.included-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-list {
  display: grid;
  gap: 7px;
  font-size: 0.88rem;
  line-height: 1.18;
}

.spec-list li {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.spec-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 2px;
  border: 2px solid var(--brand);
  border-radius: 50%;
}

.included-block {
  margin-top: 28px;
}

.included-block h3 {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.96rem;
  line-height: 1;
  text-transform: uppercase;
}

.included-block h3::after {
  content: "";
  height: 1px;
  background: color-mix(in srgb, var(--brand) 56%, transparent);
}

.included-block ul {
  display: grid;
  gap: 7px;
  font-size: 0.83rem;
  line-height: 1.2;
}

.included-block li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 7px;
}

.included-block li::before {
  content: "\2713";
  display: grid;
  place-items: center;
  width: 13px;
  height: 13px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 900;
}

.package-price {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin-top: 20px;
  padding: 15px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #ffffff;
}

.package-price span {
  grid-column: 1 / -1;
  font-size: 0.83rem;
  font-weight: 800;
}

.package-price strong {
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  line-height: 0.94;
  white-space: nowrap;
}

.package-price small {
  align-self: start;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
}

.package-price a {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  margin-top: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.package-price a:hover,
.package-price a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.package-price b {
  font-size: 1.45rem;
  line-height: 0;
}

.climate-price-note {
  margin: 14px 0 8px;
  color: #4f5968;
  font-size: 0.94rem;
  text-align: center;
}

.climate-trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(7, 16, 40, 0.08);
  border-radius: var(--radius);
  background: rgba(7, 16, 40, 0.1);
  box-shadow: 0 12px 32px rgba(7, 16, 40, 0.06);
}

.climate-trust-grid div {
  min-height: 66px;
  padding: 14px 16px;
  background: #ffffff;
}

.climate-trust-grid span {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.climate-trust-grid p {
  margin: 4px 0 0;
  color: #576170;
  font-size: 0.82rem;
  line-height: 1.18;
}

.gallery-shell {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto 96px;
}

.gallery-grid {
  columns: 3 250px;
  column-gap: 14px;
}

.gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: zoom-in;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 180ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.025);
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(47, 99, 133, 0.28);
  outline-offset: 3px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(14, 22, 24, 0.88);
}

.lightbox.is-open {
  display: flex;
}

body.has-lightbox {
  overflow: hidden;
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: min(1120px, calc(100vw - 56px));
  max-height: calc(100vh - 92px);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 241, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.12);
  color: #fffaf1;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 250, 241, 0.24);
  outline: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding: 28px 18px;
  color: rgba(255, 250, 241, 0.8);
  background: var(--ink);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-version {
  width: 100%;
  font-weight: 700;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.not-found-box {
  width: min(620px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
}

@media (max-width: 920px) {
  .home-page {
    display: block;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding-top: 12px;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    background: rgba(255, 250, 241, 0.7);
  }

  .intro,
  .service-grid,
  .split-section,
  .content-shell,
  .contact-shell,
  .field-grid,
  .home-screen,
  .climate-head,
  .choice-grid,
  .choice-note-grid,
  .multi-info,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .unit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .climate-head {
    text-align: left;
  }

  .climate-head-trust {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .climate-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-main {
    padding: 18px;
  }

  .home-side {
    grid-template-rows: auto auto;
  }

  .home-photo img {
    max-height: 220px;
  }

  .intro {
    margin-top: 18px;
  }

  .service-card {
    min-height: 190px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    width: min(176px, 52vw);
  }

  .hero {
    min-height: 640px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(23, 35, 38, 0.92), rgba(23, 35, 38, 0.42));
  }

  .hero-content {
    width: calc(100vw - 32px);
  }

  .button {
    width: 100%;
  }

  .home-copy,
  .home-side > div {
    padding: 20px;
  }

  .home-links {
    grid-template-columns: 1fr;
  }

  .intro div,
  .service-card,
  .split-section > div,
  .page-copy,
  .note-card,
  .inquiry-form,
  .choice-card,
  .unit-card,
  .multi-info > div,
  .package-card {
    padding: 20px;
  }

  .choice-card,
  .unit-card {
    min-height: auto;
  }

  .power-selector {
    grid-template-columns: 1fr;
  }

  .power-option {
    min-height: 60px;
  }

  .climate-main {
    padding-top: 20px;
  }

  .climate-offers {
    width: calc(100vw - 28px);
  }

  .climate-head h1 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .climate-head-trust {
    gap: 12px;
  }

  .climate-head-trust span {
    grid-template-columns: 30px minmax(0, 96px);
  }

  .climate-head-trust i {
    width: 30px;
    height: 30px;
  }

  .package-grid,
  .unit-grid,
  .climate-trust-grid {
    grid-template-columns: 1fr;
  }

  .ac-visual {
    height: 154px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
