/* ==========================================================================
   iRepresent Businesses LTD — Design System
   Palette: warm paper / ink / refined gold / oxblood
   Display: Oswald | Body: Inter | Utility/labels: JetBrains Mono
   Signature: waveform/EQ-bar motif (audio production identity)
   ========================================================================== */

:root {
  --paper:      #FAF7F0;
  --paper-deep: #F2ECDD;
  --card:       #EDE6D6;
  --ink:        #15120F;
  --ink-soft:   #4A4438;
  --gold:       #C9952C;
  --gold-soft:  #E0B65C;
  --gold-line:  rgba(201, 149, 44, 0.35);
  --oxblood:    #7A1F1F;
  --oxblood-soft: #9C3535;
  --line:       rgba(21, 18, 15, 0.12);

  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --max-width: 1240px;
  --radius: 2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* offset for sticky header */
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  /* Show first slide statically when motion is reduced */
  .hero-visual .slide:first-of-type { opacity: 1; z-index: 2; }
}

body {
  font-family: var(--font-body);
  background: linear-gradient(170deg, #FAF7F0 0%, #F2E9D8 100%);
  background-attachment: fixed;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  overflow-x: hidden;
}

/* No body scroll-lock — overflow:hidden on body also interferes with fixed children on mobile */

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

/* Logo image in header */
.logo-img {
  height: 54px;
  width: auto;
  display: block;
  background: var(--paper);
  border-radius: 4px;
  padding: 3px 6px;
  /* Solid backing (not mix-blend-mode) so the logo stays visible against the
     sticky header's translucent, blurred backdrop — e.g. the dark hero image
     that sits directly under the header at the top of every page. */
}

/* Logo mark image in footer */
.footer-logo-img {
  height: 46px;
  width: auto;
  display: block;
  border-radius: 4px;
}

/* Images inside hero-visual — base styles cover both single image and slideshow */
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.7s ease;
}

/* Single image (non-slideshow pages like About) — always visible */
.hero-visual img:only-of-type {
  opacity: 1;
}

/* Active slideshow slide */
.hero-visual img.active {
  opacity: 1;
  z-index: 2;
  animation: hero-zoom 5.5s ease-out forwards;
}

/* Waveform sits above all slides */
.hero-visual .waveform {
  z-index: 3;
}

@keyframes hero-zoom {
  from { transform: scale(1);    }
  to   { transform: scale(1.12); }
}

/* Studio photo gallery */
.studio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 56px;
}
.studio-gallery img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.studio-gallery img:hover {
  transform: scale(1.025);
  box-shadow: 0 14px 36px rgba(21,18,15,0.14);
}
@media (max-width: 640px) {
  .studio-gallery { grid-template-columns: 1fr 1fr; }
}

/* Artist photo strip */
.artist-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.artist-strip img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
@media (max-width: 640px) {
  .artist-strip { grid-template-columns: 1fr 1fr; }
}

/* Scrollable variant — horizontal strip instead of a fixed grid */
.artist-strip.artist-strip-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-line) transparent;
}
.artist-strip.artist-strip-scroll img {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
}
.artist-strip.artist-strip-scroll::-webkit-scrollbar { height: 6px; }
.artist-strip.artist-strip-scroll::-webkit-scrollbar-track { background: transparent; }
.artist-strip.artist-strip-scroll::-webkit-scrollbar-thumb { background: var(--gold-line); border-radius: 6px; }
@media (max-width: 640px) {
  .artist-strip.artist-strip-scroll { grid-template-columns: unset; }
  .artist-strip.artist-strip-scroll img { width: 200px; }
}

/* Pricing packages — coded package cards (replaces old flyer-image slider) */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(150deg, #F4EBD9 0%, #EAE0CC 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.package-card.featured { border-color: var(--gold); }

.package-badge {
  position: absolute;
  top: -12px;
  right: 22px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.package-name { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 6px; }

.package-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--oxblood);
  margin-bottom: 14px;
}
.package-price span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}

.package-tagline { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 16px; }

