/* =============================================================
   XOX Studio · Tattoos by Dayan Glez
   Stylesheet
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --black: #080808;
  --bg: #030303;
  --dark: #0f0f0f;
  --surface: #141414;
  --surface-2: #1b1b1b;

  /* Lines */
  --line: rgba(255, 255, 255, 0.075);
  --line-2: rgba(255, 255, 255, 0.13);

  /* Text */
  --white: #fff;
  --off: #e6e6e6;
  --muted: #a8a8a8;     /* bumped from #9a9a9a for better contrast (≥4.6:1 on #080808) */
  --muted-2: #c4c4c4;   /* bumped from #bdbdbd */

  /* Brand */
  --red: #C41E2A;
  --red-2: #E02233;
  --red-focus: #ff4757;
  --glow: rgba(196, 30, 42, 0.25);

  /* Layout */
  --col: 430px;        /* mobile-first column width */
  --col-md: 720px;     /* tablet expansion */
  --col-lg: 1180px;    /* desktop expansion (hero & gallery only) */
  --float: 74px;
  --nav-h: 60px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Type families */
  --font-body: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-display: 'Bebas Neue', 'Barlow Condensed', Impact, sans-serif;
  --font-condensed: 'Barlow Condensed', 'Arial Narrow', sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*:focus-visible {
  outline: 2px solid var(--red-focus);
  outline-offset: 3px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: calc(var(--float) + 18px + env(safe-area-inset-bottom));
  text-rendering: optimizeLegibility;
}

body.scroll-lock {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: rgba(196, 30, 42, 0.18);
}

button,
input,
textarea {
  font: inherit;
}

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

::selection {
  background: var(--red);
  color: var(--white);
}

/* ---------- Layout container ---------- */
.site {
  max-width: var(--col);
  margin: 0 auto;
  background: var(--black);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.6);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: var(--white);
  padding: 12px 16px;
  z-index: 999;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 11px;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--col);
  height: var(--nav-h);
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.logo small {
  font-size: 8px;
  color: var(--muted-2);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 800;
}

.logo strong {
  font-family: var(--font-condensed);
  font-size: 17px;
  color: #fff0f1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle {
  display: flex;
  border: 1px solid var(--line);
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  border: 0;
  color: var(--muted-2);
  padding: 8px 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  cursor: pointer;
  min-height: 34px;
  min-width: 34px;
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.075);
  color: var(--white);
}

.lang-divider {
  width: 1px;
  background: var(--line);
  height: 13px;
  align-self: center;
}

