/* ============================================================
   SARAH COLE — Hair Stylist
   style.css
   Mobile-first, clean, elegant salon aesthetic
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --ivory:          #F9F6F1;
  --warm-white:     #FDFCFA;
  --stone:          #EAE4DC;
  --taupe:          #C4B8A8;
  --mink:           #8C7D6E;
  --espresso:       #3D2F27;
  --charcoal:       #2A2420;
  --dusty-lavender: #B8A0CC;
  --plum:           #8B6BAE;
  --sage:           #9AAE9A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  --nav-h:  70px;
  --radius: 2px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--warm-white);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--espresso);
}

h1 { font-size: clamp(2.6rem, 8vw, 5.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); }
h4 { font-size: 1.1rem; font-weight: 500; }

p  { font-size: clamp(0.9rem, 2vw, 1rem); color: var(--mink); max-width: 60ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}

.section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.section--alt {
  background-color: var(--ivory);
}

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 38px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--espresso);
  color: var(--warm-white);
  border-color: var(--espresso);
}
.btn--primary:hover {
  background-color: transparent;
  color: var(--espresso);
}

.btn--outline {
  background-color: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn--outline:hover {
  background-color: var(--espresso);
  color: var(--warm-white);
}

.btn--light {
  background-color: var(--warm-white);
  color: var(--espresso);
  border-color: var(--warm-white);
}
.btn--light:hover {
  background-color: transparent;
  color: var(--warm-white);
  border-color: var(--warm-white);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background-color: rgba(253, 252, 250, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--stone);
}

.nav__inner {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--warm-white);
  letter-spacing: 0.04em;
  transition: color 0.4s ease;
  line-height: 1;
}
.nav.scrolled .nav__logo { color: var(--espresso); }

.nav__links {
  display: none;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
}
.nav.scrolled .nav__links a { color: var(--mink); }
.nav__links a:hover,
.nav.scrolled .nav__links a:hover { color: var(--espresso); }

.nav__cta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--warm-white);
  transition: all 0.3s ease;
}
.nav.scrolled .nav__cta {
  border-color: var(--espresso);
  color: var(--espresso);
}
.nav__cta:hover {
  background-color: var(--warm-white);
  color: var(--espresso);
}
.nav.scrolled .nav__cta:hover {
  background-color: var(--espresso);
  color: var(--warm-white);
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none; border: none;
}
.nav__hamburger span {
  display: block; width: 24px; height: 1.5px;
  background-color: var(--warm-white);
  transition: all 0.3s ease;
}
.nav.scrolled .nav__hamburger span { background-color: var(--espresso); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background-color: var(--warm-white);
  padding: 2rem 5%;
  border-top: 1px solid var(--stone);
  z-index: 99;
  flex-direction: column;
  gap: 1.5rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mink);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--stone);
}
.nav__mobile .btn--primary { text-align: center; margin-top: 0.5rem; }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }
  .nav__mobile { display: none !important; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(150px, 8vw, 200px);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #2A1F1A 0%,
    #3D2F27 40%,
    #5C4840 100%
  );
  z-index: 0;
}

/* Decorative texture overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
}

/* Abstract hair-wave decorative element */
.hero__accent {
  position: absolute;
  right: -5%;
  top: 10%;
  width: 55%;
  height: 90%;
  background: linear-gradient(135deg, rgba(180,150,120,0.12) 0%, rgba(196,184,168,0.08) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  border: 1px solid rgba(196,184,168,0.15);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}

.hero__tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero__tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--taupe);
}

.hero h1 {
  color: var(--warm-white);
  max-width: 11ch;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--dusty-lavender);
}

.hero__sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.6);
  max-width: 38ch;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.6s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--taupe), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Services ─────────────────────────────────────────────── */
.services__header {
  margin-bottom: clamp(40px, 6vw, 70px);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
}

.service-card {
  background: var(--warm-white);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--stone);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background-color: var(--plum);
  transition: width 0.5s var(--ease-out);
}

.service-card:hover::before { width: 100%; }
.service-card:hover { background-color: var(--ivory); transform: translateY(-2px); }

.service-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1;
  transition: color 0.4s ease;
}
.service-card:hover .service-card__num { color: var(--taupe); }

