/* =========================================================
   THE GLAMBAR SALON — design tokens
   Display: Bodoni Moda (editorial serif, beauty/fashion register)
   Body/UI: Jost (clean geometric sans)
   Palette: near-black ink + white / grey / black accents + cream
   ========================================================= */
:root {
  --ink: #0d0c0e;
  --ink-soft: #171516;
  --charcoal: #1f1c1d;
  --cream: #f7f3ec;
  --cream-dim: #e2e2e2;
  --gold: #d6d6d6;
  --gold-bright: #ffffff;
  --gold-dim: #3f3f3f;
  --blush: #e7c9c2;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(13, 12, 14, 0.12);
  --text-onink: #efe9dd;
  --text-onink-dim: #b7ac97;
  --text-oncream: #241f1a;

  --serif: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius: 2px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0;
  width: 100%;
  background: var(--cream);
  color: var(--text-oncream);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* Scroll-reveal: only takes effect once JS confirms it can un-hide content */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--d, 0s);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js .menu__card:nth-child(3n + 1) {
  transition-delay: 0.05s;
}
.js .menu__card:nth-child(3n + 2) {
  transition-delay: 0.15s;
}
.js .menu__card:nth-child(3n + 3) {
  transition-delay: 0.25s;
}

/* Lookbook photos: tilt-and-rise reveal */
.js .lb.reveal {
  transform: translateY(50px) rotate(-6deg) scale(0.92);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--d, 0s);
}
.js .lb.reveal:nth-child(even) {
  transform: translateY(50px) rotate(6deg) scale(0.92);
}
.js .lb.reveal.is-visible {
  transform: translateY(0) rotate(0deg) scale(1);
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.9rem;
}
.eyebrow--onlight {
  color: var(--gold-dim);
}

.section-title {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  color: var(--text-oncream);
  margin-bottom: 0.6rem;
}
.section-title--dark {
  color: var(--text-onink);
}
.section-sub {
  max-width: 46ch;
  color: #5d5348;
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 auto 3rem;
}
.lookbook .section-sub,
.reviews .section-sub {
  color: var(--text-onink-dim);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover {
  background: var(--gold-bright);
}
.btn--instagram {
  background: linear-gradient(
    45deg,
    #f9ce34 0%,
    #ee2a7b 45%,
    #6228d7 100%
  );
  color: #fff;
}
.btn--instagram:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 20px rgba(238, 42, 123, 0.35);
}
.btn--facebook {
  background: #1877f2;
  color: #fff;
}
.btn--facebook:hover {
  background: #0d63d0;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.35);
}
.btn--ghost {
  border-color: rgba(239, 233, 221, 0.45);
  color: var(--text-onink);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}
.btn--ghost-dark {
  border-color: var(--gold-dim);
  color: var(--gold-dim);
  margin-top: 1.4rem;
}
.btn--ghost-dark:hover {
  background: var(--gold-dim);
  color: var(--cream);
}

