/* ═══════════════════════════════════════════════
   GAV — NAIL. EDUCATION. COMMUNITY.
   Editorial beauty · Fashion-tech design system
   ═══════════════════════════════════════════════ */

:root {
  --cream: #f7f4ef;
  --white: #ffffff;
  --ink: #16130f;
  --graphite: #2a2621;
  --graphite-soft: #3d382f;
  --stone: #8d867c;
  --line: #e3ddd4;
  --wine: #5a1826;
  --wine-light: #7a2033;
  --wine-soft: #f3e4e7;
  --gold: #b99a63;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", -apple-system, system-ui, sans-serif;
  --shadow: 0 24px 60px rgba(22, 19, 15, 0.12);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--graphite) transparent;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

body.lock { overflow: hidden; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1360px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }

/* ── Preloader / Intro ── */
.preloader {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: transform .8s var(--ease), opacity .5s ease;
}
.preloader.hide { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.preloader-logo {
  font-family: var(--serif);
  font-size: clamp(60px, 14vw, 180px);
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--wine);
  opacity: 0;
  transform: scale(0.92);
  animation: introReveal 1.1s var(--ease) forwards;
}
.preloader-logo span { color: var(--ink); }
.preloader-tag {
  position: absolute;
  bottom: 8vh;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0;
  animation: introFade 1s .4s ease forwards;
}
@keyframes introReveal {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes introFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* ── Custom cursor (desktop) ── */
@media (hover: hover) and (pointer: fine) {
  .cursor-dot, .cursor-ring { display: block; }
}
.cursor-dot {
  display: none;
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wine);
  z-index: 10000;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  display: none;
  position: fixed;
  width: 38px; height: 38px;
  border: 1px solid rgba(90, 24, 38, 0.5);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .3s ease, height .3s ease, border-color .3s ease, opacity .3s ease;
}
.cursor-ring.hover { width: 58px; height: 58px; border-color: var(--wine); opacity: .6; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.header.scrolled {
  background: rgba(247, 244, 239, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(22, 19, 15, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  transition: height .3s ease;
}
.header.scrolled .header-inner { height: 64px; }
.brand-logo { height: 34px; width: auto; }
.brand-logo.inverted { filter: brightness(0) invert(1); }
.nav { display: flex; gap: clamp(18px, 2.5vw, 36px); }
.nav a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--graphite-soft);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--wine); }
.nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  border: 1px solid var(--wine);
  color: var(--wine) !important;
  padding: 10px 20px !important;
  border-radius: 40px;
  transition: background .25s ease, color .25s ease !important;
}
.nav-cta:hover { background: var(--wine); color: #fff !important; }
.nav-cta::after { display: none; }

.header-dark .nav a { color: rgba(247, 244, 239, 0.7); }
.header-dark .nav a:hover { color: #fff; }
.header-dark .nav-cta { border-color: rgba(247,244,239,.4); color: #fff !important; }
.header-dark .nav-cta:hover { background: #fff; color: var(--ink) !important; }
.header-dark .brand-logo { filter: brightness(0) invert(1); }

/* ── Burger + fullscreen menu ── */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
  z-index: 2001;
}
.burger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--ink);
  transition: all .3s var(--ease-soft);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 29px; }
.burger.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s;
}
.fullscreen-menu.open { opacity: 1; visibility: visible; }
.fs-menu-list { text-align: center; }
.fs-menu-list a {
  display: block;
  font-family: var(--serif);
  font-size: clamp(34px, 8vw, 64px);
  color: var(--ink);
  padding: 10px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s var(--ease), color .2s;
}
.fullscreen-menu.open .fs-menu-list a { opacity: 1; transform: none; }
.fullscreen-menu.open .fs-menu-list a:nth-child(1) { transition-delay: .1s; }
.fullscreen-menu.open .fs-menu-list a:nth-child(2) { transition-delay: .16s; }
.fullscreen-menu.open .fs-menu-list a:nth-child(3) { transition-delay: .22s; }
.fullscreen-menu.open .fs-menu-list a:nth-child(4) { transition-delay: .28s; }
.fullscreen-menu.open .fs-menu-list a:nth-child(5) { transition-delay: .34s; }
.fullscreen-menu.open .fs-menu-list a:nth-child(6) { transition-delay: .4s; }
.fs-menu-list a:hover { color: var(--wine); font-style: italic; }
.fs-menu-meta {
  position: absolute;
  bottom: 40px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Editorial helpers ── */
.section-num {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-num::after {
  content: "";
  width: 48px; height: 1px;
  background: var(--line);
}
.lead {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
  color: var(--ink);
}
.caption {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  background: var(--cream);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  width: 100%;
}
.hero-kicker {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(80px, 16vw, 220px);
  line-height: 0.85;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
  color: var(--ink);
}
.hero h1 .wine { color: var(--wine); }
.hero-tagline {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 34px;
  font-weight: 600;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo {
  position: relative;
  height: min(76vh, 720px);
  overflow: hidden;
  border-radius: 2px;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease);
  will-change: transform;
}
.hero-photo img.loaded { transform: scale(1); }
.hero-photo .photo-credit {
  position: absolute;
  left: 16px; bottom: 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
  z-index: 2;
}
.hero-scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 40px;
  background: var(--stone);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}

/* ══ SECTION 01 — GAV ══ */
.brand-story { padding: clamp(90px, 12vw, 160px) 0; background: var(--cream); }
.brand-story .container { max-width: 1240px; }
.brand-story-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(30px, 6vw, 100px); }
.brand-story .big-words { font-family: var(--serif); font-size: clamp(28px, 4vw, 46px); line-height: 1.3; }
.brand-story .big-words em { color: var(--wine); font-style: italic; }
.brand-story .story-text p { font-size: 16px; color: var(--graphite-soft); margin-bottom: 20px; max-width: 520px; }
.brand-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 80px; }
.fact { border-top: 1px solid var(--line); padding-top: 18px; }
.fact b { font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); font-weight: 700; display: block; }
.fact span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }

/* ══ SECTION 02 — STUDIO ══ */
.studio { background: var(--white); padding: clamp(90px, 12vw, 160px) 0; }
.studio-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 70px; gap: 30px; }
.studio-head h2 { font-family: var(--serif); font-size: clamp(40px, 6vw, 80px); line-height: 1; }
.studio-head .lead { max-width: 420px; }
.studio-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-auto-rows: minmax(200px, auto);
  gap: clamp(10px, 1.5vw, 20px);
  align-items: stretch;
}
.mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  min-height: 340px;
}
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .6s ease; }
.mosaic-item:hover img { transform: scale(1.05); filter: brightness(0.92); }
.mosaic-item.tall { grid-row: span 2; min-height: 620px; }
.mosaic-item.wide { grid-column: span 2; }
.mosaic-label {
  position: absolute;
  left: 18px; bottom: 16px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
  background: rgba(22,19,15,.35);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 40px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease, transform .4s var(--ease);
}
.mosaic-item:hover .mosaic-label { opacity: 1; transform: none; }

/* ══ SECTION 03 — SERVICES ══ */
.services { padding: clamp(90px, 12vw, 160px) 0; background: var(--cream); }
.services-head { margin-bottom: 60px; }
.services-head h2 { font-family: var(--serif); font-size: clamp(40px, 6vw, 80px); line-height: 1; margin-bottom: 20px; }
.services-head .lead { max-width: 520px; }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr 0.6fr 0.5fr auto;
  align-items: center;
  gap: 20px;
  padding: 26px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .3s;
}
.service-row:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-row .s-num { font-size: 11px; letter-spacing: 0.2em; color: var(--stone); }
.service-row .s-name { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 28px); font-weight: 600; }
.service-row .s-dur { font-size: 12px; color: var(--stone); }
.service-row .s-price { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--wine); white-space: nowrap; }
.service-row .s-go { font-size: 18px; color: var(--ink); transition: transform .3s ease, color .2s; }
.service-row:hover .s-go { transform: translateX(6px); color: var(--wine); }
.service-row .s-preview {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: 240px;
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity .45s ease, transform .6s var(--ease);
}
.service-row:hover .s-preview { opacity: .12; transform: scale(1); }
.service-row:hover .s-preview.inline { opacity: 1; transform: none; z-index: 2; }

/* ══ SECTION 04 — WORKS / GALLERY ══ */
.works { padding: clamp(90px, 12vw, 160px) 0; background: var(--white); }
.works-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 30px; margin-bottom: 40px; }
.works-head h2 { font-family: var(--serif); font-size: clamp(40px, 6vw, 80px); line-height: 1; }
.work-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.work-filters button {
  background: none;
  border: 1px solid var(--line);
  padding: 9px 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--sans);
  border-radius: 40px;
  cursor: pointer;
  color: var(--graphite-soft);
  transition: all .25s ease;
}
.work-filters button:hover { border-color: var(--wine); color: var(--wine); }
.work-filters button.active { background: var(--wine); border-color: var(--wine); color: #fff; }
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.5vw, 18px);
}
.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  background: var(--cream);
  animation: fadeUp .6s var(--ease) both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.work-item.tall { aspect-ratio: 3 / 4.4; }