.menu-btn {
  width: 34px;
  height: 29px;
  border: 1px solid var(--line);
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-btn span {
  width: 14px;
  height: 1.5px;
  background: var(--white);
  display: block;
  transition: 0.25s var(--ease);
}

.menu-btn span:nth-child(2) {
  width: 10px;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
  background: var(--red);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
  background: var(--red);
}

/* ---------- Drawer ---------- */
.drawer {
  position: fixed;
  top: var(--nav-h);
  left: 50%;
  transform: translateX(-50%);
  z-index: 69;
  width: 100%;
  max-width: var(--col);
  background: rgba(8, 8, 8, 0.985);
  border-bottom: 1px solid var(--red);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.drawer.open {
  max-height: 640px;
}

.drawer ul {
  list-style: none;
  padding: 14px 24px 22px;
}

.drawer a {
  display: block;
  text-decoration: none;
  color: var(--off);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drawer li:last-child a {
  border-bottom: 0;
}

/* ---------- Floating CTA ---------- */
.float-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 68;
  width: 100%;
  max-width: var(--col);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(8, 8, 8, 0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--red);
  padding: 12px 18px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.float-cta[data-hidden="true"] {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.float-cta span {
  color: var(--muted-2);
  font-size: 9px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

/* ---------- Buttons ---------- */
.btn,
.btn-ghost {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 15px 24px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: 0.2s var(--ease);
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

.btn {
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

@media (hover: hover) {
  .btn:hover {
    background: var(--red-2);
    box-shadow: 0 0 28px var(--glow);
    transform: translateY(-2px);
  }
  .btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
  }
  .drawer a:hover {
    color: var(--red);
  }
  .gallery-card:hover {
    border-color: var(--line-2);
  }
  .category-card:hover .cat-link {
    color: var(--red-2);
  }
}

.btn:active,
.btn-ghost:active {
  transform: scale(0.98);
}

/* ---------- Section base ---------- */
.section {
  padding: 68px 24px;
  border-top: 1px solid var(--line);
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 16px;
}

.label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--red);
}

.headline {
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.headline em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.32);
}

.lead {
  color: var(--off);
  font-size: 14px;
  line-height: 1.82;
}

.text {
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.78;
}

/* ---------- Hero ---------- */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px 150px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

#hero::before {
  content: "";
  position: absolute;
  inset: -24% -42%;
  background:
    radial-gradient(ellipse at center, rgba(196, 30, 42, 0.12), transparent 38%),
    radial-gradient(ellipse at 52% 60%, rgba(255, 255, 255, 0.035), transparent 30%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.36) 100%);
  pointer-events: none;
  animation: heroGlow 12s ease-in-out infinite alternate;
}

.hero-bg-word {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(145px, 43vw, 240px);
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196, 30, 42, 0.055);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  animation: heroWord 16s ease-in-out infinite alternate;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-kicker {
  color: var(--red);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 900;
  margin-bottom: 26px;
  opacity: 0;
  animation: heroReveal 0.85s var(--ease) 0.08s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(74px, 20vw, 118px);
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 22px;
  overflow: hidden;
}

.hero-title .title-line {
  display: block;
  color: var(--white);
  opacity: 0;
  transform: translateY(0.36em);
  filter: blur(5px);
  animation: heroTitleReveal 0.9s var(--ease) forwards;
}

.hero-title .title-line:first-child {
  animation-delay: 0.28s;
}

.hero-title .title-line:nth-child(2) {
  animation-delay: 0.46s;
}

.hero-title .title-line.outline {
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(255, 255, 255, 0.42);
}

.hero-sub {
  max-width: 520px;
  margin: 0 auto 34px;
  color: var(--off);
  opacity: 0;
  font-size: 13px;
  line-height: 1.8;
  animation: heroReveal 0.85s var(--ease) 0.72s forwards;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px auto 0;
  max-width: 310px;
  opacity: 0;
  animation: heroReveal 0.85s var(--ease) 0.92s forwards;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(14px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes heroTitleReveal {
  from { opacity: 0; transform: translateY(0.36em); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes heroGlow {
  from { transform: scale(1) translate3d(-1.5%, 0, 0); opacity: 0.82; }
  to { transform: scale(1.08) translate3d(1.5%, -1%, 0); opacity: 1; }
}

@keyframes heroWord {
  from { transform: translate(-50%, -50%) scale(1); opacity: 0.72; }
  to { transform: translate(-50.8%, -49.2%) scale(1.035); opacity: 0.95; }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 32s linear infinite;
  will-change: transform;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0 32px;
  color: var(--muted);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.marquee-item i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Image cards (lazy-loaded) ---------- */
.img-card {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--line);
}

.img-card.r45 { aspect-ratio: 4 / 5; }
.img-card.r34 { aspect-ratio: 3 / 4; }
.img-card.r11 { aspect-ratio: 1; }
.img-card.r169 { aspect-ratio: 16 / 9; }

.img-card .skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.032), rgba(196, 30, 42, 0.055));
  z-index: 0;
}

.img-card .skeleton::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 12px);
}

.img-card .skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 1.8s infinite;
}

@keyframes shimmer {
  to { transform: translateX(100%); }
}

.img-card picture,
.img-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.img-card img {
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: 1;
}

.img-card img.loaded {
  opacity: 1;
}

