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

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

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

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

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

.hero__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);
  max-width: 280px;
}

.hero__card-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 8px;
}

.hero__card-addr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: white;
  font-weight: 400;
  margin-bottom: 6px;
}

.hero__card-price {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

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

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

.hero__h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 28px;
}

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

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

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

.btn-gold {
  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;
  display: inline-block;
}

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

.btn-ghost-light {
  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;
  display: inline-block;
}

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

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

.hero__stat {
  flex: 1;
}

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

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

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

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

.intro {
  background: var(--cream);
}

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

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

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

.intro__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

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

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

.intro__cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.btn-forest {
  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;
  display: inline-block;
}

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

.intro__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;
}

.intro__link:hover {
  gap: 14px;
}

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

.intro__feature {
  background: white;
  padding: 32px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease;
  cursor: default;
}

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

.intro__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;
}

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

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

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

.intro__feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 6px;
}

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

.intro__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.intro__badge {
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 6px 14px;
  font-weight: 400;
}

.services {
  background: var(--white);
}

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

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

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

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

.services__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
}

.svc {
  padding: 48px 44px 52px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

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

.svc--featured {
  background: var(--forest);
}

.svc::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;
}

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

.svc__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: block;
  margin-bottom: 32px;
}

.svc--featured .svc__num {
  color: var(--gold-lt);
}

.svc__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--moss);
}

.svc--featured .svc__icon {
  color: rgba(255, 255, 255, 0.55);
}

.svc__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}

.svc--featured .svc__title {
  color: white;
}

.svc__desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

.svc--featured .svc__desc {
  color: rgba(255, 255, 255, 0.5);
}

.svc__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s;
}

.svc:hover .svc__link {
  gap: 16px;
}

.svc--featured .svc__link {
  color: var(--gold-lt);
}

.listings {
  background: var(--parch);
}

.listings__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.listings__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 300;
}

.listings__view-all {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.2s;
}

.listings__view-all:hover {
  gap: 16px;
}

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

.listing {
  background: white;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  transition: transform 0.3s ease;
}

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

.listing:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.listing__img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.listing:first-child .listing__img-wrap {
  aspect-ratio: unset;
  height: 72%;
}

.listing__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.listing:hover .listing__img {
  transform: scale(1.04);
}

.listing__info {
  padding: 18px 20px 22px;
}

.listing:first-child .listing__info {
  padding: 24px 26px 28px;
}

.listing__addr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 7px;
  line-height: 1.3;
}

.listing:first-child .listing__addr {
  font-size: 21px;
}

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

.listing__price {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--forest);
}

.listing:first-child .listing__price {
  font-size: 15px;
}

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

.listing__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--forest);
  color: white;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  font-weight: 500;
}

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

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

.trust__cell {
  padding: 56px 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: 50px;
  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;
}

.testimonials {
  background: var(--white);
}

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

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

.testimonials__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 300;
  line-height: 1.2;
}

.testimonials__avg {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonials__stars {
  font-size: 17px;
  letter-spacing: 2px;
  color: var(--gold);
}

.testimonials__avg-text {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

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

.review {
  background: var(--cream);
  padding: 38px 38px 42px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.review:hover {
  transform: translateY(-4px);
}

.review__quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  font-weight: 300;
  line-height: 0.8;
  color: rgba(70, 98, 77, 0.1);
  position: absolute;
  top: 14px;
  left: 26px;
  pointer-events: none;
}

.review__stars {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.review__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 26px;
  position: relative;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(15%);
}

.review__name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--forest);
}

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

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

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

.about__eyebrow {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.about__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 22px;
}

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

.about__body {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 32px;
}

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

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

.about__cred::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.about__contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 28px;
}

.about__contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.about__contact-link {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  padding: 20px 22px;
  background: white;
  border-left: 2px solid transparent;
  transition: all 0.2s;
}

.about__contact-link:hover {
  border-left-color: var(--gold);
  background: #f0ece3;
}

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

.about__contact-link-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about__contact-link-val {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 2px;
}

.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);
}

@media (max-width: 1024px) {
  .main--hero__stats {
    display: none;
  }

  :root {
    --container-px: 28px;
  }

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

  .hero__photo {
    min-height: 45vh;
  }

  .hero__content {
    padding: 60px 40px;
  }

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

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

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

  .listing:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

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

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

  .testimonials__header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

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

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

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {

  .hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }

  .hero__photo {
    height: 45vh;
  }

  .hero__card {
    bottom: 16px;
    left: 16px;
    padding: 14px 18px;
    max-width: 210px;
  }

  .hero__card-addr {
    font-size: 15px;
  }

  .hero__card-price {
    font-size: 12px;
  }

  .hero__content {
    padding: 40px 24px 48px;
    justify-content: flex-start;
  }

  .hero__content::before,
  .hero__content::after {
    display: none;
  }

  .hero__eyebrow {
    margin-bottom: 16px;
  }

  .hero__h1 {
    font-size: clamp(34px, 9vw, 46px);
    margin-bottom: 16px;
  }

  .hero__sub {
    font-size: 14px;
    margin-bottom: 32px;
    max-width: 100%;
  }

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

  .btn-gold,
  .btn-ghost-light {
    text-align: center;
    width: 100%;
    padding: 16px;
  }

  .hero__stats {
    margin-top: 32px;
    padding-top: 24px;
  }

  .hero__stat-num {
    font-size: 28px;
  }

  .hero__stat+.hero__stat {
    padding-left: 16px;
  }
}

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

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

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

  .services__subtitle {
    text-align: left;
  }

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

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