:root {
  --ink: #171411;
  --soft-ink: #4f4740;
  --muted: #f5f1eb;
  --paper: #fffdf9;
  --line: rgba(23, 20, 17, 0.12);
  --gold: #c7a96d;
  --gold-dark: #957545;
  --forest: #24342d;
  --rose: #8a514d;
  --shadow: 0 24px 70px rgba(23, 20, 17, 0.16);
  --container: min(1120px, calc(100vw - 40px));
}

@font-face {
  font-family: "Monika Inter";
  src: url("assets/fonts/Inter.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Monika Garamond";
  src: url("assets/fonts/EBGaramond.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Monika Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - 1120px) / 2));
  color: #fffdf9;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.95);
  box-shadow: 0 16px 46px rgba(23, 20, 17, 0.09);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--gold);
  font-family: "Monika Garamond", Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Monika Garamond", Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.78;
}

.site-nav a:hover {
  opacity: 1;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 253, 249, 0.34);
  border-radius: 999px;
  padding: 3px;
}

.site-header.is-scrolled .language-switch,
.site-header.is-open .language-switch {
  border-color: var(--line);
}

.language-switch a {
  display: inline-flex;
  min-width: 34px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  opacity: 1;
}

.language-switch a.is-active {
  color: var(--ink);
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 138px 0 76px;
}

.section-dark {
  color: #fffdf9;
  background: var(--forest);
}

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

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(1.02);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 14, 12, 0.28), rgba(12, 14, 12, 0.12) 42%, rgba(12, 14, 12, 0) 72%),
    linear-gradient(0deg, rgba(12, 14, 12, 0.2), rgba(12, 14, 12, 0) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  max-width: 620px;
  margin-left: max(20px, calc((100vw - 1120px) / 2));
  margin-right: auto;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

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

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

h1,
h2 {
  font-family: "Monika Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  max-width: 560px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 68px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 62px);
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 540px;
  color: rgba(255, 253, 249, 0.88);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.hero-actions .button {
  min-height: 58px;
  padding: 17px 28px;
  font-size: 16px;
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, #e4c98b, #b99758);
}

.button-secondary {
  color: #fffdf9;
  border-color: rgba(255, 253, 249, 0.64);
  background: rgba(18, 18, 16, 0.48);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.button-secondary.light {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.button-dark {
  color: #fffdf9;
  background: var(--forest);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 160px));
  gap: 14px;
  max-width: 520px;
  margin: 34px 0 0;
}

.hero-stats div {
  display: grid;
  justify-items: center;
  text-align: center;
  border: 1px solid rgba(255, 253, 249, 0.24);
  border-radius: 12px;
  background: rgba(18, 18, 16, 0.34);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  padding: 18px;
}

.hero-stats dt {
  color: var(--gold);
  font-family: "Monika Garamond", Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: rgba(255, 253, 249, 0.84);
  font-size: 13px;
}

section:not(.hero) {
  padding: 100px 0;
}

.section-muted {
  background: var(--muted);
}

.intro-grid,
.process-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
}

.portrait-stack {
  display: flex;
  align-items: center;
}

.portrait-main {
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.portrait-main {
  width: min(100%, 470px);
  height: 610px;
}

.section-copy p {
  max-width: 660px;
  color: var(--soft-ink);
}

.intro-role {
  color: var(--gold-dark);
  font-weight: 900;
}

.signature {
  width: min(260px, 70%);
  margin: 18px 0 4px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--gold-dark);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

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

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--soft-ink);
  font-size: 18px;
}

.service-grid,
.review-grid,
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

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

.service-item,
blockquote,
.amona-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.service-item {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 34px;
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  color: var(--gold-dark);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-item span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-family: "Monika Garamond", Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.05;
}

.service-item p,
.timeline p,
blockquote p,
.split-copy,
.contact p {
  color: var(--soft-ink);
}

.service-item p {
  margin-top: 0;
}

.benefits {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(199, 169, 109, 0.14), rgba(255, 253, 249, 0) 48%),
    var(--muted);
}

.cars {
  overflow: hidden;
}

.cars-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: start;
}

.cars .section-copy p {
  color: rgba(255, 253, 249, 0.78);
}

.cars .section-copy .cars-slogan {
  max-width: 560px;
  margin-top: 30px;
  color: var(--gold);
  font-family: "Monika Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

.cars-panel {
  border: 1px solid rgba(255, 253, 249, 0.18);
  border-radius: 6px;
  background: rgba(255, 253, 249, 0.07);
  padding: 34px;
}

.cars-panel h3,
.car-reasons h3 {
  color: #fffdf9;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 253, 249, 0.78);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.car-reasons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 60px;
}

.car-reasons article {
  border-top: 1px solid rgba(255, 253, 249, 0.22);
  padding-top: 22px;
}

.car-reasons p {
  color: rgba(255, 253, 249, 0.72);
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 70px;
  align-items: start;
}

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

.benefit-list li {
  position: relative;
  border: 1px solid rgba(23, 20, 17, 0.08);
  border-radius: 6px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 12px 34px rgba(23, 20, 17, 0.06);
  padding: 16px 18px 16px 50px;
  color: var(--soft-ink);
  font-size: 18px;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 20px;
  width: 16px;
  height: 9px;
  border-left: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: rotate(-45deg);
}

.process-grid {
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 120px;
}

.timeline {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0 0 0 18px;
  list-style: none;
  counter-reset: process;
}

.timeline li {
  position: relative;
  border-left: 1px solid var(--gold);
  padding: 4px 0 24px 42px;
  counter-increment: process;
}

.timeline li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: -19px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: start;
}

