/* ===== Variables ===== */
:root {
  --color-bg: #f7f7f7;
  --color-bg-dark: #1c1c1c;
  --color-surface: #ffffff;
  --color-primary: #3d3d3d;
  --color-primary-light: #5c5c5c;
  --color-primary-dark: #1a1a1a;
  --color-accent: #ffffff;
  --color-accent-light: #a3a3a3;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-border: #e5e5e5;
  --font-display: 'Urbanist', system-ui, sans-serif;
  --font-body: 'Urbanist', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: clamp(64px, 9vw, 80px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  min-width: 320px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  min-width: 0;
}

/* ===== Utilities ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

.section {
  padding: clamp(64px, 9vw, 100px) 0;
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: clamp(0.08em, 0.7vw, 0.15em);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__header .section__desc {
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 48px;
  text-align: center;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn--full {
  width: 100%;
}

/* ===== Header / Nav ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition), width var(--transition), border-radius var(--transition), transform var(--transition);
  background: rgba(18, 18, 18, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 56px);
  height: 100%;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #fff;
  transition: color var(--transition);
  line-height: 1;
  flex-shrink: 0;
}

.header.scrolled .nav__logo {
  color: var(--color-text);
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.5vw, 36px);
  flex: 1;
  min-width: 0;
}

.nav__link {
  font-size: clamp(0.78rem, 1.35vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  white-space: nowrap;
}

.header.scrolled .nav__link {
  color: var(--color-text-muted);
}

.header.scrolled .nav__link::after {
  background: var(--color-primary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link--cta {
  padding: 10px clamp(16px, 2.2vw, 24px);
  background: var(--color-primary-dark);
  color: #fff !important;
  border-radius: 50px;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--color-primary);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
}

.header.scrolled .nav__toggle span {
  background: var(--color-text);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  height: 100vh;
  min-height: 100svh;
  background: url(./other_img/hero_bg.jpeg?v=ai-20260827) center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}


@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.78) 0%,
    rgba(80, 80, 80, 0.45) 50%,
    rgba(26, 26, 26, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: calc(var(--header-height) + 48px) 24px 80px;
  max-width: 800px;
}

.hero__tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: clamp(0.08em, 1vw, 0.2em);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero__title em {
  font-style: italic;
  color: var(--color-accent-light);
}

.hero__subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: clamp(0.08em, 0.7vw, 0.15em);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.2s;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

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

.about__images {
  position: relative;
  min-height: 420px;
}

.about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__img:hover img {
  transform: scale(1.05);
}

.about__img--main {
  width: 75%;
  aspect-ratio: 4/5;
}

.about__img--secondary {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 55%;
  aspect-ratio: 4/5;
  border: 4px solid var(--color-bg);
}

.about__badge {
  position: absolute;
  top: 30px;
  right: 10%;
  background: var(--color-primary);
  color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about__badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.about__badge-text {
  display: block;
  max-width: 86px;
  font-size: 0.62rem;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 6px;
  white-space: normal;
}

.about__text {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
}

.about__features svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ===== Services ===== */
.services {
  background: var(--color-surface);
}


.HS-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin-bottom: 10px;
    display: block;
}

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

.service-card {
  position: relative;
  padding: clamp(28px, 4vw, 36px) clamp(22px, 3vw, 28px);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  overflow: hidden;
  isolation: isolate;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center/cover no-repeat;
  opacity: 1;
  filter: blur(1.5px);
  transform: scale(1.02);
  transition: opacity var(--transition), transform 0.6s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.48) 52%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

.service-card:nth-child(1)::before {
  background-image: url('servicesimg/haircut & Styling.jpeg?v=ai-20260827');
}

.service-card:nth-child(2)::before {
  background-image: url('servicesimg/colour and highlights.jpeg?v=ai-20260827');
}

.service-card:nth-child(3)::before {
  background-image: url('servicesimg/hair treatments.jpeg?v=ai-20260827');
}