.work-item.wide { aspect-ratio: 16 / 10; }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .5s ease; }
.work-item:hover img { transform: scale(1.06); filter: brightness(0.85); }
.work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55));
  opacity: 0;
  transition: opacity .4s ease;
}
.work-item:hover .work-overlay { opacity: 1; }
.work-overlay b { color: #fff; font-size: 15px; }
.work-overlay span { color: rgba(255,255,255,.75); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }
.work-item.hide { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(22,19,15,.92);
  z-index: 5000;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
  padding: 40px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(80vw, 900px); max-height: 80vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
}
.lightbox-meta {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}

/* ══ SECTION 05 — MASTERS ══ */
.masters { padding: clamp(90px, 12vw, 160px) 0; background: var(--cream); }
.masters-head h2 { font-family: var(--serif); font-size: clamp(40px, 6vw, 80px); line-height: 1; margin-bottom: 20px; }
.masters-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 2vw, 24px); }
.master-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
.master-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .5s ease; }
.master-card:hover img { transform: scale(1.06); filter: brightness(0.8); }
.master-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, transparent 30%, rgba(22,19,15,.8));
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .45s var(--ease);
}
.master-card:hover .master-info { opacity: 1; transform: none; }
.master-info b { color: #fff; font-size: 20px; font-family: var(--serif); }
.master-info span { color: rgba(255,255,255,.75); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin: 6px 0 14px; }
.master-info .btn { align-self: flex-start; }

/* ══ SECTION 06 — EDUCATION ══ */
.education { background: var(--ink); color: var(--cream); padding: clamp(100px, 14vw, 180px) 0; }
.education .section-num { color: var(--stone); }
.education .lead { color: rgba(247,244,239,.9); }
.education h2 { font-family: var(--serif); font-size: clamp(44px, 7vw, 96px); line-height: 1; color: #fff; margin: 20px 0; }
.education-sub { font-size: 14px; letter-spacing: 0.06em; color: var(--stone); max-width: 560px; margin-bottom: 70px; }
.edu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.edu-card {
  background: var(--graphite);
  border: 1px solid rgba(247,244,239,.08);
  border-radius: 2px;
  padding: clamp(26px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  transition: background .4s ease, transform .4s var(--ease), border-color .3s;
}
.edu-card:hover { background: var(--wine); transform: translateY(-4px); }
.edu-card .edu-level { font-size: 12px; letter-spacing: 0.35em; color: var(--gold); }
.edu-card h3 { font-family: var(--serif); font-size: clamp(30px, 4vw, 44px); color: #fff; line-height: 1.1; }
.edu-card p { font-size: 14px; color: rgba(247,244,239,.65); max-width: 380px; }
.edu-card .edu-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; color: rgba(247,244,239,.8); font-size: 12px; letter-spacing: 0.1em; }
.edu-card .edu-arrow { font-size: 20px; transition: transform .3s ease; }
.edu-card:hover .edu-arrow { transform: translateX(8px); }
.edu-cta { margin-top: 40px; text-align: center; }

/* ══ SECTION 07 — JOURNAL ══ */
.journal { padding: clamp(90px, 12vw, 160px) 0; background: var(--cream); }
.journal-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 30px; margin-bottom: 60px; }
.journal-head h2 { font-family: var(--serif); font-size: clamp(40px, 6vw, 80px); line-height: 1; }
.journal-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 14px; }
.j-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s ease;
}
.j-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.j-card.lead-card { grid-row: span 2; }
.j-card .j-img { overflow: hidden; aspect-ratio: 16 / 10; }
.j-card.lead-card .j-img { aspect-ratio: 16 / 11; }
.j-card .j-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.j-card:hover .j-img img { transform: scale(1.05); }
.j-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.j-tag { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--wine); font-weight: 700; }
.j-card h3 { font-family: var(--serif); font-size: 22px; line-height: 1.25; }
.j-card.lead-card h3 { font-size: clamp(24px, 3vw, 34px); }
.j-card p { font-size: 13.5px; color: var(--stone); }
.j-meta { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); margin-top: auto; }

