:root {
  color-scheme: light;
  --bg: #f7f8f4;
  --bg-strong: #e6ece8;
  --mist: #edf4f1;
  --paper: #fffefa;
  --paper-soft: #fbfbf6;
  --ink: #10241f;
  --ink-2: #1d3932;
  --muted: #61746e;
  --muted-strong: #3f5750;
  --line: #d9e1dc;
  --green: #0e775f;
  --green-dark: #0a4b3f;
  --slate: #255168;
  --slate-dark: #153746;
  --gold: #bd8628;
  --gold-deep: #85540c;
  --gold-soft: #f1dfbb;
  --ice: #dcecf0;
  --rust: #9d4f2d;
  --white: #ffffff;
  --danger: #a33a2d;
  --shadow-soft: 0 18px 52px rgba(16, 36, 31, 0.11);
  --shadow-deep: 0 28px 84px rgba(16, 36, 31, 0.18);
  --shadow-crisp: 0 0 0 1px rgba(16, 36, 31, 0.07), 0 1px 0 rgba(255, 255, 255, 0.72) inset, 0 18px 44px rgba(16, 36, 31, 0.1);
  --shadow-control: 0 0 0 1px rgba(16, 36, 31, 0.07), 0 10px 28px rgba(16, 36, 31, 0.08);
  --radius: 8px;
  --container: 1180px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  hyphens: auto;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(118deg, rgba(220, 236, 240, 0.65) 0%, transparent 36%),
    linear-gradient(180deg, var(--bg) 0%, var(--mist) 48%, var(--bg-strong) 100%);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: rgba(15, 111, 89, 0.16);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(16, 36, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 36, 31, 0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 64%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea,
summary {
  touch-action: manipulation;
}

p,
h1,
h2,
h3,
dl {
  margin-top: 0;
}

p {
  color: var(--muted);
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

h1,
h2,
h3 {
  color: var(--ink);
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 100%;
  margin-bottom: 22px;
  font-size: 64px;
  line-height: 1.02;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: 50px;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.16;
}

section[id],
main[id],
#top {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 800;
  transform: translateY(-140%);
  transition-property: transform;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.topline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 36px;
  padding: 8px 18px;
  background: linear-gradient(90deg, var(--ink), var(--slate-dark));
  color: #f8fbf6;
  font-size: 13px;
  font-weight: 800;
}

.topline span,
.topline a {
  opacity: 0.92;
}

.topline a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.6vw, 24px);
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(16, 36, 31, 0.08);
  background: rgba(247, 248, 244, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand strong {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.35vw, 22px);
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.desktop-nav a,
.header-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  transition-property: color, background-color, transform, box-shadow;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a {
  padding: 0 4px;
}

.desktop-nav a:focus-visible,
.header-phone:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(189, 134, 40, 0.5);
  outline-offset: 4px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid rgba(16, 36, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.78);
  padding: 4px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.62) inset;
}

.language-btn {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  transition-property: background-color, color, transform;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.language-btn:hover,
.language-btn.is-active {
  background: var(--ink);
  color: var(--white);
}

.header-phone {
  justify-content: center;
  background: linear-gradient(135deg, var(--ink), var(--green-dark));
  color: var(--white);
  padding: 0 16px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(16, 36, 31, 0.14);
}

.header-phone:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0;
}

.hero {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: min(720px, calc(100svh - var(--header-height) - 36px));
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(115deg, rgba(247, 248, 244, 0.96) 0%, rgba(237, 244, 241, 0.9) 46%, rgba(220, 236, 240, 0.82) 100%),
    var(--bg);
  padding: clamp(34px, 4vw, 50px) max(22px, calc((100% - var(--container)) / 2)) 26px;
  text-align: left;
  box-shadow: inset 0 -1px 0 rgba(16, 36, 31, 0.08);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 36, 31, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(16, 36, 31, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 72%);
}

.hero::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(45vw, 560px);
  content: "";
  background:
    linear-gradient(180deg, rgba(21, 55, 70, 0.1), rgba(10, 75, 63, 0.04)),
    url("./assets/alpine-chalet.jpg");
  background-position: center;
  background-size: cover;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.18;
  pointer-events: none;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy {
  display: grid;
  max-width: 760px;
  justify-items: start;
}

.problem > *,
.calculator > *,
.split-feature > *,
.region > *,
.hostdirect > *,
.contact > *,
.feature-copy,
.feature-list {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: 20px;
  line-height: 1.55;
}