.service-card:nth-child(4)::before {
  background-image: url('servicesimg/bridal&events.jpeg?v=ai-20260827');
}

.service-card:nth-child(5)::before {
  background-image: url('servicesimg/makeup&beauty.jpeg?v=ai-20260827');
}

.service-card:nth-child(6)::before {
  background-image: url('servicesimg/spa&wellness.jpeg?v=ai-20260827');
}
.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.service-card__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.service-card__price {
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

/* ===== Gallery ===== */
.gallery .section__tag,
.team .section__tag,
.testimonials .section__tag {
  color: var(--color-primary-dark);
}

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

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  min-height: 220px;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 22, 20, 0.7), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__overlay span {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

/* ===== Team ===== */
.team {
  background: var(--color-surface);
}

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

.team-card {
  text-align: center;
  max-width: 100%;
}

.team-card__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-card__img img {
  transform: scale(1.05);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.team-card__bio {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== Testimonials ===== */
.testimonials__slider {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial {
  min-width: 100%;
  text-align: center;
  padding: 20px;
}

.testimonial__stars {
  display: inline-flex;
  align-items: center;
  color: #d4a017;
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 24px;
}


.testimonial__star-half {
  color: transparent;
  background: linear-gradient(90deg, #d4a017 50%, #d8d8d8 50%);
  background-clip: text;
  -webkit-background-clip: text;
}
.testimonial__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 28px;
}

.testimonial__author strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.testimonial__author span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-text);
  transition: all var(--transition);
}

.testimonials__btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.testimonials__dot.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

/* ===== Contact ===== */
.contact {
  background: var(--color-surface);
}

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

.contact__text {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__details li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__details svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__details strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact__details span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact__form {
  background: var(--color-bg);
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form__optional {
  font-weight: 400;
  color: var(--color-text-muted);
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(61, 61, 61, 0.12);
}

.form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__success {
  margin-top: 16px;
  padding: 14px;
  background: rgba(61, 61, 61, 0.08);
  color: var(--color-primary);
  border-radius: var(--radius);
  font-size: 0.9rem;
  text-align: center;
  max-width: 100%;
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 80px) 0 clamp(56px, 8vw, 80px);
  background: var(--color-bg-dark);
  color: #fff;
  text-align: center;
  max-width: 100%;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1633681926022-84c23e8cb2d6?w=1920&h=600&fit=crop') center/cover no-repeat;
  opacity: 0.25;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__breadcrumb {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.page-hero__breadcrumb a:hover {
  color: #fff;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.page-hero__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== Hairstyles Page ===== */
.hairstyles-categories {
  background: var(--color-surface);
}

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

.hairstyle-category {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.hairstyle-category:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.hairstyle-category__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.hairstyle-category__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hairstyle-category:hover .hairstyle-category__img img {
  transform: scale(1.06);
}

.hairstyle-category__body {
  padding: 24px;
}

.hairstyle-category__body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.hairstyle-category__body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.hairstyle-category__price {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
}

.pricing-table {
  background: var(--color-bg);
}

.pricing-table__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pricing-group {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 32px);
}

.pricing-group h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
}

.pricing-group ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-group li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 0.95rem;
}

.pricing-group li span:first-child {
  color: var(--color-text-muted);
}

.pricing-group li span:last-child {
  font-weight: 600;
  white-space: nowrap;
}

.style-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.style-showcase__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.style-showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.style-showcase__item:hover img {
  transform: scale(1.08);
}

.style-showcase__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

.cta-banner {
  background: var(--color-bg-dark);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

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

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn--whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
}

.nav__link.active-page {
  color: #fff !important;
}

.header.scrolled .nav__link.active-page {
  color: var(--color-primary-dark) !important;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: clamp(56px, 8vw, 80px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__links h4,
.footer__newsletter h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__newsletter p {
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.newsletter__form {
  display: flex;
  gap: 0;
}

.newsletter__form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.newsletter__form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter__form input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.newsletter__form button {
  padding: 12px 18px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-weight: 600;
  transition: background var(--transition);
}

.newsletter__form button:hover {
  background: var(--color-accent-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
}

.footer__disclosure {
  max-width: 760px;
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  line-height: 1.5;
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Client Dashboard ===== */
.dashboard-page {
  min-height: 100vh;
  background: #f2f2f2;
}

.dashboard-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.dashboard-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.dashboard-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
}

.dashboard-nav__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.dashboard-nav__actions a:hover {
  color: var(--color-text);
}

.dashboard-logout {
  padding: 10px 18px;
  border-radius: 50px;
  background: var(--color-primary-dark);
  color: #fff !important;
}

.dashboard-main {
  padding: clamp(40px, 7vw, 72px) 0;
}

.dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.dashboard-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 12px;
}

.dashboard-hero p {
  max-width: 560px;
  color: var(--color-text-muted);
}

.dashboard-grid,
.dashboard-content {
  display: grid;
  gap: 20px;
}

.dashboard-grid {
  grid-template-columns: repeat(3, 1fr);
}

.dashboard-content {
  grid-template-columns: 1.4fr 0.8fr;
  margin-top: 20px;
}

.dashboard-content--wide {
  grid-template-columns: 1fr;
}

.dashboard-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow-sm);
}

.dashboard-panel--featured {
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.88), rgba(61, 61, 61, 0.78)),
    url('other_img/stylist_at_work.jpeg?v=ai-20260827') center/cover no-repeat;
  color: #fff;
}

.dashboard-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-panel__header strong,
.dashboard-panel__header a {
  color: var(--color-primary-dark);
  letter-spacing: 0;
  text-transform: none;
}

.dashboard-panel--featured .dashboard-panel__header,
.dashboard-panel--featured .dashboard-panel__header strong,
.dashboard-panel--featured p,
.dashboard-panel--featured .dashboard-meta {
  color: rgba(255, 255, 255, 0.82);
}

.dashboard-panel h2 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1.2;
  margin-bottom: 10px;
}

.dashboard-panel p {
  color: var(--color-text-muted);
}

.dashboard-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 22px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.dashboard-progress {
  height: 10px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--color-border);
}

.dashboard-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--color-primary);
}