/* ========================= NAV ========================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.9rem clamp(1rem, 3vw, 2rem);
  padding: 0.85rem clamp(1.1rem, 3vw, 1.8rem);
  background: rgba(13, 12, 14, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  transition:
    background-color 0.35s ease,
    padding 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    margin 0.35s ease;
}
.nav.is-scrolled {
  margin: 0.55rem clamp(1rem, 3vw, 2rem);
  background: rgba(13, 12, 14, 0.92);
  border-color: var(--line-dark);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.32);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.nav__brand:hover .nav__mark {
  transform: rotate(-8deg) scale(1.06);
}
.nav__word {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text-onink);
  letter-spacing: 0.02em;
}
.nav__word em {
  font-style: italic;
  color: var(--gold-bright);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.nav__links a {
  position: relative;
  font-size: 0.86rem;
  color: var(--text-onink-dim);
  letter-spacing: 0.02em;
  padding-bottom: 0.2rem;
  transition: color 0.2s;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: right 0.28s ease;
}
.nav__links a:not(.nav__cta):hover::after {
  right: 0;
}
.nav__links a:hover {
  color: var(--gold-bright);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--gold);
  color: var(--ink) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.nav__cta:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.3);
}
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  padding: 0.4rem;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-onink);
  display: block;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}
.nav__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================= HERO ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  max-width: 100vw;
  background: radial-gradient(ellipse at 75% 20%, #221c17 0%, var(--ink) 55%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem clamp(1.2rem, 6vw, 6rem) 6rem;
  box-sizing: border-box;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.1) brightness(0.55) blur(60px);
  transform: scale(1.2);
}
.hero__bg-main {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: saturate(1) brightness(1.08);
}
@media (max-width: 720px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 7rem 1.2rem 3rem;
  }
}
@media (min-width: 721px) {
  .hero__bg-main {
    object-fit: cover;
    object-position: 65% 35%;
  }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(13, 12, 14, 0.4) 0%,
    rgba(13, 12, 14, 0.18) 28%,
    transparent 50%
  );
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}
.hero__glow--1 {
  width: 46vw;
  height: 46vw;
  max-width: 620px;
  max-height: 620px;
  left: -12%;
  top: -10%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 70%
  );
  animation: drift1 16s ease-in-out infinite;
}
.hero__glow--2 {
  width: 30vw;
  height: 30vw;
  max-width: 420px;
  max-height: 420px;
  right: 6%;
  bottom: -8%;
  background: radial-gradient(
    circle,
    rgba(231, 201, 194, 0.16) 0%,
    transparent 70%
  );
  animation: drift2 13s ease-in-out infinite;
}
@keyframes drift1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(3%, 4%);
  }
}
@keyframes drift2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-4%, -3%);
  }
}
.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 760px;
}
.hero__inner .eyebrow {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.6rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-onink-dim);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  animation: riseIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.hero__title {
  color: var(--text-onink);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  animation: riseIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero__title--caps {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.hero__script {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--gold-bright);
  margin: 0 0 0.3rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
  animation: riseIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(
    100deg,
    var(--gold-dim) 0%,
    var(--gold-bright) 45%,
    var(--gold) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  color: var(--text-onink-dim);
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 2.4rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  animation: riseIn 1s 0.15s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.4rem;
  animation: riseIn 1s 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  margin-bottom: 2.2rem;
  transition: color 0.2s ease;
  animation: riseIn 1s 0.38s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero__phone:hover {
  color: var(--text-onink);
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  animation: riseIn 1s 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero__stats div {
  display: flex;
  flex-direction: column;
}
.hero__stats strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold-bright);
  line-height: 1;
}
.hero__stats span {
  font-size: 0.76rem;
  color: var(--text-onink-dim);
  letter-spacing: 0.03em;
  margin-top: 0.35rem;
}
.div-line {
  width: 1px;
  height: 34px;
  background: var(--line-dark);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  z-index: 3;
  width: 30px;
  height: 46px;
  border: 1.5px solid var(--line-dark);
  border-radius: 999px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-bright);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(14px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}
@media (max-width: 720px) {
  .hero__scroll {
    display: none;
  }
}

/* ========================= LOCAL LANDING HERO (SEO pages) ========================= */
.local-hero {
  background: radial-gradient(ellipse at 75% 20%, #221c17 0%, var(--ink) 55%);
  padding: 9rem clamp(1.2rem, 6vw, 6rem) 5rem;
  text-align: center;
}
.local-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}
.local-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--text-onink);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 1.2rem;
}
.local-hero__sub {
  color: var(--text-onink-dim);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 auto 2rem;
}
.local-hero .hero__cta {
  justify-content: center;
}
.local-hero .hero__stats {
  justify-content: center;
}

/* ========================= ABOUT STRIP ========================= */
.about {
  background: var(--cream);
  padding: 5rem clamp(1.2rem, 6vw, 6rem);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  max-width: var(--container);
  margin: 0 auto;
}
.about__mark {
  font-size: 1.6rem;
  color: var(--gold-dim);
  line-height: 1;
  margin-top: 0.3rem;
}
.about__text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.55;
  color: #3a3128;
  max-width: 52ch;
}