.hero .eyebrow,
.hero h1 {
  color: var(--ink);
}

.hero .eyebrow {
  color: var(--gold-deep);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 60px;
  line-height: 0.97;
  letter-spacing: 0;
}

.hero-partner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin: 0 0 18px;
}

.hero-partner span,
.hero-partner a {
  display: inline-flex;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(16, 36, 31, 0.1);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.74);
  color: var(--muted-strong);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 900;
  white-space: normal;
  box-shadow: var(--shadow-control);
}

.hero-partner a:first-child {
  border-color: rgba(189, 134, 40, 0.26);
  background: rgba(241, 223, 187, 0.82);
  color: #221704;
}

.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-start;
  gap: 12px;
}

.hero-actions {
  margin: 26px 0 18px;
}

.hero-actions .btn {
  min-width: min(220px, 100%);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
  text-align: center;
  box-shadow: var(--shadow-control);
  transition-property: transform, background-color, color, border-color, box-shadow;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: scale(0.96);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, #16a677, var(--green-dark));
  color: #fff8eb;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset, 0 18px 44px rgba(5, 98, 67, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1db984, var(--green-dark));
}

.btn-secondary {
  background: linear-gradient(135deg, #d59b34, var(--gold));
  color: #1c1305;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.32) inset, 0 16px 36px rgba(189, 134, 40, 0.22);
}

.btn-secondary:hover {
  background: #d29a39;
}

.btn-ghost {
  border-color: rgba(16, 36, 31, 0.12);
  background: rgba(255, 254, 250, 0.86);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: rgba(15, 111, 89, 0.34);
  background: var(--white);
}

.btn-ghost.dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff8eb;
}

.full {
  width: 100%;
}

.trust-strip span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(16, 36, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.72);
  color: var(--muted-strong);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 850;
  box-shadow: var(--shadow-control);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 14px;
  align-self: stretch;
  align-content: center;
}

.hero-panel-note {
  display: block;
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.9);
  padding: 16px 18px;
  box-shadow: var(--shadow-control);
}

.hero-panel-note span,
.hero-panel-note strong {
  display: block;
}

.hero-panel-note span {
  margin-bottom: 3px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel-note strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.hero-image {
  position: relative;
  display: block;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 36, 31, 0.02), rgba(16, 36, 31, 0.58)),
    url("./assets/alpine-chalet.jpg");
  background-position: center 44%;
  background-size: cover;
  box-shadow: var(--shadow-deep);
  outline: 1px solid rgba(255, 255, 255, 0.42);
  outline-offset: -1px;
}

.image-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  max-width: calc(100% - 36px);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.94);
  color: var(--green-dark);
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(16, 36, 31, 0.16);
}

.handover-panel {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(16, 36, 31, 0.84);
  color: #fff8eb;
  padding: 18px;
  backdrop-filter: blur(14px);
}

.handover-panel strong {
  font-size: 18px;
}

.handover-panel span {
  color: #dfe8e2;
  font-weight: 750;
}

.handover-panel a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  width: max-content;
  color: #f1ca79;
  font-weight: 900;
}

.problem,
.region,
.hostdirect,
.contact,
.split-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
}

.problem {
  align-items: end;
  border-top: 1px solid rgba(16, 36, 31, 0.1);
  border-bottom: 1px solid rgba(16, 36, 31, 0.1);
}

.problem p {
  margin-bottom: 0;
  font-size: 19px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading p {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 17px;
}

.calculator-section {
  position: relative;
  margin-top: 0;
  padding-top: 48px;
}

.calculator-section::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 62%;
  border-radius: var(--radius);
  content: "";
  background:
    linear-gradient(180deg, rgba(16, 36, 31, 0.055), transparent),
    linear-gradient(135deg, rgba(255, 254, 250, 0.7), rgba(220, 236, 240, 0.34));
}

.calculator-section .section-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: end;
  margin-bottom: 22px;
}

.calculator-section .section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.calculator-section .section-heading h2 {
  margin-bottom: 0;
}

.calculator-section .section-heading p {
  max-width: 560px;
  justify-self: end;
}

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

