/* ═══════════════════════════════════════════════════
   MONOCHROME BOLD — Dr. Mamaev Orthodontics
   Чёрно-белый + красный акцент. Sharp edges. Energy.
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Nunito:wght@400;600;700&display=swap');

:root {
  --bg: #ffffff;
  --surface: #f2f2f2;
  --accent: #e63946;
  --accent-hover: #ff4d5a;
  --text: #0a0a0a;
  --text-muted: #555555;
  --border: #d0d0d0;
  --accent-rgb: 230, 57, 70;
  --bg-rgb: 255, 255, 255;
  --heading-font: 'Oswald', sans-serif;
  --body-font: 'Nunito', sans-serif;
  --heading-weight: 700;
  --body-weight: 400;
  --radius: 0px;
  --radius-sm: 0px;
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ─── PRELOADER ─── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bg);
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--text);
  transition: var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--text);
}

.nav-logo span {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.burger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--accent);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 24px 80px;
  background: var(--text);
  color: var(--bg);
  overflow: hidden;
}

.hero::before {
  content: 'MAMAEV';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 18vw;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  margin-bottom: 24px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero h1 .accent-word {
  color: var(--accent);
}

.hero-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  border: 2px solid rgba(255,255,255,0.15);
}

.hero-photo::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  z-index: -1;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
  text-align: left;
}

.hero-stat .number {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ─── SECTIONS (общие) ─── */
.section {
  padding: 100px 24px;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
  position: relative;
  padding-left: 56px;
}

.section-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 40px;
  height: 6px;
  background: var(--accent);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section with diagonal shapes */
.section--shapes {
  position: relative;
  overflow: visible;
}

.section--shapes::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -40px;
  width: 200px;
  height: 400px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(var(--accent-rgb), 0.08) 20px,
    rgba(var(--accent-rgb), 0.08) 26px
  );
  pointer-events: none;
  z-index: 0;
}

/* Dark section variant */
.section--dark {
  background: var(--text);
  color: var(--bg);
}

.section--dark .section-header p {
  color: rgba(255,255,255,0.6);
}

.section--surface {
  background: var(--surface);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 36px;
  min-height: 52px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--bg);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline--dark {
  color: var(--text);
  border-color: var(--text);
}

.btn-outline--dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-card {
  border: 2px solid var(--text);
  padding: 0;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-wrap: break-word;
  word-break: break-word;
  margin: -1px;
}

.service-card:hover {
  border-color: var(--accent);
  z-index: 2;
}

.service-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition);
}

.service-card:hover .service-card-img {
  filter: grayscale(0%);
}

.service-card-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-number {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.3;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.service-card .badge {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 4px 10px;
  margin-top: 12px;
  align-self: flex-start;
}

/* ─── TEAM GRID ─── */
.team-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.team-card {
  border: 2px solid var(--text);
  max-width: 400px;
  width: 100%;
  transition: var(--transition);
  overflow-wrap: break-word;
  word-break: break-word;
}

.team-card:hover {
  border-color: var(--accent);
}

.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition);
}

.team-card:hover .team-card-img {
  filter: grayscale(0%);
}

.team-card-body {
  padding: 24px;
  border-top: 2px solid var(--text);
}

.team-card:hover .team-card-body {
  border-top-color: var(--accent);
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── VISIBILITY SAFETY (content visible without JS) ─── */
[data-reveal],
.service-card,
.team-card,
.utp-item {
  opacity: 1;
}

/* ─── GALLERY GRID ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) contrast(1.1);
  transition: filter 0.6s ease, transform 0.6s ease;
  opacity: 1;
  visibility: visible;
}

.gallery-item:hover img,
.gallery-cell:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* gallery-cell — same as gallery-item but immune to effects.js curtain-wipe */
.gallery-cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) contrast(1.1);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay,
.gallery-cell:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 100px 24px;
  background: var(--text);
  color: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'ЗАПИСАТЬСЯ';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 12vw;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  position: relative;
  overflow-wrap: break-word;
  word-break: break-word;
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── CONTACT LIST ─── */
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.contact-list a:hover {
  color: var(--accent);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--text);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-list a:hover .contact-icon {
  border-color: var(--accent);
  color: var(--accent);
}

/* Dark variant contacts */
.section--dark .contact-icon {
  border-color: rgba(255,255,255,0.3);
  color: var(--bg);
}

.section--dark .contact-list a:hover .contact-icon {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── MAP ─── */
.map-container {
  border: 2px solid var(--text);
  height: 300px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── FOOTER ─── */
.footer {
  padding: 40px 24px;
  border-top: 2px solid var(--text);
  background: var(--bg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--text);
}

.footer-brand span {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

/* ─── UTP / ADVANTAGES ─── */
.utp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.utp-item {
  border: 2px solid rgba(255,255,255,0.15);
  padding: 36px 28px;
  margin: -1px;
  transition: var(--transition);
}

.utp-item:hover {
  border-color: var(--accent);
}

.utp-number {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}

.utp-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--bg);
}

.utp-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ─── SERVICES PAGE LAYOUT ─── */
.services-page-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--text);
  margin-bottom: -2px;
  transition: var(--transition);
}

.service-row:hover {
  border-color: var(--accent);
  z-index: 2;
  position: relative;
}

.service-row:nth-child(even) {
  direction: rtl;
}

.service-row:nth-child(even) > * {
  direction: ltr;
}

.service-row-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition);
}

.service-row:hover .service-row-img {
  filter: grayscale(0%);
}

.service-row-content {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-row-number {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.3;
}

.service-row-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-row-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 140px 24px 60px;
  background: var(--text);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: attr(data-bg-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 15vw;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero p {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── TEXT SAFETY ─── */
.service-card,
.team-card,
.hero h1,
.section-header h2 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ─── HOVER EFFECTS (декор) ─── */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width var(--transition);
}

.service-card:hover::after {
  width: 100%;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .hero-photo {
    max-width: 400px;
  }

  .hero-photo::after {
    bottom: -8px;
    right: -8px;
  }

  .hero-stats {
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    margin: 0 0 -2px 0;
  }

  .utp-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row:nth-child(even) {
    direction: ltr;
  }

  .service-row-img {
    min-height: 200px;
    aspect-ratio: 16/9;
  }

  .service-row-content {
    padding: 28px 20px;
  }

  .service-row-number {
    font-size: 3rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 16px 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .section {
    padding: 60px 16px;
  }

  .section-header {
    padding-left: 48px;
    margin-bottom: 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .btn {
    min-height: 48px;
    padding: 14px 24px;
    font-size: 0.8rem;
  }

  .page-hero {
    padding: 120px 16px 40px;
  }
}

/* ─── DECORATIVE PSEUDO ELEMENTS ─── */
.section--shapes .container {
  position: relative;
  z-index: 1;
}

/* Second diagonal set for services section */
.section--shapes-2::before {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -30px;
  width: 160px;
  height: 320px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(var(--accent-rgb), 0.06) 18px,
    rgba(var(--accent-rgb), 0.06) 24px
  );
  pointer-events: none;
  z-index: 0;
}

/* ─── INSTAGRAM LINK ─── */
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  transition: var(--transition);
}

.ig-link:hover {
  opacity: 0.7;
}
