:root {
  --bg: #f6f1e8;
  --bg-soft: #fcf8f1;
  --surface: #fffaf2;
  --surface-strong: #fffdf8;
  --surface-dark: #1d1a17;
  --ink: #241f19;
  --muted: #756d62;
  --muted-deep: #50483f;
  --gold: #b99656;
  --gold-deep: #97783f;
  --line: rgba(116, 91, 52, 0.14);
  --shadow: 0 20px 46px rgba(73, 50, 22, 0.1);
  --shadow-soft: 0 10px 24px rgba(73, 50, 22, 0.07);
  --radius: 22px;
  --radius-sm: 14px;
  --container: min(1380px, calc(100% - 3rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Source Sans 3", "Aptos", sans-serif;
  background: linear-gradient(180deg, #fbf8f1 0%, #f4efe6 100%);
}

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

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

p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

h1,
h2,
h3,
.brand strong {
  margin: 0;
  color: var(--ink);
  font-family: "Libre Baskerville", "Georgia", serif;
  font-weight: 400;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 4.3vw, 4.05rem);
}

h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.55rem);
}

h3 {
  font-size: 1.3rem;
}

.site-header,
.section,
.page-shell,
.site-footer-inner {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.85rem clamp(1.2rem, 4vw, 4.2rem);
  border-bottom: 1px solid rgba(116, 91, 52, 0.1);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.brand-mark {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border: 1px solid rgba(183, 152, 90, 0.4);
  border-radius: 999px;
  color: var(--gold-deep);
  font-family: "Libre Baskerville", "Georgia", serif;
  font-size: 1rem;
  background: rgba(255, 252, 247, 0.72);
}

.brand strong {
  display: block;
  font-size: clamp(1.38rem, 2vw, 1.9rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-nav a,
.nav-toggle {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--muted-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  background: rgba(183, 152, 90, 0.09);
}

.site-nav .nav-cta {
  border: 1px solid rgba(146, 115, 58, 0.12);
  color: #fff;
  background: linear-gradient(180deg, #c3a364, #a8864a);
  padding-inline: 1.45rem;
  box-shadow: var(--shadow-soft);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.9);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

.page-shell {
  padding: clamp(3rem, 5vw, 5rem) 0 4.6rem;
}

.section {
  padding: clamp(2.8rem, 5vw, 4.8rem) 0;
}

.eyebrow,
.tag,
.section-kicker {
  margin: 0 0 0.9rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.button.primary {
  color: #fff;
  background: linear-gradient(180deg, #c5a566, #aa8746);
  box-shadow: 0 16px 34px rgba(149, 113, 49, 0.22);
}

.button.ghost {
  border-color: rgba(146, 115, 58, 0.25);
  color: var(--muted-deep);
  background: rgba(255, 253, 248, 0.78);
}

.section-heading,
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.section-heading {
  justify-content: space-between;
  margin-bottom: 1.9rem;
}

.section-heading h2 {
  max-width: 42rem;
}

.section-heading a {
  color: var(--gold-deep);
  font-weight: 600;
}

.hero-shell {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-frame {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  overflow: hidden;
  min-height: clamp(430px, 58vw, 590px);
  border: 0;
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.hero-copy-panel {
  grid-area: 1 / 1;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 1.05rem;
  width: min(49rem, 56%);
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1.5rem, 8vw, 8.4rem);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.88) 62%, rgba(255, 253, 248, 0) 100%);
}

.hero-copy-panel h1 {
  max-width: 13.8ch;
  font-size: clamp(2.2rem, 3.3vw, 3.45rem);
  line-height: 1.12;
}

.hero-copy-panel p {
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-stats {
  display: none;
}

.hero-stats span {
  min-width: 8.3rem;
  padding: 0.8rem 0.95rem;
  border-top: 1px solid rgba(146, 115, 58, 0.14);
  border-radius: 0;
  color: var(--muted);
  background: transparent;
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--ink);
  font-family: "Libre Baskerville", "Georgia", serif;
  font-size: 1.28rem;
  font-weight: 400;
}

.hero-media {
  grid-area: 1 / 1;
  position: relative;
  min-height: inherit;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.3) 0%, rgba(255, 253, 248, 0) 44%),
    linear-gradient(180deg, rgba(20, 16, 10, 0.04), rgba(20, 16, 10, 0.12));
}

.trust-section {
  width: 100%;
  padding: 0;
  background: rgba(255, 253, 248, 0.94);
  border-top: 1px solid rgba(116, 91, 52, 0.09);
  border-bottom: 1px solid rgba(116, 91, 52, 0.09);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: var(--container);
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.trust-item,
.property-card,
.profile-card,
.feature-grid article,
.insight-grid article,
.testimonial-grid blockquote,
.contact-form,
.info-panel,
.detail-card,
.brief-output,
.quote-panel,
.profile-intro-card {
  border: 1px solid rgba(146, 115, 58, 0.11);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1.35rem 1.4rem;
  border: 0;
  border-right: 1px solid rgba(146, 115, 58, 0.1);
  border-radius: 0;
  box-shadow: none;
}

.trust-icon {
  width: 2.45rem;
  height: 2.45rem;
  padding: 0.62rem;
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(183, 152, 90, 0.1);
}

.trust-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.trust-item p {
  font-size: 0.94rem;
}

.profile-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.8fr) minmax(0, 0.9fr);
  gap: 0;
  align-items: stretch;
  padding-block: 0;
  background: rgba(255, 253, 248, 0.62);
}

.profile-intro-card,
.profile-card {
  overflow: hidden;
  padding: 0;
}

.profile-showcase .profile-intro-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.profile-intro-card img,
.profile-photo {
  width: 100%;
  height: 100%;
  min-height: 330px;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
}

.profile-photo {
  margin-bottom: 1.2rem;
}

.profile-card {
  padding: 1rem;
}

.profile-card .profile-photo {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 4.4;
  border-radius: 12px;
}

.profile-intro-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid rgba(146, 115, 58, 0.1);
  border-bottom: 1px solid rgba(146, 115, 58, 0.1);
  background: linear-gradient(180deg, #fffdf8, #f8f1e6);
}

.quote-panel {
  display: grid;
  gap: 0.75rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  align-content: center;
  border-radius: 0;
  border-left: 0;
  border-top: 1px solid rgba(146, 115, 58, 0.1);
  border-bottom: 1px solid rgba(146, 115, 58, 0.1);
  box-shadow: none;
  background: linear-gradient(180deg, #fffaf2, #f5eadb);
}

.quote-mark {
  color: rgba(183, 152, 90, 0.42);
  font-family: "Libre Baskerville", "Georgia", serif;
  font-size: 4rem;
  line-height: 1;
}

.quote-panel blockquote {
  margin: 0;
}

.quote-panel blockquote p {
  color: var(--muted-deep);
  font-family: "Libre Baskerville", "Georgia", serif;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.45;
}

.signature {
  color: var(--gold-deep);
  font-family: "Libre Baskerville", "Georgia", serif;
  font-size: 1.6rem;
  font-style: italic;
}

.property-grid,
.feature-grid,
.insight-grid,
.testimonial-grid {
  display: grid;
  gap: 1.2rem;
}

.property-grid,
.feature-grid,
.insight-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.property-card {
  overflow: hidden;
}

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

.card-body,
.feature-grid article,
.insight-grid article,
.testimonial-grid blockquote,
.contact-form,
.info-panel,
.brief-output {
  padding: 1.45rem;
}

.card-body h2,
.card-body h3,
.feature-grid h2,
.feature-grid h3,
.insight-grid h2,
.insight-grid h3,
.detail-card h2,
.detail-card h3,
.info-panel h2,
.info-panel h3 {
  margin-bottom: 0.7rem;
  line-height: 1.26;
}

.property-card h2,
.property-card h3,
.feature-grid h2,
.feature-grid h3,
.insight-grid h2,
.insight-grid h3 {
  font-size: 1.32rem;
}

.property-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--gold-deep);
  font-size: 0.95rem;
  font-weight: 600;
}

.price {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--gold-deep);
  font-weight: 700;
}

