/* ============================================================
   INKED UP TATTOO ART GALLERY — Tunç Coşkun
   style.css
   ============================================================ */

/* Custom Properties */
:root {
  --bg: #080808;
  --bg2: #0e0e0e;
  --bg3: #161616;
  --bg4: #1e1e1e;
  --text: #e8e5df;
  --text-dim: #aba49a;
  --text-mute: #58564f;
  --gold: #c9a84c;
  --gold-lt: #dfc06a;
  --gold-dk: #a8893a;
  --border: rgba(201, 168, 76, 0.14);
  --border-lt: rgba(255, 255, 255, 0.055);

  --f-display: "Cinzel", Georgia, serif;
  --f-serif: "Playfair Display", Georgia, serif;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --mw: 1200px;
  --gap: clamp(1.25rem, 4vw, 2rem);
  --section: clamp(5rem, 10vw, 8rem);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
address {
  font-style: normal;
}

.container {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.heading-xl {
  font-family: var(--f-serif);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.heading-xl em {
  font-style: italic;
  color: var(--gold);
}
.section-desc {
  font-size: 0.93rem;
  color: var(--text-dim);
  line-height: 1.85;
  max-width: 52ch;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header .section-desc {
  margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.1rem;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  position: relative;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #080808;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.7s var(--ease),
    visibility 0.7s;
}
.loader.gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}
.loader-logo-img {
  height: 52px;
  width: auto;
  margin: 0 auto 2.2rem;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0;
  animation: fadeIn 0.5s 0.2s forwards;
}
.loader-bar {
  width: 180px;
  height: 1px;
  background: var(--bg4);
  margin: 0 auto;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: loadBar 1.3s var(--ease) 0.4s forwards;
}
@keyframes loadBar {
  to {
    width: 100%;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.6rem 0;
  transition:
    padding 0.4s var(--ease),
    background 0.4s var(--ease),
    border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav-header.scrolled {
  padding: 1rem 0;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(18px);
  border-color: var(--border-lt);
}

.nav {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  transition: opacity 0.3s var(--ease);
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.8;
}

/* Language switcher */
.lang-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-sep {
  color: var(--text-mute);
  font-size: 0.7rem;
  line-height: 1;
}
.lang-btn {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  background: none;
  border: none;
  padding: 2px 0;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
}
.lang-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.lang-btn.active,
.lang-btn:hover {
  color: var(--gold);
}
.lang-btn.active::after {
  transform: scaleX(1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  transform-origin: left;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-ig {
  color: var(--text-dim);
  display: flex;
  align-items: center;
  transition: color 0.3s;
}
.nav-ig:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    rgba(201, 168, 76, 0.035) 0%,
    transparent 65%
  );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    black 20%,
    transparent 80%
  );
}
.hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(201, 168, 76, 0.07),
    transparent 70%
  );
  pointer-events: none;
}

.hero-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  filter: invert(1);
  opacity: 0.09;
}
.hero-deco--left {
  left: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 26%;
  max-width: 340px;
}
.hero-deco--right {
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  width: 30%;
  max-width: 390px;
}
@media (max-width: 900px) {
  .hero-deco--left { display: none; }
  .hero-deco--right {
    right: -15%;
    width: 55%;
    opacity: 0.05;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 9rem var(--gap) 5rem;
  max-width: 960px;
  width: 100%;
  will-change: transform, opacity;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 2.2rem;
}

.hero-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.2rem, 14vw, 11rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: 0.08em;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.name-line {
  display: block;
  background: linear-gradient(
    180deg,
    var(--text) 0%,
    rgba(232, 229, 223, 0.7) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.name-line-alt {
  background: linear-gradient(
    180deg,
    rgba(232, 229, 223, 0.85) 0%,
    rgba(232, 229, 223, 0.4) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.rule-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.rule-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.rule-star {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hero-logo-wrap {
  margin-bottom: 1.4rem;
}
.hero-logo-img {
  height: 36px;
  width: auto;
  margin: 0 auto;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.55;
}

.hero-studio {
  font-family: var(--f-display);
  font-size: clamp(0.52rem, 1.4vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.9rem;
}

.hero-tagline {
  font-family: var(--f-serif);
  font-size: clamp(1rem, 2.3vw, 1.35rem);
  color: var(--text-dim);
  margin-bottom: 3.2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-mute);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: scrollFloat 2.2s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--text-mute), transparent);
}
@keyframes scrollFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section) 0;
  position: relative;
  overflow: hidden;
}
.about-deco {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
  max-width: 420px;
  filter: invert(1);
  opacity: 0.09;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-photo {
  aspect-ratio: 3/4;
  background: var(--bg3);
  border: 1px solid var(--border-lt);
  overflow: hidden;
  position: relative;
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 22px,
      rgba(201, 168, 76, 0.018) 22px,
      rgba(201, 168, 76, 0.018) 23px
    ),
    radial-gradient(
      ellipse at 30% 70%,
      rgba(201, 168, 76, 0.06),
      transparent 60%
    );
}
.photo-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.photo-mono {
  text-align: center;
}
.about-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  z-index: 1;
}
.mono-initials {
  display: block;
  font-family: var(--f-display);
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.18);
  letter-spacing: 0.1em;
  line-height: 1;
}
.mono-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.25);
  margin-top: 0.5rem;
}

