/* ============================================================
   TAPERED — barbershop rebuild of the Intoriee template vibe
   Palette + type scale lifted from the reference:
   orange #E16A44 · dark #271E1B · gray #8F8B89 · bg #F9F9F9
   Author (display 500/700) · Archivo (body 300)
   ============================================================ */

:root {
  --orange: #E16A44;
  --dark: #271E1B;
  --gray: #8F8B89;
  --brown: #50413D;
  --bg: #F9F9F9;
  --white: #FFFFFF;
  /* the template's overshoot tween: cubic-bezier(0.15,0.45,0.15,1.35) */
  --ease-spring: cubic-bezier(0.15, 0.45, 0.15, 1.35);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Author', sans-serif;
  --font-body: 'Archivo', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 500; line-height: 1; }
strong, em { font-style: normal; }

/* fluid type scale — 166px hero / 88px section / 28px h4 at 1440w */
.hero__line { font-size: clamp(3.4rem, 11.5vw, 10.4rem); letter-spacing: -0.01em; text-transform: uppercase; }
h2 { font-size: clamp(2.2rem, 6.1vw, 5.5rem); text-transform: uppercase; letter-spacing: -0.005em; }
h2 strong, .hero__line em { font-weight: 700; color: var(--orange); }
h4 { font-size: clamp(1.15rem, 1.95vw, 1.75rem); text-transform: uppercase; }
p { font-size: clamp(1rem, 1.4vw, 1.25rem); line-height: 1.55; color: var(--brown); }

section { padding: clamp(3.5rem, 8vw, 7.5rem) clamp(1.25rem, 5vw, 5rem); }

/* ============ NAV ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem clamp(1.25rem, 5vw, 5rem);
  background: rgba(249, 249, 249, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.45s var(--ease-out);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav__brand {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.45rem; letter-spacing: 0.14em;
}
.nav__brand em { font-style: normal; color: var(--orange); }
.nav__burger {
  width: 44px; height: 44px; border: 0; background: none; cursor: pointer;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-end; gap: 6px;
  z-index: 102;
}
.nav__burger span {
  display: block; height: 2px; background: var(--dark); border-radius: 2px;
  transition: all 0.4s var(--ease-spring);
  width: 28px;
}
.nav__burger span:nth-child(2) { width: 20px; }
.nav__burger:hover span { width: 28px; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ FULLSCREEN MENU ============ */
.menu {
  position: fixed; inset: 0; z-index: 101;
  background: var(--dark);
  display: flex; align-items: center; justify-content: flex-start;
  padding: 0 clamp(1.5rem, 8vw, 8rem);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease-out);
}
body.menu-open .menu { clip-path: inset(0 0 0% 0); }
body.menu-open .nav { background: transparent; backdrop-filter: none; }
body.menu-open .nav__brand { color: var(--white); }
body.menu-open .nav__burger span { background: var(--white); }
body.menu-open { overflow: hidden; }
.menu__links { display: flex; flex-direction: column; gap: 0.4rem; }
.menu__link {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.6rem, 6.1vw, 5.5rem);
  text-transform: uppercase; color: var(--white); line-height: 1.12;
  overflow: hidden; display: block;
}
.menu__link span {
  display: block; transform: translateY(110%);
  transition: transform 0.7s var(--ease-out), color 0.3s;
}
body.menu-open .menu__link span { transform: translateY(0); }
body.menu-open .menu__link:nth-child(1) span { transition-delay: 0.18s; }
body.menu-open .menu__link:nth-child(2) span { transition-delay: 0.26s; }
body.menu-open .menu__link:nth-child(3) span { transition-delay: 0.34s; }
body.menu-open .menu__link:nth-child(4) span { transition-delay: 0.42s; }
body.menu-open .menu__link:nth-child(5) span { transition-delay: 0.50s; }
.menu__link:hover span { color: var(--orange); }