.img-card img.loaded ~ .skeleton {
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.img-card .ph-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  border: 1px solid var(--red);
  color: var(--red);
  padding: 4px 8px;
  font-family: var(--font-condensed);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 0;
}

.img-card .ph-meta-wrap {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 0;
}

.img-card .ph-title {
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
}

.img-card .ph-meta {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 6px;
}

/* ---------- Portfolio category grid ---------- */
.category-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.category-card {
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.cat-body {
  padding: 22px 20px 24px;
}

.cat-num {
  color: var(--red);
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}

.cat-title {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cat-desc {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted-2);
  margin-bottom: 18px;
}

.cat-link {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  border-bottom: 1px solid var(--red);
  padding-bottom: 5px;
}

/* ---------- Interactive gallery ---------- */
.interactive-gallery {
  margin-top: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.gallery-top {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery-title {
  font-family: var(--font-condensed);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gallery-copy {
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.65;
}

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
  position: relative;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  flex: 0 0 auto;
  background: transparent;
  color: var(--muted-2);
  border: 1px solid var(--line);
  padding: 10px 12px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.gallery-stage {
  position: relative;
}

/* Fade indicators that there's more content sideways */
.gallery-stage::before,
.gallery-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  pointer-events: none;
  z-index: 2;
}

.gallery-stage::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}

.gallery-stage::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface), transparent);
}

.gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 18px 20px 22px;
  gap: 8px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  flex: 0 0 82%;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  background: var(--surface-2);
  cursor: pointer;
  transition: 0.2s;
}

.gallery-caption {
  padding: 14px 14px 16px;
  border-top: 1px solid var(--line);
}

.gallery-caption h3 {
  font-family: var(--font-condensed);
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.gallery-caption p {
  color: var(--muted-2);
  font-size: 11.5px;
  line-height: 1.55;
}

.gallery-controls {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 12px 20px;
}

.icon-btn {
  width: 48px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
}

.icon-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.progress {
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.progress span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 14.28%;
  background: var(--red);
  transition: 0.25s;
}

/* Tags */
.gallery-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.gallery-tag {
  border: 1px solid rgba(196, 30, 42, 0.45);
  color: var(--red);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 7px;
  line-height: 1;
}

/* Live region for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Split feature panel ---------- */
.split-feature {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 26px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.split-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0, rgba(196, 30, 42, 0.10), transparent 55%);
  pointer-events: none;
}

.split-feature > * {
  position: relative;
  z-index: 1;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 0.94;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.feature-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* ---------- Steps / Why / Prepare lists ---------- */
.steps {
  border-top: 1px solid var(--line);
  margin-top: 34px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
}

.step-num {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
}

.step h3 {
  font-family: var(--font-condensed);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.step p {
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--muted-2);
}

.why-list {
  border-top: 1px solid var(--line);
  margin-top: 32px;
}

.why-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.why-mark {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--red);
  line-height: 1;
}

.why-row h3 {
  font-family: var(--font-condensed);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.why-row p {
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.68;
}

.prep-list {
  border-top: 1px solid var(--line);
  margin-top: 32px;
}

.prep-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}

.prep-num {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  color: var(--red);
}

.prep-row h3 {
  font-family: var(--font-condensed);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.prep-row p {
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.68;
}

/* ---------- Style cards ---------- */
.style-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 34px;
}

.style-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
}

.style-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}

.style-card:hover::after {
  transform: scaleX(1);
}

