:root {
  --navy: #12141f;
  --navy-2: #1b1e2e;
  --gold: #8ec5d6;
  --gold-light: #bfe0ee;
  --cream: #f4f1ea;
  --muted: #b9bacb;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.15; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1rem; color: var(--muted); }

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.center { text-align: center; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(18, 20, 31, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(142, 197, 214, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.main-nav a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  transition: color 0.2s;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.4rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s;
  border: 1px solid var(--gold);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

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

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

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

/* Hero */
.hero {
  padding: 6rem 0;
  background: radial-gradient(ellipse at top, var(--navy-2), var(--navy) 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy { font-size: 1.05rem; max-width: 520px; }

.hero-photo-wrap {
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(142, 197, 214, 0.35);
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { margin: 0 auto 2.25rem; }
  .hero-photo { max-width: 280px; }
}

/* Sections generally */
section { padding: 6rem 0; }

.services, .pricing, .faq { background: var(--navy); }
.reviews, .backdrops { background: var(--navy-2); }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(142, 197, 214, 0.2);
  padding: 2rem;
  border-radius: 4px;
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

.price-card {
  text-align: center;
}

.price-card.featured {
  border-color: var(--gold);
  background: rgba(142, 197, 214, 0.06);
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.starting {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.addons {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(142, 197, 214, 0.2);
  padding-top: 2.5rem;
}

.addons ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
}

.addons li {
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.addons-note {
  margin-top: 1.5rem;
  color: var(--gold-light);
  font-style: italic;
}

/* Why choose us */
.why-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.why-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(142, 197, 214, 0.25);
}

.why-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--cream);
}

.why-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Reviews */
.review-card p:first-child {
  font-style: italic;
  color: var(--cream);
}

.review-name {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

details {
  border-bottom: 1px solid rgba(142, 197, 214, 0.2);
  padding: 1.25rem 0;
}

summary {
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--cream);
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  float: right;
  color: var(--gold);
}

details[open] summary::after { content: "–"; }

details p {
  margin-top: 1rem;
}

/* Backdrops */
.backdrop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.backdrop-item p {
  text-align: center;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.backdrop-swatch {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  background: linear-gradient(160deg, var(--navy-2), rgba(142,197,214,0.25));
  border: 1px solid rgba(142, 197, 214, 0.25);
}

.note-small {
  margin-top: 2rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Contact */
.contact-inner { max-width: 640px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

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

label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

input, textarea {
  font-family: 'Jost', sans-serif;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(142, 197, 214, 0.25);
  border-radius: 2px;
  padding: 0.7rem 0.85rem;
  color: var(--cream);
  font-size: 0.95rem;
}

input:focus, textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.contact-form button { align-self: flex-start; border: none; cursor: pointer; }

.contact-email {
  margin-top: 2rem;
  text-align: center;
}

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

/* Footer */
.site-footer {
  border-top: 1px solid rgba(142, 197, 214, 0.15);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

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

.footer-nav a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.footer-inner p {
  font-size: 0.8rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 860px) {
  .card-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .addons ul { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    display: none;
    border-bottom: 1px solid rgba(142, 197, 214, 0.15);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
