:root {
  --sand: #f4f1eb;
  --fendi: #d9cfc2;
  --gold: #d4a43a;
  --wood: #9b7353;
  --graphite: #1d1d1b;
  --white: #fffaf3;
  --line: rgba(29, 29, 27, 0.14);
  --shadow: 0 24px 70px rgba(29, 29, 27, 0.11);
  --font-main: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(212, 164, 58, 0.12), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(155, 115, 83, 0.12), transparent 26rem),
    linear-gradient(180deg, #fbf8f1 0%, var(--sand) 42%, #efe7dc 100%);
  color: var(--graphite);
  font-family: var(--font-main);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(29, 29, 27, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 27, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 82%);
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(244, 241, 235, 0.92);
  border-bottom: 1px solid rgba(29, 29, 27, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 116px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-footer {
  width: 128px;
}

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

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--wood);
}

.nav-cta {
  background: var(--wood);
  color: var(--white);
  padding: 11px 18px;
  border-radius: 8px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--graphite);
}

.section-pad {
  padding: clamp(72px, 8vw, 120px) clamp(20px, 5vw, 72px);
}

.section-light {
  background:
    radial-gradient(circle at 85% 10%, rgba(212, 164, 58, 0.14), transparent 22rem),
    linear-gradient(180deg, rgba(217, 207, 194, 0.52), rgba(244, 241, 235, 0));
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(44px, 7vw, 88px);
}

h2 {
  max-width: 720px;
  font-size: clamp(34px, 5vw, 62px);
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(32px, 6vw, 80px);
  min-height: calc(100vh - 80px);
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 18%, rgba(212, 164, 58, 0.16), transparent 23rem),
    linear-gradient(135deg, rgba(255, 250, 243, 0.44), rgba(217, 207, 194, 0.16));
}

.hero::before,
.market-section::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 250, 243, 0.26) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(0deg, rgba(29, 29, 27, 0.045) 0 1px, transparent 1px 68px);
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-subtitle {
  max-width: 650px;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
}

.hero-text {
  max-width: 610px;
  color: rgba(29, 29, 27, 0.72);
  font-size: 17px;
}

.hero-actions,
.final-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--wood);
  color: var(--white);
  box-shadow: 0 18px 35px rgba(155, 115, 83, 0.22);
}

.btn-secondary {
  border-color: rgba(155, 115, 83, 0.45);
  color: var(--wood);
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.image-card,
.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(29, 29, 27, 0.18), rgba(155, 115, 83, 0.08)),
    var(--photo),
    linear-gradient(135deg, #cdbba8, #8a684e 46%, #231f1a);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.image-card::before,
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.18) 12%, transparent 12% 22%, rgba(255, 250, 243, 0.12) 22% 38%, transparent 38% 44%, rgba(29, 29, 27, 0.16) 44% 48%, transparent 48%),
    linear-gradient(0deg, rgba(29, 29, 27, 0.46), transparent 48%);
}

.image-card span,
.gallery-item span {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-weight: 700;
}

.image-hero {
  height: 620px;
}

.hero-stat-card {
  position: absolute;
  right: -12px;
  bottom: 42px;
  max-width: 250px;
  padding: 28px;
  border: 1px solid rgba(212, 164, 58, 0.45);
  border-radius: 12px;
  background: rgba(255, 250, 243, 0.92);
  box-shadow: var(--shadow);
}

.hero-stat-card strong {
  display: block;
  font-family: var(--font-main);
  font-size: 34px;
  line-height: 1;
}

.hero-stat-card span {
  display: block;
  margin-top: 8px;
  color: rgba(29, 29, 27, 0.68);
  font-size: 14px;
}

.hero-indicators {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 27, 0.1);
  border-radius: 12px;
}

.hero-indicators div {
  display: grid;
  gap: 4px;
  padding: 24px;
  background: rgba(255, 250, 243, 0.72);
}

.hero-indicators strong,
.metrics strong {
  font-family: var(--font-main);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1;
}

.hero-indicators span,
.metrics span {
  color: rgba(29, 29, 27, 0.66);
  font-size: 14px;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading p,
.brand-copy p,
.profile-copy p,
.investment-copy p,
.form-intro p,
.final-cta p {
  max-width: 760px;
  color: rgba(29, 29, 27, 0.72);
  font-size: 17px;
}

.cards,
.feature-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.feature,
.process-grid article {
  padding: 28px;
  border: 1px solid rgba(29, 29, 27, 0.09);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 250, 243, 0.92), rgba(217, 207, 194, 0.38)),
    rgba(255, 250, 243, 0.72);
  box-shadow: 0 18px 45px rgba(29, 29, 27, 0.06);
}

