/* ═══════════════════════════════════════════════
   SLAYY BY CHE — Premium Stylesheet
   Brand Palette: warm brown / tan / cream / rose
   ═══════════════════════════════════════════════ */

:root {
  --cream: #F5EBE0;
  --cream-light: #FAF5F0;
  --cream-dark: #EDE0D4;
  --tan: #C8A882;
  --tan-light: #D9C4AA;
  --tan-dark: #B08D6A;
  --brown: #6B4226;
  --brown-light: #8B6244;
  --dark: #2C1810;
  --dark-soft: #3D261A;
  --rose: #D4A989;
  --rose-light: #E8C9B0;
  --white: #FFFFFF;
  --off-white: #FEFCFA;

  --shadow-sm: 0 2px 12px rgba(44, 24, 16, 0.06);
  --shadow: 0 4px 30px rgba(44, 24, 16, 0.08);
  --shadow-lg: 0 16px 60px rgba(44, 24, 16, 0.12);
  --shadow-xl: 0 24px 80px rgba(44, 24, 16, 0.16);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-padding-top: 80px; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--brown);
  background: var(--cream-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }

/* ── CUSTOM CURSOR ── */
.cursor, .cursor-follower {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  mix-blend-mode: difference;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--white);
  transform: translate(-50%, -50%);
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.5);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}
.cursor-follower.hover {
  width: 56px; height: 56px;
  border-color: var(--tan);
}

@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
}

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__inner { text-align: center; }
.preloader__ribbon { width: 120px; margin: 0 auto 24px; }
.preloader__ribbon svg { width: 100%; }
.ribbon-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}
.preloader__text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  opacity: 0;
}
.preloader__text em {
  color: var(--tan);
  font-style: italic;
}

/* ── TYPOGRAPHY ── */
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 16px;
}

.section__label--light { color: var(--rose-light); }

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--brown-light);
  max-width: 540px;
  line-height: 1.7;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__header .section__desc { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn > span { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 10px; }

.btn--primary {
  background: var(--brown);
  color: var(--white);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
  border-radius: 50px;
}
.btn--primary:hover::before { transform: scaleX(1); transform-origin: left; }
.btn--primary:hover { box-shadow: var(--shadow-lg); }

.btn--outline {
  border: 2px solid var(--brown);
  color: var(--brown);
  background: transparent;
}
.btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brown);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
  border-radius: 50px;
}
.btn--outline:hover { color: var(--white); }
.btn--outline:hover::before { transform: scaleX(1); transform-origin: left; }

.btn--glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn--glass:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--white {
  background: var(--white);
  color: var(--dark);
}
.btn--white:hover {
  background: var(--cream);
  box-shadow: var(--shadow-lg);
}

.btn--outline-white {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn--nav { padding: 10px 24px; font-size: 11px; }
.btn--full { width: 100%; }

/* Magnetic effect handled by JS */
.btn--magnetic { transition: transform 0.3s var(--ease); }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(250, 245, 240, 0.92);
  backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: var(--shadow);
  padding: 12px 0;
}

.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--white);
  transition: color 0.4s var(--ease);
}
.nav.scrolled .nav__logo-text { color: var(--dark); }

.nav__links {
  display: flex; align-items: center; gap: 36px;
}
.nav__links a {
  font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  position: relative;
}
.nav.scrolled .nav__links a { color: var(--brown); }
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--tan);
  transition: width 0.4s var(--ease);
}
.nav__links a:not(.btn):hover::after { width: 100%; }

.nav__links .btn {
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
}
.nav__links .btn:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.nav.scrolled .nav__links .btn {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

.nav__toggle {
  display: none;
  flex-direction: column; gap: 6px;
  width: 26px; z-index: 1001;
}
.nav__toggle .bar {
  display: block; height: 2px; width: 100%;
  background: var(--white); border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.nav.scrolled .nav__toggle .bar { background: var(--dark); }
.nav__toggle.open .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav__toggle.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
}
.hero__bg-img {
  width: 100%; height: 100%;
  background: url('images/07-owner-portrait-professional-blazer.jpeg') center top/cover no-repeat;
  transform: scale(1.1);
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.15) 0%,
    rgba(44, 24, 16, 0.35) 30%,
    rgba(44, 24, 16, 0.6) 55%,
    rgba(44, 24, 16, 0.8) 100%
  );
}