.service-card h3 { font-size: 1.5rem; }

.service-card p { font-size: 0.9rem; }

.service-card__price {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--plum);
  margin-top: auto;
}

.service-card__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--espresso);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  transition: gap 0.3s ease;
}
.service-card__link::after { content: '→'; }
.service-card:hover .service-card__link { gap: 14px; }

.services__cta { margin-top: clamp(40px, 6vw, 60px); }

@media (min-width: 600px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Gallery Preview ──────────────────────────────────────── */
.gallery-preview {
  background-color: var(--espresso);
  padding: clamp(60px, 10vw, 120px) 0;
}

.gallery-preview .eyebrow { color: var(--dusty-lavender); }
.gallery-preview h2 { color: var(--warm-white); }
.gallery-preview .section-sub { color: var(--taupe); }

.gallery-preview__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: clamp(40px, 6vw, 60px);
}

@media (min-width: 768px) {
  .gallery-preview__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gallery-grid__item {
  position: relative;
  overflow: hidden;
  background-color: var(--mink);
}

.gallery-grid__item--tall { grid-row: span 2; }

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), opacity 0.4s ease;
  opacity: 0.85;
}

.gallery-grid__item:hover img {
  transform: scale(1.06);
  opacity: 1;
}

/* Placeholder colored divs for gallery images */
.img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--mink), var(--taupe));
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-grid__item--tall .img-placeholder {
  aspect-ratio: 3/5;
}
.img-placeholder span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

