/* Ishtar's Image - Boudoir Photo and Video
   Brand: deep crimson, black, warm gold, cream. Elegant serif + light sans. */

@font-face {
  font-family: 'CC Goth Chic';
  src: url('../assets/fonts/CCGothChicBlack W00 Regular.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CC Goth Chic Dark';
  src: url('../assets/fonts/CCGothChicDark W00 Regular.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Didact Gothic';
  src: url('../assets/fonts/DidactGothic-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Didact Gothic';
  src: url('../assets/fonts/DidactGothic.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #0c0a0a;
  --near-black: #171314;
  --charcoal: #2a2325;
  --cream: #faf6f2;
  --white: #ffffff;
  --red: #8a1024;
  --red-deep: #5c0a18;
  --red-light: #b8324a;
  --gold: #edc6a4;
  --gold-soft: #f6e2d1;
  --text-dim: #6f6567;
  --radius: 2px;
  --shadow: 0 20px 50px rgba(12, 10, 10, 0.18);
  --ff-serif: 'CC Goth Chic', 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --ff-serif-dark: 'CC Goth Chic Dark', 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'Didact Gothic', 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--near-black);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--ff-serif-dark);
  font-weight: 600;
  color: var(--black);
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}
.hero h1, .hero h2, .hero h3, .hero h4 {
  font-family: var(--ff-serif);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--ff-sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.9em;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 10, 10, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(237, 198, 164, 0.25);
}
.nav-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 34px; height: 34px; }
.brand-text {
  font-family: var(--ff-serif);
  color: var(--cream);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}
.nav-links { list-style: none; display: flex; gap: 26px; margin: 0; padding: 0; }
.nav-links a {
  color: var(--cream);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  opacity: 0.82;
  transition: opacity 0.2s, color 0.2s;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  opacity: 1;
  color: var(--gold-soft);
  border-bottom-color: var(--gold);
}
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-soft) !important;
  padding: 9px 20px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.4rem;
  cursor: pointer;
}
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--near-black);
  padding: 10px 24px 20px;
}
.nav-drawer a {
  color: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid rgba(237, 198, 164, 0.15);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.nav-drawer.open { display: flex; }
.nav-drawer .btn { margin-top: 14px; text-align: center; }

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-outline { border-color: var(--gold); color: var(--black); }
.btn-outline:hover { background: var(--gold); }
.btn-red-gold { background: var(--red); color: var(--gold); border-color: var(--red); }
.btn-red-gold:hover { background: var(--red-deep); border-color: var(--red-deep); color: var(--gold-soft); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 100px 0 110px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(138, 16, 36, 0.14), transparent 60%),
    linear-gradient(180deg, var(--black) 0%, var(--near-black) 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at top, rgba(138, 16, 36, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(12, 10, 10, 0.72) 0%, rgba(23, 19, 20, 0.82) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero .btn-outline { color: var(--gold); }
.hero .btn-outline:hover { color: var(--black); }
.hero-emblem { width: 384px; max-width: 70%; margin: 0 auto 57px; opacity: 0.9; }
.hero:has(.hero-emblem) { padding-top: 75px; }
.hero h1 { color: var(--white); }
.hero .tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gold-soft);
  margin-bottom: 1.4em;
}
.hero .lede { max-width: 640px; margin: 0 auto 2em; color: rgba(250, 246, 242, 0.85); }
.hero .eyebrow { margin-top: 1.6em; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.band { background: var(--black); color: var(--cream); text-align: center; }
.band h2 { color: var(--white); }
.band p { color: rgba(250, 246, 242, 0.78); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head.tight { margin-bottom: 40px; }
.divider { width: 46px; height: 1px; background: var(--gold); margin: 0 auto 20px; }

/* ---------- Grids / Cards ---------- */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid rgba(12, 10, 10, 0.08);
  padding: 36px 30px;
  border-radius: var(--radius);
  transition: box-shadow 0.25s, transform 0.25s;
}
.pricing-col { display: flex; flex-direction: column; }
.pricing-col .mt-lg { margin-top: auto; padding-top: 20px; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.price {
  font-family: var(--ff-serif);
  color: var(--red);
  font-size: 1.8rem;
  margin: 0.2em 0 0.5em;
}

.photo-frame {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #2a2325, #0c0a0a);
  position: relative;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame.clickable {
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.photo-frame.clickable:hover,
.photo-frame.clickable:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.gallery-link { display: block; text-decoration: none; color: inherit; }
.gallery-link .photo-frame { margin-bottom: 14px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.gallery-link:hover .photo-frame, .gallery-link:focus-visible .photo-frame {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.gallery-link h3 { text-align: center; margin-bottom: 4px; }
.gallery-link .gallery-count { display: block; text-align: center; color: var(--text-dim); font-size: 0.8rem; }
.photo-frame.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gold-soft);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.9rem;
  padding: 20px;
  border: 1px solid rgba(237, 198, 164, 0.35);
}

/* ---------- Treasure Box alternating mosaic ---------- */
.treasure-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: clamp(100px, 9vw, 150px);
  gap: 16px;
  margin-top: 40px;
}
.treasure-mosaic .photo-frame { aspect-ratio: auto; margin-bottom: 0; }
.treasure-mosaic .cell-hero { grid-column: 1 / -1; grid-row: span 3; }
.treasure-mosaic .cell-tall-a { grid-column: 1; grid-row: span 4; }
.treasure-mosaic .cell-short-b { grid-column: 2; grid-row: span 2; }
.treasure-mosaic .cell-short-c { grid-column: 2; grid-row: span 2; }
.treasure-mosaic .cell-short-d { grid-column: 1; grid-row: span 2; }
.treasure-mosaic .cell-tall-e { grid-column: 2; grid-row: span 4; }
.treasure-mosaic .cell-short-f { grid-column: 1; grid-row: span 2; }
@media (max-width: 640px) {
  .treasure-mosaic { grid-template-columns: 1fr; }
  .treasure-mosaic .cell-hero,
  .treasure-mosaic .cell-tall-a,
  .treasure-mosaic .cell-short-b,
  .treasure-mosaic .cell-short-c,
  .treasure-mosaic .cell-short-d,
  .treasure-mosaic .cell-tall-e,
  .treasure-mosaic .cell-short-f {
    grid-column: 1;
    grid-row: span 3;
  }
}

/* ---------- Pillars (Love / Divine Authority / Ferocity) ---------- */
.pillar {
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
  aspect-ratio: 2 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pillar-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 35%, rgba(12, 10, 10, 1) 100%);
  z-index: -1;
}
.pillar h3 { color: var(--gold-soft); }
.pillar p { color: rgba(250, 246, 242, 0.85); }

/* ---------- Treasures Teaser (home) ---------- */
.treasures-teaser {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}
.treasures-teaser .section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.treasures-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 10, 0.62) 0%, rgba(12, 10, 10, 0.85) 100%);
  z-index: -1;
}
.treasures-teaser h2 { color: var(--white); }
.treasures-teaser p { color: rgba(250, 246, 242, 0.85); }
.treasures-teaser .btn-outline { color: var(--gold); border-color: var(--gold); }
.treasures-teaser .btn-outline:hover { color: var(--black); background: var(--gold); }