.booking-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.booking-list li:last-child {
  border-bottom: 0;
}

.booking-list span {
  color: var(--color-text-muted);
}

.booking-list small {
  display: block;
  margin-top: 4px;
  color: var(--color-text);
  font-size: 0.82rem;
}

.dashboard-booking-form {
  display: grid;
  gap: 16px;
}

.dashboard-booking-form label {
  display: grid;
  gap: 8px;
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 600;
}

.dashboard-booking-form input,
.dashboard-booking-form select,
.dashboard-booking-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-text);
}

.dashboard-booking-form textarea {
  resize: vertical;
}

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

.dashboard-message {
  text-align: center;
  color: var(--color-primary);
  font-size: 0.9rem;
}

.quick-actions {
  display: grid;
  gap: 12px;
}

.quick-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 600;
}

.quick-actions a::after {
  content: '>';
  color: var(--color-text-muted);
}

.quick-actions a:hover {
  border-color: var(--color-primary);
}

.admin-bookings {
  display: grid;
  gap: 14px;
}

.admin-booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fafafa;
}

.admin-booking h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.admin-booking p {
  margin-top: 4px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.admin-booking__status {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(61, 61, 61, 0.08);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-assign-form,
.stylist-status-form {
  display: grid;
  gap: 10px;
}

.admin-assign-form select,
.stylist-status-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
}

.admin-booking-empty {
  padding: 24px;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-muted);
  text-align: center;
}

/* ===== Responsive ===== */