.service-grid article {
  min-width: 0;
  min-height: 214px;
  border: 1px solid rgba(16, 36, 31, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.9);
  padding: 24px;
  box-shadow: var(--shadow-control);
  transition-property: transform, box-shadow, border-color;
  transition-duration: 170ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.service-grid article:hover {
  border-color: rgba(15, 111, 89, 0.28);
  box-shadow: var(--shadow-crisp);
  transform: translateY(-3px);
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.service-grid p {
  margin-bottom: 0;
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  gap: 16px;
  border: 1px solid rgba(16, 36, 31, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.97), rgba(237, 244, 241, 0.92) 48%, rgba(220, 236, 240, 0.56)),
    var(--paper);
  padding: 18px;
  box-shadow: var(--shadow-deep);
}

.calc-form,
.lead-form {
  display: grid;
  gap: 13px;
}

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

fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.mode-toggle {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mode-toggle legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.mode-toggle label {
  position: relative;
  min-width: 0;
}

.mode-toggle input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  border: 0;
  padding: 0;
  box-shadow: none;
  opacity: 0;
  cursor: pointer;
}

.mode-toggle span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(16, 36, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted-strong);
  padding: 10px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  transition-property: background-color, border-color, color, transform;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.mode-toggle input:checked + span {
  border-color: rgba(15, 111, 89, 0.4);
  background: linear-gradient(135deg, var(--green-dark), var(--slate-dark));
  color: #fff8eb;
  box-shadow: 0 12px 24px rgba(16, 36, 31, 0.14);
}

.mode-toggle input:focus-visible + span {
  outline: 3px solid rgba(189, 134, 40, 0.48);
  outline-offset: 2px;
}

label {
  display: grid;
  min-width: 0;
  gap: 7px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(16, 36, 31, 0.13);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px;
  box-shadow: 0 1px 0 rgba(16, 36, 31, 0.04) inset, 0 8px 18px rgba(16, 36, 31, 0.035);
  outline-offset: 2px;
  transition-property: border-color, box-shadow, background-color;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

textarea {
  min-height: 134px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(15, 111, 89, 0.28);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: rgba(15, 111, 89, 0.48);
  box-shadow: 0 0 0 3px rgba(15, 111, 89, 0.1);
}

:focus-visible {
  outline: 3px solid rgba(189, 134, 40, 0.52);
  outline-offset: 3px;
}

.check-row {
  grid-auto-flow: column;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: start;
}

.check-row input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  accent-color: var(--green);
}

.check-row span {
  color: var(--ink);
  font-weight: 800;
}

.check-row a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--green-dark);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.calc-result {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  align-content: start;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(37, 81, 104, 0.96), rgba(10, 75, 63, 0.97) 44%, rgba(16, 36, 31, 0.99)),
    var(--ink);
  color: #fff8eb;
  padding: 28px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset, 0 18px 50px rgba(16, 36, 31, 0.22);
}

.calc-result::before {
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  content: "";
  background: var(--gold);
}

.calc-result h3 {
  color: #fff8eb;
  margin-bottom: 10px;
}

.calc-result .eyebrow {
  color: #f1ca79;
}

.calc-summary {
  margin-top: -4px;
  color: #dfe8e2;
  font-weight: 800;
}

.calc-result dl {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
}

.calc-result dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 10px;
}

.calc-result dt {
  color: #d4ded8;
  font-weight: 800;
}

.calc-result dd {
  margin: 0;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.calc-result .total {
  border-bottom: 0;
  color: #fff8eb;
  font-size: 24px;
}

.small-note {
  color: #d4ded8;
  font-size: 14px;
}

.calc-result .btn {
  margin-top: 6px;
}

.feature-copy {
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(16, 36, 31, 0.96), rgba(14, 119, 95, 0.9)),
    var(--ink);
  color: #fff8eb;
  padding: 42px;
  box-shadow: var(--shadow-deep);
}

.feature-copy h2 {
  color: #fff8eb;
}

.feature-copy p:not(.eyebrow) {
  color: #dfe8e2;
}

.feature-copy .eyebrow {
  color: #f1ca79;
}

.feature-list {
  display: grid;
  gap: 12px;
  align-content: center;
}

.feature-list div {
  display: flex;
  min-height: 60px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(16, 36, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.88);
  padding: 15px 16px;
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow-control);
}

.feature-list span[aria-hidden="true"] {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: var(--gold);
}

.feature-list [data-i18n] {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: normal;
}

.region {
  align-items: center;
}

