:root {
  --green-950: #12382a;
  --green-900: #164532;
  --green-700: #2f6750;
  --sage: #8f9f80;
  --sage-soft: #eef2e9;
  --copper: #c9662d;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --ink: #17352b;
  --muted: #63746b;
  --line: #ddd8cc;
  --shadow: 0 24px 60px rgba(18, 56, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(221, 216, 204, 0.8);
  backdrop-filter: blur(14px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 260px;
}

.brand-logo {
  display: block;
  width: clamp(210px, 24vw, 330px);
  height: auto;
}

.sparkle-icon::before {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--copper);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--green-950);
  font-size: 14px;
  font-weight: 700;
}

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

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(143, 159, 128, 0.6);
  border-radius: 8px;
  background: white;
}

.language-switcher button {
  min-width: 42px;
  min-height: 36px;
  border: 0;
  border-right: 1px solid rgba(143, 159, 128, 0.35);
  color: var(--green-950);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button:last-child {
  border-right: 0;
}

.language-switcher button.active {
  color: white;
  background: var(--green-950);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 80px);
  min-height: calc(100vh - 78px);
  align-items: center;
  padding: clamp(42px, 7vw, 96px) clamp(20px, 4vw, 64px);
  background:
    radial-gradient(circle at 85% 15%, rgba(143, 159, 128, 0.22), transparent 32%),
    linear-gradient(120deg, rgba(251, 247, 239, 1) 0%, rgba(255, 253, 248, 0.92) 48%, rgba(238, 242, 233, 0.78) 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--green-950);
  font-size: clamp(48px, 7vw, 94px);
  line-height: 0.98;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  color: var(--green-950);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

h3 {
  color: var(--green-950);
  font-size: 19px;
}

.hero-text {
  max-width: 560px;
  color: var(--green-900);
  font-size: clamp(19px, 2.4vw, 28px);
  line-height: 1.38;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: white;
  background: var(--copper);
  box-shadow: 0 14px 28px rgba(201, 102, 45, 0.24);
}

.button-secondary {
  color: var(--green-950);
  background: transparent;
  border-color: var(--green-900);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(143, 159, 128, 0.45);
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(255, 253, 248, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  min-width: 0;
}

.photo-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(255, 253, 248, 0.28), rgba(255, 253, 248, 0) 42%),
    linear-gradient(180deg, #f5ead9 0%, #fbf7ef 44%, #d9c4a2 100%);
  box-shadow: var(--shadow);
}

.window {
  position: absolute;
  top: 36px;
  right: 46px;
  width: 178px;
  height: 230px;
  border: 16px solid white;
  background: linear-gradient(135deg, #f9fff4, #d9ecd3);
  box-shadow: 0 12px 24px rgba(18, 56, 42, 0.08);
}

.plant {
  position: absolute;
  right: 68px;
  bottom: 188px;
  width: 78px;
  height: 180px;
  border-radius: 44px 44px 10px 10px;
  background:
    radial-gradient(ellipse at 20% 16%, var(--green-700) 0 18px, transparent 19px),
    radial-gradient(ellipse at 82% 30%, var(--green-900) 0 22px, transparent 23px),
    radial-gradient(ellipse at 32% 54%, var(--sage) 0 20px, transparent 21px),
    linear-gradient(90deg, transparent 48%, var(--green-900) 49% 52%, transparent 53%);
}

.sofa {
  position: absolute;
  left: 46px;
  right: 42px;
  bottom: 96px;
  height: 190px;
  border-radius: 42px 42px 18px 18px;
  background: linear-gradient(180deg, #fff7ea, #eadcc9);
  box-shadow: inset 0 -24px 44px rgba(115, 81, 43, 0.12);
}

.table {
  position: absolute;
  left: 170px;
  right: 80px;
  bottom: 42px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(90deg, #c7955c, #e5bf86, #a66f3c);
}

.badge {
  position: absolute;
  right: 30px;
  bottom: 32px;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  padding: 24px;
  border-radius: 50%;
  color: white;
  background: var(--green-900);
  border: 5px solid rgba(255, 253, 248, 0.88);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: clamp(60px, 8vw, 112px) clamp(20px, 4vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.service-card p,
.split-section p,
.booking-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border: 2px solid var(--sage);
  border-radius: 8px;
}

.home-icon::before {
  content: "";
  position: absolute;
  inset: 13px 10px 10px;
  border: 3px solid var(--green-900);
  border-top: 0;
}

.home-icon::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 26px;
  height: 26px;
  border-left: 3px solid var(--green-900);
  border-top: 3px solid var(--green-900);
  transform: rotate(45deg);
}

.building-icon::before,
.building-icon::after {
  content: "";
  position: absolute;
  bottom: 10px;
  background: var(--green-900);
}

.building-icon::before {
  left: 12px;
  width: 12px;
  height: 28px;
}

.building-icon::after {
  right: 12px;
  width: 16px;
  height: 38px;
}

.key-icon::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 14px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--green-900);
  border-radius: 50%;
}

.key-icon::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 24px;
  width: 18px;
  height: 4px;
  background: var(--green-900);
}

.sparkle-icon::before {
  content: "";
  left: 18px;
  top: 18px;
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(60px, 8vw, 112px) clamp(20px, 4vw, 64px);
  color: white;
  background:
    radial-gradient(circle at 0 0, rgba(143, 159, 128, 0.32), transparent 28%),
    linear-gradient(135deg, var(--green-950), #0b241b);
}

.booking-band h2,
.booking-band .eyebrow {
  color: white;
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.booking-steps {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.booking-steps li {
  padding-left: 28px;
  position: relative;
  font-weight: 700;
}

.booking-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--copper);
}

.policy-note {
  display: grid;
  gap: 7px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.policy-note strong {
  color: white;
}

.policy-note span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font: inherit;
  font-weight: 500;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-700);
  outline: 3px solid rgba(143, 159, 128, 0.28);
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 16px;
}

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

.submission-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(143, 159, 128, 0.45);
  border-radius: 8px;
  color: var(--green-950);
  background: var(--sage-soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.submission-panel[hidden] {
  display: none;
}

.submission-panel a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: var(--cream);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  display: grid;
  gap: 5px;
  padding: 22px;
  border-left: 4px solid var(--copper);
  background: white;
}

.feature-list strong {
  color: var(--green-950);
}

.feature-list span {
  color: var(--muted);
}

.areas-section {
  background: white;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 64px);
  color: white;
  background: var(--green-950);
}

.site-footer div:first-child {
  display: grid;
  gap: 6px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .hero,
  .booking-band,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .photo-card {
    min-height: 420px;
  }

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

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .language-switcher {
    width: max-content;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .brand-copy strong {
    font-size: 25px;
  }

  .brand-copy span {
    font-size: 10px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-actions .button,
  .form-grid,
  .service-grid,
  .site-footer {
    width: 100%;
  }

  .form-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
