/* ==============================
   ONDUS TATTOO — CORE STYLES
   ============================== */

:root {
  --black: #0a0a0a;
  --black-2: #121212;
  --ink: #1a1a1a;
  --white: #f5f2ec;
  --bone: #ebe6dc;
  --dim: #8a857b;
  --red: #c8392e;
  --line: rgba(245, 242, 236, 0.12);
  --line-dark: rgba(10, 10, 10, 0.12);

  --f-display: "Metal Mania", "Bebas Neue", serif;
  --f-serif: "Cormorant Garamond", Georgia, serif;
  --f-head: "Bebas Neue", Impact, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1320px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html { scroll-behavior: smooth; }

html, body {
  background: var(--black);
}
body {
  color: var(--black);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}

/* hide scrollbar (keeps scroll working) */
html { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { width: 0; height: 0; display: none; }
body::-webkit-scrollbar { display: none; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
ul { list-style: none; }

/* GRAIN */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ==============================
   NAVIGATION
   ============================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 242, 236, 0.08);
  color: var(--white);
}

.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.9rem var(--pad);
  padding-top: calc(.9rem + env(safe-area-inset-top));
  padding-left: calc(var(--pad) + env(safe-area-inset-left));
  padding-right: calc(var(--pad) + env(safe-area-inset-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-head);
  font-size: 1.3rem;
  letter-spacing: .12em;
  z-index: 102;
}
.nav__logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--white);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-left: auto;
}
.nav__menu ul {
  display: flex;
  gap: 1.8rem;
  font-family: var(--f-head);
  letter-spacing: .14em;
  font-size: .95rem;
}
.nav__menu a {
  position: relative;
  padding: .3rem 0;
  transition: opacity .3s;
}
.nav__menu a:hover { opacity: .6; }
.nav__menu a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width .3s var(--ease);
}
.nav__menu a:hover::after { width: 100%; }