.region p {
  margin-bottom: 0;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.location-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(16, 36, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.84);
  padding: 10px 15px;
  font-weight: 900;
  transition-property: background-color, border-color, transform;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.location-list a:hover {
  border-color: rgba(15, 111, 89, 0.28);
  background: var(--white);
  transform: translateY(-1px);
}

.hostdirect {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(132deg, rgba(37, 81, 104, 0.96), rgba(10, 75, 63, 0.97)),
    var(--green-dark);
  color: #fff8eb;
  padding: 42px;
  box-shadow: var(--shadow-deep);
}

.hostdirect h2 {
  color: #fff8eb;
}

.hostdirect p {
  color: #dfe8e2;
}

.hostdirect .eyebrow {
  color: #f1ca79;
}

.hostdirect-copy,
.partner-box {
  position: relative;
  z-index: 1;
}

.hostdirect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.partner-box {
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.94);
  color: var(--ink);
  padding: 22px;
  box-shadow: 0 18px 54px rgba(16, 36, 31, 0.18);
}

.partner-box strong {
  font-size: 19px;
}

.partner-box span {
  border-left: 3px solid var(--gold);
  color: #53645e;
  padding-left: 11px;
  font-weight: 850;
}

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

.faq-grid details {
  min-width: 0;
  border: 1px solid rgba(16, 36, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.82);
  padding: 20px;
  box-shadow: 0 12px 32px rgba(16, 36, 31, 0.07);
}

.faq-grid summary {
  min-height: 40px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

.faq-grid p {
  margin: 12px 0 0;
}

.contact {
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 22px);
}

.contact-details {
  display: grid;
  gap: 9px;
  margin-top: 24px;
  font-weight: 900;
}

.contact-details a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  width: max-content;
  color: var(--green-dark);
}

.contact-details a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form {
  border: 1px solid rgba(16, 36, 31, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.96), rgba(220, 236, 240, 0.4)),
    rgba(255, 254, 250, 0.9);
  padding: 28px;
  box-shadow: var(--shadow-control);
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.form-status {
  min-height: 25px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(16, 36, 31, 0.1);
  padding: 36px clamp(18px, 4vw, 56px) 92px;
}

.footer p {
  margin-bottom: 0;
}

.footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 850;
}

.footer a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-cta {
  position: fixed;
  right: calc(12px + env(safe-area-inset-right));
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: calc(12px + env(safe-area-inset-left));
  z-index: 60;
  display: none;
  box-sizing: border-box;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(16, 36, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.96);
  padding: 8px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 16px 54px rgba(16, 36, 31, 0.22);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  display: grid;
  min-height: 46px;
  min-width: 0;
  overflow: hidden;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--ink), var(--green-dark));
  color: var(--white);
  padding: 0 4px;
  font-size: 14px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-cta a:nth-child(2) {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.mobile-cta a:nth-child(3) {
  background: linear-gradient(135deg, #d8a444, var(--gold));
  color: #1c1305;
}

.legal-page {
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.86), rgba(237, 243, 239, 0.92)),
    var(--bg);
}

.legal-hero {
  padding-bottom: 36px;
}

.legal-hero h1 {
  max-width: 820px;
}

.legal-hero p {
  max-width: 760px;
  font-size: 18px;
}

.legal-content {
  padding-top: 0;
}

.legal-content article {
  max-width: 900px;
  border: 1px solid rgba(16, 36, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.92);
  padding: 42px;
  box-shadow: var(--shadow-crisp);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 32px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  max-width: 760px;
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.seo-link-grid a {
  display: grid;
  min-height: 158px;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(16, 36, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.88);
  padding: 20px;
  box-shadow: var(--shadow-control);
  transition-property: transform, border-color, box-shadow;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.seo-link-grid a:hover {
  border-color: rgba(15, 111, 89, 0.3);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.seo-link-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-link-grid strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.08;
}

.seo-link-grid small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.more-links {
  margin-top: 16px;
}

.more-links summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(16, 36, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.9);
  padding: 10px 16px;
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 950;
  box-shadow: var(--shadow-control);
}

.more-links summary:hover {
  border-color: rgba(15, 111, 89, 0.28);
  background: var(--white);
}

.more-links .seo-link-grid {
  margin-top: 14px;
}

.seo-link-grid.is-compact a {
  min-height: 136px;
}

.seo-page {
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.78), rgba(237, 243, 239, 0.96)),
    var(--bg);
}

.seo-hero {
  display: grid;
  justify-items: start;
  padding-bottom: 42px;
}

.seo-hero h1 {
  max-width: 950px;
}