.hero__ribbon {
  position: absolute; top: 0; height: 100%; width: 80px;
  z-index: 1;
}
.hero__ribbon--left { left: 5%; }
.hero__ribbon--right { right: 5%; }

.hero__content { position: relative; z-index: 2; padding: 0 24px; margin-top: 10vh; }

.hero__label {
  display: inline-flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.hero__label span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500; font-size: 12px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--tan-light);
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero__title-line {
  display: block;
  font-size: clamp(3rem, 8vw, 6.5rem);
}
.hero__title-line--italic em {
  font-style: italic;
  color: var(--tan-light);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
}

.hero__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 44px;
}

.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__actions .btn--primary { background: var(--tan); color: var(--dark); }
.hero__actions .btn--primary::before { background: var(--white); }

.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 2;
  cursor: pointer;
  transition: opacity 0.3s var(--ease);
}
.hero__scroll:hover { opacity: 0.7; }
.hero__scroll-dot {
  width: 20px; height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  position: relative;
}
.hero__scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--tan);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(8px); }
}
.hero__scroll span {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.4);
}

.hero__badge {
  position: absolute;
  bottom: 80px; right: 8%;
  z-index: 2;
  animation: rotateBadge 20s linear infinite;
}
@keyframes rotateBadge { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero__badge-inner {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 16px;
  color: var(--tan);
}

/* ── MARQUEE ── */
.marquee {
  padding: 20px 0;
  background: var(--dark);
  overflow: hidden;
}
.marquee__track {
  display: flex; width: max-content;
  animation: marqueeScroll 25s linear infinite;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee__content {
  display: flex; align-items: center; gap: 40px;
  padding: 0 20px;
  flex-shrink: 0;
}
.marquee__content span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  letter-spacing: 1px;
}

/* ── ABOUT ── */
.about { background: var(--white); overflow: hidden; }

.about__dots {
  position: absolute;
  top: 60px; right: 60px;
  opacity: 0.5;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__images { position: relative; }

.about__img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__img--main {
  position: relative;
  box-shadow: var(--shadow-xl);
}
.about__img--main img {
  width: 100%; height: 560px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about__img--main:hover img { transform: scale(1.03); }

.about__img-frame {
  position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 2px solid var(--tan);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.about__img--accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 200px;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  z-index: 2;
}
.about__img--accent img {
  width: 100%; height: 260px;
  object-fit: cover;
}

.about__exp-badge {
  position: absolute;
  top: -16px; left: -16px;
  width: 100px; height: 100px;
  background: var(--brown);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 3;
  box-shadow: var(--shadow-lg);
}
.about__exp-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--tan);
  line-height: 1;
}
.about__exp-text {
  font-size: 8px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.3;
}

.about__text p {
  margin-bottom: 16px;
  color: var(--brown-light);
  font-size: 0.95rem;
}
.about__text p strong { color: var(--dark); }

.about__divider { margin-bottom: 24px; }

.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--cream);
}

.about__feature {
  display: flex; align-items: flex-start; gap: 16px;
}
.about__feature-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
}
.about__feature h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.about__feature p {
  font-size: 0.85rem;
  color: var(--brown-light);
  margin-bottom: 0;
}

/* ── SERVICES ── */
.services { background: var(--cream-light); }

.services__tabs {
  display: flex; justify-content: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 44px;
}

.tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  color: var(--brown-light);
  background: var(--white);
  border: 1.5px solid transparent;
  transition: all 0.35s var(--ease);
}
.tab svg { opacity: 0.5; transition: opacity 0.3s; }
.tab:hover { color: var(--brown); border-color: var(--tan-light); }
.tab:hover svg { opacity: 0.8; }
.tab.active {
  background: var(--brown); color: var(--white);
  box-shadow: var(--shadow);
}
.tab.active svg { opacity: 1; stroke: var(--white); }

.services__panel {
  display: none;
}
.services__panel.active { display: block; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.price-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
  border-left: 3px solid transparent;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-left-color: var(--tan);
}

.price-card__info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--dark);
}
.price-card__info p {
  font-size: 0.8rem;
  color: var(--brown-light);
  margin-top: 2px;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--tan);
  white-space: nowrap;
  margin-left: 20px;
}

.services__cta { text-align: center; margin-top: 48px; }

/* ── GALLERY ── */
.gallery { background: var(--white); }

.gallery__filters {
  display: flex; justify-content: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 40px;
}
.filter {
  padding: 10px 24px;
  font-size: 13px; font-weight: 500;
  border-radius: 50px;
  color: var(--brown-light);
  border: 1.5px solid var(--cream-dark);
  transition: all 0.35s var(--ease);
}
.filter:hover { border-color: var(--tan); color: var(--brown); }
.filter.active {
  background: var(--brown); color: var(--white);
  border-color: var(--brown);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }

.gallery__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.8) 0%, transparent 50%);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 4px;
}
.gallery__overlay h4 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
}

.gallery__item.hidden {
  display: none;
}

.gallery__cta { text-align: center; margin-top: 48px; }

/* ── POLICIES ── */
.policies { background: var(--cream); }

.policies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}

.policy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.policy-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--tan), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.policy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.policy-card:hover::before { transform: scaleX(1); }

.policy-card__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s;
}
.policy-card:hover .policy-card__number { color: var(--tan); }

.policy-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.policy-card p {
  font-size: 0.88rem;
  color: var(--brown-light);
  line-height: 1.65;
}

/* ── WHY CHOOSE US ── */
.why { background: var(--white); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why__card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--cream-light);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.why__card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--tan), var(--rose));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.why__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why__card:hover::after { transform: scaleX(1); }

.why__icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--tan);
  box-shadow: var(--shadow-sm);
}

.why__card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.why__card p {
  font-size: 0.85rem;
  color: var(--brown-light);
  line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream-light); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.testimonial__stars {
  display: flex; gap: 3px;
  margin-bottom: 16px;
}

.testimonial__text {
  font-size: 0.92rem;
  color: var(--brown);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--cream);
}

.testimonial__avatar {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brown);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}

.testimonial__name {
  display: block;
  font-weight: 700; font-size: 0.88rem;
  color: var(--dark);
}
.testimonial__service {
  font-size: 0.78rem;
  color: var(--tan);
  font-weight: 500;
}

/* ── PROCESS ── */
.process { background: var(--white); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.process__icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brown);
  color: var(--white);
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}

.process__line {
  position: absolute;
  top: 32px; left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background: linear-gradient(90deg, var(--tan), var(--cream-dark));
  z-index: 1;
}

.process__step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.process__step p {
  font-size: 0.83rem;
  color: var(--brown-light);
  line-height: 1.6;
}

/* ── POLICIES (compact) ── */
.policies { background: var(--cream); padding: 80px 0; }

.policies__layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  align-items: start;
}

.policies__header .section__title { margin-bottom: 12px; }

.policies__list {
  display: flex; flex-direction: column;
  gap: 0;
}

.policy-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(200, 168, 130, 0.2);
  transition: all 0.3s var(--ease);
}
.policy-row:first-child { padding-top: 0; }
.policy-row:last-child { border-bottom: none; }
.policy-row:hover { padding-left: 8px; }

.policy-row__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--tan);
  min-width: 28px;
  line-height: 1.7;
}

.policy-row__text {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.7;
}
.policy-row__text strong {
  color: var(--dark);
  font-weight: 600;
}