/* ══ SECTION 08 — COMMUNITY ══ */
.community { background: var(--white); padding: clamp(90px, 12vw, 160px) 0; }
.community-head { margin-bottom: 60px; }
.community-head h2 { font-family: var(--serif); font-size: clamp(40px, 6vw, 80px); line-height: 1; margin-bottom: 20px; }
.community-marquee {
  display: flex;
  gap: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}
.community-marquee img { height: clamp(200px, 26vw, 360px); width: auto; border-radius: 2px; }
.community-quote {
  background: var(--wine-soft);
  padding: clamp(50px, 8vw, 110px) 0;
  text-align: center;
  margin-top: 60px;
}
.community-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 52px);
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
  color: var(--ink);
}
.community-quote cite { display: block; margin-top: 24px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--wine); font-style: normal; }

/* ══ SECTION 09 — REVIEWS ══ */
.reviews { padding: clamp(90px, 12vw, 160px) 0; background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: clamp(30px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-card blockquote { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 30px); line-height: 1.4; }
.review-author { display: flex; align-items: center; gap: 16px; }
.review-author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.review-author b { display: block; font-size: 14px; }
.review-author span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); }
.review-stars { color: var(--gold); letter-spacing: 4px; font-size: 13px; }

/* ══ SECTION 10 — SOCIAL ══ */
.social { padding: clamp(90px, 12vw, 150px) 0; background: var(--ink); color: var(--cream); text-align: center; }
.social h2 { font-family: var(--serif); font-size: clamp(40px, 6vw, 80px); color: #fff; margin-bottom: 12px; }
.social .follow-tag { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 50px; }
.social-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-bottom: 50px; }
.social-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 2px; transition: transform .4s var(--ease), filter .4s ease; cursor: pointer; }
.social-grid img:hover { transform: scale(1.05); filter: brightness(0.85); }
.social-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.social-links a {
  border: 1px solid rgba(247,244,239,.25);
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all .3s ease;
}
.social-links a:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ══ SECTION 11 — FINAL ══ */
.final { background: var(--cream); padding: clamp(120px, 16vw, 220px) 0 90px; text-align: center; }
.final .final-logo {
  font-family: var(--serif);
  font-size: clamp(80px, 18vw, 240px);
  line-height: 0.85;
  letter-spacing: 0.06em;
  color: var(--wine);
  margin-bottom: 30px;
}
.final .final-tag { font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--stone); margin-bottom: 60px; }
.final-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 70px; }
.final-contacts { display: flex; justify-content: center; gap: clamp(16px, 3vw, 40px); flex-wrap: wrap; font-size: 13px; letter-spacing: 0.08em; color: var(--graphite-soft); }
.final-contacts a { border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: color .2s, border-color .2s; }
.final-contacts a:hover { color: var(--wine); border-color: var(--wine); }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 40px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 30px;
  cursor: pointer;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-solid { background: var(--wine); color: #fff; }
.btn-solid:hover { background: var(--wine-light); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(90,24,38,.28); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.btn-outline { background: transparent; color: var(--wine); border: 1px solid var(--wine); }
.btn-outline:hover { background: var(--wine); color: #fff; }
.btn-ghost-dark { background: transparent; color: #fff; border: 1px solid rgba(247,244,239,.3); }
.btn-ghost-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-lg { padding: 19px 38px; font-size: 12.5px; }
.btn-sm { padding: 11px 20px; font-size: 11px; }

/* ══ FOOTER ══ */
.footer { background: var(--ink); color: rgba(247,244,239,.55); padding: 40px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12px; letter-spacing: 0.06em; }
.footer a { color: rgba(247,244,239,.8); }
.footer a:hover { color: #fff; }

/* ══ PAGE HERO (subpages) ══ */
.page-hero { padding: 180px 0 90px; background: var(--cream); }
.page-hero .section-num { margin-bottom: 24px; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(52px, 10vw, 120px); line-height: 0.95; margin-bottom: 28px; }
.page-hero .lead { max-width: 620px; }

/* ══ COURSE PAGE ══ */
.course-hero { background: var(--ink); color: var(--cream); padding: 190px 0 100px; }
.course-hero .section-num { color: var(--gold); }
.course-hero h1 { font-family: var(--serif); font-size: clamp(50px, 9vw, 110px); line-height: 0.95; color: #fff; margin: 18px 0 26px; }
.course-hero .lead { color: rgba(247,244,239,.9); max-width: 640px; }
.course-meta { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 44px; }
.course-meta .cm { display: flex; flex-direction: column; }
.course-meta b { font-family: var(--serif); font-size: 26px; color: #fff; }
.course-meta span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }
.course-body { background: var(--cream); padding: clamp(70px, 10vw, 130px) 0; }
.course-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.course-section { margin-bottom: 56px; }
.course-section h3 { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--wine); margin-bottom: 22px; }
.course-section h4 { font-family: var(--serif); font-size: 28px; margin-bottom: 16px; }
.course-section p { color: var(--graphite-soft); font-size: 15px; max-width: 560px; margin-bottom: 12px; }
.curriculum { border-top: 1px solid var(--line); }
.lesson {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  cursor: pointer;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 20px;
  transition: padding .3s ease;
}
.lesson:hover { padding-left: 10px; }
.lesson .l-num { font-family: var(--serif); font-size: 20px; color: var(--stone); }
.lesson .l-title { font-weight: 600; font-size: 16px; }
.lesson .l-arrow { color: var(--stone); transition: transform .3s ease, color .2s; }
.lesson:hover .l-arrow { color: var(--wine); transform: translateX(6px); }
.lesson-desc {
  display: none;
  grid-column: 2 / 4;
  color: var(--stone);
  font-size: 14px;
  padding-bottom: 4px;
}
.lesson.open .lesson-desc { display: block; animation: fadeUp .4s ease both; }
.lesson.open .l-arrow { transform: rotate(90deg); color: var(--wine); }
.course-sidebar { position: sticky; top: 110px; }
.price-card-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.price-card-box .pc-price { font-family: var(--serif); font-size: 44px; font-weight: 700; color: var(--wine); margin-bottom: 6px; }
.price-card-box .pc-note { font-size: 12px; color: var(--stone); margin-bottom: 24px; }
.included-list { list-style: none; margin: 24px 0; display: grid; gap: 12px; }
.included-list li { display: flex; gap: 12px; font-size: 14px; color: var(--graphite-soft); }
.included-list li::before { content: "✓"; color: var(--wine); font-weight: 700; }

/* ══ JOURNAL PAGE ══ */
.journal-page { padding: 140px 0 90px; background: var(--cream); }
.journal-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.journal-page .j-card h3 { font-size: 20px; }

/* ══ ARTICLE PAGE ══ */
.article-hero { padding: 170px 0 60px; background: var(--cream); }
.article-hero h1 { font-family: var(--serif); font-size: clamp(38px, 6vw, 72px); line-height: 1.1; max-width: 900px; margin: 20px 0 24px; }
.article-meta { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }
.article-cover { margin-top: 50px; }
.article-cover img { width: 100%; max-height: 620px; object-fit: cover; border-radius: 2px; }
.article-body { padding: 70px 0 100px; background: var(--cream); }
.article-body .container { max-width: 780px; }
.article-body p { font-size: 17px; color: var(--graphite-soft); margin-bottom: 22px; line-height: 1.8; }
.article-body h2 { font-family: var(--serif); font-size: 30px; margin: 40px 0 18px; }
.article-body h3 { font-family: var(--serif); font-size: 23px; margin: 32px 0 14px; }
.article-body blockquote { font-family: var(--serif); font-size: 24px; line-height: 1.5; color: var(--wine); border-left: 2px solid var(--wine); padding-left: 24px; margin: 34px 0; }
.article-body ul { margin: 20px 0; display: grid; gap: 10px; }
.article-body li { padding-left: 20px; position: relative; color: var(--graphite-soft); }
.article-body li::before { content: "—"; position: absolute; left: 0; color: var(--wine); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { max-width: 560px; margin: 0 auto; width: 100%; }
  .hero { padding-top: 120px; }
  .brand-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .studio-mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic-item.tall { grid-row: auto; min-height: 340px; }
  .service-row { grid-template-columns: 1fr; grid-template-rows: auto; gap: 8px; }
  .service-row .s-preview { display: none; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .edu-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .journal-grid .j-card.lead-card { grid-column: span 2; }
  .masters-grid { grid-template-columns: repeat(2, 1fr); }
  .course-grid { grid-template-columns: 1fr; }
  .course-sidebar { position: static; }
  .reviews-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .nav, .nav-cta { display: none; }
  .burger { display: block; }
  .works-grid { grid-template-columns: 1fr 1fr; }
  .masters-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-grid .j-card.lead-card { grid-column: span 1; }
  .brand-facts { grid-template-columns: 1fr; }
  .studio-mosaic { grid-template-columns: 1fr; }
  .mosaic-item.wide { grid-column: span 1; }
  .service-list { grid-template-columns: 1fr; }
  .edu-card { min-height: 240px; }
  .hero h1 { font-size: 72px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .final-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