.seo-hero p {
  max-width: 760px;
  font-size: 19px;
}

.seo-hero .hero-actions {
  justify-content: start;
  margin-bottom: 0;
}

.seo-content {
  padding-top: 0;
}

.seo-content article {
  max-width: 920px;
  border: 1px solid rgba(16, 36, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.9);
  padding: 42px;
  box-shadow: var(--shadow-crisp);
}

.seo-content h2 {
  margin-top: 34px;
  font-size: 34px;
}

.seo-content h2:first-child {
  margin-top: 0;
}

.seo-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--muted-strong);
  font-weight: 800;
}

.seo-content details {
  border-top: 1px solid rgba(16, 36, 31, 0.1);
  padding: 16px 0;
}

.seo-content summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 44px;
  }

  .desktop-nav {
    gap: 8px;
    font-size: 13px;
  }

  .header-phone {
    padding: 0 12px;
  }

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

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

@media (max-width: 920px) {
  :root {
    --header-height: 68px;
  }

  .topline,
  .desktop-nav,
  .header-phone {
    display: none;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .hero,
  .problem,
  .calculator,
  .calculator-section .section-heading,
  .split-feature,
  .region,
  .hostdirect,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel,
  .hero h1,
  .hero-lede {
    max-width: 100%;
    min-width: 0;
  }

  .hero {
    min-height: auto;
    padding: 38px 18px 34px;
  }

  .hero::before {
    inset: 0;
  }

  .hero::after {
    width: 100%;
    clip-path: none;
    opacity: 0.08;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 52px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-panel {
    align-content: start;
  }

  .calculator-section {
    margin-top: 0;
    padding-top: 34px;
  }

  .calculator-section::before {
    right: 0;
    left: 0;
  }

  .calculator-section .section-heading p {
    justify-self: start;
  }

  .calc-result {
    position: static;
  }

  .hero-image {
    min-height: 320px;
  }

  .contact-copy {
    position: static;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    width: 100%;
    max-width: 100%;
    padding: 52px 14px;
  }

  .site-header {
    gap: 8px;
    padding: 11px 12px;
  }

  .brand {
    max-width: calc(100% - 168px);
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .language-switcher {
    position: absolute;
    top: 14px;
    right: 12px;
    flex: 0 0 auto;
    padding: 3px;
  }

  .language-btn {
    min-width: 44px;
    min-height: 44px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.04;
  }

  .hero,
  .hero-copy,
  .hero-panel,
  .hero-partner,
  .hero-lede,
  .trust-strip,
  .hero-actions,
  .hero-image {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-lede {
    font-size: 16px;
    max-width: 36ch;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 23px;
  }

  .hero-actions {
    display: grid;
    margin-top: 22px;
  }

  .hero {
    padding-bottom: 118px;
  }

  .hero-partner {
    display: grid;
    max-width: 100%;
    justify-content: start;
    justify-items: start;
    gap: 6px;
  }

  .hero-partner span,
  .hero-partner a {
    min-height: 44px;
    width: max-content;
    padding: 7px 10px;
    font-size: 11px;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    font-size: 12px;
    padding: 8px 10px;
  }

  .hero-image {
    min-height: 310px;
    background-position: center 44%;
  }

  .image-badge {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    white-space: normal;
  }

  .hero-panel-note {
    width: 100%;
    margin: 0;
    padding: 13px 14px;
  }

  .handover-panel {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

  .service-grid,
  .seo-link-grid,
  .calc-form,
  .mode-toggle {
    grid-template-columns: 1fr;
  }

  .calculator,
  .hostdirect,
  .lead-form {
    padding: 16px;
  }

  .feature-copy,
  .legal-content article,
  .seo-content article {
    padding: 24px;
  }

  .calculator {
    gap: 14px;
  }

  .calc-result {
    padding: 20px;
  }

  .calc-result dl div {
    display: grid;
    gap: 3px;
  }

  .calc-result dd {
    text-align: left;
  }

  .footer {
    display: grid;
    padding-bottom: 124px;
  }

  .mobile-cta {
    display: grid;
    right: calc(8px + env(safe-area-inset-right));
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: calc(8px + env(safe-area-inset-left));
    gap: 5px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 6px;
  }

  .mobile-cta a {
    min-height: 44px;
    padding: 0 2px;
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.05;
    white-space: normal;
  }

  .mobile-cta a:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 44px;
  }
}

@media (max-width: 380px) {
  .brand {
    gap: 8px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .language-btn {
    min-width: 44px;
  }

  .hero h1 {
    font-size: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Premium homepage refresh */
body {
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef4f2 52%, #f8fafc 100%);
}

body::before {
  background-image: none;
}

.site-header {
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.78) inset, 0 14px 42px rgba(15, 23, 42, 0.08);
}

.header-phone,
.mobile-cta a {
  background: linear-gradient(135deg, #0f172a, #0f766e);
  color: #fffaf0;
}

.section {
  width: min(1160px, calc(100% - 44px));
  padding: 70px 0;
}

.hero {
  width: min(1280px, calc(100% - 36px));
  min-height: min(760px, calc(100svh - var(--header-height) - 28px));
  margin: 18px auto 0;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 245, 242, 0.84)),
    #f8fafc;
  padding: clamp(34px, 5vw, 72px);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
}

.hero::before {
  inset: auto auto 40px 40px;
  width: 84px;
  height: 4px;
  border-radius: 999px;
  background: #c8973f;
  mask-image: none;
}

.hero::after {
  display: none;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: #0f172a;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: 0.96;
}

.hero-lede {
  max-width: 420px;
  color: #334155;
  font-size: 21px;
  font-weight: 780;
}

.hero-actions {
  max-width: 680px;
  margin: 34px 0 0;
  gap: 10px;
}

.hero-actions .btn {
  min-width: min(190px, 100%);
}

.btn {
  border-radius: 8px;
  box-shadow: none;
}

.btn-primary {
  background: #0f172a;
  color: #fffaf0;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.btn-primary:hover {
  background: #0f766e;
}

.btn-secondary {
  background: #c8973f;
  color: #111827;
  box-shadow: 0 16px 34px rgba(200, 151, 63, 0.2);
}

.btn-secondary:hover {
  background: #d6a84e;
}

.btn-ghost {
  border-color: rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: #0f172a;
}

.hero-panel {
  align-self: stretch;
}

.hero-image {
  min-height: 500px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.52)),
    url("./assets/alpine-chalet.jpg");
  background-position: center 45%;
  background-size: cover;
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.2);
}

.handover-panel {
  right: 18px;
  bottom: 18px;
  left: 18px;
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.22);
}

.handover-panel a {
  color: #f8d68c;
}

.calculator-section {
  padding-top: 86px;
}

.calculator-section::before {
  display: none;
}

.calculator-section .section-heading {
  max-width: 760px;
  display: block;
  margin-bottom: 24px;
}

.calculator-section .section-heading .eyebrow {
  margin-bottom: 12px;
}

.calculator-section .section-heading h2 {
  color: #0f172a;
  font-size: clamp(38px, 4.4vw, 58px);
}

.calculator-section .section-heading p {
  max-width: 360px;
  color: #475569;
  font-weight: 780;
}

.calculator {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.56fr);
  gap: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(16px, 2vw, 24px);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.1);
}