/* ============ BUTTONS (pill + orange arrow circle) ============ */
.btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  border-radius: 999px; padding: 0.5rem 0.55rem 0.5rem 1.5rem;
  font-family: var(--font-display); font-weight: 500; font-size: 1.05rem;
  letter-spacing: 0.05em;
  transition: transform 0.35s var(--ease-spring), background 0.3s;
}
.btn:hover { transform: scale(1.045); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--light { background: var(--white); color: var(--dark); }
.btn__circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: grid; place-items: center; flex: none;
  transition: transform 0.35s var(--ease-spring);
}
.btn__circle svg { width: 18px; height: 18px; }
.btn:hover .btn__circle { transform: rotate(45deg); }
.btn--xl { font-size: 1.25rem; padding: 0.7rem 0.7rem 0.7rem 2rem; }
.btn--xl .btn__circle { width: 52px; height: 52px; }

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: clamp(6rem, 12vh, 9rem);
}
.hero__inner { width: 100%; }
.mask { overflow: hidden; }
.hero__row { display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 4rem); }
.hero__row--1 { justify-content: flex-start; }
.hero__row--1 .mask { margin-left: clamp(0rem, 4vw, 4rem); }
.hero__below {
  max-width: 560px; margin: clamp(2rem, 4.5vw, 3.5rem) auto 0;
  display: flex; flex-direction: column; gap: 1.5rem; align-items: center;
  text-align: center;
}
.hero__below p { font-size: clamp(0.95rem, 1.5vw, 1.35rem); }
.hero__row--2 { justify-content: center; }
.hero__row--3 { justify-content: center; }
.hero__pill {
  width: clamp(180px, 24vw, 350px);
  height: clamp(72px, 7.6vw, 110px);
  border-radius: 999px; overflow: hidden; flex: none;
}
.hero__pill img { width: 100%; height: 100%; object-fit: cover; }

/* hero load choreography — masked slides + pill scale, template timings */
.anim-hero-1 { transform: translateY(-113%); animation: slideDown 1.1s var(--ease-spring) 1s forwards; }
.anim-hero-2 { transform: translateX(-14%); opacity: 0; animation: slideRight 1.1s var(--ease-spring) 1.3s forwards; }
.anim-hero-3 { transform: translateY(113%); animation: slideUp 1.1s var(--ease-spring) 1.6s forwards; }
.anim-hero-pill img { transform: scale(1.5); animation: pillScale 0.8s cubic-bezier(0.15,0.45,0.15,1.2) 0.2s forwards; }
.anim-hero-4 { opacity: 0; animation: fadeIn 1s ease 2s forwards; }
@keyframes slideDown { to { transform: translateY(0); } }
@keyframes slideUp { to { transform: translateY(0); } }
@keyframes slideRight { to { transform: translateX(0); opacity: 1; } }
@keyframes pillScale { to { transform: scale(1); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ============ SCROLL REVEALS ============ */
.reveal { opacity: 0; transform: translateY(60px); transition: opacity 0.9s ease, transform 0.9s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ SECTION HEADINGS ============ */
.section-head { margin-bottom: clamp(2rem, 5vw, 4.5rem); }
.section-head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 3rem; flex-wrap: wrap; }
.section-head--split p { max-width: 460px; }

/* ============ SERVICES (rows w/ hover image reveal) ============ */
.services__list { list-style: none; }
.service { position: relative; border-top: 1px solid rgba(143,139,137,0.35); }
.service:last-child { border-bottom: 1px solid rgba(143,139,137,0.35); }
.service > a {
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: clamp(1rem, 2vw, 1.6rem) 0.25rem;
  transition: padding-left 0.45s var(--ease-out);
}
.service__name { display: flex; flex-direction: column; gap: 0.35rem; }
.service__meta {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--gray);
  letter-spacing: 0.02em;
}
.service__end { display: flex; align-items: center; gap: clamp(0.8rem, 2vw, 1.6rem); flex: none; }
.service__price {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.15rem, 1.9vw, 1.6rem); color: var(--dark);
  transition: color 0.3s; white-space: nowrap;
}
.service:hover .service__price { color: var(--orange); }
.service-group {
  padding: clamp(2rem, 4vw, 3rem) 0 0.75rem;
  border: 0;
}
.service-group span {
  font-family: var(--font-display); font-weight: 500;
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
}
.service-group + .service { border-top: 1px solid rgba(143,139,137,0.35); }
.services__note {
  margin-top: 2rem; font-size: 0.95rem; color: var(--gray); max-width: 560px;
}
.service:hover > a { padding-left: 1.5rem; }
.service h4 { transition: color 0.3s; }
.service:hover h4 { color: var(--orange); }
.service__arrow {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(143,139,137,0.5);
  display: grid; place-items: center; flex: none;
  transition: all 0.4s var(--ease-spring);
}
.service__arrow svg { width: 20px; height: 20px; }
.service:hover .service__arrow { background: var(--orange); border-color: var(--orange); color: var(--white); transform: rotate(45deg); }
.service:hover 
/* ============ MEMBERSHIP ============
   The unlimited-cut plan was only findable on the store checkout page.
   A weekly-haircut subscription is the single highest-value thing on this
   menu, so it gets its own block right under the price list.
   Figures read off shop.gibsonfam.co/plans, 2026-08-31. */