@media (min-width: 901px) {
  .header {
    display: flex;
    justify-content: center;
    top: 18px;
    right: auto;
    left: 50%;
    width: min(calc(100vw - 32px), 1140px);
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(18, 18, 18, 0.24);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
    transform: translateX(-50%);
    pointer-events: none;
    overflow: hidden;
  }

  .header .nav {
    width: 100%;
    pointer-events: auto;
    transition: max-width var(--transition), padding var(--transition), background var(--transition), border-radius var(--transition), box-shadow var(--transition), gap var(--transition);
  }

  .header.scrolled {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(229, 229, 229, 0.9);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.12);
  }

  .nav__menu {
    gap: clamp(12px, 1.8vw, 26px);
  }

  .header.nav-collapsed {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
    cursor: pointer;
  }

  .header.nav-collapsed .nav {
    width: 54px;
    max-width: 54px;
    padding: 0;
    justify-content: center;
    gap: 0;
  }

  .header.nav-collapsed .nav__logo,
  .header.nav-collapsed .nav__menu {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-18px) scale(0.95);
  }

  .header.nav-collapsed::before,
  .header.nav-collapsed::after {
    content: '';
    position: absolute;
    left: 17px;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-text);
    pointer-events: none;
  }

  .header.nav-collapsed::before {
    top: 21px;
    box-shadow: 0 6px 0 var(--color-text);
  }

  .header.nav-collapsed::after {
    top: 33px;
  }

  .nav__logo,
  .nav__menu {
    transition: opacity var(--transition), transform var(--transition);
  }
}
@media (max-width: 900px) {
  .nav {
    justify-content: space-between;
    gap: 20px;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(86vw, 340px);
    height: 100vh;
    height: 100dvh;
    background: var(--color-bg-dark);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right var(--transition);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nav__menu.open {
    right: 0;
  }

  .nav__link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.1rem;
  }

  .nav__menu.open .nav__link.active-page {
    color: #fff !important;
  }

  .nav__link--cta {
    width: 100%;
    max-width: 220px;
    text-align: center;
  }
}