.package-features { list-style: none; padding: 0; margin: 0 0 6px; font-size: 0.88rem; flex-grow: 1; }
.package-features li {
  padding: 7px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.package-features li:first-child { border-top: none; }
.package-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: 7px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Selectable mode — cards double as radio inputs on the booking page */
label.package-card { cursor: pointer; }
.package-card input[type="radio"] {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 18px;
  height: 18px;
  accent-color: var(--oxblood);
}
.package-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}
.package-card:has(input:checked) {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}

.package-card-custom { justify-content: center; text-align: center; }
.package-card-custom .package-name { margin-top: 6px; }

.package-card:not(label):hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(21,18,15,0.12);
  border-color: var(--gold-line);
}

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

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

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

p { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--oxblood);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.lede {
  font-size: 1.05rem;
  max-width: 56ch;
}

/* ---------- Focus states (a11y) ---------- */

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--oxblood);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */

.btn {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,149,44,0.35); }

.btn-ink {
  background: var(--ink);
  color: var(--paper);
}
.btn-ink:hover { background: #2a241c; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

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

.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(250,247,240,0.95) 0%, rgba(244,235,217,0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
}

.logo-mark {
  width: 46px;
  height: 46px;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
}

.logo-text { line-height: 1.1; }
.logo-text .main { font-size: 1.15rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; }
.logo-text .sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--oxblood);
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

/* Slightly narrower desktop widths — tighten spacing so a longer nav still fits
   before the layout switches to the mobile hamburger menu at 880px. */
@media (max-width: 1240px) {
  .nav-links { gap: 18px; font-size: 0.76rem; }
}

/* ---------- Nav "Company" dropdown ---------- */

.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  background: none;
  border: none;
  padding: 6px 0;
  margin: 0;
  font: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 0.2s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active,
.nav-dropdown.open .nav-dropdown-toggle { color: var(--ink); }
.nav-dropdown-toggle.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

.nav-dropdown-arrow { width: 12px; height: 12px; flex-shrink: 0; transition: transform 0.2s ease; }
.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 180px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(21,18,15,0.16);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 50;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  padding: 10px 14px;
  border-radius: 4px;
  white-space: nowrap;
  color: #000;
}
.nav-dropdown-menu a:hover { background: var(--paper-deep); }

.header-cta { display: flex; align-items: center; gap: 16px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--ink);
  transition: all 0.25s ease;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 22px; }

.menu-toggle.open span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* ---------- Mobile nav ---------- */

@media (max-width: 880px) {

  /*
   * CRITICAL: backdrop-filter on the header makes it the containing block for
   * position:fixed descendants in Chrome, so the nav gets sized relative to the
   * 84px header instead of the full viewport. Remove it on mobile so the nav
   * fixes to the viewport correctly.
   */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: linear-gradient(90deg, #FAF7F0 0%, #F4EBD9 100%);
  }

  .nav-links {
    /* Fixed to the full viewport, not the header */
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    bottom: 0;

    /* Vertical stack, left-aligned */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;

    background: var(--paper);
    border-top: 2px solid var(--gold-line);
    padding: 0;
    overflow-y: auto;

    /* Hidden off-screen to the right */
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);

    z-index: 500;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  /* Full-width tap targets */
  .nav-links a {
    display: block;
    width: 100%;
    margin-right: 0;
    padding: 18px 28px;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    color: var(--ink);
  }

  .nav-links a:hover     { background: var(--paper-deep); }
  .nav-links a.active    { color: var(--oxblood); border-left: 3px solid var(--gold); padding-left: 25px; }

  .header-cta .btn-text  { display: none; }
  .menu-toggle           { display: block; }

  /* "Company" dropdown becomes an inline accordion on mobile, matching the
     full-width row style of the rest of the nav instead of a floating card. */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 18px 28px;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    color: var(--ink);
  }
  .nav-dropdown-toggle:hover { background: var(--paper-deep); }
  .nav-dropdown-toggle.active { color: var(--oxblood); }
  .nav-dropdown-toggle.active::after { display: none; }

  .nav-dropdown-menu {
    all: unset;
    display: none;
    box-sizing: border-box;
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    transform: none;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--paper-deep);
    padding: 0;
    margin: 0;
    gap: 0;
    z-index: auto;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  .nav-dropdown-menu a,
  .nav-dropdown-menu a:link,
  .nav-dropdown-menu a:visited,
  .nav-dropdown-menu a.active {
    all: unset;
    box-sizing: border-box;
    display: block;
    width: 100%;
    white-space: normal;
    padding: 16px 28px 16px 44px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: #000 !important;
    font-family: var(--font-mono);
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    cursor: pointer;
  }
  .nav-dropdown-menu a.active { border-left: 3px solid var(--gold); padding-left: 41px; }
}

