/* ------------------------------------------------------------------------------------------------ */
/* Sections:
/* 
/* 1. General 
/* 2. Navbar 
/* 3. Buttons
/* 4. Hero Section
/* 5. Why Section
/*
/* ------------------------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------ */
/* 1. General
/* ------------------------------------------------------------------ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --forest: #1c2e24;
  --pine: #2c4434;
  --moss: #46624d;
  --sage: #88a98e;
  --mist: #cfddd1;
  --cream: #f4efe6;
  --parch: #ebe3d4;
  --gold: #b07d38;
  --gold-lt: #c99a58;
  --ink: #18201a;
  --muted: #68766a;
  --white: #faf8f4;
  --border: rgba(70, 98, 77, 0.16);
  --container-max: 1400px;
  --container-px: 48px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section--sm {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section--lg {
  padding-top: 120px;
  padding-bottom: 120px;
}

/* ------------------------------------------------------------------ */
/* 2. Navbar
/* ------------------------------------------------------------------ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--forest);
  text-decoration: none;
}

.nav-logo em {
  font-style: italic;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-links a.active {
  color: var(--forest);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
}

.nav-phone {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: white;
  background: var(--forest);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-phone:hover {
  background: var(--pine);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-burger {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0 20px;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 13px 28px;
    font-size: 12px;
    border-bottom: none !important;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--cream);
    color: var(--forest);
  }

  .nav-links a.active {
    border-left: 2px solid var(--gold);
    padding-left: 26px;
    padding-bottom: 12px;
  }
}

/* ------------------------------------------------------------------ */
/* 3. Buttons
/* ------------------------------------------------------------------ */

.btn-gold {
  display: inline-block;
  padding: 14px 34px;
  background: var(--gold);
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.btn-forest {
  display: inline-block;
  padding: 14px 32px;
  background: var(--forest);
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-forest:hover {
  background: var(--pine);
  transform: translateY(-1px);
}

.btn-ghost-light {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: white;
}

/* ------------------------------------------------------------------ */
/* 4. Hero Section
/* ------------------------------------------------------------------ */

.page-hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 72px;
}

.page-hero__photo {
  position: relative;
  overflow: hidden;
}

.page-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 9s ease;
}

.page-hero__photo:hover img {
  transform: scale(1.04);
}

.page-hero__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28, 46, 36, 0.3) 0%, transparent 55%);
}

.page-hero__stat-card {
  position: absolute;
  bottom: 48px;
  left: 48px;
  background: rgba(28, 46, 36, 0.9);
  backdrop-filter: blur(10px);
  padding: 22px 28px 24px;
  border-left: 2px solid var(--gold);
}

.page-hero__stat-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
}

.page-hero__stat-card-num sup {
  font-size: 18px;
  font-weight: 300;
}

.page-hero__stat-card-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 6px;
}

.page-hero__content {
  background: var(--forest);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  position: relative;
  overflow: hidden;
}

.page-hero__content::before,
.page-hero__content::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: rgba(255, 255, 255, 0.1);
  border-style: solid;
}

.page-hero__content::before {
  top: 40px;
  right: 40px;
  border-width: 1px 1px 0 0;
}

.page-hero__content::after {
  bottom: 40px;
  left: 40px;
  border-width: 0 0 1px 1px;
}

.page-hero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.page-hero__h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 24px;
}

.page-hero__h1 em {
  font-style: italic;
  color: var(--sage);
}

.page-hero__sub {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.52);
  max-width: 400px;
  margin-bottom: 48px;
}

.page-hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.page-hero__stats {
  display: flex;
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 36px;
}

.page-hero__stat {
  flex: 1;
}

.page-hero__stat+.page-hero__stat {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 28px;
}

.page-hero__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
}

.page-hero__stat-num sup {
  font-size: 15px;
  font-weight: 300;
}

.page-hero__stat-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 6px;
}

/* ------------------------------------------------------------------ */
/* 5. Why Section
/* ------------------------------------------------------------------ */

