:root {
  --ink: #17251f;
  --muted: #65726c;
  --paper: #fcfbf6;
  --mist: #edf5f0;
  --leaf: #2f6849;
  --leaf-dark: #173b2c;
  --sea: #176f7a;
  --coral: #c96557;
  --rose: #a94f69;
  --sun: #e4b746;
  --clay: #b88668;
  --line: rgba(23, 37, 31, 0.15);
  --shadow: 0 22px 70px rgba(23, 37, 31, 0.14);
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(16px, 3vw, 34px);
  align-items: center;
  min-height: var(--header-height);
  padding: 13px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(252, 251, 246, 0.62);
  background: rgba(252, 251, 246, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid rgba(23, 37, 31, 0.18);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(23, 37, 31, 0.11);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(23, 37, 31, 0.76);
}

.nav a[aria-current="page"] {
  color: var(--leaf-dark);
}

.nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.lang-switch a {
  min-width: 36px;
  padding: 9px 10px;
  border-right: 1px solid var(--line);
  color: rgba(23, 37, 31, 0.67);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.lang-switch a:last-child {
  border-right: 0;
}

.lang-switch a.is-active {
  background: var(--leaf-dark);
  color: var(--paper);
}

.mobile-lang-switch {
  display: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-button span::before {
  transform: translateY(-6px);
}

.menu-button span::after {
  transform: translateY(4px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 44px) clamp(22px, 5vw, 76px) clamp(48px, 7vw, 88px);
  background: var(--leaf-dark) center / cover no-repeat;
  color: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 34, 27, 0.86), rgba(16, 34, 27, 0.52) 42%, rgba(16, 34, 27, 0.1) 78%),
    linear-gradient(180deg, rgba(16, 34, 27, 0.1), rgba(16, 34, 27, 0.38));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--sun);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  max-width: 1000px;
  font-size: 118px;
  line-height: 0.94;
}

h2 {
  font-size: 72px;
  line-height: 0.98;
}

h3 {
  font-size: 36px;
  line-height: 1.02;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(252, 251, 246, 0.86);
  font-size: 25px;
  line-height: 1.48;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.button.primary {
  background: var(--coral);
  color: white;
}

.button.dark {
  background: var(--leaf-dark);
  color: var(--paper);
}

.button.outline {
  border-color: currentColor;
  background: rgba(252, 251, 246, 0.1);
  color: inherit;
}

.button.light {
  background: var(--paper);
  color: var(--leaf-dark);
}

.button.disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.quick-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(252, 251, 246, 0.25);
  background: var(--leaf-dark);
  color: var(--paper);
}

.quick-fact {
  min-height: 132px;
  padding: clamp(20px, 3vw, 32px) clamp(18px, 4vw, 46px);
  border-right: 1px solid rgba(252, 251, 246, 0.17);
}

.quick-fact:last-child {
  border-right: 0;
}

.quick-fact strong {
  display: block;
  color: var(--sun);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-fact span {
  display: block;
  margin-top: 9px;
  color: rgba(252, 251, 246, 0.78);
  line-height: 1.5;
}

.section {
  padding: clamp(62px, 8vw, 112px) clamp(22px, 5vw, 76px);
}

.section.alt {
  background: var(--mist);
}

.section.rose-band {
  background: #fbf1ef;
}

.section.dark-band {
  background: var(--leaf-dark);
  color: var(--paper);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.58fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 54px);
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.dark-band .section-header p,
.dark-band .body-copy,
.dark-band .plain-list li {
  color: rgba(252, 251, 246, 0.76);
}

.body-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(300px, 1fr) minmax(0, 0.9fr);
}

.split.compact {
  align-items: center;
}

.split-media {
  min-height: 620px;
}

.split-media img,
.tile img,
.story-image img,
.gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image,
.split-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-image.contain-image img {
  background: #f4f1eb;
  object-fit: contain;
}

.split.compact .story-image,
.split.compact .split-media {
  max-height: 430px;
  aspect-ratio: 4 / 3;
}