/* ---------- Waveform signature ---------- */

.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
}
.waveform span {
  width: 4px;
  background: var(--gold);
  border-radius: 1px;
  animation: bar-pulse 1.2s ease-in-out infinite;
}
.waveform span:nth-child(odd) { background: var(--oxblood); }

@keyframes bar-pulse {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

.waveform-divider {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 80px;
  width: 100%;         /* fills its container — no overflow */
  overflow: hidden;
}
.waveform-divider span {
  flex: 1;             /* each bar shares available width equally */
  min-width: 2px;
  max-width: 8px;
  background: linear-gradient(to top, var(--gold), var(--gold-soft));
  border-radius: 2px 2px 0 0;
  transform-origin: bottom center;
  animation: wave-bar 2s ease-in-out infinite;
}

/* Travelling sine-wave: bars animate in sequence via negative delay in JS */
@keyframes wave-bar {
  0%, 100% { transform: scaleY(0.1);  opacity: 0.55; }
  50%       { transform: scaleY(1);   opacity: 1;    }
}

/* ---------- Hero ---------- */

.hero {
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 75% -15%, rgba(201,149,44,0.11) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 0% 110%, rgba(122,31,31,0.07) 0%, transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold); -webkit-text-stroke: 1px var(--ink); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat { margin-right: 40px; }
.hero-stat:last-child { margin-right: 0; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ink);
}
.hero-stat .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
  background: var(--ink);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-visual .placeholder-label {
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
  border: 1px dashed var(--gold-line);
}
.hero-visual .waveform { position: absolute; bottom: 28px; left: 28px; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; aspect-ratio: 16/10; }
}

@media (max-width: 540px) {
  .hero-stats { flex-direction: column; gap: 22px; }
  .hero-stat { margin-right: 0; }
}

/* ---------- Sections ---------- */

section { padding: 90px 0; }
.section-alt {
  background: linear-gradient(155deg, #F2ECDD 0%, #E8DEC8 100%);
}
.section-dark {
  background: linear-gradient(145deg, #0E0C09 0%, #1D1710 100%);
  color: var(--paper);
}
.section-dark h2, .section-dark h3 { color: var(--paper); }
.section-dark p { color: rgba(250,247,240,0.7); }
.section-dark .eyebrow { color: var(--gold-soft); }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Cards / Grids ---------- */

.grid { display: grid; gap: 28px; }
.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: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: linear-gradient(150deg, #F4EBD9 0%, #EAE0CC 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(21,18,15,0.12);
  border-color: var(--gold-line);
}

.card-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--oxblood);
}
.card-icon svg { width: 24px; height: 24px; }