/* ── FAQ ── */
.faq { background: var(--cream-light); }

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--cream-dark);
}
.faq__item:last-child { border-bottom: none; }

.faq__question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color 0.3s;
  gap: 16px;
}
.faq__question:hover { color: var(--tan); }

.faq__chevron {
  flex-shrink: 0;
  color: var(--tan);
  transition: transform 0.35s var(--ease);
}
.faq__item.open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq__item.open .faq__answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq__answer p {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.7;
}

/* ── BOOKING ── */
.booking { background: var(--cream); }

.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.booking__step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.booking__step-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}

.booking__step-num {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brown);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.booking__step-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--dark);
}

/* Service buttons */
.booking__services {
  display: flex; flex-direction: column; gap: 8px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}

.booking__services::-webkit-scrollbar { width: 4px; }
.booking__services::-webkit-scrollbar-track { background: var(--cream-light); border-radius: 4px; }
.booking__services::-webkit-scrollbar-thumb { background: var(--tan-light); border-radius: 4px; }

.booking__service-btn {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  background: var(--cream-light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  text-align: left;
}
.booking__service-btn:hover {
  border-color: var(--tan-light);
  background: var(--cream);
}
.booking__service-btn.active {
  border-color: var(--brown);
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(107, 66, 38, 0.12);
}

.booking__service-name {
  font-weight: 600; font-size: 0.9rem; color: var(--dark);
}
.booking__service-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--tan);
}

/* Calendar */
.booking__calendar {
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: 20px;
}

.cal__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}

.cal__month {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--dark);
}

.cal__nav {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--brown);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s var(--ease);
}
.cal__nav:hover { background: var(--brown); color: var(--white); }

.cal__weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}
.cal__weekdays span {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--tan);
  padding: 6px 0;
}

.cal__days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal__day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; font-weight: 500;
  border-radius: 50%;
  color: var(--dark);
  transition: all 0.2s var(--ease);
  cursor: pointer;
  border: none; background: none;
  font-family: 'Montserrat', sans-serif;
}
.cal__day:hover:not(.cal__day--disabled):not(.cal__day--empty) {
  background: var(--tan-light);
  color: var(--white);
}
.cal__day--today {
  background: var(--cream);
  font-weight: 700;
  color: var(--brown);
}
.cal__day--selected {
  background: var(--brown) !important;
  color: var(--white) !important;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(107, 66, 38, 0.3);
}
.cal__day--disabled {
  color: var(--cream-dark);
  cursor: not-allowed;
  opacity: 0.4;
}
.cal__day--empty {
  cursor: default;
}

/* Time slots */
.booking__times {
  margin-top: 20px;
  display: none;
}
.booking__times.visible { display: block; }

.booking__times-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 12px;
}

.booking__time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.booking__time-btn {
  padding: 10px 8px;
  background: var(--cream-light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 600;
  color: var(--dark);
  transition: all 0.25s var(--ease);
  font-family: 'Montserrat', sans-serif;
}
.booking__time-btn:hover {
  border-color: var(--tan-light);
  background: var(--cream);
}
.booking__time-btn.active {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

/* Summary */
.booking__summary-card {
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: 24px;
}

.booking__summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
}

.booking__summary-label {
  font-size: 0.85rem; font-weight: 500;
  color: var(--brown-light);
}

.booking__summary-value {
  font-weight: 600; font-size: 0.92rem;
  color: var(--dark);
}

.booking__summary-row--total .booking__summary-label {
  font-weight: 700; color: var(--dark);
}
.booking__summary-row--total .booking__summary-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--tan);
}

.booking__summary-divider {
  height: 1px;
  background: var(--cream-dark);
  margin: 4px 0;
}

.booking__summary-note {
  font-size: 0.78rem;
  color: var(--brown-light);
  line-height: 1.5;
  margin: 16px 0;
  padding: 12px;
  background: var(--white);
  border-radius: 8px;
  border-left: 3px solid var(--tan);
}