/* ========================= THE MENU (signature section) ========================= */
.menu {
  position: relative;
  overflow: hidden;
  background: var(--cream-dim);
  padding: 6rem clamp(1.2rem, 6vw, 6rem) 7rem;
  text-align: center;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.menu__content {
  position: relative;
  z-index: 1;
}
.menu__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.menu__decor-icon {
  position: absolute;
  color: var(--gold-dim);
  opacity: 0.16;
  animation: menuIconFloat 9s ease-in-out infinite;
}
.menu__decor-icon--1 {
  width: 46px;
  height: 46px;
  top: 8%;
  left: 5%;
  animation-duration: 10s;
}
.menu__decor-icon--2 {
  width: 38px;
  height: 38px;
  top: 14%;
  right: 8%;
  animation-duration: 8s;
  animation-delay: 0.6s;
}
.menu__decor-icon--3 {
  width: 52px;
  height: 52px;
  bottom: 10%;
  left: 9%;
  animation-duration: 11s;
  animation-delay: 1.2s;
}
.menu__decor-icon--4 {
  width: 40px;
  height: 40px;
  bottom: 16%;
  right: 6%;
  animation-duration: 9s;
  animation-delay: 0.3s;
}
.menu__decor-icon--5 {
  width: 34px;
  height: 34px;
  top: 46%;
  left: 2%;
  animation-duration: 8.5s;
  animation-delay: 0.9s;
}
.menu__decor-icon--6 {
  width: 34px;
  height: 34px;
  top: 42%;
  right: 3%;
  animation-duration: 10.5s;
  animation-delay: 1.5s;
}
@keyframes menuIconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-16px) rotate(4deg);
  }
}
@media (max-width: 980px) {
  .menu__decor-icon--5,
  .menu__decor-icon--6 {
    display: none;
  }
}
@media (max-width: 720px) {
  .menu__decor {
    display: none;
  }
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
  text-align: left;
}
.menu__card {
  position: relative;
  background: var(--cream);
  padding: 2.4rem 2rem 1.6rem;
  border: 1px solid var(--line-light);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}
.menu__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.menu__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(31, 28, 29, 0.1);
  border-color: transparent;
}
.menu__card:hover::before {
  transform: scaleX(1);
}
.menu__cat {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold-dim);
  color: var(--text-oncream);
}
.menu__cat-icon {
  width: 30px;
  height: 30px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  color: var(--gold-dim);
}
.menu__cat-icon svg {
  width: 16px;
  height: 16px;
}
.menu__list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--line-light);
  font-size: 1rem;
  transition: padding-left 0.25s ease;
}
.menu__list li:last-child {
  border-bottom: none;
}
.menu__list li:hover {
  padding-left: 0.35rem;
}
.menu__list li span {
  font-family: var(--serif);
  font-size: 1.06rem;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.menu__list li:hover span {
  color: var(--gold-dim);
}
.menu__list li i {
  flex: 1;
  border-bottom: 1px dotted var(--gold-dim);
  margin-bottom: 0.3rem;
  transition: border-color 0.25s ease;
}
.menu__list li a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-dim);
  white-space: nowrap;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}
.menu__list li a::after {
  content: "\2192";
  transition: transform 0.2s ease;
}
.menu__list li a:hover {
  color: var(--ink);
  gap: 0.5rem;
}
.menu__list li a:hover::after {
  transform: translateX(2px);
}

/* ========================= LOOKBOOK ========================= */
.lookbook {
  background: var(--ink);
  padding: 6rem clamp(1.2rem, 6vw, 6rem);
  text-align: center;
}
.lookbook__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 1.3rem;
  max-width: var(--container);
  margin: 0 auto;
}
.lb {
  position: relative;
  margin: 0;
  grid-column: span 2;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--charcoal);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s ease;
}
.lb:hover,
.lb:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
  outline: none;
}
.lb--feature {
  grid-column: span 4;
  grid-row: span 2;
}
.lb--tall {
  grid-row: span 2;
}
.lb--wide {
  grid-column: span 4;
}
@media (max-width: 980px) {
  .lookbook__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }
  .lb {
    grid-column: span 2;
  }
  .lb--feature,
  .lb--wide {
    grid-column: span 4;
  }
}
@media (max-width: 640px) {
  .lookbook__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
  }
  .lb,
  .lb--feature,
  .lb--wide {
    grid-column: span 2;
    grid-row: span 1;
  }
  .lb--tall {
    grid-row: span 2;
  }
}
.lb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lb:hover img,
.lb:focus-visible img {
  transform: scale(1.08);
}
.lb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, transparent 50%);
  opacity: 0.85;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.lb:hover::after,
.lb:focus-visible::after {
  opacity: 1;
}
.lb figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: #fff;
  transform: translateY(8px);
  transition: transform 0.35s ease;
}
.lb:hover figcaption,
.lb:focus-visible figcaption {
  transform: translateY(0);
}