.nav__lang {
  position: relative;
  font-family: var(--f-head);
  letter-spacing: .12em;
  font-size: .85rem;
}
.lang__current {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .7rem;
  border: 1px solid rgba(245, 242, 236, 0.2);
  border-radius: 2px;
  transition: all .3s;
}
.lang__current:hover { background: rgba(245, 242, 236, 0.08); }
.lang__list {
  position: absolute;
  top: calc(100% + .4rem);
  right: 0;
  background: var(--black);
  border: 1px solid var(--line);
  min-width: 140px;
  padding: .4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s var(--ease);
}
.lang__list.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang__list li {
  padding: .55rem 1rem;
  cursor: pointer;
  font-size: .8rem;
  transition: background .2s;
}
.lang__list li:hover { background: rgba(245, 242, 236, 0.1); }
.lang__list li.active { color: var(--red); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  z-index: 102;
}
.nav__toggle span {
  height: 2px;
  background: var(--white);
  transition: all .3s var(--ease);
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.6rem;
  font-family: var(--f-head);
  letter-spacing: .18em;
  font-size: .9rem;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--primary:hover {
  background: transparent;
  color: var(--white);
}
.btn--ghost { color: var(--white); background: transparent; }
.btn--ghost:hover { background: var(--white); color: var(--black); }
.btn--light { color: var(--white); border-color: var(--white); background: transparent; }
.btn--light:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--cta {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: .65rem 1.3rem;
  font-size: .82rem;
}
.btn--cta:hover { background: transparent; color: var(--white); border-color: var(--white); }
.btn--lg { padding: 1.1rem 2.2rem; font-size: 1rem; }

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 7rem var(--pad) 5rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1565058379802-bbe93b2f703a?w=1600&q=75");
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.2) brightness(.5);
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(0,0,0,.2), rgba(0,0,0,.85) 75%),
    linear-gradient(180deg, rgba(10,10,10,.7) 0%, rgba(10,10,10,.4) 40%, rgba(10,10,10,.95) 100%);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  animation: heroIn 1.2s var(--ease) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__logo {
  width: 110px;
  height: 110px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 8px rgba(245, 242, 236, 0.06);
}
.hero__title {
  font-family: var(--f-head);
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: .9;
  letter-spacing: .02em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.hero__title-line { display: block; }
.hero__title-line--script {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: none;
  font-style: italic;
  letter-spacing: 0;
  font-size: .85em;
  color: var(--bone);
  transform: translateY(-.1em) translateX(.1em);
}
.hero__claim {
  font-family: var(--f-head);
  letter-spacing: .4em;
  font-size: clamp(.8rem, 1.4vw, 1rem);
  opacity: .8;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  position: relative;
}
.hero__claim::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--white);
  opacity: .5;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  font-family: var(--f-head);
  letter-spacing: .3em;
  font-size: .7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  opacity: .7;
}
.hero__scroll span:first-child {
  width: 1px;
  height: 40px;
  background: var(--white);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: .3; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ==============================
   MARQUEE
   ============================== */
.marquee {
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.marquee__track {
  display: flex;
  gap: 3rem;
  font-family: var(--f-head);
  letter-spacing: .3em;
  font-size: 1rem;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
}
.marquee__track span {
  flex-shrink: 0;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==============================
   SECTION BASE
   ============================== */
.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  background: var(--bone);
  color: var(--black);
}
.section--dark {
  background: var(--black);
  color: var(--white);
}
.section__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section__header {
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
  max-width: 900px;
}
.section__title {
  font-family: var(--f-head);
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.section__title--xl {
  font-size: clamp(3rem, 8vw, 7rem);
}
.section__title .italic {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -.02em;
}
.eyebrow {
  display: inline-block;
  font-family: var(--f-head);
  letter-spacing: .35em;
  font-size: .78rem;
  opacity: .55;
  margin-bottom: 1.2rem;
  padding-left: 1.8rem;
  position: relative;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 20px; height: 1px;
  background: currentColor;
}

/* ==============================
   STUDIO
   ============================== */
.studio__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.studio__body p {
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #333;
}
.studio__body .lead {
  font-family: var(--f-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--black);
}
.studio__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-dark);
}
.studio__stats li {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.studio__stats strong {
  font-family: var(--f-head);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}
.studio__stats span {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .6;
}

/* ==============================
   SERVICES
   ============================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .4s var(--ease);
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.service:hover { background: var(--ink); }
.service__num {
  font-family: var(--f-head);
  font-size: .9rem;
  letter-spacing: .3em;
  opacity: .4;
  margin-bottom: 2.5rem;
}
.service h3 {
  font-family: var(--f-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: .04em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.service p {
  font-size: .95rem;
  opacity: .75;
  margin-bottom: auto;
  line-height: 1.7;
}
.service__icon {
  width: 44px;
  height: 44px;
  margin-top: 2rem;
  opacity: .5;
  transition: opacity .3s, transform .4s var(--ease);
}
.service:hover .service__icon {
  opacity: 1;
  transform: rotate(-6deg) scale(1.05);
}

/* ==============================
   ARTISTS
   ============================== */
.artists__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.artists__grid--single {
  display: block;
  max-width: 900px;
  margin: 0 auto;
}
.artist--solo {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.artist--solo > * { min-width: 0; }
.artist--solo .artist__img {
  margin-bottom: 0;
  aspect-ratio: 3 / 4;
  width: 100%;
  max-width: 380px;
  height: auto;
  justify-self: center;
}
.artist--solo .artist__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.artist--solo .artist__info h3 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .6rem;
  line-height: 1.05;
}
.artist__alias {
  display: block;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: .75em;
  letter-spacing: 0;
  text-transform: none;
  opacity: .75;
  margin-top: .2rem;
}
.artist--solo .artist__info p {
  font-size: 1rem;
  line-height: 1.75;
}
@media (max-width: 720px) {
  .artist--solo {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .artist--solo .artist__img {
    max-width: 420px;
    margin: 0 auto;
  }
}
.artist {
  display: flex;
  flex-direction: column;
}
.artist__img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink);
  margin-bottom: 1.5rem;
}
.artist__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform .8s var(--ease), filter .5s;
}
.artist__img:hover img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.05);
}
.artist__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.6));
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity .3s;
}
.artist__img:hover .artist__overlay { opacity: 1; }
.artist__overlay a {
  color: var(--white);
  transition: transform .3s;
}
.artist__overlay a:hover { transform: scale(1.2) rotate(-6deg); }
.artist__info h3 {
  font-family: var(--f-head);
  font-size: 1.5rem;
  letter-spacing: .05em;
  margin-bottom: .3rem;
}
.artist__spec {
  display: block;
  font-family: var(--f-head);
  letter-spacing: .2em;
  font-size: .78rem;
  opacity: .5;
  margin-bottom: .8rem;
  text-transform: uppercase;
}
.artist__info p {
  font-size: .93rem;
  line-height: 1.6;
  opacity: .8;
}

