/* ============================================
   SELAH ARTISTRY — Layout
   ============================================ */

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--charcoal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
}
.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(44, 44, 44, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor  { width: 12px; height: 12px; background: var(--accent); }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 44px; height: 44px; border-color: var(--accent); }


/* ── NAVIGATION ──
   Scoped to #mainNav so the footer's <nav class="footer-links">
   is NOT affected by the fixed positioning below. */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  transition: background 0.5s, padding 0.4s, border-color 0.5s;
}
#mainNav.scrolled {
  background: rgba(232, 228, 220, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 60px;
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav-logo em {
  font-style: italic;
  font-weight: 300;
}
.nav-logo .nav-sub {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
  text-align: center;
}

.nav-links {
  display: flex;
  gap: 44px;
}
.nav-links a {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--charcoal);
  transition: width var(--duration) var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-book {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--charcoal);
  transition: background var(--duration), color var(--duration);
}
.nav-book:hover {
  background: var(--charcoal);
  color: var(--beige);
}


/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 60px 80px;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--beige-dark);
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--beige-dark) 0%, #C8BFB0 100%);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
/* Soft scrim — anchors the scroll hint + monogram and adds depth */
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(44,44,44,0.10) 0%, transparent 30%, rgba(44,44,44,0.22) 100%);
  pointer-events: none;
}
.hero-right-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.07;
  background-image: radial-gradient(circle at 1px 1px, var(--charcoal) 1px, transparent 0);
  background-size: 32px 32px;
}
.hero-brand-mark {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-brand-mark span {
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
  opacity: 0.42;
  mix-blend-mode: soft-light;
  line-height: 1;
  user-select: none;
}
.hero-scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 80px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll-hint span {
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: var(--warm-white);
  text-shadow: 0 1px 8px rgba(44,44,44,0.35);
}
.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 60px;
  background: var(--warm-white);
  display: block;
  animation: lineGrow 1.5s 1.8s forwards;
  transform: scaleY(0);
  transform-origin: top;
}


/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: var(--warm-white);
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 20px;
}
.marquee-item::after {
  content: '✦';
  font-size: 0.45rem;
}


/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.about-visual {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(44,44,44,0.72) 0%, rgba(44,44,44,0.82) 100%);
}
.about-visual-bg {
  position: absolute;
  inset: 0;
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 260px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  line-height: 1;
}
.about-quote {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.55;
  text-align: center;
}
.about-quote cite {
  display: block;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--accent);
  opacity: 0.8;
}

.about-text {
  padding: 80px 80px 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-body {
  font-size: var(--text-base);
  line-height: 1.9;
  color: var(--charcoal-light);
  margin-bottom: 20px;
  max-width: 460px;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  line-height: 1;
}
.stat-label {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
}


/* ── SERVICES ── */
.services {
  padding: var(--section-pad);
}
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.services-note {
  font-size: var(--text-base);
  color: var(--charcoal-light);
  max-width: 260px;
  line-height: 1.7;
  text-align: right;
}

.service-category { margin-bottom: var(--space-xl); }

.cat-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  cursor: none;
  transition: padding-left var(--duration) var(--ease);
}
.cat-header:hover { padding-left: 8px; }

.cat-toggle {
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.45s var(--ease);
  line-height: 1;
}
.cat-toggle.open { transform: rotate(45deg); }

.cat-items {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.65s var(--ease);
}
.cat-items.open { max-height: 1200px; }

.service-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left var(--duration) var(--ease), background var(--duration);
}
.service-item:hover { padding-left: 16px; }

.service-name {
  font-size: var(--text-base);
  letter-spacing: 0.06em;
}
.service-sub {
  font-size: var(--text-base);
  color: var(--accent);
  margin-top: 6px;
}
.service-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
}


/* ── PRICING CARDS ── */
.pricing {
  padding: var(--section-pad);
  background: var(--warm-white);
}
.pricing-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.pricing-sub {
  font-size: var(--text-base);
  color: var(--charcoal-light);
  letter-spacing: 0.05em;
  margin-top: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.price-card {
  background: var(--warm-white);
  padding: 48px 40px;
  transition: background 0.45s var(--ease);
}
.price-card:hover { background: var(--charcoal); }
.price-card:hover .pc-name,
.price-card:hover .pc-price-val { color: var(--warm-white); }
.price-card:hover .pc-desc,
.price-card:hover .pc-trial { color: rgba(255,255,255,0.5); }
.price-card:hover .pc-divider { border-color: rgba(255,255,255,0.1); }
.price-card:hover .pc-badge { background: var(--accent); color: var(--warm-white); }
.price-card:hover .pc-price-label { color: rgba(154,136,120,0.8); }

.pc-badge {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--beige-dark);
  color: var(--accent);
  margin-bottom: 28px;
  transition: background var(--duration), color var(--duration);
}
.pc-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: 10px;
  transition: color var(--duration);
}
.pc-desc {
  font-size: var(--text-sm);
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 28px;
  transition: color var(--duration);
}
.pc-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin-bottom: 28px;
  transition: border-color var(--duration);
}
.pc-price-val {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  line-height: 1;
  transition: color var(--duration);
}
.pc-price-label {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
  transition: color var(--duration);
}
.pc-trial {
  font-size: var(--text-sm);
  color: var(--charcoal-light);
  margin-top: 12px;
  transition: color var(--duration);
}