/* ---------- Quickbar / Contact ---------- */
.quickbar { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.quick-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: rgba(250, 246, 242, 0.04);
  border: 1px solid rgba(237, 198, 164, 0.3);
  padding: 16px 30px 16px 14px;
  border-radius: var(--radius);
  min-width: 230px;
  transition: border-color 0.2s, background 0.2s;
}
.quick-btn:hover { border-color: var(--gold); background: rgba(237, 198, 164, 0.08); }
.quick-btn strong { display: block; color: var(--cream); font-size: 0.95rem; }
.quick-btn small { color: rgba(250, 246, 242, 0.6); font-size: 0.78rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; color: var(--charcoal); }
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(12, 10, 10, 0.18);
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--near-black);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); }
textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--text-dim); margin-top: 6px; }
.referral-box {
  background: rgba(237, 198, 164, 0.14);
  border: 2px solid var(--gold);
  padding: 22px 24px;
  border-radius: var(--radius);
}
.referral-box label { color: var(--red); }
.referral-box input { background: var(--white); }
fieldset { border: none; padding: 0; margin: 0; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input { width: auto; margin-top: 4px; }
.checkbox-row label { text-transform: none; letter-spacing: normal; margin-bottom: 0; font-size: 0.88rem; }

/* ---------- Video Embed ---------- */
.video-embed {
  aspect-ratio: 16 / 9;
  max-width: 760px;
  margin: 0 auto 48px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
}
.video-embed iframe { width: 100%; height: 100%; display: block; border: 0; }

/* ---------- FAQ Accordion ---------- */
.faq-item { border-bottom: 1px solid rgba(12, 10, 10, 0.1); padding: 22px 0; }
.faq-item summary {
  cursor: pointer;
  font-family: var(--ff-serif-dark);
  font-size: 1.35rem;
  color: var(--black);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 1.3rem; margin-left: 16px; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin-top: 14px; color: var(--charcoal); }

/* ---------- Blog ---------- */
.post-card { border-bottom: 1px solid rgba(12,10,10,0.1); padding: 34px 0; display: grid; grid-template-columns: 160px 1fr; gap: 28px; }
.post-card .post-tag { color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.7rem; }
@media (max-width: 640px) { .post-card { grid-template-columns: 1fr; } }
article.post h1 { margin-bottom: 0.3em; }
article.post .post-meta { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 2em; }
article.post h2 { margin-top: 1.6em; font-size: 1.4rem; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(12, 10, 10, 0.08);
  padding: 36px 30px;
  border-radius: var(--radius);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-quote { font-family: var(--ff-serif); font-style: italic; font-size: 1.05rem; line-height: 1.65; color: var(--near-black); margin-bottom: 18px; }
.testimonial-attribution { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.testimonial-attribution strong { color: var(--red); font-style: normal; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-photo {
  width: 180px; height: 180px; border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--charcoal), var(--black));
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gold);
  font-family: var(--ff-serif); color: var(--gold-soft); font-size: 1.6rem;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-role { color: var(--red); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.75rem; margin-bottom: 10px; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(250, 246, 242, 0.75); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 30px; }
.footer-brand span { font-family: var(--ff-serif); color: var(--cream); font-size: 1.1rem; }
.footer-col h4 { color: var(--gold-soft); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul.col-2 { column-count: 2; column-gap: 24px; }
.footer-col li { margin-bottom: 10px; break-inside: avoid; }
.footer-col a:hover { color: var(--gold-soft); }
.legal-notice { border-top: 1px solid rgba(237, 198, 164, 0.15); padding-top: 24px; font-size: 0.78rem; color: rgba(250, 246, 242, 0.55); }
.copyright { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 24px; font-size: 0.78rem; color: rgba(250, 246, 242, 0.5); }
.copyright a { text-decoration: underline; }
.copyright a:hover { color: var(--gold-soft); }

/* ---------- Sticky book bar (mobile) ---------- */
.sticky-book { display: none; }
@media (max-width: 720px) {
  .sticky-book {
    display: block;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: var(--black);
    padding: 12px 16px;
    border-top: 1px solid var(--gold);
  }
  .sticky-book .btn { width: 100%; }
  body { padding-bottom: 64px; }
}

/* ---------- Lightbox ---------- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(12, 10, 10, 0.94);
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  line-height: 1;
}
.lightbox-close {
  top: 22px;
  right: 28px;
  font-size: 2.2rem;
}
.lightbox-prev, .lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 3rem;
  padding: 10px 18px;
}
.lightbox-prev { left: 6px; }
.lightbox-next { right: 6px; }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold-soft); }
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { font-size: 2.1rem; padding: 8px 10px; }
  .lightbox-close { top: 14px; right: 16px; font-size: 1.9rem; }
}

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }
.muted { color: var(--text-dim); }