.delivery-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.48fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.delivery-panel .story-image {
  max-height: 360px;
  aspect-ratio: 5 / 4;
}

.service-grid,
.tile-grid,
.steps-grid,
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card,
.tile,
.step-card,
.promise-card {
  background: var(--paper);
}

.service-card {
  display: grid;
  min-height: 420px;
  grid-template-rows: 230px 1fr;
}

.service-card img,
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content,
.tile-content,
.step-card,
.promise-card {
  padding: clamp(22px, 3vw, 32px);
}

.service-card p,
.tile-content p,
.step-card p,
.promise-card p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

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

.tile {
  min-height: 420px;
}

.tile img {
  height: 250px;
}

.step-card strong,
.promise-card strong {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--sea);
  color: white;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.promise-card strong {
  min-width: auto;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
  color: var(--leaf);
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tag-list span {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  padding: 0 14px;
  color: rgba(23, 37, 31, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.dark-band .tag-list span {
  border-color: rgba(252, 251, 246, 0.22);
  background: rgba(252, 251, 246, 0.08);
  color: rgba(252, 251, 246, 0.82);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 1fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-mosaic img {
  border-radius: 8px;
}

.gallery-mosaic img:nth-child(1) {
  grid-row: span 2;
}

.gallery-mosaic img:nth-child(4) {
  grid-column: span 2;
}

.note-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px) clamp(22px, 5vw, 76px);
  background: var(--sea);
  color: white;
}

.note-strip p {
  max-width: 780px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.page-hero {
  min-height: 72vh;
}

.page-hero h1 {
  max-width: 920px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
}

.contact-card {
  border-left: 4px solid var(--coral);
  padding-left: 22px;
}

.contact-card p {
  margin: 0 0 14px;
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: clamp(22px, 4vw, 36px);
  box-shadow: 0 12px 44px rgba(23, 37, 31, 0.08);
}

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

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

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

label,
.field-label {
  color: rgba(23, 37, 31, 0.72);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 37, 31, 0.2);
  border-radius: 8px;
  background: #fffefb;
  color: var(--ink);
  padding: 13px 14px;
  font-size: 16px;
  outline: none;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(23, 111, 122, 0.13);
}

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

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 52px;
  border: 1px solid rgba(23, 37, 31, 0.12);
  border-radius: 8px;
  background: #fbfaf5;
  padding: 12px;
  color: rgba(23, 37, 31, 0.78);
  font-size: 14px;
  line-height: 1.3;
}

.check input {
  width: auto;
  margin-top: 2px;
  accent-color: var(--leaf);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.payment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.58fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + clamp(46px, 7vw, 90px));
  background: linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
}

.payment-copy {
  min-width: 0;
}

.payment-title {
  max-width: 760px;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.96;
}

.payment-copy .body-copy {
  max-width: 720px;
}