/* ========================= LIGHTBOX ========================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 7, 8, 0.92);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox__frame {
  margin: 0;
  max-width: min(88vw, 640px);
  max-height: 82vh;
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lightbox.is-open .lightbox__frame {
  transform: scale(1);
}
.lightbox__img {
  display: block;
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__caption {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-onink);
  font-size: 1rem;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(239, 233, 221, 0.08);
  border: 1px solid var(--line-dark);
  color: var(--text-onink);
  border-radius: 50%;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--gold);
  color: var(--ink);
}
.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox__prev {
  left: 1.5rem;
}
.lightbox__next {
  right: 1.5rem;
}
@media (max-width: 720px) {
  .lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox__prev {
    left: 0.6rem;
  }
  .lightbox__next {
    right: 0.6rem;
  }
  .lightbox__close {
    top: 0.8rem;
    right: 0.8rem;
  }
}

/* ========================= SOCIAL / INSTAGRAM / REELS ========================= */
.social {
  background: var(--cream-dim);
  padding: 6rem clamp(1.2rem, 6vw, 6rem);
  text-align: center;
}
.social__tabs {
  display: inline-flex;
  gap: 0.4rem;
  margin: 0 auto 2.8rem;
  padding: 0.4rem;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
}
.social__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  opacity: 0.55;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    opacity 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.social__tab svg {
  width: 20px;
  height: 20px;
  flex: none;
}
.social__tab[data-tab="instagram"] {
  background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 45%, #6228d7 100%);
}
.social__tab[data-tab="facebook"] {
  background: #1877f2;
}
.social__tab:hover {
  opacity: 0.8;
}
.social__tab.is-active {
  opacity: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}
.social__panel {
  display: none;
}
.social__panel.is-active {
  display: block;
  animation: riseIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.social__icon--facebook {
  background: #1877f2;
  box-shadow: 0 10px 24px rgba(24, 119, 242, 0.3);
}
.social__badge--facebook {
  background: rgba(24, 119, 242, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
}
.social__cta--facebook {
  color: #6ea8ff;
}
.social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 45%, #6228d7 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(238, 42, 123, 0.28);
}
.reels__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8rem;
  max-width: var(--container);
  margin: 0 auto 3rem;
}
.reel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9 / 15;
  border-radius: 10px;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid var(--line-dark);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}
.reel-card:hover,
.reel-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.4);
  border-color: var(--gold-bright);
  outline: none;
}
.reel-card__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reel-card:hover .reel-card__thumb,
.reel-card:focus-visible .reel-card__thumb {
  transform: scale(1.07);
}
.reel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
}
.reel-card__badge {
  position: absolute;
  z-index: 2;
  top: 0.9rem;
  left: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  background: rgba(13, 12, 14, 0.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(239, 233, 221, 0.2);
  color: var(--text-onink);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.reel-card__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%) scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(239, 233, 221, 0.14);
  border: 1.5px solid rgba(239, 233, 221, 0.45);
  backdrop-filter: blur(2px);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 0.35s ease,
    border-color 0.35s ease;
}
.reel-card__play svg {
  width: 22px;
  height: 22px;
  color: #fff;
  margin-left: 3px;
}
.reel-card:hover .reel-card__play,
.reel-card:focus-visible .reel-card__play {
  transform: translate(-50%, -50%) scale(1.14);
  background: var(--gold);
  border-color: var(--gold-bright);
}
.reel-card:hover .reel-card__play svg,
.reel-card:focus-visible .reel-card__play svg {
  color: var(--ink);
}
.reel-card__foot {
  position: relative;
  z-index: 2;
  padding: 1.4rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.reel-card__caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: #fff;
}
.reel-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ee5586;
  font-weight: 600;
}
.reel-card__cta svg {
  flex: none;
}
.social__stats {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  margin-bottom: 2.4rem;
}
.social__stats strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold-dim);
  display: block;
}
.social__stats span {
  font-size: 0.76rem;
  color: #5d5348;
}
.social__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.social__cta .btn--ghost-dark {
  margin-top: 0;
}

/* ========================= REVIEWS / MAP ========================= */
.reviews {
  background: var(--ink);
  padding: 6rem clamp(1.2rem, 6vw, 6rem) 3rem;
  text-align: center;
}
.reviews__grid {
  max-width: var(--container);
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  text-align: left;
  align-items: center;
}
.reviews__badge {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 2.4rem;
  text-align: center;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}
