:root {
  --ink: #0b0e0e;
  --ink-soft: #171a19;
  --paper: #f4f0e7;
  --white: #fffdf8;
  --gold: #d0ac68;
  --gold-light: #ead7aa;
  --green: #315f49;
  --line: rgba(11, 14, 14, 0.15);
  --muted: #6d6b65;
  --max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

h1,
h2,
h3 {
  font-family: "Avenir Next", "Helvetica Neue", "Noto Sans Ethiopic", Arial, sans-serif;
  letter-spacing: -0.045em;
  line-height: 1;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 20px;
  padding: 12px 18px;
  background: var(--gold);
}

.skip-link:focus {
  top: 20px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 0 clamp(20px, 4vw, 70px);
  background: rgba(244, 240, 231, 0.92);
  border-bottom: 1px solid rgba(11, 14, 14, 0.08);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.brand small {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.27em;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  background: var(--ink);
  border: 1px solid rgba(208, 172, 104, 0.55);
  border-radius: 50%;
  font-size: 11px;
  letter-spacing: 0.04em;
}

nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3vw, 42px);
}

nav a {
  font-size: 13px;
  font-weight: 650;
}

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

.language-button,
.menu-button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-button {
  display: none;
  border-radius: 999px;
  padding: 0 16px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  cursor: pointer;
}

.button-small {
  min-height: 46px;
  padding: 0 20px;
  font-size: 13px;
}

.button-gold {
  color: var(--ink);
  background: var(--gold);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.text-link {
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - 78px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero > img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 10, 10, 0.92) 0%, rgba(7, 10, 10, 0.61) 38%, rgba(7, 10, 10, 0.05) 72%),
    linear-gradient(0deg, rgba(7, 10, 10, 0.4), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 90%);
  margin-left: clamp(24px, 7vw, 130px);
  padding: 80px 0;
}

.kicker,
.eyebrow {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(52px, 7vw, 108px);
}

.hero-support {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(17px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.image-note {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
}

.trust-rail {
  min-height: 68px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.trust-rail span {
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(84px, 10vw, 150px) clamp(22px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2,
.estimator-section h2,
.book-section h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 6vw, 78px);
}

.section-heading > p {
  color: var(--muted);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.price-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 54px);
}

.price-card.dark {
  color: var(--white);
  background: var(--ink);
}

.price-card.gold {
  background: var(--gold);
}

.price-card p {
  margin-bottom: auto;
  font-weight: 800;
}

.price-card strong {
  font-size: clamp(50px, 7vw, 90px);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.price-card span {
  font-weight: 750;
}

.price-card small {
  margin-top: 22px;
  opacity: 0.7;
}

.availability-banner {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 28px 30px;
  color: var(--white);
  background: var(--green);
}

.availability-banner > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.availability-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8dd1a7;
  box-shadow: 0 0 0 7px rgba(141, 209, 167, 0.12);
}

.location-section {
  max-width: none;
  color: var(--white);
  background: var(--ink-soft);
}

.location-section > * {
  max-width: calc(var(--max) - 144px);
  margin-right: auto;
  margin-left: auto;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.location-card {
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.location-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.location-card:nth-child(2) img {
  object-position: 78% center;
}

.location-card > div {
  padding: 34px;
}

.location-card .eyebrow {
  color: var(--green);
}

.location-card h3 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 54px);
}

.location-card a {
  display: inline-block;
  margin-top: 14px;
  font-weight: 800;
}

.data-note {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.interior-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.interior-gallery figure {
  position: relative;
  min-height: 410px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.interior-gallery .interior-living {
  grid-row: span 2;
  min-height: 838px;
}

.interior-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.interior-gallery figure:hover img {
  transform: scale(1.02);
}

.interior-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 20px 22px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(7, 9, 9, 0.88), rgba(7, 9, 9, 0.08));
}

.interior-gallery figcaption span,
.interior-gallery figcaption small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 30px 0 0;
}

.gallery-cta p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
}

.gallery-cta > div {
  display: flex;
  gap: 20px;
  align-items: center;
}