.payment-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.payment-points span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 0 14px;
  color: rgba(23, 37, 31, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.payment-form {
  align-self: center;
}

.payment-preview {
  min-height: 28px;
  margin: 12px 0 18px;
  color: var(--leaf-dark);
  font-weight: 900;
}

.payment-notice {
  margin-bottom: 18px;
  border: 1px solid rgba(228, 183, 70, 0.42);
  border-radius: 8px;
  background: rgba(228, 183, 70, 0.16);
  padding: 13px 14px;
  color: var(--leaf-dark);
  font-weight: 800;
  line-height: 1.45;
}

.payment-error {
  min-height: 22px;
  margin: 16px 0 0;
  color: #9f2f25;
  font-weight: 850;
  line-height: 1.45;
}

.payment-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.payment-status-section {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding-top: calc(var(--header-height) + clamp(46px, 7vw, 90px));
  background: linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
}

.payment-status-card {
  width: min(720px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: clamp(26px, 5vw, 48px);
  box-shadow: 0 12px 44px rgba(23, 37, 31, 0.08);
}

.under-construction {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.status-label {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(23, 37, 31, 0.18);
  border-radius: 999px;
  background: rgba(228, 183, 70, 0.16);
  padding: 0 14px;
  color: var(--leaf-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: end;
  padding: 44px clamp(22px, 5vw, 76px);
  background: #14251f;
  color: rgba(252, 251, 246, 0.78);
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--paper);
  font-size: 14px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1f8f54;
  color: white;
  padding: 0 20px;
  box-shadow: 0 20px 60px rgba(23, 37, 31, 0.24);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav {
    grid-column: 1 / -1;
    position: fixed;
    top: calc(var(--header-height) + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(252, 251, 246, 0.98);
    padding: 10px;
    box-shadow: var(--shadow);
    white-space: normal;
  }

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

  .nav a {
    padding: 15px;
  }

  .nav a[aria-current="page"]::after {
    display: none;
  }

  .header-tools {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .menu-button {
    display: grid;
  }

  .section-header,
  .split,
  .split.reverse,
  .delivery-panel,
  .form-layout,
  .payment-section,
  .under-construction,
  .note-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 82px;
  }

  h2 {
    font-size: 54px;
  }

  h3 {
    font-size: 31px;
  }

  .hero-copy {
    font-size: 21px;
  }

  .split.reverse .story-image {
    order: 2;
  }

  .split.reverse .split-copy {
    order: 1;
  }

  .delivery-panel .story-image {
    order: 2;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    width: 100%;
    max-width: none;
    overflow: visible;
  }

  .brand {
    flex: 1 1 auto;
    gap: 10px;
    max-width: calc(100% - 56px);
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .brand span {
    max-width: 136px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .header-tools {
    position: relative;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    gap: 8px;
  }

  .header-tools > .lang-switch {
    display: none !important;
  }

  .mobile-lang-switch {
    display: inline-flex;
    align-self: flex-start;
    margin: 8px 15px 10px;
  }

  .mobile-lang-switch a {
    min-width: 42px;
  }

  .lang-switch a {
    min-width: 30px;
    padding: 8px 6px;
  }

  .menu-button {
    position: relative;
    top: auto;
    right: auto;
    z-index: 35;
    display: grid !important;
    width: 40px;
    height: 40px;
    border-color: var(--leaf-dark);
    background: var(--leaf-dark);
    color: var(--paper);
  }

  .hero,
  .page-hero {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    min-height: 88vh;
    padding: calc(var(--header-height) + 32px) 20px 42px;
    background-position: center;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(16, 34, 27, 0.84), rgba(16, 34, 27, 0.48) 54%, rgba(16, 34, 27, 0.34)),
      linear-gradient(90deg, rgba(16, 34, 27, 0.56), rgba(16, 34, 27, 0.16));
  }

  h1 {
    font-size: 34px;
    line-height: 1.02;
    max-width: min(320px, calc(100vw - 40px));
    width: 100%;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 26px;
  }

  .hero-copy {
    font-size: 17px;
    max-width: calc(100vw - 40px);
    overflow-wrap: anywhere;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    text-align: center;
    white-space: normal;
  }

  .quick-facts,
  .service-grid,
  .tile-grid,
  .steps-grid,
  .promise-grid,
  .field-grid,
  .checkbox-grid,
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .quick-fact {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(252, 251, 246, 0.17);
  }

  .quick-fact:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 20px;
  }

  .service-card {
    min-height: auto;
    grid-template-rows: 220px 1fr;
  }

  .tile {
    min-height: auto;
  }

  .tile img {
    height: 240px;
  }

  .split-media {
    min-height: 390px;
  }

  .split.compact .story-image,
  .split.compact .split-media,
  .delivery-panel .story-image {
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .gallery-mosaic {
    grid-auto-rows: 240px;
  }

  .gallery-mosaic img:nth-child(1),
  .gallery-mosaic img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .whatsapp-float {
    right: 16px;
    left: 16px;
  }
}