/* Artist extras (Guest / Collaboration) */
.artists__extras {
  max-width: 900px;
  margin: clamp(2rem, 4vw, 3.5rem) auto 0;
  border-top: 1px solid rgba(0,0,0,.12);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 3.5rem);
}
.artists__extra-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.artists__extra-img {
  width: 80px;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--ink);
}
.artists__extra-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform .7s var(--ease), filter .5s;
}
.artists__extra-card:hover .artists__extra-img img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.05);
}
.artists__extra-info {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding-top: .15rem;
}
.artists__extra-label {
  font-family: var(--f-head);
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .4;
}
.artists__extra-name {
  font-family: var(--f-head);
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}
.artists__extra-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: .88rem;
  opacity: .55;
  margin: 0;
}
.artists__extra-info .artist__spec {
  margin-bottom: 0;
}
.artists__extra-contact {
  font-size: .82rem;
  opacity: .7;
  margin: .6rem 0 .5rem;
  line-height: 1.4;
}
.artists__extra-insta-btn {
  display: inline-block;
  margin-top: .4rem;
  padding: .45rem 1rem;
  font-size: .78rem;
  font-family: var(--f-sans);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-bg);
  background: var(--c-accent);
  border-radius: 2px;
  text-decoration: none;
  transition: opacity .2s;
}
.artists__extra-insta-btn:hover {
  opacity: .8;
}
@media (max-width: 560px) {
  .artists__extras {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .artists__extra-img {
    width: 70px;
  }
}

/* ==============================
   PORTFOLIO
   ============================== */
.portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.filter {
  padding: .55rem 1.2rem;
  font-family: var(--f-head);
  letter-spacing: .18em;
  font-size: .78rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: all .3s;
}
.filter:hover { border-color: var(--white); }
.filter.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 4px;
  grid-auto-flow: dense;
}
.pf-item {
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  position: relative;
}
.pf-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.2) contrast(1.05);
  transition: all .7s var(--ease);
}
.pf-item::after {
  content: "+";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.5);
  color: var(--white);
  font-size: 2rem;
  font-family: var(--f-head);
  width: 48px;
  height: 48px;
  border: 1px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .4s var(--ease);
  background: rgba(0,0,0,.4);
  z-index: 2;
}
.pf-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1.1) brightness(.7);
}
.pf-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.pf-item.hidden { display: none; }
.pf-item.mobile-hidden { display: none; }

.portfolio__loadmore {
  text-align: center;
  margin-top: 2rem;
  display: none;
}

.portfolio__cta {
  text-align: center;
  margin-top: 3rem;
}
.portfolio__cta p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  opacity: .7;
}

/* ==============================
   BOOKING
   ============================== */