.card {
  display: grid;
  gap: 16px;
  min-height: 260px;
}

.card-line {
  width: 52px;
  height: 2px;
  background: var(--gold);
}

.card p,
.feature p,
.process-grid p {
  color: rgba(29, 29, 27, 0.68);
}

.brand-section,
.profile-section,
.investment-section,
.form-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.brand-copy,
.profile-copy,
.investment-copy,
.form-intro {
  display: grid;
  gap: 18px;
}

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

.metrics div {
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 26px;
  border: 1px solid rgba(212, 164, 58, 0.34);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 250, 243, 0.86), rgba(217, 207, 194, 0.32));
}

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

.feature {
  display: grid;
  gap: 12px;
}

.feature-icon {
  color: var(--gold);
  font-weight: 800;
}

.gallery-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 14px;
}

.gallery-viewport {
  overflow: hidden;
  border-radius: 14px;
}

.gallery-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 min(72vw, 440px);
  min-height: 360px;
  scroll-snap-align: start;
}

.gallery-wide {
  flex-basis: min(82vw, 680px);
}

.carousel-btn {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(155, 115, 83, 0.28);
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.86);
  color: var(--wood);
  box-shadow: 0 12px 28px rgba(29, 29, 27, 0.08);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.carousel-btn:hover {
  background: var(--wood);
  color: var(--white);
  transform: translateY(-2px);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 18px 18px 18px 44px;
  border: 1px solid rgba(29, 29, 27, 0.09);
  border-radius: 10px;
  background: rgba(255, 250, 243, 0.74);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.market-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(212, 164, 58, 0.22), transparent 22rem),
    radial-gradient(circle at 10% 82%, rgba(155, 115, 83, 0.2), transparent 24rem),
    linear-gradient(135deg, #171716 0%, #22221f 48%, #11110f 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.market-section .eyebrow {
  color: var(--gold);
}

.market-section p {
  color: rgba(255, 250, 243, 0.76);
}

.market-main {
  color: var(--white) !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  line-height: 1.25;
}

.market-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.market-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.market-card {
  min-height: 220px;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 28px;
  border: 1px solid rgba(212, 164, 58, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 250, 243, 0.13), rgba(155, 115, 83, 0.12)),
    rgba(255, 250, 243, 0.05);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.market-card strong {
  color: var(--gold);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.market-card span {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.market-card small {
  color: rgba(255, 250, 243, 0.58);
  font-size: 13px;
}

.process-grid {
  grid-template-columns: repeat(5, 1fr);
}

.process-grid article span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--graphite);
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(29, 29, 27, 0.1);
  border-radius: 14px;
  background: rgba(255, 250, 243, 0.86);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(29, 29, 27, 0.16);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--graphite);
  padding: 12px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 164, 58, 0.16);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(29, 29, 27, 0.72);
  font-size: 14px;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--wood);
}

.form-submit {
  grid-column: 1 / -1;
  width: 100%;
  cursor: pointer;
}

.form-success {
  grid-column: 1 / -1;
  padding: 16px 18px;
  border: 1px solid rgba(212, 164, 58, 0.36);
  border-radius: 10px;
  background: rgba(212, 164, 58, 0.12);
  color: var(--graphite);
  font-weight: 700;
}

.final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(217, 207, 194, 0.35), rgba(244, 241, 235, 0));
}

.final-cta h2,
.final-cta p {
  margin-inline: auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 44px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(29, 29, 27, 0.1);
  background: var(--graphite);
  color: var(--white);
}

.site-footer p {
  margin-top: 10px;
  color: rgba(255, 250, 243, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-content: flex-start;
  justify-content: flex-end;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .hero,
  .brand-section,
  .profile-section,
  .market-section,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 520px;
  }

  .image-hero {
    height: 520px;
  }

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

  .three-col {
    grid-template-columns: 1fr;
  }

  .gallery-carousel {
    grid-template-columns: 1fr;
  }

  .market-panel {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 780px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(29, 29, 27, 0.12);
    border-radius: 12px;
    background: var(--sand);
    box-shadow: var(--shadow);
  }

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

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

  .hero {
    min-height: auto;
  }

  .hero-media,
  .image-hero {
    min-height: 390px;
    height: 390px;
  }

  .hero-stat-card {
    right: 12px;
    bottom: 16px;
  }

  .hero-indicators,
  .metrics,
  .check-list,
  .lead-form,
  .feature-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    flex-basis: min(82vw, 420px);
    min-height: 320px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .section-pad {
    padding-block: 62px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-stat-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 14px;
    max-width: none;
  }

  .hero-media,
  .image-hero {
    height: auto;
    min-height: 320px;
  }
}