.about-photo-border {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 55%;
  height: 55%;
  border: 1px solid var(--border);
  z-index: -1;
}

.about-badge {
  position: absolute;
  top: 1.5rem;
  left: -1rem;
  background: var(--gold);
  color: #080808;
  padding: 0.5rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.badge-text {
  font-family: var(--f-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.badge-sub {
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  opacity: 0.7;
}

.about-content {
  padding: 1rem 0;
}

.about-text {
  margin-bottom: 2.5rem;
}
.about-text p {
  color: var(--text-dim);
  margin-bottom: 1.2rem;
  line-height: 1.9;
  font-size: 0.93rem;
}
.about-text strong {
  color: var(--text);
  font-weight: 500;
}

.stats-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  margin-bottom: 2.5rem;
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
}
.stat {
  flex: 1;
}
.stat-num {
  display: block;
  font-family: var(--f-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-lbl {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-lt);
  flex-shrink: 0;
}

/* ============================================================
   SPECIALTIES
   ============================================================ */
.specialties {
  padding: var(--section) 0;
  position: relative;
}
.specialties-bg {
  position: absolute;
  inset: 0;
  background: var(--bg2);
}
.specialties-bg::before,
.specialties-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.specialties-bg::before {
  top: 0;
}
.specialties-bg::after {
  bottom: 0;
}
.specialties .section-header,
.specialties .specialty-grid {
  position: relative;
  z-index: 1;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  border: 1px solid var(--border-lt);
}

.specialty-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-lt);
  background: var(--bg2);
  transition: background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.specialty-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.specialty-card:hover {
  background: var(--bg3);
}
.specialty-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 1.6rem;
  transition:
    opacity 0.3s,
    transform 0.4s var(--spring);
}
.specialty-card:hover .card-icon {
  opacity: 1;
  transform: scale(1.06);
}

.specialty-card h3 {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.specialty-card p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: var(--section) 0;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.gal-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  transition: transform 0.65s var(--ease);
  position: relative;
}
.gal-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item:hover .gal-img {
  transform: scale(1.06);
}

/* Artistic dark placeholder backgrounds — replace with <img> tags */
.gal-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 18px,
    rgba(255, 255, 255, 0.012) 18px,
    rgba(255, 255, 255, 0.012) 19px
  );
}
.gal-img--1 {
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1408 50%, #0a0800 100%);
}
.gal-img--2 {
  background: linear-gradient(225deg, #0a0c10 0%, #080c12 60%, #060810 100%);
}
.gal-img--3 {
  background: linear-gradient(135deg, #080c08 0%, #0e160a 60%, #06100a 100%);
}
.gal-img--4 {
  background: linear-gradient(45deg, #100808 0%, #180e0e 60%, #0e0606 100%);
}
.gal-img--5 {
  background: linear-gradient(180deg, #0c0a08 0%, #1c160e 50%, #100e08 100%);
}
.gal-img--6 {
  background: linear-gradient(315deg, #080810 0%, #0e0e18 60%, #060610 100%);
}
.gal-img--7 {
  background: linear-gradient(135deg, #100c08 0%, #1c1610 60%, #0e0a08 100%);
}
.gal-img--8 {
  background: linear-gradient(225deg, #0a0a08 0%, #161408 60%, #0a0a06 100%);
}

/* Accent spot on each placeholder */
.gal-img--1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(201, 168, 76, 0.1),
    transparent 55%
  );
}
.gal-img--2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(100, 140, 201, 0.06),
    transparent 55%
  );
}
.gal-img--3::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 60%,
    rgba(80, 160, 80, 0.05),
    transparent 55%
  );
}
.gal-img--5::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(201, 168, 76, 0.12),
    transparent 55%
  );
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gal-overlay span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.2rem;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover .gal-overlay {
  opacity: 1;
}
.gallery-item:hover .gal-overlay span {
  transform: translateY(0);
}

