*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p a {
  color: var(--accent, #c9a66b);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
p a:hover { color: #d9b67b; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --surface: #f7f5f2;
  --surface-warm: #f1ede6;
  --ink: #0a0a0a;
  --ink-soft: #2a2a2a;
  --muted: #8a8682;
  --muted-light: #c9c5bf;
  --accent: #c9a66b;
  --line: rgba(10,10,10,0.1);
  --line-dark: rgba(255,255,255,0.12);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1400px;
  --gutter: clamp(20px, 4vw, 60px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--ink); color: var(--surface); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border-bottom: 1px solid var(--line-dark);
  transition: transform .4s var(--ease);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.header__nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.header__nav a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity .3s var(--ease);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: #fff;
  transition: width .4s var(--ease);
}
.header__nav a:hover { opacity: 1; }
.header__nav a:hover::after { width: 100%; }

.header__logo { text-align: center; justify-self: center; }
.header__logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}
.header__logo-sub {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}

.header__social {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
}
.header__social a:not(.header__shop-link) {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  transition: all .3s var(--ease);
}
.header__social a:not(.header__shop-link):hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.header__social svg { width: 14px; height: 14px; }

.header__shop-link {
  margin-left: 6px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 12px;
  border: 1px solid rgba(201,166,107,0.35);
  border-radius: 2px;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.header__shop-link:hover {
  background: rgba(201,166,107,0.1);
  border-color: rgba(201,166,107,0.7);
}
.header__burger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  justify-self: end;
}
.header__burger span {
  display: block;
  width: 22px; height: 1px;
  background: #fff;
  transition: transform .3s var(--ease);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 72px;
  background: var(--bg);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 72px 0 0 0;
  background-size: cover;
  background-position: center;
}
.hero__media::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.4) 55%, rgba(10,10,10,0.85) 100%);
}
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  padding: 80px var(--gutter) 80px;
  max-width: var(--container);
  margin: 0 auto;
}

.hero__content[data-text-position="top-left"]    { justify-content: flex-start; align-items: flex-start; padding-top: 140px; }
.hero__content[data-text-position="top-center"]  { justify-content: flex-start; align-items: center; text-align: center; padding-top: 140px; }
.hero__content[data-text-position="top-right"]   { justify-content: flex-start; align-items: flex-end; text-align: right; padding-top: 140px; }
.hero__content[data-text-position="middle-left"]   { justify-content: center; align-items: flex-start; }
.hero__content[data-text-position="middle-center"] { justify-content: center; align-items: center; text-align: center; }
.hero__content[data-text-position="middle-right"]  { justify-content: center; align-items: flex-end; text-align: right; }
.hero__content[data-text-position="bottom-left"]   { justify-content: flex-end; align-items: flex-start; }
.hero__content[data-text-position="bottom-center"] { justify-content: flex-end; align-items: center; text-align: center; }
.hero__content[data-text-position="bottom-right"]  { justify-content: flex-end; align-items: flex-end; text-align: right; }
.hero__content[data-text-position$="-center"] .hero__cta { align-self: auto; }
.hero__content[data-text-position$="-right"] .hero__cta { align-self: auto; }
.hero__monogram {
  position: absolute;
  top: 120px;
  right: var(--gutter);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--accent);
  opacity: 0.95;
  text-align: right;
  animation: fadeInRight 1.6s var(--ease) .4s both;
}
.hero__monogram small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.6;
  margin-top: 14px;
  font-style: normal;
  font-weight: 400;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 10vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  animation: fadeUp 1.4s var(--ease) .2s both;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.hero__subtitle {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 36px;
  animation: fadeUp 1.4s var(--ease) .45s both;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 30px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all .4s var(--ease);
  align-self: flex-start;
  animation: fadeUp 1.4s var(--ease) .6s both;
  backdrop-filter: blur(4px);
}
.hero__cta:hover {
  background: #fff;
  color: var(--bg);
  border-color: #fff;
  padding-right: 40px;
}
.hero__cta svg { transition: transform .4s var(--ease); }
.hero__cta:hover svg { transform: translateX(4px); }

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2.4s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.philosophy {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--surface);
  position: relative;
}
.philosophy::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 60px;
  background: var(--line);
}
.philosophy__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.philosophy__block { margin-bottom: 48px; }
.philosophy__block:last-child { margin-bottom: 0; }
.philosophy__word {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 34px;
  letter-spacing: 0.02em;
  margin-right: 6px;
}
.philosophy__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
}
.philosophy__text em { font-style: italic; color: var(--ink); }

