:root {
  --black: #090909;
  --charcoal: #111111;
  --soft-black: #181818;
  --cream: #f4f0e8;
  --white: #ffffff;
  --gold: #c7a35a;
  --gold-light: #e1c17d;
  --gray: #9b9b9b;
  --line: rgba(255,255,255,.13);
  --shadow: 0 25px 70px rgba(0,0,0,.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.solid-header {
  position: relative;
  background: rgba(8,8,8,.96);
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: "Cormorant Garamond", serif; font-size: 21px; letter-spacing: .5px; }
.brand small { color: var(--gold-light); text-transform: uppercase; font-size: 9px; letter-spacing: 3px; margin-top: -4px; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  transition: .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-light); }
.main-nav .nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--gold);
  color: var(--white);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  font-size: 27px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 8vw 80px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.57) 45%, rgba(0,0,0,.2) 100%),
    url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=2000&q=90") center/cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.42));
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  margin-top: 0;
}
.hero h1 {
  margin-bottom: 25px;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 600;
  letter-spacing: -2px;
}
.hero h1 span, .page-hero h1 span { color: var(--gold-light); font-style: italic; }
.hero-copy {
  max-width: 630px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  font-weight: 700;
  transition: .25s ease;
}
.btn-gold { background: var(--gold); color: #111; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,.65); color: white; }
.btn-ghost:hover { background: white; color: #111; }
.btn-outline { border-color: #b8b0a1; color: #26221b; background: transparent; }
.btn-outline:hover { background: #26221b; color: white; }
.scroll-cue {
  position: absolute;
  left: 8vw;
  bottom: 28px;
  z-index: 2;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section { padding: 110px 6vw; }
.section-dark { background: var(--charcoal); }
.section-light { background: var(--cream); color: #171717; }
.section-heading { max-width: 760px; margin-bottom: 55px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2, .about-copy h2, .booking-info h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 18px;
}
.section-heading p:last-child { color: #9d9d9d; }
.section-light .section-heading p:last-child { color: #68635b; }

.feature-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  grid-template-rows: repeat(2, 340px);
  gap: 18px;
}
.feature-card { position: relative; overflow: hidden; }
.feature-large { grid-row: span 2; }
.feature-card img { height: 100%; object-fit: cover; transition: transform .8s ease; }
.feature-card:hover img { transform: scale(1.05); }
.card-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.85));
}
.card-copy { position: absolute; inset: auto 28px 26px; }
.card-copy span { color: var(--gold-light); text-transform: uppercase; letter-spacing: 2px; font-size: 10px; }
.card-copy h3 { margin: 5px 0 0; font-size: 30px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid #d2cabd;
  border-left: 1px solid #d2cabd;
}
.service-card {
  min-height: 330px;
  padding: 35px 28px;
  border-right: 1px solid #d2cabd;
  border-bottom: 1px solid #d2cabd;
  transition: .3s ease;
}
.service-card:hover { background: white; transform: translateY(-4px); box-shadow: var(--shadow); }
.service-number { color: var(--gold); font-size: 12px; letter-spacing: 2px; }
.service-card h3 { margin: 75px 0 18px; font-size: 30px; }
.service-card p { color: #68635b; font-size: 14px; }

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0d0d0d;
}
.about-image { min-height: 690px; }
.about-image img { height: 100%; object-fit: cover; }
.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9vw;
}
.about-copy p { color: #aaa; }
.text-link {
  margin-top: 20px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
}

.testimonial-section {
  padding: 110px 8vw;
  text-align: center;
  background: var(--cream);
  color: #171717;
}
.testimonial { max-width: 900px; margin: auto; }
.quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px,5vw,58px);
  line-height: 1.18;
  margin: 0 0 25px;
}
.client { color: #7d7568; text-transform: uppercase; letter-spacing: 2px; font-size: 11px; }

.cta-section {
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 6vw;
  background:
    linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.8)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=85") center/cover;
}
.cta-section h2 { font-size: clamp(46px,6vw,78px); margin-bottom: 30px; }
.compact-cta { min-height: 380px; }

.site-footer {
  padding: 50px 5vw 25px;
  background: #060606;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand strong { font-family: "Cormorant Garamond", serif; font-size: 22px; }
.footer-brand p { margin: 0; color: #777; font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 25px; margin: 35px 0; }
.footer-links a { color: #aaa; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.copyright { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #555; font-size: 11px; }

.page-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 100px 7vw;
  position: relative;
}
.portfolio-hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.25)),
    url("https://images.unsplash.com/photo-1529634806980-85c3dd6d34ac?auto=format&fit=crop&w=1900&q=85") center/cover;
}
.booking-hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.3)),
    url("https://images.unsplash.com/photo-1493863641943-9b68992a8d07?auto=format&fit=crop&w=1900&q=85") center/cover;
}
.page-hero-content { max-width: 760px; }
.page-hero h1 { font-size: clamp(56px,7vw,90px); margin-bottom: 20px; }
.page-hero p:last-child { max-width: 620px; color: rgba(255,255,255,.75); font-size: 17px; }