.member { padding-top: clamp(3rem, 6vw, 5rem); }
.member__card {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center; background: var(--dark); color: var(--white);
  border-radius: 22px; padding: clamp(2rem, 4.5vw, 3.5rem);
}
.member__tag {
  display: inline-block; font-family: var(--font-display); font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dark); background: var(--orange);
  border-radius: 999px; padding: 0.4rem 0.8rem; margin-bottom: 1.1rem;
}
.member__card h3 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); color: var(--white); margin: 0; }
.member__card h3 em { font-style: normal; color: var(--orange); }
.member__card p { margin-top: 1rem; color: rgba(255,255,255,0.72); max-width: 42ch; font-size: 0.98rem; }
.member__price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.4rem; }
.member__price b { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 6vw, 4rem); line-height: 1; }
.member__price span { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.member__list { list-style: none; margin: 0 0 1.8rem; padding: 0; }
.member__list li {
  display: flex; gap: 0.7rem; padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78); font-size: 0.95rem;
}
.member__list li::before { content: ''; width: 6px; height: 6px; flex: none; margin-top: 0.5rem; border-radius: 50%; background: var(--orange); }
.member__fine { margin-top: 1.1rem; font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.55); }
@media (max-width: 820px) { .member__card { grid-template-columns: 1fr; } }

/* ============ STATS ============ */
.stats { padding-top: clamp(2rem, 4vw, 3.5rem); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.stats__left p { max-width: 520px; margin-top: 1.6rem; }
.stats__numbers { display: flex; gap: clamp(2rem, 6vw, 5rem); margin-top: clamp(2rem, 4vw, 3.5rem); }
.stat__num {
  font-size: clamp(4rem, 9.7vw, 8.75rem); font-weight: 700; color: var(--orange);
  font-family: var(--font-display); line-height: 1;
}
.stat h4 { margin-top: 0.5rem; color: var(--dark); font-size: clamp(0.95rem, 1.4vw, 1.4rem); letter-spacing: 0.04em; }
.vmarquee { height: clamp(380px, 55vh, 560px); overflow: hidden; border-radius: 20px; position: relative; }
.vmarquee::before, .vmarquee::after {
  content: ''; position: absolute; left: 0; right: 0; height: 70px; z-index: 2; pointer-events: none;
}
.vmarquee::before { top: 0; background: linear-gradient(var(--bg), transparent); }
.vmarquee::after { bottom: 0; background: linear-gradient(transparent, var(--bg)); }
.vmarquee__track { display: flex; flex-direction: column; gap: 1rem; animation: vscroll 38s linear infinite; }
.vmarquee__track img { border-radius: 16px; width: 100%; height: auto; }
@keyframes vscroll { to { transform: translateY(-50%); } }

/* ============ BRAND MARQUEE ============ */
.brands { padding: clamp(1.5rem, 3vw, 2.5rem) 0; border-top: 1px solid rgba(143,139,137,0.25); border-bottom: 1px solid rgba(143,139,137,0.25); overflow: hidden; }
.brands__track {
  display: flex; align-items: center; gap: clamp(2rem, 5vw, 4.5rem);
  width: max-content; animation: hscroll 26s linear infinite;
}
.brands__track span {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.6rem); letter-spacing: 0.12em; color: var(--dark);
  text-transform: uppercase; white-space: nowrap;
}
.brands__cut {
  display: inline-flex; align-items: center; flex: none;
  color: var(--brown);            /* brown scissors, not an emoji */
}
.brands__cut svg {
  width: clamp(20px, 2.2vw, 30px);
  height: clamp(20px, 2.2vw, 30px);
  display: block;
}
@keyframes hscroll { to { transform: translateX(-50%); } }