.style-num {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

.style-card h3 {
  font-family: var(--font-condensed);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.style-card p {
  font-size: 12.5px;
  color: var(--muted-2);
  line-height: 1.72;
}

/* ---------- About ---------- */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.signature {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.signature strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.signature span {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--line);
  margin-top: 34px;
}

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

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-plus {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 2px;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  background: var(--red);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.25s;
}

.faq-plus::before {
  width: 13px;
  height: 1.5px;
}

.faq-plus::after {
  width: 1.5px;
  height: 13px;
}

.faq-item.open .faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-a-inner {
  padding: 0 0 20px;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.78;
}

.faq-item.open .faq-a {
  max-height: 420px;
}

/* ---------- Booking note ---------- */
.booking-note {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(196, 30, 42, 0.32);
  background: rgba(196, 30, 42, 0.045);
  color: var(--off);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

/* ---------- Contact ---------- */
.contact-links {
  border-top: 1px solid var(--line);
  margin-top: 34px;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.contact-row small {
  min-width: 88px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-row span {
  flex: 1;
  font-size: 13px;
  color: var(--off);
}

.contact-row b {
  color: var(--muted);
}

/* ---------- Footer ---------- */
footer {
  background: var(--dark);
  border-top: 1px solid var(--line);
  padding: 46px 24px 38px;
}

.footer-logo {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-logo span {
  color: var(--red);
}

.footer-text {
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-links a {
  color: var(--muted-2);
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.copy {
  color: rgba(116, 116, 116, 0.72);
  font-size: 10px;
  margin-top: 28px;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal.open {
  display: flex;
}

.modal-panel {
  width: min(100%, 520px);
  background: var(--black);
  border: 1px solid var(--line-2);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.65);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-media {
  padding: 12px;
}

.modal-text {
  border-top: 1px solid var(--line);
  padding: 18px;
}

.modal-text h3 {
  font-family: var(--font-condensed);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.modal-text p {
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.7;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  background: var(--black);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  z-index: 121;
}

.modal-nav {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 18px;
  border-top: 1px solid var(--line);
}

.modal-nav button {
  flex: 1;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--white);
  padding: 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.modal-nav button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* =============================================================
   Responsive — desktop hybrid
   The site stays mobile-first but expands the hero, portfolio,
   and gallery on larger screens.
   ============================================================= */

@media (min-width: 760px) {
  body {
    background:
      radial-gradient(ellipse 60% 50% at 50% 0%, rgba(196, 30, 42, 0.08), transparent 60%),
      radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196, 30, 42, 0.05), transparent 60%),
      var(--bg);
  }

  .site {
    max-width: var(--col-md);
    box-shadow: 0 0 120px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.03);
  }

  .site-nav,
  .drawer,
  .float-cta {
    max-width: var(--col-md);
  }

  #hero {
    min-height: 760px;
  }

  .section {
    padding: 88px 48px;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .cat-title {
    font-size: 32px;
  }

  .gallery-card {
    flex-basis: 48%;
  }

  .footer-links {
    grid-template-columns: repeat(5, auto);
    justify-content: start;
    gap: 24px;
  }

  .hero-actions {
    flex-direction: row;
    max-width: 540px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-actions .btn,
  .hero-actions .btn-ghost {
    flex: 0 1 auto;
    min-width: 160px;
  }
}

@media (min-width: 1100px) {
  .site {
    max-width: var(--col-lg);
  }

  .site-nav,
  .drawer,
  .float-cta {
    max-width: var(--col-lg);
  }

  .section {
    padding: 110px 80px;
  }

  .headline {
    font-size: 76px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cat-title {
    font-size: 44px;
  }

  .cat-body {
    padding: 28px 28px 32px;
  }

  /* About becomes side-by-side */
  #about .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .gallery-card {
    flex-basis: 32%;
  }

  .style-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  /* Footer richer on desktop */
  footer {
    padding: 60px 80px 40px;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .marquee-track {
    animation: none !important;
  }

  .img-card .skeleton::after {
    animation: none !important;
  }

  .hero-kicker,
  .hero-title .title-line,
  .hero-sub,
  .hero-actions {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-bg-word {
    animation: none !important;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-nav,
  .float-cta,
  .drawer,
  .modal,
  .marquee {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    padding: 0;
  }

  .site {
    max-width: 100%;
    background: #fff;
    box-shadow: none;
  }

  *,
  *::before,
  *::after {
    color: #000 !important;
    background: transparent !important;
    border-color: #ccc !important;
  }

  a {
    text-decoration: underline;
  }

  .img-card .skeleton {
    display: none;
  }
}