.portfolio-section { padding: 90px 5vw 110px; background: var(--cream); color: #171717; }
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 45px; }
.filter-btn {
  padding: 11px 18px;
  border: 1px solid #c8c0b4;
  background: transparent;
  color: #5e574d;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}
.filter-btn.active, .filter-btn:hover { background: #181818; color: white; border-color: #181818; }
.album-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.album-card { min-height: 520px; transition: .3s ease; }
.album-card.hidden { display: none; }
.album-open { width: 100%; height: 100%; min-height: 520px; padding: 0; border: 0; background: #111; position: relative; overflow: hidden; color: white; text-align: left; }
.album-open img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.album-open:hover img { transform: scale(1.05); }
.album-open:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.85)); }
.album-overlay { position: absolute; z-index: 2; left: 32px; right: 32px; bottom: 28px; }
.album-overlay p { color: var(--gold-light); text-transform: uppercase; letter-spacing: 2px; font-size: 10px; }
.album-overlay h2 { font-size: 40px; margin: 5px 0 14px; }
.album-overlay span { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; }

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 70px;
  background: rgba(0,0,0,.94);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 1100px; max-height: 82vh; object-fit: contain; }
.lightbox-close {
  position: absolute; right: 28px; top: 20px;
  border: 0; background: transparent; color: white; font-size: 42px;
}
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  border: 0; background: transparent; color: white; font-size: 60px;
}
.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }
.lightbox-counter { position: absolute; bottom: 18px; color: #aaa; font-size: 12px; letter-spacing: 2px; }

.booking-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  padding: 100px 6vw;
  background: var(--cream);
  color: #171717;
}
.booking-info { padding-top: 15px; }
.booking-info > p { color: #6d665d; }
.booking-steps { margin: 40px 0; }
.booking-steps > div { display: flex; gap: 17px; margin-bottom: 22px; }
.booking-steps span {
  flex: 0 0 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid var(--gold); color: #8b6b2f; font-size: 12px;
}
.booking-steps p { margin: 0; color: #716a61; font-size: 14px; }
.booking-steps strong { color: #1a1a1a; }
.contact-card { margin-top: 45px; padding: 25px; background: #171717; color: white; }
.contact-card p { margin-top: 0; color: #aaa; font-size: 13px; }
.contact-card a { display: block; color: var(--gold-light); font-size: 18px; margin-top: 7px; }

.booking-form-wrap {
  padding: 42px;
  background: white;
  box-shadow: 0 20px 60px rgba(0,0,0,.10);
}
.form-progress { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin-bottom: 38px; }
.form-progress span { height: 3px; background: #ded8cf; }
.form-progress span.active { background: var(--gold); }
.form-step { display: none; }
.form-step.active { display: block; }
.step-label { color: #9b8150; text-transform: uppercase; letter-spacing: 2px; font-size: 10px; }
.form-step h2, .form-success h2 { font-size: 40px; margin-bottom: 28px; }
.service-options { display: grid; gap: 12px; margin-bottom: 30px; }
.service-option {
  display: flex; align-items: center; gap: 15px;
  border: 1px solid #ddd5c8;
  padding: 17px;
  cursor: pointer;
  transition: .2s ease;
}
.service-option:hover, .service-option:has(input:checked) { border-color: var(--gold); background: #fbf7ef; }
.service-option input { accent-color: var(--gold); }
.service-option strong, .service-option small { display: block; }
.service-option small { color: #7b746b; margin-top: 4px; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.booking-form label { display: block; color: #4a453f; font-size: 12px; font-weight: 600; letter-spacing: .3px; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 13px;
  border: 1px solid #d8d0c5;
  background: #fff;
  color: #1d1d1d;
  outline: none;
}
.booking-form textarea { resize: vertical; margin-bottom: 20px; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(199,163,90,.13); }
.form-actions { display: flex; justify-content: space-between; gap: 15px; margin-top: 28px; }
.form-success { display: none; text-align: center; padding: 45px 10px; }
.form-success.active { display: block; }
.success-icon {
  width: 70px; height: 70px; display: grid; place-items: center;
  margin: 0 auto 24px; border-radius: 50%; background: #eee5d4; color: #8b6b2f; font-size: 30px;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute; top: 88px; left: 0; right: 0;
    padding: 24px 5vw;
    background: #0b0b0b;
    flex-direction: column; align-items: flex-start; gap: 20px;
  }
  .main-nav.open { display: flex; }
  .feature-grid { grid-template-columns: 1fr; grid-template-rows: 500px 320px 320px; }
  .feature-large { grid-row: auto; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .about-section { grid-template-columns: 1fr; }
  .about-image { min-height: 520px; }
  .album-grid { grid-template-columns: 1fr; }
  .booking-section { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { min-height: 76px; padding: 0 20px; }
  .main-nav { top: 76px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand strong { font-size: 18px; }
  .hero { padding: 130px 22px 75px; }
  .hero h1 { font-size: 56px; }
  .hero-copy { font-size: 16px; }
  .section { padding: 80px 22px; }
  .feature-grid { grid-template-rows: 440px 300px 300px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card h3 { margin-top: 40px; }
  .about-copy { padding: 75px 24px; }
  .page-hero { min-height: 470px; padding: 90px 24px 60px; }
  .page-hero h1 { font-size: 54px; }
  .portfolio-section { padding: 70px 18px; }
  .album-card, .album-open { min-height: 420px; }
  .album-overlay h2 { font-size: 34px; }
  .lightbox { padding: 50px 15px; }
  .lightbox-arrow { font-size: 44px; }
  .booking-section { padding: 70px 18px; gap: 45px; }
  .booking-form-wrap { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .btn { width: 100%; }
}