.why-section {
  background: var(--cream);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why__eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.why__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.why__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.why__heading em {
  font-style: italic;
  color: var(--moss);
}

.why__body {
  font-size: 15.5px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 460px;
}

.why__cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.why__link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.why__link:hover {
  gap: 14px;
}

.why__features {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.why__feature {
  background: white;
  padding: 28px 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.why__feature:hover {
  transform: translateX(4px);
}

.why__feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.why__feature:hover::before {
  transform: scaleY(1);
}

.why__feature-icon {
  width: 42px;
  height: 42px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--moss);
  transition: background 0.25s, color 0.25s;
}

.why__feature:hover .why__feature-icon {
  background: var(--forest);
  color: white;
}

.why__feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}

.why__feature-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
}

/* ------------------------------------------------------------------ */
/* 6. Process Section
/* ------------------------------------------------------------------ */

.process-section {
  background: var(--white);
}

.process__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.process__eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.process__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 300;
  line-height: 1.2;
}

.process__heading em {
  font-style: italic;
  color: var(--moss);
}

.process__subtitle {
  font-size: 13.5px;
  color: var(--muted);
  max-width: 240px;
  text-align: right;
  line-height: 1.6;
  font-weight: 300;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.step {
  background: var(--cream);
  padding: 48px 40px 52px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.step:hover::after {
  transform: scaleX(1);
}

/* ------------------------------------------------------------------ */
/* 7. Steps Section
/* ------------------------------------------------------------------ */

.step__ghost {
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px;
  font-weight: 300;
  line-height: 1;
  color: rgba(28, 46, 36, 0.06);
  pointer-events: none;
  user-select: none;
  transition: color 0.3s;
}

.step:hover .step__ghost {
  color: rgba(28, 46, 36, 0.1);
}

.step__phase {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step__phase::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.step__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.25;
}

.step__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step__list li {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
  padding-left: 16px;
  position: relative;
}

.step__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--sage);
}

/* ------------------------------------------------------------------ */
/* 8. Values Section
/* ------------------------------------------------------------------ */

.value-section {
  background: var(--forest);
}

.value-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.value__eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.value__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.value__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.value__heading em {
  font-style: italic;
  color: var(--sage);
}

.value__body {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 40px;
}

.value__tool {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 2px solid var(--gold);
  transition: background 0.2s, border-color 0.2s;
  margin-bottom: 12px;
}

.value__tool:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(184, 136, 58, 0.5);
}

.value__tool-icon {
  width: 40px;
  height: 40px;
  background: rgba(176, 125, 56, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value__tool-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.value__tool-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: white;
  margin-top: 2px;
}

.value__tool-hint {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 300;
  margin-top: 3px;
}

.value__points {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value__point {
  padding: 24px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s, background 0.3s;
}

.value__point:hover {
  border-left-color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

.value__point-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: white;
  margin-bottom: 6px;
}

.value__point-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  font-weight: 300;
}

/* ------------------------------------------------------------------ */
/* 9. Trust Section
/* ------------------------------------------------------------------ */

.trust-section {
  background: var(--ink);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust__cell {
  padding: 52px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.trust__cell:last-child {
  border-right: none;
}

.trust__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
}

.trust__num sup {
  font-size: 20px;
  font-weight: 300;
}

.trust__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 10px;
}

/* ------------------------------------------------------------------ */
/* Testimonal Section
/* ------------------------------------------------------------------ */

.testimonial-section {
  background: var(--parch);
}

.testimonial-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

.testimonial__label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial__label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.4vw, 33px);
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 36px;
  margin-bottom: 32px;
}

.testimonial__attribution {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 36px;
}

.testimonial__line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.testimonial__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.testimonial__detail {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

/* ------------------------------------------------------------------ */
/* Call To Action Section
/* ------------------------------------------------------------------ */

.cta-section {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 300;
  line-height: 1.2;
}

.cta__heading em {
  font-style: italic;
  color: var(--moss);
}

.cta__sub {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--muted);
  margin-top: 18px;
}

.cta__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  text-decoration: none;
  background: var(--cream);
  border-left: 2px solid transparent;
  transition: all 0.2s;
}

.cta__card:hover {
  border-left-color: var(--gold);
  background: var(--parch);
  transform: translateX(4px);
}

.cta__card-icon {
  width: 38px;
  height: 38px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta__card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
}

.cta__card-desc {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 300;
  margin-top: 2px;
}