.calc-form {
  gap: 16px;
  align-content: start;
}

label {
  color: #334155;
}

input,
select,
textarea {
  min-height: 48px;
  border-color: #d7e2df;
  border-radius: 8px;
  background: #fbfdfc;
  box-shadow: none;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.calc-result {
  top: calc(var(--header-height) + 24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(145deg, #0f172a, #113f3a);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.22);
}

.calc-result::before {
  background: #c8973f;
}

.contact {
  width: min(1000px, calc(100% - 44px));
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.86fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding-top: 40px;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 54px);
}

.lead-form {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(18px, 3vw, 32px);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.1);
}

.footer {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  border-color: rgba(15, 23, 42, 0.08);
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 920px) {
  .hero {
    width: min(100% - 24px, 720px);
    min-height: auto;
    grid-template-columns: 1fr;
    margin-top: 12px;
    padding: 28px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .hero-image {
    min-height: 360px;
  }

  .calculator-section,
  .contact {
    width: min(100% - 24px, 720px);
  }

  .calculator,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .calc-result {
    position: static;
  }
}

@media (max-width: 640px) {
  .section,
  .calculator-section,
  .contact {
    width: min(100% - 20px, 520px);
    padding-right: 0;
    padding-left: 0;
  }

  .hero {
    padding: 22px;
    padding-bottom: 22px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 300px;
  }

  .calculator,
  .lead-form {
    padding: 16px;
  }

  .footer {
    width: min(100% - 24px, 520px);
  }
}