/* ============ PROCESS ============ */
.process__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.process__tabs { display: flex; flex-direction: column; }
.process__tab {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.05rem, 1.8vw, 1.6rem); text-transform: uppercase; text-align: left;
  background: none; border: 0; border-top: 1px solid rgba(143,139,137,0.35);
  padding: clamp(1.1rem, 2vw, 1.7rem) 0.25rem; cursor: pointer; color: var(--gray);
  display: flex; align-items: baseline; gap: 1rem;
  transition: color 0.3s, padding-left 0.35s var(--ease-out);
}
.process__tab:last-child { border-bottom: 1px solid rgba(143,139,137,0.35); }
.process__num { font-weight: 700; color: var(--orange); font-size: 0.85em; opacity: 0.55; transition: opacity 0.3s; }
.process__tab.is-active { color: var(--dark); padding-left: 1rem; }
.process__tab.is-active .process__num { opacity: 1; }
.process__tab:hover { color: var(--dark); }
.process__panel { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.process__media { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/3.4; }
.process__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.08); transition: opacity 0.6s ease, transform 0.9s var(--ease-out);
}
.process__media img.is-active { opacity: 1; transform: scale(1); }
.process__copy { display: flex; flex-direction: column; gap: 1.6rem; }
.process__copy p { display: none; }
.process__copy p.is-active { display: block; animation: fadeIn 0.6s ease; }
.process__copy .btn { align-self: flex-start; }

/* ============ WORK / PORTFOLIO ============ */
.work__slider-wrap { position: relative; }
.work__slider {
  display: flex; gap: clamp(1rem, 2vw, 1.75rem);
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}
.work__slider::-webkit-scrollbar { display: none; }
.work__card {
  flex: 0 0 clamp(240px, 26vw, 380px); scroll-snap-align: start;
  border-radius: 18px; overflow: hidden; position: relative; aspect-ratio: 3/4;
  cursor: grab;
}
.work__card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.work__card:hover img { transform: scale(1.06); }
.work__card figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem;
  background: linear-gradient(transparent, rgba(39,30,27,0.82));
  color: var(--white);
  transform: translateY(30%); opacity: 0;
  transition: all 0.5s var(--ease-out);
}
.work__card:hover figcaption { transform: translateY(0); opacity: 1; }
.work__card figcaption h4 { font-size: clamp(1rem, 1.5vw, 1.35rem); }
.work__nav { display: flex; gap: 0.8rem; justify-content: flex-end; margin-top: 1.5rem; }
.work__arrow {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(143,139,137,0.5); background: none; cursor: pointer;
  display: grid; place-items: center; color: var(--dark);
  transition: all 0.35s var(--ease-spring);
}
.work__arrow svg { width: 22px; height: 22px; }
.work__arrow:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: scale(1.08); }

/* ============ REVIEWS ============ */
.reviews .section-head { text-align: left; }
.reviews__sub { font-family: var(--font-display); font-weight: 500; letter-spacing: 0.15em; margin-top: 1rem; color: var(--gray); font-size: 0.95rem; }
.reviews__stars { color: var(--orange); font-size: 1.4rem; letter-spacing: 0.3em; margin-top: 0.4rem; }
.reviews__columns {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.25rem, 3vw, 2.5rem);
  height: clamp(480px, 68vh, 640px); overflow: hidden; position: relative;
}
.reviews__columns::before, .reviews__columns::after {
  content: ''; position: absolute; left: 0; right: 0; height: 90px; z-index: 2; pointer-events: none;
}
.reviews__columns::before { top: 0; background: linear-gradient(var(--bg), transparent); }
.reviews__columns::after { bottom: 0; background: linear-gradient(transparent, var(--bg)); }
.reviews__track { display: flex; flex-direction: column; gap: 1.5rem; }
.reviews__col--up .reviews__track { animation: vscroll 30s linear infinite; }
.reviews__col--down .reviews__track { animation: vscroll 30s linear infinite reverse; }
.reviews__col:hover .reviews__track { animation-play-state: paused; }
.review {
  background: var(--white); border-radius: 18px;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  border: 1px solid rgba(143,139,137,0.18);
}
.review__quote { font-family: var(--font-display); font-weight: 700; font-size: 3rem; color: var(--orange); line-height: 0.6; display: block; margin-bottom: 1rem; }
.review p { font-size: clamp(0.95rem, 1.25vw, 1.1rem); }
.review footer { display: flex; gap: 0.9rem; align-items: center; margin-top: 1.4rem; }
.review footer img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.review cite { font-family: var(--font-display); font-weight: 500; font-style: normal; text-transform: uppercase; display: block; font-size: 1rem; }
.review footer span { font-size: 0.85rem; color: var(--gray); }

