:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --gold: #c9a962;
  --gold-light: #e0c589;
  --cream: #f4f2ee;
  --text-dark: #222;
  --text-muted: #6b6b6b;
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.75;
}

h1, h2, h3 {
  font-family: 'Prata', serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(34px, 6vw, 75px); line-height: 1.15; }
h2 { font-size: clamp(28px, 4.2vw, 48px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }

p { margin: 0 0 1em; }

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo img { height: 100px; width: auto; }

/* Hero */
.hero-photo {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58vh;
}
.hero-photo.hero-tall { min-height: 100vh; }
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.75) 100%);
}
.hero-photo .container { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; }

/* Parallax media layer, shared by hero-photo and cta-band */
.parallax-media {
  position: absolute;
  top: -18%;
  left: 0;
  width: 100%;
  height: 136%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.parallax-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: reduce) {
  .parallax-media { transform: none !important; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 28px;
  cursor: pointer;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.07em;
  transition: color 0.2s;
}

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

.hero-eyebrow {
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 48px;
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid var(--gold);
  transition: all 0.2s;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: #fff;
}
.btn-outline:hover { background: rgba(201,169,98,0.15); }

/* Sections */
.section {
  padding: 90px 0;
}

.section-alt {
  background: #fff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 15px;
  margin-bottom: 10px;
}

/* Card grid */
.grid {
  display: grid;
  gap: 32px;
}

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

.card {
  background: #fff;
  padding: 36px 30px;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.card h3 { font-size: 24px; margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 15px; margin-bottom: 0; }

/* Photo cards (image above heading) */
.photo-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 22px;
}
.photo-card h3 { font-size: 30px; color: var(--gold); }
.photo-card.dark h3 { color: var(--gold); }
.photo-card p { color: var(--text-muted); }

/* Split section: image one side, text the other */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}
.split.reverse .split-media { order: 2; }
.split .section-eyebrow { margin-bottom: 4px; }

/* Newsletter */
.newsletter {
  text-align: center;
  padding: 80px 0;
}
.newsletter form {
  max-width: 480px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Steps */
.step {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.step-number {
  font-family: 'Prata', serif;
  font-size: 40px;
  color: var(--gold);
  min-width: 64px;
}

.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-muted); margin: 0; }

/* Quote */
.quote-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
  font-family: 'Prata', serif;
  font-size: 22px;
  color: var(--text-dark);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #e2ddd2;
  padding: 24px 0;
}
.faq-item h3 { font-size: 22px; margin-bottom: 8px; }
.faq-item p { color: var(--text-muted); margin: 0; }

/* Pricing */
.pricing-card {
  background: #fff;
  border: 1px solid #e2ddd2;
  border-radius: 6px;
  padding: 44px 36px;
  text-align: center;
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,169,98,0.18);
}
.pricing-card .price-label {
  color: var(--text-muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-card h3 { font-size: 32px; margin: 10px 0 24px; }
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}
.pricing-card li {
  padding: 8px 0;
  border-bottom: 1px solid #f0ece3;
  font-size: 15px;
  color: var(--text-dark);
}
.pricing-card li:before {
  content: "\2713";
  color: var(--gold);
  margin-right: 10px;
  font-weight: bold;
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #ddd6c7;
  border-radius: 3px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--text-dark);
}

textarea { resize: vertical; min-height: 120px; }

.form-card {
  background: #fff;
  padding: 48px;
  border-radius: 6px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
}
.form-status.success { color: #2b7a3d; }
.form-status.error { color: #b3261e; }

/* Contact info */
.contact-info {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
  text-align: center;
}
.contact-info .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.contact-info .value {
  font-family: 'Prata', serif;
  font-size: 19px;
}

/* CTA band */
.cta-band {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 110px 0;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10,10,10,0.55);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #ececec; margin-bottom: 28px; }

/* Footer */
.site-footer {
  background: var(--black);
  color: #999;
  padding: 40px 0;
  font-size: 14px;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.footer-nav a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse .split-media { order: 0; }
}

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 20px 24px 28px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 18px; }
  .form-card { padding: 32px 22px; }
  .site-footer .container { flex-direction: column; text-align: center; }
}