.booking {
  text-align: center;
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
.booking::before,
.booking::after {
  content: "★";
  position: absolute;
  font-size: 18rem;
  font-family: var(--f-head);
  opacity: .04;
  pointer-events: none;
}
.booking::before { top: -5rem; left: -3rem; }
.booking::after { bottom: -5rem; right: -3rem; }
.booking__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.booking .eyebrow { margin-bottom: 1.5rem; }
.booking__text {
  font-family: var(--f-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-style: italic;
  line-height: 1.6;
  margin: 1.8rem auto 2.5rem;
  max-width: 620px;
  opacity: .8;
}
.booking__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.booking__ctas .btn--primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.booking__ctas .btn--primary:hover {
  background: transparent;
  color: var(--black);
}
.booking__ctas .btn--ghost {
  color: var(--black);
  border-color: var(--black);
}
.booking__ctas .btn--ghost:hover {
  background: var(--black);
  color: var(--white);
}

/* ==============================
   CONTACT
   ============================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.contact__block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.contact__block:last-of-type { border-bottom: 0; }
.contact__block h4 {
  font-family: var(--f-head);
  letter-spacing: .3em;
  font-size: .82rem;
  margin-bottom: .9rem;
  opacity: .6;
}
.contact__block p,
.contact__block a {
  font-size: 1.05rem;
  line-height: 1.6;
  transition: opacity .2s;
}
.contact__block a:hover { opacity: .6; }

.hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem .8rem;
}
.hours li {
  display: flex;
  justify-content: space-between;
  font-size: .95rem;
  padding: .2rem 0;
}
.hours li span:first-child { opacity: .7; }

.contact__socials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.contact__socials a {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem 1.2rem;
  border: 1px solid var(--line);
  transition: all .3s;
  font-family: var(--f-head);
  letter-spacing: .15em;
  font-size: .9rem;
}
.contact__socials a:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.contact__map {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
  filter: grayscale(1) contrast(1.1) invert(.92);
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.footer__brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--white);
  object-fit: cover;
}
.footer__brand strong {
  display: block;
  font-family: var(--f-head);
  letter-spacing: .2em;
  font-size: 1.05rem;
}
.footer__brand span {
  font-size: .78rem;
  opacity: .5;
  font-family: var(--f-serif);
  font-style: italic;
}
.footer__links {
  display: flex;
  gap: 1.5rem;
  font-family: var(--f-head);
  letter-spacing: .15em;
  font-size: .8rem;
}
.footer__links a { transition: opacity .2s; }
.footer__links a:hover { opacity: .6; }
.footer__meta {
  display: flex;
  gap: 1rem;
  font-size: .75rem;
  opacity: .5;
  flex-wrap: wrap;
  align-items: center;
}
.footer__credit {
  display: inline-flex;
  gap: .35rem;
  align-items: center;
}
.footer__credit a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,242,236,.3);
  transition: border-color .3s, opacity .3s;
  font-family: var(--f-head);
  letter-spacing: .1em;
}
.footer__credit a:hover {
  border-bottom-color: var(--white);
  opacity: 1;
}
.footer {
  padding-bottom: calc(2rem + env(safe-area-inset-bottom));
}

/* ==============================
   LIGHTBOX
   ============================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .96);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,.6);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  color: var(--white);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--white);
  color: var(--black);
}
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev { left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2.3rem; }
.lightbox__next { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2.3rem; }

/* ==============================
   REVEAL
   ============================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .portfolio__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
  .studio__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { min-height: 380px; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 0; right: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 0;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    padding: 2rem;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__menu ul {
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
  }
  .nav__cta { margin-top: 1rem; }

  /* Language selector — inline in mobile menu flow */
  .nav__lang {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
    width: 100%;
    max-width: 240px;
  }
  .lang__current {
    justify-content: center;
    width: 100%;
    padding: .7rem 1rem;
    font-size: 1rem;
  }
  .lang__list {
    position: static;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    transform: none;
    border-radius: 2px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transition: max-height .35s var(--ease), padding .35s var(--ease);
  }
  .lang__list.open {
    max-height: 260px;
    padding: .4rem 0;
    transform: none;
  }
  .lang__list li {
    text-align: center;
    padding: .7rem 1rem;
    font-size: .95rem;
  }

  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero__cta .btn { width: 100%; }

  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .portfolio__loadmore { display: block; }

  .studio__stats { grid-template-columns: 1fr; gap: 1rem; }
  .hours { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }

  .booking__ctas .btn { width: 100%; max-width: 340px; }
}

@media (max-width: 480px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .marquee__track { font-size: .85rem; gap: 2rem; }
  .nav__logo span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
