:root {
  --bg-dark: #0d0d0d;
  --surface: #f5f2ee;
  --text-dark: #111111;
  --text-light: #fafafa;
  --accent: #c9a96e;
  --font-display: "Libre Baskerville", "Times New Roman", Times, serif;
  --font-body: "Libre Baskerville", "Times New Roman", Times, serif;
  --font-brand: "Cormorant Garamond", "Libre Baskerville", Georgia, serif;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg-dark);
  font-family: var(--font-body);
  color: var(--text-light);
}

*,
*::before,
*::after {
  animation: none !important;
  transition: none !important;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 84px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-style: normal;
  text-decoration: none;
}

.brand-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
}

.brand-name {
  font-family: var(--font-brand);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #f2e6d4;
  line-height: 1.05;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.96rem;
  line-height: 1.35;
  color: #f0e8dc;
}

.nav-cta {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.2rem;
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px auto;
  background: var(--text-light);
}

main {
  overflow-x: hidden;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-light {
  background: var(--surface);
  color: var(--text-dark);
}

.section-pad {
  padding: 140px 0;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.center {
  text-align: center;
}

.hero,
.sub-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.sub-hero {
  min-height: 78vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.8) 5%,
    rgba(0, 0, 0, 0.5) 46%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 90vw);
  margin: 0 auto;
  padding-top: 84px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 1rem;
  color: #ddc9a1;
}

h1,
.section-title {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
  margin: 0 0 1.2rem;
}

h1 {
  font-size: clamp(3.2rem, 8.3vw, 7rem);
  max-width: min(20ch, 100%);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  max-width: min(28ch, 100%);
}

.center .section-title,
.final-cta .section-title {
  max-width: min(36ch, 100%);
}

/* Homepage hero: smaller headline, neat left column (no frames) */
.hero h1.hero-lead {
  align-self: flex-start;
  max-width: min(32ch, 100%);
  margin: 0 0 1.15rem;
  font-size: clamp(1.55rem, 2.85vw, 2.45rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-align: left;
  text-wrap: balance;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  max-width: min(42ch, 100%);
  line-height: 1.65;
  color: #e9dfd0;
  margin: 0 0 2.2rem;
  text-wrap: pretty;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  padding: 0.9rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.83rem;
  font-weight: 700;
}

.btn-gold {
  background: var(--accent);
  color: #1a140d;
}

.btn-outline {
  border-color: #bca67f;
  color: #f3ebde;
}

.scroll-indicator {
  display: none;
}

.scroll-indicator span {
  position: absolute;
  left: 50%;
  width: 5px;
  height: 9px;
  background: var(--accent);
  border-radius: 20px;
  transform: translateX(-50%);
}

.statement-quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-style: normal;
  max-width: min(22ch, 100%);
  line-height: 1.14;
  text-wrap: balance;
}

.statement-columns {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  text-align: center;
}

.statement-columns p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d8c39c;
}

.split-panels {
  display: flex;
  min-height: 92vh;
}

.panel {
  position: relative;
  width: 50%;
  overflow: hidden;
}

.panel img {
  height: 100%;
  object-fit: cover;
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.panel-inner {
  position: absolute;
  inset: auto 8% 8%;
  z-index: 2;
}

.panel h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.panel p {
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: min(32ch, 100%);
  text-wrap: pretty;
}

.overlap-grid {
  margin-top: 3.4rem;
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  align-items: start;
  gap: 4.5rem;
}

.overlap-image {
  margin-top: 1rem;
}

.why-list {
  display: grid;
  gap: 2.5rem;
}

.why-item {
  border-top: 1px solid rgba(18, 18, 18, 0.25);
  padding-top: 1.3rem;
  position: relative;
}

.why-number {
  position: absolute;
  right: 0;
  top: 0.6rem;
  font-family: var(--font-display);
  font-size: 4.2rem;
  color: rgba(17, 17, 17, 0.11);
}

.why-item h3 {
  margin: 0 0 0.6rem;
  padding-right: 3.5rem;
  font-size: 1.22rem;
  line-height: 1.35;
  font-weight: 700;
}

.why-item p {
  margin: 0;
  max-width: 45ch;
  line-height: 1.7;
}

.decor-rule {
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.35);
  margin-bottom: 2.4rem;
}