.split,
.two-column,
.contact-grid,
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: start;
}

.page-hero {
  max-width: 50rem;
  margin-bottom: 2.8rem;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  margin-bottom: 1rem;
}

.page-hero p:last-child {
  max-width: 42rem;
}

.profile-card > h2 {
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.check-list {
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.check-list li {
  margin: 0.7rem 0;
  color: var(--muted-deep);
}

.check-list li::before {
  content: "•";
  margin-right: 0.65rem;
  color: var(--gold-deep);
}

.filters {
  margin-bottom: 1.6rem;
}

.filter-button {
  border: 1px solid rgba(146, 115, 58, 0.16);
  border-radius: 999px;
  padding: 0.82rem 1rem;
  color: var(--muted-deep);
  background: rgba(255, 252, 247, 0.82);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.filter-button.active {
  color: #fff;
  background: linear-gradient(180deg, #c3a364, #a8864a);
}

.detail-hero {
  position: relative;
  width: var(--container);
  min-height: min(560px, calc(100vh - 10rem));
  display: grid;
  align-items: center;
  margin: clamp(2.2rem, 4vw, 3.6rem) auto 0;
  overflow: hidden;
  border: 1px solid rgba(116, 91, 52, 0.08);
  border-radius: 30px;
  padding: clamp(2rem, 4vw, 3.75rem);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.detail-hero img {
  position: absolute;
  inset: 0 0 0 42%;
  z-index: -2;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #fffdf8 0%, #fffdf8 39%, rgba(255, 253, 248, 0.76) 50%, rgba(255, 253, 248, 0.05) 72%),
    linear-gradient(180deg, rgba(22, 18, 13, 0), rgba(22, 18, 13, 0.2));
}

.detail-card {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.detail-card h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 3.6vw, 3.45rem);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.spec-grid span {
  padding: 1rem;
  border: 1px solid rgba(146, 115, 58, 0.1);
  border-radius: 18px;
  color: var(--muted-deep);
  background: rgba(255, 253, 248, 0.74);
}

.spec-grid strong {
  display: block;
  margin-bottom: 0.32rem;
  color: var(--ink);
}

.info-panel span,
.insight-grid span,
.brief-output span {
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.contact-form,
.brief-output,
.info-panel {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.5rem;
  color: var(--muted-deep);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(146, 115, 58, 0.14);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  font: inherit;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.testimonial-grid blockquote p {
  color: var(--muted-deep);
  font-family: "Libre Baskerville", "Georgia", serif;
  font-size: 1.18rem;
  line-height: 1.55;
}

cite {
  display: block;
  margin-top: 1rem;
  color: var(--gold-deep);
  font-style: normal;
  font-weight: 600;
}

.site-footer-wrap {
  border-top: 1px solid rgba(146, 115, 58, 0.1);
  background: rgba(255, 250, 244, 0.92);
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem 0 2.1rem;
}

.site-footer p {
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer p:first-child {
  color: var(--muted-deep);
  font-weight: 600;
}

.reveal {
  opacity: 1;
}

@media (max-width: 980px) {
  .trust-band,
  .profile-intro,
  .split,
  .two-column,
  .contact-grid,
  .detail-grid,
  .property-grid,
  .property-listing,
  .feature-grid,
  .insight-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-media {
    min-height: 18rem;
    order: 2;
  }

  .hero-copy-panel {
    order: 1;
  }

  .detail-hero {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.2rem;
    min-height: 0;
    padding: 1rem;
  }

  .detail-hero img {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    height: 260px;
    border-radius: 18px;
    object-position: center;
  }

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

  .detail-card {
    max-width: none;
    padding: 1.25rem 1.1rem 0.4rem;
    background: transparent;
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    display: none;
    width: min(22rem, calc(100vw - 2rem));
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid rgba(146, 115, 58, 0.14);
    border-radius: 22px;
    background: rgba(255, 252, 247, 0.98);
    box-shadow: var(--shadow);
  }

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

@media (max-width: 640px) {
  .brand strong {
    font-size: 1.1rem;
  }

  .brand small {
    display: none;
  }

  .hero-copy-panel,
  .card-body,
  .feature-grid article,
  .insight-grid article,
  .testimonial-grid blockquote,
  .contact-form,
  .brief-output,
  .info-panel {
    padding: 1.25rem;
  }

  .hero-copy-panel h1 {
    max-width: 11.6ch;
    font-size: clamp(2.2rem, 10vw, 2.9rem);
  }

  .hero-copy-panel p {
    font-size: 1rem;
  }

  .hero-stats {
    display: none;
  }

  .hero-media {
    min-height: 17rem;
  }

  .hero-stats span,
  .trust-item {
    min-width: 0;
  }

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

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