.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p { font-size: 0.94rem; }
.card ul { margin-top: 14px; padding-left: 0; list-style: none; font-size: 0.9rem; color: var(--ink-soft); }
.card ul li { padding: 6px 0; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.card ul li:first-child { border-top: none; }
.card ul li::before { content: ''; width: 6px; height: 6px; margin-right: 10px; background: var(--gold); flex-shrink: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--oxblood);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.card-link:hover { border-color: var(--oxblood); }

/* ---------- Studio detail strip ---------- */

.studio-strip {
  background: linear-gradient(135deg, #0E0C09 0%, #221A10 100%);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 32px;
  align-items: center;
}
.studio-strip .studio-block .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
  display: block;
}
.studio-strip .studio-block p { color: rgba(250,247,240,0.85); margin: 0 0 4px 0; font-size: 0.95rem; }

@media (max-width: 880px) {
  .studio-strip { grid-template-columns: 1fr; text-align: left; }
}

/* ---------- Forms ---------- */

.form-panel {
  background: linear-gradient(150deg, #F4EBD9 0%, #EAE0CC 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
}
@media (max-width: 480px) {
  .form-panel { padding: 26px 20px; }
}

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 9px;
}
.field .required { color: var(--oxblood); }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 13px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 640px) { .checkbox-grid { grid-template-columns: 1fr; } }

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  cursor: pointer;
}
.checkbox-item input { width: auto; accent-color: var(--oxblood); }

.form-note {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 16px;
}

.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-bottom: 28px;
  font-family: var(--font-mono);
}
.alert-success { background: #E4EFE0; border: 1px solid #7BA77B; color: #2F5230; }
.alert-error { background: #F4E3E3; border: 1px solid var(--oxblood); color: var(--oxblood); }

/* ---------- Process / numbered steps (real sequence) ---------- */

.process { display: flex; flex-direction: column; }
.process-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.process-step:first-child { border-top: none; }
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
}
.process-step h4 { font-size: 1.05rem; margin-bottom: 6px; text-transform: none; font-family: var(--font-body); font-weight: 700; }
.process-step p { font-size: 0.92rem; }

/* ---------- Testimonial / quote ---------- */

.quote-block {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ink);
  max-width: 60ch;
}

/* ---------- Gallery ---------- */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.gallery-filter-btn {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gallery-filter-btn:hover { border-color: var(--gold-line); color: var(--ink); }
.gallery-filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.gallery-hidden { display: none; }

.gallery-item-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--paper);
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
}

/* ---------- FAQ accordion ---------- */

.faq-group { max-width: 780px; margin: 0 auto 56px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 18px;
}

.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-of-type { border-bottom: 1px solid var(--line); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gold-line);
  border-radius: 50%;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.faq-item summary .faq-icon::before,
.faq-item summary .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--oxblood);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item summary .faq-icon::before { width: 10px; height: 1.5px; }
.faq-item summary .faq-icon::after { width: 1.5px; height: 10px; transition: opacity 0.2s ease; }
.faq-item[open] summary .faq-icon { transform: rotate(180deg); border-color: var(--gold); }
.faq-item[open] summary .faq-icon::after { opacity: 0; }

.faq-item .faq-answer { padding: 0 4px 22px; font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(135deg, #6A1A1A 0%, #9C3535 100%);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--paper); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-band p { color: rgba(250,247,240,0.8); }
.cta-band .btn-gold:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.25); }

/* ---------- Footer ---------- */

.site-footer {
  background: linear-gradient(170deg, #0A0805 0%, #1A1309 100%);
  color: rgba(250,247,240,0.75);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(250,247,240,0.12);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250,247,240,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,247,240,0.7);
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
  flex-shrink: 0;
}
.social-row a svg {
  width: 18px;
  height: 18px;
  display: block;
}
.social-row a:hover {
  border-color: var(--gold);
  background: rgba(201,149,44,0.15);
  color: var(--gold-soft);
}

/* ---------- Page header (sub-pages) ---------- */

.page-header {
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.breadcrumb .sep { color: var(--gold); margin: 0 8px; }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Slight cascade for grid items revealing together, instead of popping in at once */
.grid > .reveal:nth-child(2) { transition-delay: 0.08s; }
.grid > .reveal:nth-child(3) { transition-delay: 0.16s; }
.grid > .reveal:nth-child(4) { transition-delay: 0.24s; }

/* No-JS fallback: if JS hasn't run (e.g. disabled or blocked), content stays visible */
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Utility ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--gold-line);
  border-radius: 20px;
  color: var(--oxblood);
}
.tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ---- Floating WhatsApp button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;

  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;

  box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.18);
  animation: wa-pulse 2.8s ease-in-out infinite;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  display: block;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.22);
  animation: none;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #111;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* Gentle pulse ring */