/* ============ CTA ============ */
.cta { background: var(--dark); color: var(--white); border-radius: 28px; margin: 0 clamp(0.75rem, 2vw, 1.5rem); }
.cta__inner { text-align: center; padding: clamp(2rem, 6vw, 4rem) 0; position: relative; }
.cta__title { font-size: clamp(3.2rem, 10.4vw, 9.4rem); text-transform: uppercase; color: var(--white); }
.cta__title em { font-weight: 700; color: var(--orange); }
.cta__inner .btn { margin-top: clamp(1.5rem, 4vw, 3rem); }
.cta__sub { color: rgba(255,255,255,0.65); max-width: 440px; margin: 2rem auto 0; }

/* ============ FOOTER ============ */
.footer { background: var(--dark); color: var(--white); margin-top: clamp(1rem, 2vw, 1.5rem); padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 5rem) 1.5rem; }
.footer__top { display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.footer__contact h4 { color: var(--orange); letter-spacing: 0.12em; font-size: 1rem; margin-bottom: 1.2rem; }
.footer__contact p, .footer__contact a { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.6; display: block; }
.footer__contact a { margin-top: 0.6rem; font-family: var(--font-display); font-size: 1.3rem; color: var(--white); }
.footer__hours { margin-top: 0.6rem; font-size: 0.9rem !important; color: rgba(255,255,255,0.5) !important; }
.footer__links { display: flex; gap: clamp(2rem, 6vw, 5.5rem); flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col h5 { color: var(--gray); letter-spacing: 0.14em; font-size: 0.85rem; margin-bottom: 0.5rem; }
.footer__col a { color: rgba(255,255,255,0.8); font-size: 1rem; transition: color 0.25s; }
.footer__col a:hover { color: var(--orange); }
.footer__brand {
  font-family: var(--font-display); font-weight: 700; text-align: center;
  font-size: clamp(4rem, 16vw, 15rem); letter-spacing: 0.06em; line-height: 1;
  margin: clamp(2.5rem, 6vw, 5rem) 0 2rem; color: rgba(255,255,255,0.12);
  user-select: none;
}
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.4rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .process__panel { grid-template-columns: 1fr; }
  .reviews__columns { grid-template-columns: 1fr; }
  .reviews__col--down { display: none; }
  }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/* ============ SOCIAL ============ */
.social-row { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.social-row a {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 500; font-size: 1rem;
  letter-spacing: 0.03em; transition: color 0.3s, transform 0.3s var(--ease-spring);
}
.social-row a:hover { color: var(--orange); transform: translateY(-2px); }
.social-row svg { width: 22px; height: 22px; flex: none; }

.menu__social { position: absolute; bottom: clamp(2rem, 6vh, 4rem); left: clamp(1.5rem, 8vw, 8rem); }
.menu__social-label {
  display: block; font-family: var(--font-display); font-size: 0.8rem;
  letter-spacing: 0.18em; color: var(--gray); margin-bottom: 0.9rem;
}
.menu__social .social-row a { color: rgba(255,255,255,0.85); }
.menu__social .social-row a:hover { color: var(--orange); }

.cta__social { justify-content: center; margin-top: 2rem; }
.social-row--light a { color: rgba(255,255,255,0.7); }
.social-row--light a:hover { color: var(--orange); }

.footer__social {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.social-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1.35rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  font-family: var(--font-display); font-weight: 500; font-size: 1rem;
  color: rgba(255,255,255,0.9);
  transition: all 0.35s var(--ease-spring);
}
.social-pill svg { width: 20px; height: 20px; }
.social-pill:hover {
  background: var(--orange); border-color: var(--orange); color: #fff;
  transform: translateY(-3px);
}

/* footer hours stack */
.footer__hours { display: flex; flex-direction: column; gap: 0.3rem; margin-top: 1rem; }
.footer__hours span { font-size: 0.95rem; color: rgba(255,255,255,0.6); }
.footer__hours b { color: rgba(255,255,255,0.9); font-weight: 500; }

@media (max-width: 900px) {
  .menu__social { left: clamp(1.5rem, 8vw, 8rem); bottom: 2rem; }
  .menu__social .social-row { flex-direction: column; gap: 0.75rem; }
  .service > a { flex-wrap: wrap; gap: 0.75rem; }
}