@media (min-width: 901px) and (max-width: 1024px) {
  .dashboard-grid,
  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .hairstyles-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-table__grid {
    grid-template-columns: 1fr;
  }

  .style-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .gallery__item {
    height: 240px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .dashboard-grid,
  .dashboard-content,
  .contact__grid,
  .pricing-table__grid {
    grid-template-columns: 1fr;
  }

  .dashboard-content {
    margin-top: 18px;
  }

  .hairstyles-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .style-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .section__header {
    margin-bottom: 32px;
  }

  .dashboard-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-nav {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .dashboard-nav__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(86vw, 340px);
    height: 100vh;
    height: 100dvh;
    background: var(--color-bg-dark);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right var(--transition);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nav__menu.open {
    right: 0;
  }

  .nav__link--cta {
    width: 100%;
    max-width: 220px;
    text-align: center;
  }

  .nav__link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.1rem;
  }

  .nav__menu.open .nav__link.active-page {
    color: #fff !important;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about__img--main {
    width: 85%;
  }

  .about__images {
    max-width: 520px;
    min-height: 360px;
    margin: 0 auto;
    width: 100%;
  }

  .about__badge {
    width: 104px;
    height: 104px;
    right: 4%;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .gallery__item,
  .gallery__item--wide {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .team__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

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

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .footer__social {
    justify-content: center;
  }

  .newsletter__form {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .dashboard-main {
    padding-top: 32px;
  }

  .dashboard-nav__actions {
    gap: 10px;
  }

  .dashboard-nav__actions a {
    font-size: 0.9rem;
  }

  .dashboard-logout {
    padding: 9px 14px;
  }

  .booking-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .dashboard-form-row {
    grid-template-columns: 1fr;
  }

  .admin-booking {
    grid-template-columns: 1fr;
  }

  .section__tag {
    letter-spacing: 0.11em;
  }

  .nav__menu {
    width: 100%;
    max-width: none;
    padding: 72px 24px 40px;
  }

  .hero__content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__tag {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero__scroll {
    bottom: 24px;
  }

  .about__images {
    min-height: 320px;
  }

  .about__img--main {
    width: 88%;
  }

  .about__img--secondary {
    bottom: -18px;
    width: 56%;
  }

  .about__badge {
    top: 18px;
    width: 88px;
    height: 88px;
  }

  .about__badge-number {
    font-size: 1.55rem;
  }

  .about__badge-text {
    font-size: 0.58rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .gallery__item {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .contact__form {
    padding: 28px 20px;
  }

  .hairstyles-categories__grid {
    grid-template-columns: 1fr;
  }

  .style-showcase__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pricing-group li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .pricing-group li span:last-child {
    white-space: normal;
  }
  .footer__grid {
    gap: 32px;
    padding-bottom: 44px;
  }
}

@media (max-width: 360px) {
  .btn {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .section__title {
    font-size: 1.85rem;
  }

  .style-showcase__grid {
    grid-template-columns: 1fr;
  }

  .newsletter__form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter__form input,
  .newsletter__form button {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
  }
}

/* ===== Mobile polish overrides ===== */
@media (max-width: 900px) {
  .dashboard-grid,
  .dashboard-content,
  .contact__grid,
  .pricing-table__grid {
    grid-template-columns: 1fr;
  }

  .dashboard-content {
    margin-top: 18px;
  }

  .hairstyles-categories__grid,
  .style-showcase__grid,
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-group,
  .dashboard-panel,
  .admin-booking,
  .hairstyle-category,
  .service-card {
    min-width: 0;
  }
}

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

  .section__desc {
    font-size: 1rem;
  }

  .dashboard-hero {
    gap: 20px;
  }

  .dashboard-hero .btn {
    width: 100%;
    max-width: 320px;
  }

  .dashboard-nav {
    gap: 14px;
    min-height: 0;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .dashboard-nav__actions {
    gap: 10px;
  }

  .dashboard-nav__actions a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .gallery__item,
  .gallery__item--wide {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 520px) {
  .container {
    padding-inline: 14px;
  }

  .section {
    padding: 32px 0;
  }

  .section__header {
    margin-bottom: 24px;
  }

  .section__title,
  .page-hero__title,
  .dashboard-hero h1,
  .service-card__title,
  .hairstyle-category__body h3 {
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__content {
    width: 100%;
    padding: calc(var(--header-height) + 32px) 14px 72px;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .btn {
    max-width: 100%;
  }

  .dashboard-panel {
    padding: 20px 16px;
  }

  .dashboard-panel__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .dashboard-panel__header strong,
  .dashboard-panel__header a,
  .dashboard-meta,
  .booking-list,
  .admin-booking p {
    overflow-wrap: anywhere;
  }

  .admin-booking {
    padding: 16px 14px;
  }

  .about__images {
    min-height: 300px;
  }

  .hairstyles-categories__grid,
  .services__grid {
    grid-template-columns: 1fr;
  }

  .style-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .style-showcase__label,
  .gallery__overlay {
    padding: 12px;
  }

  .style-showcase__label {
    font-size: 0.78rem;
  }

  .cta-banner {
    padding: 40px 14px;
  }

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 380px) {
  .dashboard-logo {
    font-size: 1.45rem;
  }

  .dashboard-nav__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-nav__actions a {
    width: 100%;
    justify-content: center;
  }

  .style-showcase__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Terms Page ===== */
.terms-page {
  background: var(--color-surface);
}

.terms-page__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.terms-page__summary {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.terms-page__summary .section__tag {
  color: var(--color-primary-dark);
}

.terms-page__summary h2 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.terms-page__summary p {
  margin-bottom: 24px;
  color: var(--color-text-muted);
}

.terms-page__content {
  display: grid;
  gap: 24px;
}

.terms-page__content section {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.terms-page__content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.terms-page__content h2 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.terms-page__content p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

.terms-page__content a {
  color: var(--color-primary-dark);
  font-weight: 700;
}

@media (max-width: 768px) {
  .terms-page__grid {
    grid-template-columns: 1fr;
  }

  .terms-page__summary {
    position: static;
  }
}