@keyframes wa-pulse {
  0%        { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.45); }
  60%       { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100%      { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 540px) {
  .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-tooltip { display: none; }
}

/* ==========================================================================
   HOMEPAGE REDESIGN — full-bleed hero, services strip, studio cards, stats
   ========================================================================== */

/* ---- Full-bleed hero ---- */
.hero-full {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  background: none; /* override the radial-gradient on .hero */
}

.hero-full .hero-visual {
  position: absolute;
  inset: 0;
  aspect-ratio: unset;
  border-radius: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* lighter overlay so background images show through clearly */
  background: linear-gradient(
    to top,
    rgba(10,8,5,0.72) 0%,
    rgba(10,8,5,0.48) 45%,
    rgba(10,8,5,0.38) 100%
  );
  z-index: 1;
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Cap h1 size inside the hero so it doesn't fill the whole viewport on large screens */
.hero-full h1 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

/* Override accent stroke inside dark hero */
.hero-full h1 .accent {
  color: var(--gold);
  -webkit-text-stroke: 0;
}

@media (max-width: 640px) {
  .hero-full {
    min-height: 95svh;
    padding: 90px 0 50px;
  }
  .hero-full h1 {
    font-size: clamp(1.75rem, 7.5vw, 2.8rem);
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-full .eyebrow {
    white-space: normal;
    word-break: break-word;
    font-size: 0.68rem;
  }
  /* Stack buttons vertically on narrow screens */
  .hero-full .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-full .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  /* Tighten stats row spacing */
  .hero-full .hero-stats {
    margin-top: 36px !important;
    padding-top: 28px !important;
  }
}

/* ---- Quick services strip ---- */
.quick-services-bar {
  background: linear-gradient(135deg, #0E0C09 0%, #1D1710 100%);
  border-bottom: 1px solid rgba(201,149,44,0.15);
  position: relative;
  z-index: 10;
}

.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.qs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 30px 16px;
  color: rgba(250,247,240,0.65);
  border-right: 1px solid rgba(201,149,44,0.12);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.qs-item:last-child { border-right: none; }
.qs-item:hover { background: rgba(201,149,44,0.08); color: var(--gold-soft); }

.qs-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(201,149,44,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  flex-shrink: 0;
  transition: border-color 0.25s ease;
}
.qs-item:hover .qs-icon { border-color: var(--gold); }
.qs-icon svg { width: 20px; height: 20px; }

.qs-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 880px) {
  .quick-services-grid { grid-template-columns: repeat(3, 1fr); }
  .qs-item:nth-child(3) { border-right: none; }
}
@media (max-width: 540px) {
  .quick-services-grid { grid-template-columns: repeat(2, 1fr); }
  .qs-item:nth-child(2) { border-right: none; }
  .qs-item:nth-child(4) { border-right: none; }
}

/* ---- Feature checklist ---- */
.feature-checklist {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(250,247,240,0.78);
}

.feature-checklist li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-checklist-dark li { color: var(--ink-soft); }
.feature-checklist-dark li::before { background: var(--oxblood); }

/* ---- Studio service mini-grid ---- */
.studio-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.studio-svc-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  aspect-ratio: 4/3;
  text-decoration: none;
}

.studio-svc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.studio-svc-card:hover img { transform: scale(1.06); }

.svc-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.88) 0%, transparent 100%);
  padding: 28px 14px 12px;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- Stats band ---- */
.stats-band {
  background: linear-gradient(135deg, #0E0C09 0%, #221A10 100%);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.stat-item {
  padding: 24px 16px;
  border-right: 1px solid rgba(201,149,44,0.12);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.48);
}

@media (max-width: 880px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
}
@media (max-width: 540px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(4) { border-right: none; }
  .stat-item:nth-child(5) { border-right: none; }
}