.testimonials {
  margin-top: 2.2rem;
  display: grid;
  gap: 1.7rem;
}

.testimonials blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.32;
  text-wrap: pretty;
}

.testimonials cite {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(17, 17, 17, 0.72);
}

.final-cta .section-title {
  margin: 0 auto 1rem;
}

.final-cta p {
  color: #e6dac6;
  max-width: min(52ch, 100%);
  margin: 0 auto 2rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.material-card {
  background: #efe8df;
  color: #161616;
}

.material-card img {
  height: 380px;
  object-fit: cover;
}

.material-card div {
  padding: 1.4rem 1.2rem 1.7rem;
}

.material-card h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.95rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.material-card p {
  margin: 0;
  line-height: 1.68;
  text-wrap: pretty;
}

.quote-section .section-title {
  max-width: none;
}

.quote-sub {
  margin: 0 0 1.5rem;
  max-width: min(62ch, 100%);
  line-height: 1.65;
  text-wrap: pretty;
}

.quote-form {
  display: grid;
  gap: 1.1rem;
  max-width: 520px;
}

.quote-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 0.35rem;
  color: #2a241c;
}

.quote-form input {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid #c7b399;
  background: #fff;
  color: #111;
  font-family: var(--font-body);
  font-size: 1rem;
}

.quote-message {
  min-height: 1.4rem;
  margin: 0.4rem 0 0;
  color: #3b3022;
}

.site-footer {
  background: #080808;
  color: #dfd2be;
  border-top: 1px solid rgba(201, 169, 110, 0.35);
  padding: 1.35rem 0 1.15rem;
}

.footer-stack {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.footer-contact {
  margin: 0;
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 1.75rem;
  row-gap: 0.4rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #dfd2be;
}

.footer-contact a {
  color: #f2e6d4;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.45);
  padding-bottom: 0.06em;
}

.footer-contact a:hover {
  color: #fff;
  border-bottom-color: rgba(201, 169, 110, 0.75);
}

.footer-contact__addr {
  margin: 0;
  max-width: 22rem;
}

.footer-contact__addr a {
  border-bottom: none;
  color: inherit;
}

.footer-contact__addr a:hover {
  color: #f2e6d4;
  border-bottom: 1px solid rgba(201, 169, 110, 0.45);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-row p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.88rem;
  line-height: 1.5;
}

.legal-main {
  min-height: calc(100vh - 84px);
}

.legal-content {
  color: var(--text-dark);
}

.legal-content h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.1;
}

.legal-content h2 {
  margin: 1.6rem 0 0.45rem;
  font-size: 1.2rem;
}

.legal-content p {
  margin: 0;
  line-height: 1.7;
  max-width: 75ch;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .site-header {
    height: 72px;
    padding: 0 1rem;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    background: rgba(13, 13, 13, 0.99);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-left: 0;
    border-right: 0;
    padding: 1rem 1.25rem 1.4rem;
    flex-direction: column;
    align-items: flex-start;
    min-width: 100%;
    display: none;
    gap: 1rem;
  }

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

  .hamburger {
    display: block;
  }

  .main-nav a {
    width: 100%;
    font-size: 1rem;
    padding: 0.2rem 0;
  }

  .split-panels {
    flex-direction: column;
    min-height: auto;
  }

  .panel {
    width: 100%;
    min-height: 55vh;
  }

  .panel p {
    opacity: 1;
    transform: translateY(0);
  }

  .statement-columns {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    text-align: left;
  }

  .overlap-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .material-card img {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 84px 0;
  }

  .hero-content {
    width: 92vw;
    padding-top: 64px;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
    line-height: 1.12;
    max-width: 100%;
  }

  .hero h1.hero-lead {
    font-size: clamp(1.35rem, 5.2vw, 1.85rem);
    line-height: 1.24;
    max-width: 100%;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.55;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .cta-row {
    width: 100%;
  }

  .statement-columns p {
    font-size: 1rem;
  }

  .material-card img {
    height: 240px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
}