.cta__card-arrow {
  margin-left: auto;
  color: var(--gold);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.cta__card:hover .cta__card-arrow {
  transform: translateX(4px);
}

/* ------------------------------------------------------------------ */
/* Listings Section
/* ------------------------------------------------------------------ */

.listings-section {
  background: var(--white);
}

.listings__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-top: 2rem;
}

.listings__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 300;
  line-height: 1.2;
}

.listings__heading em {
  font-style: italic;
  color: var(--moss);
}

.listings__count {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
}

.listings__count span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  font-weight: 300;
}

.listings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.listing-card {
  background: var(--cream);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.listing-card:hover {
  transform: translateY(-5px);
}

.listing-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.listing-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.listing-card:hover::after {
  transform: scaleX(1);
}

.listing-card__img-wrap {
  overflow: hidden;
  flex-shrink: 0;
}

.listing-card:not(.listing-card--featured) .listing-card__img-wrap {
  aspect-ratio: 4 / 3;
}

.listing-card--featured .listing-card__img-wrap {
  flex: 1;
  min-height: 0;
}

.listing-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.listing-card:hover .listing-card__img {
  transform: scale(1.04);
}

.listing-card__body {
  padding: 22px 24px 26px;
  background: white;
}

.listing-card--featured .listing-card__body {
  padding: 28px 30px 32px;
}

.listing-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--forest);
  color: white;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 11px;
  font-weight: 500;
  z-index: 1;
}

.listing-card__addr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--ink);
}

.listing-card--featured .listing-card__addr {
  font-size: 22px;
}

.listing-card__meta {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.listing-card__price {
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  margin-right: 16px;
}

.listing-card--featured .listing-card__price {
  font-size: 16px;
}

.listing-card__detail {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  padding-right: 12px;
  margin-right: 12px;
  border-right: 1px solid var(--border);
}

.listing-card__detail:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.listing-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s;
}

.listing-card:hover .listing-card__link {
  gap: 14px;
}

/* ------------------------------------------------------------------ */
/* Dark Call To Action Section
/* ------------------------------------------------------------------ */

.cta-dark-section {
  background: var(--forest);
}

.cta-dark-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-dark__eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-dark__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.cta-dark__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.cta-dark__heading em {
  font-style: italic;
  color: var(--sage);
}

.cta-dark__body {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 40px;
}

.cta-dark__tool {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 2px solid var(--gold);
  transition: background 0.2s, border-color 0.2s;
  margin-bottom: 12px;
}

.cta-dark__tool:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(184, 136, 58, 0.5);
}

.cta-dark__tool-icon {
  width: 40px;
  height: 40px;
  background: rgba(176, 125, 56, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-dark__tool-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.cta-dark__tool-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: white;
  margin-top: 2px;
}

.cta-dark__tool-hint {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 300;
  margin-top: 3px;
}

.cta-dark__points {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cta-dark__point {
  padding: 24px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s, background 0.3s;
}

.cta-dark__point:hover {
  border-left-color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

.cta-dark__point-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: white;
  margin-bottom: 6px;
}

.cta-dark__point-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  font-weight: 300;
}

/* ------------------------------------------------------------------ */
/* Footer
/* ------------------------------------------------------------------ */

.footer-section {
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: white;
  margin-bottom: 14px;
}

.footer__brand em {
  font-style: italic;
  color: var(--gold);
}

.footer__tagline {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
  font-weight: 300;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer__contact a {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 6px;
  font-weight: 300;
  transition: color 0.2s;
}

.footer__contact a:hover {
  color: var(--gold-lt);
}

.footer__col-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: white;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  font-weight: 300;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------------ */
/* Responsiveness
/* ------------------------------------------------------------------ */

@media (max-width: 1024px) {
  :root {
    --container-px: 28px;
  }

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

  .page-hero__photo {
    min-height: 50vh;
  }

  .page-hero__content {
    padding: 60px 40px;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .value-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .listings__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .listing-card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .listing-card--featured .listing-card__img-wrap {
    aspect-ratio: 16 / 9;
  }

  .nav-links {
    display: none;
  }

  .process__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .process__subtitle {
    text-align: left;
  }

  .listing-card-main {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  :root {
    --container-px: 20px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .page-hero__stats {
    flex-direction: column;
    gap: 20px;
  }

  .page-hero__stat+.page-hero__stat {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 20px;
  }
}