.studio-view {
  background: var(--bg);
  position: relative;
}
.studio-view__image {
  height: clamp(360px, 60vh, 680px);
  background-size: cover;
  background-position: center;
  position: relative;
}
.studio-view__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
}
.studio-view__caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.05em;
  z-index: 2;
  text-align: center;
}

.gallery {
  padding: 0;
  background: #141210;
  position: relative;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: #141210;
}
.gallery__item {
  aspect-ratio: 3/5;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.35s ease;
}
.gallery__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  opacity: 0.5;
  transition: opacity .5s var(--ease);
}
.gallery__item:hover::after { opacity: 0.8; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__label {
  position: absolute;
  bottom: 24px; left: 24px;
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all .5s var(--ease);
}
.gallery__item:hover .gallery__label { opacity: 1; transform: translateY(0); }

.gallery__pagenav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0; right: 0;
  padding: 0 20px;
  pointer-events: none;
  background: none;
  z-index: 10;
}
.gallery__pagebtn {
  pointer-events: all;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.gallery__pagebtn:hover { background: rgba(10,10,10,0.7); border-color: rgba(255,255,255,0.5); }
.gallery__pageinfo {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.5);
  min-width: 50px;
  text-align: center;
}

.about {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--surface);
  text-align: center;
}
.about__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.about .eyebrow {
  display: inline-block;
  margin-bottom: 28px;
}
.about .eyebrow::before, .about .eyebrow::after {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--muted);
  vertical-align: middle;
  margin: 0 18px;
}
.about__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.2;
  margin-bottom: 32px;
}
.about__title em { font-style: italic; color: var(--accent); }
.about__text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.team {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.team__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.team__heading {
  text-align: center;
  margin-bottom: 50px;
}
.team__heading h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 12px;
}
.team__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.team__card {
  display: flex;
  align-items: center;
  flex: 0 0 calc((100% - 4 * 24px) / 5);
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: all .4s var(--ease);
  background: #fff;
}
.team__card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15);
}
.team__icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.team__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
}

.faq {
  background: var(--bg);
  color: #fff;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.faq__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.faq__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 54px);
  text-align: center;
  margin-bottom: 60px;
}
.faq__title em { font-style: italic; color: var(--accent); }

.faq__item { border-bottom: 1px solid var(--line-dark); }
.faq__item:first-child { border-top: 1px solid var(--line-dark); }

.faq__q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.3;
  transition: padding .3s var(--ease);
}
.faq__q:hover { padding-left: 6px; }

.faq__icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  transition: all .3s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__icon { background: var(--accent); border-color: var(--accent); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding .4s var(--ease);
  color: rgba(255,255,255,0.75);
  font-size: 14.5px;
  line-height: 1.8;
}
.faq__item.is-open .faq__a {
  max-height: 800px;
  padding: 0 0 32px 0;
}
.faq__a p + p { margin-top: 14px; }

.faq__more {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px var(--gutter) 0;
  text-align: center;
}
.faq__more-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: color .2s, border-color .2s, background .2s;
}
.faq__more-btn:hover {
  color: var(--accent);
  border-color: rgba(201,166,107,0.4);
  background: rgba(201,166,107,0.05);
}