/* ── GALLERY ── */
.gallery {
  padding: var(--section-pad);
}
.gallery-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.gallery-header .section-label { justify-content: center; }
.gallery-note {
  font-size: var(--text-base);
  color: var(--charcoal-light);
  line-height: 1.7;
  max-width: 460px;
  margin: 16px auto 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 300px;
  gap: 2px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--beige-dark);
}
.gallery-item--tall {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1s var(--ease-out), filter var(--duration);
  filter: saturate(0.95);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}
/* Anchor crop to the lower part of the frame (eyeshadow palette in foreground) */
.gallery-item--focus-bottom img { object-position: center bottom; }
/* Editorial caption — scrim + label that lifts in on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(44,44,44,0.55) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-cap {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--warm-white);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease-out);
}
.gallery-item:hover .gallery-cap {
  opacity: 1;
  transform: translateY(0);
}
.gallery-cap-no {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--beige);
}
.gallery-cap-text {
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}


/* ── BOOKING ── */
.booking {
  padding: var(--section-pad);
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: 'Book';
  font-family: var(--font-display);
  font-size: 30vw;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  bottom: -5vw; right: -5vw;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.booking-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.booking-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 52px;
}
.booking-title em { font-style: italic; }

.booking-form { display: flex; flex-direction: column; gap: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 1px;
}
.form-full { grid-column: 1 / -1; }

.form-field {
  background: rgba(255, 255, 255, 0.05);
  padding: 22px 28px;
  transition: background var(--duration);
}
.form-field:focus-within { background: rgba(255, 255, 255, 0.09); }

.form-field label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  outline: none;
  color: var(--warm-white);
  font-size: var(--text-base);
  font-weight: 300;
  width: 100%;
  caret-color: var(--accent);
}
.form-field input::placeholder { color: rgba(255,255,255,0.2); }
.form-field input[type="date"] { color-scheme: dark; }
.form-field select { cursor: none; }
.form-field select option { background: var(--charcoal); color: var(--warm-white); }
.form-field textarea {
  resize: none;
  height: 90px;
  line-height: 1.7;
}

.form-submit {
  margin-top: 2px;
  background: var(--beige);
  color: var(--charcoal);
  border: none;
  padding: 22px 64px;
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: none;
  transition: background var(--duration), color var(--duration);
  align-self: flex-start;
}
.form-submit:hover { background: var(--accent); color: var(--warm-white); }
.form-submit.sent { background: #6B8F71; color: var(--warm-white); pointer-events: none; }
.form-submit:disabled { opacity: 0.7; }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-top: 2px;
}
.form-actions .form-submit { margin-top: 0; }

/* Secondary: WhatsApp — outlined to sit beside the primary email button */
.form-submit--wa {
  margin-top: 0;
  background: transparent;
  color: var(--beige);
  border: 1px solid rgba(245, 243, 239, 0.3);
}
.form-submit--wa:hover { background: var(--beige); color: var(--charcoal); }


/* ── CONTACT ── */
.contact {
  padding: var(--section-pad);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 44px;
}
.contact-info-title em { font-style: italic; }

.contact-items { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; flex-direction: column; gap: 6px; }
.ci-label {
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.ci-value { font-size: var(--text-base); }
.ci-value a { transition: color var(--duration); }
.ci-value a:hover { color: var(--accent); }

.social-row {
  display: flex;
  gap: 24px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.social-link {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration), color var(--duration);
}
.social-link:hover { color: var(--accent); border-color: var(--accent); }

.contact-panel {
  background: var(--beige-dark);
  border: 1px solid var(--line);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-panel-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
}
.contact-panel p {
  font-size: var(--text-base);
  color: var(--charcoal-light);
  line-height: 1.85;
}
.contact-panel .btn-primary {
  align-self: flex-start;
}


/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 36px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--beige);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
}
.footer-copy {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--charcoal-light);
}
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  transition: color var(--duration);
}
.footer-links a:hover { color: var(--charcoal); }


/* ── SHARED UTILITY ── */
.section-label {
  font-size: var(--text-xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
}
.section-heading em { font-style: italic; }

.btn-primary {
  display: inline-block;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: var(--charcoal);
  color: var(--beige);
  border: 1px solid var(--charcoal);
  transition: background var(--duration), color var(--duration);
}
.btn-primary:hover { background: transparent; color: var(--charcoal); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.btn-ghost::after { content: '→'; transition: transform var(--duration); }
.btn-ghost:hover::after { transform: translateX(5px); }


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  :root { --section-pad: var(--section-pad-mobile); }

  #mainNav { padding: 20px 24px; }
  #mainNav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }

  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 140px 24px 60px; }
  .hero-right { display: none; }

  .about { grid-template-columns: 1fr; }
  .about-visual { min-height: 280px; padding: 48px 24px; }
  .about-text { padding: 60px 24px; }

  .services { padding: var(--section-pad-mobile); }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-note { text-align: left; max-width: 100%; }

  .pricing { padding: var(--section-pad-mobile); }
  .pricing-grid { grid-template-columns: 1fr; }

  .gallery { padding: var(--section-pad-mobile); }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-item--tall { grid-row: span 1; }

  .booking { padding: var(--section-pad-mobile); }
  .form-row { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; }
  .form-actions .form-submit { width: 100%; text-align: center; }

  .contact { padding: var(--section-pad-mobile); }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }

  footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
