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

:root {
  --navy: #1a2535;
  --gold: #c9a96e;
  --cream: #f8f4ef;
  --warm: #ede8e1;
  --text: #2e2e2e;
  --muted: #7a7a7a;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  background: rgba(26, 37, 53, 0.92);
  backdrop-filter: blur(8px);
  animation: fadeDown .8s ease both;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: .04em;
  text-decoration: none;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

nav a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s;
}

nav a:hover,
nav a.active {
  color: var(--gold);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(26, 37, 53, .82) 45%, rgba(26, 37, 53, .25) 100%),
    url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
  transform: scale(1.04);
  animation: slowZoom 14s ease forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 3rem;
  animation: fadeUp .9s .3s ease both;
}

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  border-left: 2px solid var(--gold);
  padding-left: .75rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

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

.hero p {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.4rem;
}

.btn {
  display: inline-block;
  padding: .9rem 2.2rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .25s, transform .2s;
}

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

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .5);
  color: var(--white);
  margin-left: 1rem;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

/* ── STATS STRIP ── */
.stats {
  background: var(--navy);
  display: flex;
  justify-content: center;
  gap: 0;
}

.stat {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 2.2rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

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

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
}

.stat-label {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-top: .3rem;
}

/* ── ABOUT (homepage teaser) ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.about-img {
  background: url('https://images.unsplash.com/photo-1560184897-ae75f418493e?w=900&auto=format&fit=crop&q=80') center/cover no-repeat;
}

.about-text {
  background: var(--warm);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.4rem;
}

.about-text p {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ── FEATURES ── */
.features {
  background: var(--cream);
  padding: 6rem 3rem;
  text-align: center;
}

.features h2 {
  margin-bottom: .5rem;
}

.features>p {
  color: var(--muted);
  font-size: .97rem;
  max-width: 500px;
  margin: 0 auto 3.5rem;
  line-height: 1.75;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  padding: 2.4rem 2rem;
  max-width: 260px;
  text-align: left;
  transition: transform .25s, box-shadow .25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: .6rem;
}

.card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CONTACT (homepage teaser) ── */
.contact {
  background: var(--navy);
  padding: 6rem 3rem;
  text-align: center;
}

.contact h2 {
  color: var(--white);
  margin-bottom: .8rem;
}

.contact p {
  color: rgba(255, 255, 255, .6);
  font-size: .97rem;
  margin-bottom: 2.4rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.contact-item {
  text-align: center;
}

.contact-item .ci-label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}

.contact-item a,
.contact-item span {
  color: var(--white);
  font-size: 1rem;
  text-decoration: none;
  font-weight: 300;
}

.contact-item a:hover {
  color: var(--gold);
}

/* ── PAGE HEADER (About / Contact / Legal) ── */
.page-header {
  background: var(--navy);
  padding: 11rem 3rem 4.5rem;
  text-align: center;
}

.page-header .eyebrow {
  border-left: none;
  padding-left: 0;
}

.page-header h1 {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  margin-bottom: .6rem;
}

.page-header p {
  color: rgba(255, 255, 255, .6);
  font-size: .97rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── LEGAL PAGES ── */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 4.5rem 3rem 6rem;
}

.legal .updated {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.4rem;
  margin-top: 2.6rem;
  margin-bottom: 1rem;
}

.legal h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.1rem;
  margin: 1.6rem 0 .6rem;
}

.legal p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.legal ul {
  padding-left: 1.4rem;
  margin-bottom: 1.1rem;
}

.legal li {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: .4rem;
}

.legal a {
  color: var(--navy);
  font-weight: 500;
}

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

/* ── CONTACT PAGE (form) ── */
.contact-page {
  padding: 5rem 3rem 6rem;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-details h2 {
  font-size: 1.6rem;
}

.contact-details p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-details .contact-item {
  text-align: left;
  margin-bottom: 1.6rem;
}

.contact-details .contact-item .ci-label {
  color: var(--gold);
}

.contact-details .contact-item a,
.contact-details .contact-item span {
  color: var(--navy);
}

.contact-form-wrap {
  background: var(--white);
  padding: 2.6rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-group label {
  display: block;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .45rem;
}

.form-group label .optional {
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: .75rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid rgba(0, 0, 0, .14);
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.consent-group {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.consent-group input[type="checkbox"] {
  margin-top: .3rem;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.consent-group label {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65;
  text-transform: none;
  letter-spacing: 0;
}

.consent-group label a {
  color: var(--navy);
  font-weight: 500;
}

.form-success {
  background: var(--warm);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.4rem;
  font-size: .92rem;
  color: var(--text);
  margin-bottom: 2rem;
}

/* ── FOOTER ── */
footer {
  background: #111b28;
  text-align: center;
  padding: 1.5rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .08em;
}

footer a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
}

footer a:hover {
  color: var(--gold);
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 1.2rem 1.5rem;
  }

  .nav-links {
    gap: 1.2rem;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .btn-outline {
    display: none;
  }

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

  .about-img {
    height: 280px;
  }

  .about-text {
    padding: 3rem 1.8rem;
  }

  .stats {
    flex-wrap: wrap;
  }

  .stat {
    max-width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .features {
    padding: 4rem 1.5rem;
  }

  .contact {
    padding: 4rem 1.5rem;
  }

  .contact-info {
    gap: 1.8rem;
  }

  .page-header {
    padding: 9rem 1.5rem 3.5rem;
  }

  .legal {
    padding: 3rem 1.5rem 4rem;
  }

  .contact-page {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem 4rem;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 1.8rem;
  }
}