.aftercare {
  padding: clamp(70px, 10vw, 130px) 0;
  background: var(--surface-warm);
  position: relative;
  overflow: hidden;
}
.aftercare__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 360px 1fr;
  column-gap: 56px;
  row-gap: 0;
  align-items: start;
}
.aftercare__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  font-style: italic;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  align-self: end;
}
.aftercare__heading-divider {
  align-self: end;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.aftercare__col h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  margin: 22px 0 10px;
  letter-spacing: 0.01em;
}
.aftercare__col p, .aftercare__col li {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.aftercare__col p + p, .aftercare__col p + h4 { margin-top: 14px; }
.aftercare__col ul {
  list-style: none;
  padding-left: 0;
  margin: 8px 0;
}
.aftercare__col li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}
.aftercare__col li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1px;
  background: var(--accent);
}
.aftercare__center {
  position: sticky;
  top: 100px;
}
.aftercare__center img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 2px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.45), 0 8px 24px -8px rgba(0,0,0,0.25);
  display: block;
}

.footer {
  background: var(--bg);
  color: #fff;
  padding: clamp(60px, 8vw, 100px) 0 0;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer__col h4 {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer__col p, .footer__col a {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}
.footer__col a { transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__col small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-style: italic;
  font-family: var(--font-display);
}
.footer__col--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  text-align: center;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__logo-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 42px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
}
.footer__logo-sub {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer__map {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: #222;
  border: 1px solid var(--line-dark);
}
.footer__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.85);
}
.footer__bottom {
  margin-top: 60px;
  padding: 24px var(--gutter);
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer__bottom a:hover { color: #fff; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--bg);
  color: #fff;
  z-index: 99;
  padding: 100px 30px 40px;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.mobile-menu__list a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  font-weight: 300;
}
.header__burger.is-active span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.header__burger.is-active span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mobile-menu__social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color .25s;
}
.mobile-menu__social a:hover { color: var(--accent); }
.mobile-menu__social svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .team__card { flex: 0 0 calc((100% - 24px) / 2); }
  .aftercare__inner { grid-template-columns: 1fr; row-gap: 0; column-gap: 0; }
  .aftercare__inner > :nth-child(2) { display: none; }
  .aftercare__inner > :nth-child(5) { order: 1; position: static; max-width: 420px; margin: 0 auto 36px; }
  .aftercare__inner > :nth-child(1) { order: 2; margin-bottom: 20px; align-self: auto; }
  .aftercare__inner > :nth-child(4) { order: 3; margin-bottom: 36px; }
  .aftercare__inner > :nth-child(3) { order: 4; margin-bottom: 20px; align-self: auto; }
  .aftercare__inner > :nth-child(6) { order: 5; }
  .aftercare__center img { height: 360px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__col--logo { grid-column: 1 / -1; order: -1; padding: 16px 0; }
}
@media (max-width: 768px) {
  
  .header__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .header__nav { display: none; }
  .header__social { display: none; }
  .header__burger {
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .hero__content { padding: 60px var(--gutter) 100px; }
  .philosophy__text { font-size: 17px; }
  .philosophy__word { font-size: 26px; }
  
  .gallery { position: relative; }
  .gallery__grid {
    display: flex !important;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 2px;
  }
  .gallery__grid::-webkit-scrollbar { display: none; }
  .gallery__item {
    flex: 0 0 calc(50% - 1px);
    scroll-snap-align: start;
  }
  
  .gallery__pagenav {
    display: flex !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0; right: 0;
    padding: 0 10px;
    justify-content: space-between;
    pointer-events: none;
    background: none;
    border: none;
    margin: 0;
    z-index: 10;
  }
  .gallery__pagebtn {
    pointer-events: all;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(10,10,10,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .gallery__pageinfo { display: none; }
  .gallery__label { opacity: 1; transform: translateY(0); font-size: 15px; bottom: 12px; left: 12px; }
  .team__card { flex: 0 0 100%; justify-content: center; }
  .faq__q { font-size: 18px; padding: 22px 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer__col { text-align: center; }
  .footer__col--logo { order: -1; }
  .footer__map { max-width: 380px; margin: 0 auto; }
  .footer__bottom { gap: 20px; font-size: 11px; }
}
@media (max-width: 480px) {
  :root { --gutter: 20px; }
  .hero__title { font-size: 58px; }
  .hero__monogram { font-size: 42px; top: 90px; }
  .hero__cta { font-size: 11px; padding: 14px 24px; }

}