.booking__confirm-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.booking__confirm-btn:disabled::before { display: none; }

/* ── CTA ── */
.cta {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0;
}
.cta__bg-img {
  width: 100%; height: 100%;
  background: url('images/08-owner-portrait-branded-apron-laptop.jpeg') center/cover no-repeat;
}
.cta__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.88), rgba(107, 66, 38, 0.78));
}

.cta__ribbon {
  position: absolute; height: 100%; width: 100px; top: 0;
  z-index: 1;
}
.cta__ribbon--1 { left: 10%; }
.cta__ribbon--2 { right: 10%; }

.cta__content { position: relative; z-index: 2; }

.cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta__title em { color: var(--tan-light); font-style: italic; }

.cta__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px; margin: 0 auto 40px;
}

.cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact { background: var(--cream-light); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact__info { display: flex; flex-direction: column; gap: 20px; }

.contact__card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
}
.contact__card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.contact__card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--tan);
}

.contact__card h4 {
  font-size: 0.9rem; font-weight: 700;
  color: var(--dark); margin-bottom: 4px;
}
.contact__card p,
.contact__card a { font-size: 0.88rem; color: var(--brown-light); }
.contact__card a:hover { color: var(--tan); }

.contact__quote {
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  position: relative;
}
.contact__quote svg { margin-bottom: 12px; }
.contact__quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact__quote span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tan);
}

.contact__form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group label {
  display: block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 8px;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 14px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  transition: all 0.3s var(--ease);
  outline: none;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: var(--tan);
  box-shadow: 0 0 0 4px rgba(200, 168, 130, 0.15);
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: var(--tan-light); }
.contact__form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23C8A882' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact__form textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 72px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--white);
  margin-bottom: 8px;
}
.footer__logo em { color: var(--tan); font-style: italic; }

.footer__subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 12px;
}
.footer__tagline { font-size: 0.9rem; margin-bottom: 16px; }

.footer__social-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}
.footer__social-link:hover { color: var(--tan); }

.footer__links h4 {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a {
  font-size: 0.88rem; transition: color 0.3s;
}
.footer__links a:hover { color: var(--tan); }

.footer__divider { padding: 0; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
}
.footer__credit { color: rgba(255, 255, 255, 0.3); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(44, 24, 16, 0.94);
  backdrop-filter: blur(20px);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox__img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}
.lightbox__close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about__grid { gap: 48px; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid .testimonial:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process__line { display: none !important; }
  .policies__layout { grid-template-columns: 1fr; gap: 32px; }
  .booking__grid { grid-template-columns: 1fr 1fr; }
  .booking__step:last-child { grid-column: 1 / -1; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__badge { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 24px; padding: 40px;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    transition: right 0.5s var(--ease);
  }
  .nav__links.open { right: 0; }
  .nav__links a { color: var(--brown) !important; font-size: 14px; }
  .nav__links .btn {
    background: var(--brown) !important;
    color: var(--white) !important;
    border-color: var(--brown) !important;
  }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__img--main img { height: 420px; }
  .about__img--accent { right: 10px; bottom: -16px; width: 160px; }
  .about__img--accent img { height: 200px; }
  .about__dots { display: none; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .why__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__grid .testimonial:last-child { max-width: none; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .booking__grid { grid-template-columns: 1fr; }
  .booking__time-grid { grid-template-columns: repeat(4, 1fr); }

  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hero__ribbon { display: none; }
  .cta__ribbon { display: none; }
  .price-grid { grid-template-columns: 1fr !important; }

  .marquee__content span { font-size: 0.95rem; }
  .marquee__content { gap: 28px; }
}

@media (max-width: 480px) {
  .hero__title-line { font-size: 2.5rem; }
  .hero__title-line--italic em { font-size: 3rem; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .about__features { gap: 16px; }
  .policies__grid { grid-template-columns: 1fr; }
  .services__tabs { gap: 6px; }
  .tab { padding: 10px 16px; font-size: 12px; }
}