.estimator-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.estimator-section > div > p:last-child {
  max-width: 500px;
  margin-top: 28px;
  color: var(--muted);
}

.estimator {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
}

label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
}

.estimate-result {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.estimate-result strong {
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: -0.04em;
}

.estimate-result small,
.form-note {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.steps article {
  min-height: 220px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.steps article > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.steps h3 {
  margin-top: 52px;
  font-size: 25px;
}

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

.book-section {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(50px, 8vw, 120px);
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 130px);
  color: var(--white);
  background: var(--ink);
}

.book-section > div > p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.68);
}

.booking-points {
  display: grid;
  gap: 12px;
  margin-top: 36px;
  color: var(--gold-light);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 4vw, 46px);
  color: var(--ink);
  background: var(--paper);
}

.form-note,
.form-status {
  margin: 0;
  font-size: 11px;
}

.form-status {
  color: var(--green);
  font-weight: 750;
}

.contact-section {
  text-align: center;
}

.contact-section h2 {
  font-size: clamp(40px, 6vw, 78px);
}

.contact-section p {
  color: var(--muted);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  padding: 50px clamp(24px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.68);
  background: #070909;
  font-size: 12px;
}

footer p {
  margin: 0;
}

.brand-footer {
  color: var(--white);
}

.assistant-launcher {
  position: fixed;
  z-index: 70;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(208, 172, 104, 0.55);
  border-radius: 999px;
  cursor: pointer;
}

.assistant-launcher > span:first-child {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
}

.assistant-launcher > span:last-child {
  display: grid;
  text-align: left;
}

.assistant-launcher small,
.assistant-header small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.assistant-dialog {
  width: min(450px, calc(100vw - 28px));
  margin: auto 20px 20px auto;
  padding: 0;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(208, 172, 104, 0.4);
}

.assistant-dialog::backdrop {
  background: rgba(0, 0, 0, 0.38);
}

.assistant-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.assistant-close {
  width: 38px;
  height: 38px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
}

.assistant-warning {
  margin: 0;
  padding: 12px 20px;
  color: var(--gold-light);
  background: rgba(208, 172, 104, 0.1);
  font-size: 11px;
}

.assistant-messages {
  min-height: 140px;
  padding: 20px;
}

.assistant-messages p {
  padding: 14px;
  color: var(--ink);
  background: var(--paper);
  font-size: 13px;
}

.quick-questions {
  display: flex;
  gap: 8px;
  padding: 0 20px 20px;
  flex-wrap: wrap;
}

.quick-questions button {
  padding: 8px 10px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  font-size: 11px;
}

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

  .menu-button {
    display: block;
  }

  nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    padding: 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  nav.open {
    display: grid;
  }

  .header-actions {
    justify-self: end;
  }

  .section-heading,
  .estimator-section,
  .book-section {
    grid-template-columns: 1fr;
  }

  .gallery-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .availability-banner {
    grid-template-columns: 1fr;
  }

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

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 70px;
    gap: 8px;
    padding: 0 14px;
  }

  nav {
    top: 70px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand > span:last-child,
  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 70px);
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(7, 10, 10, 0.92), rgba(7, 10, 10, 0.25));
  }

  .hero-content {
    width: auto;
    margin: auto 22px 30px;
    padding: 120px 0 72px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .image-note {
    right: 16px;
    left: 16px;
    text-align: right;
  }

  .trust-rail,
  .price-grid,
  .location-grid,
  .interior-gallery {
    grid-template-columns: 1fr;
  }

  .interior-gallery .interior-living,
  .interior-gallery figure {
    min-height: 330px;
    grid-row: auto;
  }

  .gallery-cta > div {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .trust-rail span {
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section {
    padding: 74px 20px;
  }

  .section-heading {
    gap: 24px;
  }

  .price-card {
    min-height: 260px;
  }

  .location-card img {
    height: 250px;
  }

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

  .book-section {
    padding: 74px 20px;
  }

  .assistant-launcher {
    right: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