.gallery-footer {
  text-align: center;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section) 0;
  position: relative;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background: var(--bg2);
}
.contact-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.contact .section-header,
.contact-grid {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-lt);
}
.contact-item:last-of-type {
  border: none;
  margin-bottom: 2rem;
}

.ci-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--bg3);
  border: 1px solid var(--border-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.ci-icon svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.ci-body h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.45rem;
}
.ci-body p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 0.45rem;
}
.ci-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.3s;
}
.ci-link:hover {
  color: var(--gold-lt);
}
.ci-link--tel {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.contact-map {
  height: 460px;
  border: 1px solid var(--border-lt);
  overflow: hidden;
  position: relative;
}
.contact-map::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: 1;
}
.contact-map iframe {
  filter: grayscale(100%) invert(93%) contrast(88%);
  transition: filter 0.4s;
}
.contact-map:hover iframe {
  filter: grayscale(70%) invert(88%) contrast(85%);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border-lt);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-lt);
  flex-wrap: wrap;
}
.footer-logo-img {
  height: 38px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.35;
  margin-bottom: 10px;
  transition: opacity 0.3s;
}
.footer-logo-img:hover {
  opacity: 0.6;
}
.f-loc {
  font-size: 0.75rem;
  color: var(--text-mute);
}

.footer-nav {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-mute);
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-mute);
}
.footer-bottom a {
  color: var(--gold);
  transition: color 0.3s;
  font-weight: 500;
}
.footer-bottom a:hover {
  color: var(--gold-lt);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal-fade {
}
.reveal-up {
  transform: translateY(44px);
}
.reveal-left {
  transform: translateX(-44px);
}
.reveal-right {
  transform: translateX(44px);
}
.reveal-scale {
  transform: scale(0.93) translateY(20px);
}

.reveal-fade.in,
.reveal-up.in,
.reveal-left.in,
.reveal-right.in,
.reveal-scale.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about::after {
    display: none;
  }
  .about-visual {
    max-width: 420px;
    margin: 0 auto;
  }
  .about-photo {
    min-height: 480px;
    aspect-ratio: unset;
  }
  .about-photo-img {
    position: relative;
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    display: block;
    inset: unset;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map {
    height: 320px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item--large {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 300px;
    height: 100vh;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(24px);
    border-left: 1px solid var(--border-lt);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s var(--ease);
  }
  .nav-menu.open {
    right: 0;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-link {
    font-size: 0.9rem;
  }
  .lang-wrap {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-lt);
    width: 100%;
  }
  .lang-btn {
    font-size: 0.8rem;
  }

  .specialty-grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 1px;
  }
  .specialty-card {
    border: 1px solid var(--border-lt);
  }

  .stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }
  .gallery-item--large {
    grid-column: span 2;
  }

  .footer-top {
    flex-direction: column;
  }
  .footer-nav {
    gap: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 240px;
  }
}

@media (max-width: 420px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--large {
    grid-column: span 1;
  }
  .gallery-item {
    aspect-ratio: 4/3 !important;
  }
}