.buyers h2 {
  max-width: 560px;
}

.split-copy p {
  color: rgba(255, 253, 249, 0.78);
  font-size: 18px;
}

.property-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 6px;
  color: #fffdf9;
  background: var(--forest);
}

.property-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 18, 16, 0.78), rgba(18, 18, 16, 0.06) 56%);
}

.property-card div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.property-card p {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.property-card span {
  color: rgba(255, 253, 249, 0.75);
}

.amona-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.amona-card:hover {
  border-color: rgba(199, 169, 109, 0.5);
  background: #f6efe1;
  transform: translateY(-2px);
}

.amona-card:hover .text-link {
  color: var(--ink);
}

.amona-card img {
  width: 190px;
  margin-bottom: auto;
}

blockquote {
  margin: 0;
  padding: 34px;
}

blockquote p {
  font-family: "Monika Garamond", Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.35;
}

blockquote cite {
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 900;
}

.contact {
  color: #fffdf9;
  background: var(--forest);
}

.contact-grid {
  align-items: start;
}

.contact p {
  color: rgba(255, 253, 249, 0.78);
  font-size: 18px;
}

.contact-panel {
  display: grid;
  gap: 16px;
  padding: 36px;
  color: var(--ink);
  background: var(--paper);
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Monika Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.brand-icon {
  fill: currentColor;
  stroke: none;
}

.contact-phone .contact-icon {
  width: 27px;
  height: 27px;
  stroke-width: 1.65;
}

.contact-email .contact-icon {
  width: 22px;
  height: 22px;
}

.contact-phone [data-contact-label],
.contact-email [data-contact-label] {
  min-width: 0;
  overflow-wrap: anywhere;
}

.button .contact-icon {
  width: 17px;
  height: 17px;
}

.contact-panel p {
  color: var(--soft-ink);
  font-size: 16px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 253, 249, 0.72);
  background: #171411;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid strong {
  color: #fffdf9;
}

.footer-grid p {
  margin: 4px 0 0;
}

.footer-grid div:last-child {
  display: flex;
  gap: 20px;
}

.footer-grid a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 900px) {
  .container {
    padding-inline: 5px;
  }

  .site-header {
    padding: 14px 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    color: #fffdf9;
    background: rgba(18, 18, 16, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
  }

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

  .site-nav a {
    padding: 13px 10px;
  }

  .language-switch {
    margin-top: 8px;
    align-self: flex-start;
    border-color: rgba(255, 253, 249, 0.24);
  }

  .language-switch a {
    padding: 0 10px;
  }

  .hero {
    min-height: 1190px;
    align-items: start;
    padding: 98px 0 30px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-media::after {
    display: none;
  }

  .hero-content {
    display: flex;
    min-height: calc(1190px - 128px);
    flex-direction: column;
    width: var(--container);
    max-width: none;
    margin-inline: auto;
    padding-inline: 10px;
  }

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

  .intro-grid,
  .process-grid,
  .benefits-grid,
  .cars-grid,
  .split,
  .contact-grid,
  .service-grid,
  .review-grid,
  .property-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: auto;
    padding-top: 32px;
  }

  .hero-stats div {
    padding: 14px 10px;
  }

  .hero-stats dt {
    font-size: 26px;
  }

  .hero-stats dd {
    font-size: 11px;
  }

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

  section:not(.hero) {
    padding: 72px 0;
  }

  .portrait-stack {
    min-height: 0;
  }

  .portrait-main {
    width: min(100%, 430px);
    height: 520px;
  }

  .sticky-copy {
    position: static;
  }

  .footer-grid {
    display: grid;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 24px, 1120px);
  }

  h1 {
    font-size: 34px;
  }

  .hero {
    min-height: 1190px;
    padding-top: 92px;
  }

  .hero-content {
    min-height: calc(1190px - 122px);
    padding-inline: 8px;
  }

  .hero-copy {
    display: none;
  }

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

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

  .hero-stats div {
    padding: 12px 8px;
  }

  .portrait-stack {
    min-height: 0;
  }

  .portrait-main {
    height: 430px;
  }

  .service-item,
  blockquote,
  .cars-panel,
  .contact-panel,
  .amona-card {
    padding: 24px;
  }

  .benefit-list li {
    font-size: 16px;
  }

  .car-reasons {
    grid-template-columns: 1fr;
  }

  .property-card,
  .amona-card {
    min-height: 370px;
  }

  .contact-phone,
  .contact-email {
    overflow-wrap: anywhere;
  }

  .contact-email {
    font-size: 17px;
  }
}

@media (max-width: 500px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 24px;
  }

  .properties .property-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    padding: 12px 16px;
  }
}