/* Varied placeholder colors */
.ph-1 { background: linear-gradient(135deg, #7A6558, #9A8070); }
.ph-2 { background: linear-gradient(135deg, #5C4840, #7A6558); }
.ph-3 { background: linear-gradient(135deg, #8C7D6E, #A89080); }
.ph-4 { background: linear-gradient(135deg, #6A5A50, #8A7060); }
.ph-5 { background: linear-gradient(135deg, #9A8C7E, #B89A80); }
.ph-6 { background: linear-gradient(135deg, #7C6C5C, #9C8C7C); }

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

/* ── About ────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(150deg, var(--taupe) 0%, var(--mink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__image-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--espresso);
  color: var(--warm-white);
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-style: italic;
}

.about__content { display: flex; flex-direction: column; gap: 1.5rem; }

.about__content p { max-width: 50ch; }

.about__credentials {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--stone);
}

.about__cred-item {
  display: flex;
  flex-direction: column;
}

.about__cred-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--espresso);
  line-height: 1;
}

.about__cred-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mink);
  margin-top: 4px;
}

@media (min-width: 768px) {
  .about__grid { grid-template-columns: 1fr 1.2fr; }
  .about__image-badge { right: -20px; }
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials { background-color: var(--ivory); }

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: clamp(40px, 6vw, 60px);
}

.testimonial-card {
  background-color: var(--warm-white);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card__stars {
  font-size: 0.85rem;
  color: var(--plum);
  letter-spacing: 3px;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--espresso);
  line-height: 1.5;
  max-width: none;
}

.testimonial-card__author {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
}

@media (min-width: 640px) {
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--espresso) 0%, #5C4840 100%);
  padding: clamp(70px, 12vw, 130px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: 'BOOK';
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(8rem, 25vw, 22rem);
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.2em;
}

.cta-banner h2 { color: var(--warm-white); margin-bottom: 1rem; }
.cta-banner p  { color: var(--taupe); margin: 0 auto 2.5rem; }
.cta-banner .eyebrow { color: var(--dusty-lavender); }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background-color: var(--charcoal);
  color: var(--taupe);
  padding: clamp(50px, 8vw, 90px) 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--warm-white);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  max-width: 28ch;
}

.footer__heading {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.25rem;
}

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s ease;
}
.footer__links a:hover { color: var(--warm-white); }

.footer__hours { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__hours-row { display: flex; justify-content: space-between; gap: 2rem; font-size: 0.85rem; }
.footer__hours-row span:last-child { color: rgba(255,255,255,0.55); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

.footer__social {
  display: flex; gap: 1.25rem; align-items: center;
}
.footer__social a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 6px;
  transition: color 0.3s ease;
}
.footer__social a:hover { color: var(--warm-white); }

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ── Mobile Sticky Book Button ────────────────────────────── */
.sticky-book {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--espresso);
  color: var(--warm-white);
  text-align: center;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s ease;
  display: block;
}
.sticky-book:hover { background: var(--charcoal); color: var(--warm-white); }

@media (min-width: 768px) {
  .sticky-book { display: none; }
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--espresso) 0%, #5C4840 100%);
  padding: calc(var(--nav-h) + 60px) 0 70px;
  text-align: center;
}

.page-hero h1 { color: var(--warm-white); }
.page-hero p  { color: var(--taupe); margin: 1rem auto 0; }
.page-hero .eyebrow { color: var(--dusty-lavender); }

/* ── Services Page ────────────────────────────────────────── */
.services-full__category { margin-bottom: clamp(50px, 8vw, 90px); }

.services-full__category-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--espresso);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--stone);
  margin-bottom: 2rem;
}

.services-full__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--stone);
  gap: 1rem;
}

.service-item__name { font-size: 1rem; font-weight: 400; color: var(--charcoal); }
.service-item__desc { font-size: 0.85rem; color: var(--mink); margin-top: 4px; }
.service-item__price {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--espresso);
  white-space: nowrap;
}

.services-booking-bar {
  background: var(--ivory);
  padding: clamp(40px, 6vw, 70px) 0;
  text-align: center;
}

/* ── Gallery Page ─────────────────────────────────────────── */
.gallery-full__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-full__item {
  overflow: hidden;
  cursor: pointer;
}
.gallery-full__item img,
.gallery-full__item .img-placeholder {
  transition: transform 0.7s var(--ease-out);
}
.gallery-full__item:hover img,
.gallery-full__item:hover .img-placeholder { transform: scale(1.04); }

@media (min-width: 640px)  { .gallery-full__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (min-width: 1024px) { .gallery-full__grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.gallery-ph {
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: clamp(30px, 5vw, 50px);
}

.filter-btn {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--stone);
  background: none;
  cursor: pointer;
  color: var(--mink);
  transition: all 0.3s ease;
  font-family: var(--font-body);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--warm-white);
}

/* ── About Page ───────────────────────────────────────────── */
.about-page__story {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: start;
}
@media (min-width: 768px) {
  .about-page__story { grid-template-columns: 1fr 1fr; }
}

.about-page__image {
  aspect-ratio: 4/5;
  background: linear-gradient(150deg, var(--taupe), var(--mink));
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: calc(var(--nav-h) + 30px);
}

.about-page__text { display: flex; flex-direction: column; gap: 1.5rem; }
.about-page__text p { max-width: none; }

.about-page__signature {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--espresso);
  margin-top: 1rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  margin-top: clamp(40px, 6vw, 70px);
}

.credential-card {
  background: var(--ivory);
  padding: 2rem;
  border: 1px solid var(--stone);
}
.credential-card__icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.credential-card h4 { margin-bottom: 0.5rem; }
.credential-card p { font-size: 0.88rem; }

@media (min-width: 640px) { .credentials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .credentials-grid { grid-template-columns: repeat(4, 1fr); } }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 7vw, 80px);
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mink);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--stone);
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--mink); }

.form-textarea { resize: vertical; min-height: 130px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238C7D6E' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.info-block h4 { font-size: 1rem; margin-bottom: 0.75rem; }
.info-block p { font-size: 0.9rem; }

.info-block__hours { display: flex; flex-direction: column; gap: 0.4rem; }
.info-row { display: flex; justify-content: space-between; font-size: 0.88rem; }
.info-row .day { color: var(--charcoal); font-weight: 400; }
.info-row .time { color: var(--mink); }

.info-block__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--espresso);
  border-bottom: 1px solid var(--stone);
  padding-bottom: 4px;
  transition: border-color 0.3s ease;
}
.info-block__social a:hover { border-color: var(--espresso); }

.map-placeholder {
  height: 220px;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--mink);
  border: 1px solid var(--taupe);
  margin-top: 1.5rem;
}

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  width: 40px;
  height: 1px;
  background: var(--plum);
  margin: 1.25rem 0;
}
.text-center .divider { margin-left: auto; margin-right: auto; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Utility ──────────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }

/* Visually hidden (accessibility) */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