.reviews__glogo {
  width: 34px;
  height: 34px;
  margin: 0 auto 1rem;
  display: block;
}
.reviews__score {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 3.4rem;
  color: #3c4043;
  line-height: 1;
}
.reviews__stars {
  color: #fbbc04;
  letter-spacing: 0.2em;
  margin: 0.5rem 0;
}
.reviews__badge p {
  color: #5f6368;
  font-size: 0.85rem;
  margin: 0;
}
.btn--google {
  margin-top: 1.4rem;
  background: #4285f4;
  color: #fff;
}
.btn--google:hover {
  background: #3367d6;
}
.review-quote {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--text-onink);
  margin: 0;
  padding-left: 1.6rem;
  border-left: 2px solid #4285f4;
}
.review-quote__mark {
  width: 26px;
  height: 26px;
  margin-bottom: 0.6rem;
  color: #4285f4;
  opacity: 0.9;
}
.review-quote cite {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-onink-dim);
  letter-spacing: 0.05em;
}
.map-wrap {
  max-width: var(--container);
  margin: 0 auto;
  filter: grayscale(0.15) contrast(1.05);
  border: 1px solid var(--line-dark);
}

/* ========================= FOOTER / VISIT ========================= */
.visit {
  background: var(--ink-soft);
  padding: 5rem clamp(1.2rem, 6vw, 6rem) 2rem;
  border-top: 1px solid var(--line-dark);
}
.visit__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}
.visit__mark {
  width: 44px;
  margin-bottom: 0.8rem;
}
.visit__word {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--text-onink);
  margin: 0;
}
.visit__tag {
  font-size: 0.78rem;
  color: var(--text-onink-dim);
  letter-spacing: 0.05em;
  margin: 0.4rem 0 1.2rem;
}
.visit__social {
  display: flex;
  gap: 0.9rem;
}
.visit__social a {
  color: var(--text-onink-dim);
  transition: color 0.2s;
}
.visit__social a:hover {
  color: var(--gold-bright);
}
.visit__col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin: 0 0 1rem;
}
.visit__col p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-onink-dim);
  margin: 0 0 0.8rem;
}
.visit__col a:hover {
  color: var(--gold-bright);
}
.visit__note {
  font-size: 0.8rem !important;
  font-style: italic;
  opacity: 0.75;
}
.visit__seo {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line-dark);
}
.visit__seo h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin: 0 0 0.9rem;
}
.visit__seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
}
.visit__seo-links a {
  font-size: 0.78rem;
  color: var(--text-onink-dim);
  padding-right: 0.9rem;
  border-right: 1px solid var(--line-dark);
  line-height: 1.4;
  transition: color 0.2s;
}
.visit__seo-links a:last-child {
  border-right: none;
  padding-right: 0;
}
.visit__seo-links a:hover {
  color: var(--gold-bright);
}
.visit__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 1.6rem;
  text-align: center;
}
.visit__bottom p {
  font-size: 0.8rem;
  color: var(--text-onink-dim);
  margin: 0;
}

/* ========================= FLOATING BUTTONS ========================= */
.floaters {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
}
.floater {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}
.floater:hover {
  transform: scale(1.07);
}
.floater--whatsapp {
  background: #25d366;
}
.floater--call {
  background: var(--gold);
  color: var(--ink);
}
.floater .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  animation: ringPulse 2.2s ease-out infinite;
}
.floater--call .ring {
  animation-delay: 1.1s;
}
@keyframes ringPulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  75% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 980px) {
  .menu__grid {
    grid-template-columns: 1fr;
  }
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  .visit__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .nav {
    /* backdrop-filter creates a new containing block, which would trap the
       mobile menu's position:fixed to this pill instead of the viewport */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(13, 12, 14, 0.96);
  }
  .nav.is-scrolled {
    background: rgba(13, 12, 14, 0.98);
  }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    height: 100vh;
    height: 100dvh;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.6rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 200;
    overflow-y: auto;
  }
  .nav__links.is-open {
    transform: translateX(0);
  }
  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 201;
  }
  .about {
    flex-direction: column;
  }
  .visit__grid {
    grid-template-columns: 1fr;
  }
  .floaters {
    right: 1rem;
    bottom: 1rem;
  }
  .floater {
    width: 52px;
    height: 52px;
  }
}
