:root {
  --black: #000;
  --cream: #f5efe8;
  --soft-cream: #fbf8f3;
  --gold: #d7a640;
  --gold-light: #efc46b;
  --gold-muted: #cbb57c;
  --text: #0f0f0f;
  --muted: #5f5a55;
  --white: #fff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--gold);
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(100% - 48px, 1370px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
}

.site-header .navbar {
  min-height: 132px;
  padding: 0;
}

.logo-link {
  padding: 0;
}

.header-logo {
  width: 177px;
  height: auto;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--gold);
}

.dropdown-menu-dark {
  border: 1px solid rgba(215, 166, 64, 0.35);
  border-radius: 0;
  background: var(--black);
  padding: 0.6rem 0;
}

.dropdown-menu-dark .dropdown-item {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.65rem 1.1rem;
  text-transform: uppercase;
}

.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus {
  background: var(--gold);
  color: var(--black);
}

.btn {
  border-radius: 0;
  padding: 0.86rem 1.7rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn-gold {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--white);
}

.btn-gold:focus,
.btn-gold:active,
.btn-gold.active,
.btn-gold:visited,
.btn-gold:first-child:active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--black);
}

.btn-outline-light-gold,
.btn-outline-gold {
  border: 1px solid var(--gold-muted);
  background: transparent;
  color: var(--gold);
}

.btn-outline-gold {
  color: var(--gold);
}

.btn-outline-light-gold:focus,
.btn-outline-light-gold:active,
.btn-outline-light-gold.active,
.btn-outline-light-gold:visited,
.btn-outline-light-gold:first-child:active {
  border-color: var(--gold-muted);
  background: transparent;
  color: var(--gold);
}

.btn-outline-gold:focus,
.btn-outline-gold:active,
.btn-outline-gold.active,
.btn-outline-gold:visited,
.btn-outline-gold:first-child:active {
  border-color: var(--gold-muted);
  background: transparent;
  color: var(--gold);
}

.btn-outline-light-gold:hover,
.btn-outline-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.btn-dark-solid {
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}

.btn-dark-solid:focus,
.btn-dark-solid:active,
.btn-dark-solid.active,
.btn-dark-solid:visited,
.btn-dark-solid:first-child:active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.btn-dark-solid:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--gold);
}

.nav-cta {
  min-width: 220px;
  white-space: nowrap;
  text-align: center;
}

.hero-section {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.58) 36%, rgba(0, 0, 0, 0.04) 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
  padding: 42px 0 32px;
}

.hero-copy h1 {
  margin: 0 0 60px;
  font-family: var(--serif);
  font-size: clamp(3.05rem, 5.8vw, 5.55rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.hero-copy em {
  display: inline-block;
  margin-top: 0.16em;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 42px;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 13px;
  color: #f1eee9;
  font-size: 0.8rem;
}

.rating-row span:not(:first-child):not(:last-child)::after {
  content: '|';
  margin-left: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.13em;
}

.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid #ded2c2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 94px;
  padding: 14px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
}

.trust-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.section {
  padding: 48px 0 54px;
}

.section-kicker {
  margin: 0 0 4px;
  color: var(--gold-muted);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title,
.care-copy h2,
.products-copy h2,
.meet-copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.section-title {
  margin: 0 0 36px;
  font-size: clamp(2.25rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 44px;
}

.service-card {
  border: 1px solid var(--gold-muted);
  background: var(--white);
  text-align: center;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
}

.service-card-body {
  min-height: 122px;
  padding: 10px 10px 12px;
}

.service-card h3 {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card p {
  margin: 0 0 8px;
  font-size: 0.72rem;
  line-height: 1.32;
}

.service-card a {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.special-offers-section {
  padding: 58px 0 66px;
  background: var(--black);
  color: var(--white);
}

.special-offers-section .section-title {
  color: var(--white);
}

.special-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 34px;
}

.special-offer-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #0b0b0b;
  border: 1px solid rgba(203, 181, 124, 0.72);
}

.special-offer-image-wrap img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.special-offer-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.special-offer-body h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.05;
}

.special-offer-description {
  margin-bottom: 24px;
  color: #eee8df;
  font-size: 0.9rem;
}

.special-offer-description p:last-child {
  margin-bottom: 0;
}

.special-offer-body .btn {
  margin-top: auto;
}

.special-offers-empty {
  max-width: 680px;
  margin: 30px auto 0;
  padding: 34px;
  background: #0b0b0b;
  border: 1px solid rgba(203, 181, 124, 0.72);
  color: #eee8df;
  text-align: center;
}

.btn-outline-gold-on-dark {
  color: var(--gold);
}

.service-detail-hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.service-detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42));
}

.service-detail-hero-content {
  position: relative;
  z-index: 2;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1370px;
}

.service-detail-hero-content h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 500;
  line-height: 0.95;
}

.service-detail-hero-content p:not(.section-kicker) {
  max-width: 620px;
  margin-bottom: 28px;
  color: #f1eee9;
}

.service-detail-content {
  padding: 68px 0;
  background: var(--cream);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.service-detail-grid h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}

.contact-page-hero {
  background:
    radial-gradient(circle at 82% 30%, rgba(215, 166, 64, 0.2), transparent 28%),
    var(--black);
  color: var(--white);
}

.contact-page-hero-content {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact-page-hero h1 {
  max-width: 800px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 0.94;
}

.contact-page-hero h1 em {
  color: var(--gold-light);
  font-weight: 500;
}

.contact-page-hero-content > p:not(.section-kicker) {
  max-width: 680px;
  color: #f1eee9;
}

.contact-page-section {
  padding: 76px 0;
  background: var(--cream);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 48px;
  align-items: start;
}

.contact-form-panel,
.contact-details-panel {
  padding: 42px;
  background: var(--white);
  border: 1px solid rgba(203, 181, 124, 0.7);
}

.contact-form-panel h2,
.contact-details-panel h2,
.contact-success h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.contact-form-intro {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-enquiry-form {
  position: relative;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form-field {
  margin-bottom: 22px;
}

.contact-form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  display: block;
  width: 100%;
  border: 1px solid #cfc6bb;
  border-radius: 0;
  background: var(--soft-cream);
  color: var(--text);
  font: inherit;
}

.contact-form-field input,
.contact-form-field select {
  min-height: 50px;
  padding: 10px 13px;
}

.contact-form-field textarea {
  min-height: 170px;
  padding: 13px;
  resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(215, 166, 64, 0.18);
}

.contact-form-field .field-validation-error,
.contact-validation-summary {
  color: #a12622;
  font-size: 0.75rem;
}

.contact-form-field .field-validation-error {
  display: block;
  margin-top: 6px;
}

.contact-validation-summary ul {
  margin: 0 0 22px;
  padding: 14px 14px 14px 32px;
  background: #fff1ef;
  border-left: 3px solid #a12622;
}

.contact-validation-summary:empty {
  display: none;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-privacy-note {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.72rem;
}

.contact-success {
  padding: 34px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
}

.contact-success p {
  margin: 0;
  color: var(--muted);
}

.contact-details-panel {
  background: var(--black);
  color: var(--white);
}

.contact-page-details {
  margin-top: 28px;
}

.contact-page-details > div {
  padding: 18px 0;
  border-top: 1px solid rgba(203, 181, 124, 0.38);
}

.contact-page-details strong {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.contact-page-details p {
  margin: 0;
  color: #f1eee9;
  line-height: 1.65;
}

.contact-page-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.contact-details-panel .btn-dark-solid {
  border-color: var(--gold-muted);
}

.contact-page-map iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.appointment-page-hero {
  background:
    radial-gradient(circle at 82% 30%, rgba(215, 166, 64, 0.2), transparent 28%),
    var(--black);
  color: var(--white);
}

.appointment-page-hero-content {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
}

.appointment-page-hero h1 {
  max-width: 800px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 0.94;
}

.appointment-page-hero h1 em {
  color: var(--gold-light);
  font-weight: 500;
}

.appointment-page-hero-content > p:not(.section-kicker) {
  max-width: 720px;
  color: #f1eee9;
}

.appointment-page-section {
  padding: 76px 0;
  background: var(--cream);
}

.appointment-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 48px;
  align-items: start;
}

.appointment-form-panel,
.appointment-info-panel {
  padding: 42px;
  background: var(--white);
  border: 1px solid rgba(203, 181, 124, 0.7);
}

.appointment-form-panel h2,
.appointment-info-panel h2,
.appointment-hours-section h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.appointment-success-note {
  margin-top: 14px !important;
  font-weight: 700;
}

.appointment-info-panel {
  background: var(--black);
  color: var(--white);
}

.appointment-info-list {
  margin: 28px 0;
}

.appointment-info-list > div {
  padding: 18px 0;
  border-top: 1px solid rgba(203, 181, 124, 0.38);
}

.appointment-info-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.appointment-info-list p {
  margin: 0;
  color: #f1eee9;
  font-size: 0.82rem;
  line-height: 1.65;
}

.appointment-info-panel .btn-dark-solid {
  width: 100%;
  border-color: var(--gold-muted);
}

.appointment-hours-section {
  padding: 64px 0;
  background: var(--white);
}

.appointment-hours-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 60px;
  align-items: center;
}

.appointment-hours-card {
  padding: 30px 34px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

.appointment-hours-card p {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(95, 90, 85, 0.2);
}

.appointment-hours-card p:last-child {
  border-bottom: 0;
}

.appointment-hours-card strong {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.appointment-hours-card span {
  color: var(--muted);
  text-align: right;
}

.service-detail-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(203, 181, 124, 0.7);
}

.service-detail-card h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 2rem;
}

.service-detail-card .btn {
  margin-top: 28px;
}

.braids-hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.braids-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.silk-press-hero .braids-hero-image {
  object-position: center 35%;
}

.silk-press-process-section .braids-style-card > img,
.silk-press-care-section .braids-care-image-wrap img {
  object-position: center top;
}

.weaves-extensions-hero .braids-hero-image {
  object-position: center 25%;
}

.weaves-services-section .braids-style-card > img {
  object-position: center top;
}

.weaves-care-section .braids-care-image-wrap img {
  object-position: center;
}

.colour-services-hero .braids-hero-image {
  object-position: center 30%;
}

.colour-options-section .braids-style-card > img,
.colour-care-section .braids-care-image-wrap img {
  object-position: center top;
}

.natural-hair-hero .braids-hero-image,
.natural-hair-services-section .braids-style-card > img {
  object-position: center top;
}

.natural-hair-care-section .braids-care-image-wrap img {
  object-position: center;
}

.european-hair-hero .braids-hero-image,
.european-services-section .braids-style-card > img {
  object-position: center top;
}

.european-hair-care-section .braids-care-image-wrap img {
  object-position: center;
}

.european-finish-section {
  background: var(--white);
}

.natural-hair-education-section {
  padding: 68px 0;
  background: var(--cream);
}

.natural-hair-education-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 68px;
  align-items: start;
}

.natural-hair-education-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.natural-hair-education-grid > div:last-child {
  padding: 30px 34px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

.natural-hair-education-grid > div:last-child p {
  color: var(--muted);
  line-height: 1.75;
}

.natural-hair-education-grid > div:last-child p:last-child {
  margin-bottom: 0;
}

.braids-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.68) 48%, rgba(0, 0, 0, 0.18) 100%);
}

.braids-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 54px;
  padding-bottom: 54px;
}

.braids-hero h1 {
  max-width: 820px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 0.94;
}

.braids-hero h1 em {
  color: var(--gold-light);
  font-weight: 500;
}

.braids-hero-content > p:not(.section-kicker) {
  max-width: 670px;
  margin-bottom: 30px;
  color: #f1eee9;
  font-size: 1rem;
}

.braids-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.braids-intro-section,
.braids-styles-section,
.braids-appointment-section,
.braids-testimonial-section {
  padding: 72px 0;
}

.braids-intro-section,
.braids-testimonial-section {
  background: var(--cream);
}

.braids-intro-grid,
.braids-care-grid,
.braids-testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 68px;
  align-items: center;
}

.braids-intro-copy h2,
.braids-appointment-copy h2,
.braids-care-copy h2,
.braids-testimonial-section h2,
.braids-consultation-section h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.braids-intro-copy p:not(.section-kicker),
.braids-care-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.braids-booking-card {
  padding: 40px;
  background: var(--black);
  border: 1px solid var(--gold-muted);
  color: var(--white);
}

.braids-booking-card h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
}

.braids-booking-card > p:not(.section-kicker) {
  margin-bottom: 26px;
  color: #f1eee9;
}

.braids-booking-card > span {
  display: block;
  margin-top: 22px;
  color: #d9d2c8;
  font-size: 0.78rem;
  line-height: 1.7;
}

.braids-styles-section {
  background: var(--white);
}

.braids-section-lead {
  max-width: 760px;
  margin: -18px auto 38px;
  color: var(--muted);
  text-align: center;
}

.braids-style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.braids-style-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.2fr);
  border: 1px solid rgba(203, 181, 124, 0.75);
  background: var(--white);
}

.braids-style-card > img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.braids-style-card-body {
  padding: 32px 28px;
}

.braids-style-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
}

.braids-style-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.braids-style-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.8;
}

.braids-style-card li::marker {
  color: var(--gold);
}

.braids-inline-action {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 24px 28px;
  background: var(--cream);
}

.braids-inline-action p {
  margin: 0;
  font-weight: 600;
}

.braids-inline-action div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.braids-inline-action a {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.braids-appointment-section {
  background: var(--cream);
}

.braids-appointment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 68px;
  align-items: center;
}

.braids-appointment-copy > p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}

.braids-appointment-details {
  display: grid;
  gap: 18px;
  margin: 30px 0;
}

.braids-appointment-details > div {
  padding: 20px 22px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

.braids-appointment-details h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.braids-appointment-details p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.braids-appointment-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.braids-appointment-images img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.braids-appointment-images img:last-child {
  margin-top: 48px;
}

.braids-care-section {
  background: var(--black);
  color: var(--white);
}

.braids-care-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: none;
}

.braids-care-image-wrap,
.braids-care-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.braids-care-image-wrap img {
  object-fit: cover;
}

.braids-care-copy {
  padding: clamp(48px, 6vw, 90px);
}

.braids-care-copy p,
.braids-care-copy .braids-care-note {
  color: #f1eee9;
}

.braids-care-copy .tick-list {
  margin: 22px 0;
}

.braids-care-note {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(203, 181, 124, 0.45);
  font-size: 0.8rem;
}

.braids-testimonial-grid {
  grid-template-columns: 0.75fr 1.25fr;
}

.braids-testimonial-section blockquote {
  margin: 0;
  padding: 36px 40px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

.braids-testimonial-section blockquote p {
  margin: 18px 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
}

.braids-testimonial-section cite {
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.braids-consultation-section {
  padding: 76px 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.braids-consultation-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.braids-consultation-content > p:not(.section-kicker) {
  max-width: 720px;
  margin: 0 auto 30px;
  color: #f1eee9;
}

.content-page-hero {
  padding: 82px 0;
  background: var(--black);
  color: var(--white);
}

.content-page-hero h1 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 0.95;
}

.content-page-hero p:not(.section-kicker) {
  max-width: 680px;
  color: #f1eee9;
}

.about-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.about-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.about-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.18));
  content: '';
}

.about-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 500;
  line-height: 0.95;
}

.about-hero h1 em {
  color: var(--gold-light);
  font-weight: 500;
}

.about-hero-content > p:not(.section-kicker) {
  max-width: 650px;
  margin-bottom: 30px;
  color: #f1eee9;
  font-size: 1rem;
}

.about-story-section,
.about-values-section,
.about-cta {
  padding: 70px 0;
}

.about-story-section {
  background: var(--cream);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 70px;
  align-items: center;
}

.about-story-copy h2,
.about-values-section h2,
.about-cta h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.about-story-copy p {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.qualification-card {
  padding: 44px;
  background: var(--black);
  border: 1px solid var(--gold-muted);
  color: var(--white);
}

.qualification-card::before {
  display: block;
  width: 48px;
  height: 2px;
  margin-bottom: 28px;
  background: var(--gold);
  content: '';
}

.qualification-card h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
}

.qualification-card p {
  margin: 0;
  color: #f1eee9;
  line-height: 1.7;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 38px;
}

.about-value-card {
  padding: 34px;
  border: 1px solid rgba(203, 181, 124, 0.75);
}

.about-value-number {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  
  .braids-style-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .braids-care-copy {
    padding: 52px 36px;
  }
font-family: var(--serif);
  font-size: 2rem;
}

.about-value-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
}

.about-value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.about-cta p:not(.section-kicker) {
  max-width: 650px;
  margin: 0 auto 28px;
  color: #f1eee9;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.news-list-section,
.news-detail-section {
  padding: 68px 0;
  background: var(--cream);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.news-card {
  background: var(--white);
  border: 1px solid rgba(203, 181, 124, 0.65);
}

.news-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.news-card-body {
  padding: 28px;
}

.news-card
  .braids-hero,
  .braids-hero-content {
    min-height: 560px;
  }

  .braids-trust-row {
    flex-direction: column;
  }

  .braids-trust-row span::after {
    display: none;
  }

  .braids-style-grid {
    grid-template-columns: 1fr;
  }

  .braids-inline-action {
    flex-direction: column;
  }

  .braids-care-image-wrap,
  .braids-care-image-wrap img {
    min-height: 340px;
  }

  .braids-intro-section,
  .braids-styles-section,
  .braids-testimonial-section,
  .braids-consultation-section {
    padding: 48px 0;
  }

  .braids-booking-card,
  .braids-testimonial-section blockquote {
    padding: 28px 24px;
  }
 time {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.news-card h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.05;
}

.news-card p {
  color: var(--muted);
}

.news-card a {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-detail-shell {
  max-width: 980px;
}

.news-detail-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  margin-bottom: 34px;
}

.news-detail-content {
  margin-bottom: 34px;
  padding: 36px;
  background: var(--white);
  border: 1px solid rgba(203, 181, 124, 0.65);
}

.empty-content-panel {
  padding: 36px;
  background: var(--white);
  border: 1px solid rgba(203, 181, 124, 0.65);
  text-align: center;
}

.care-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.care-image-wrap {
  min-height: 358px;
}

.care-image {
  width: 100%;
  height: 100%;
  min-height: 358px;
  object-fit: cover;
}

.care-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 74px);
}

.care-copy h2,
.products-copy h2,
.meet-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 3.9vw, 3.4rem);
  line-height: 1.05;
}

.care-copy p,
.products-copy p,
.meet-copy p {
  max-width: 600px;
  margin-bottom: 20px;
}

.tick-list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 800;
}

.tick-list li + li {
  margin-top: 8px;
}

.gallery-section {
  background: var(--white);
  padding-top: 58px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 44px;
  margin-top: 34px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.products-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  color: var(--white);
}

.products-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 5vw, 74px) clamp(36px, 5vw, 58px);
}

.products-copy p {
  color: #f1eee9;
}

.small-copy {
  margin-top: 30px;
  color: var(--cream);
  font-size: 0.86rem;
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

.products-image {
  width: 100%;
  height: 100%;
  min-height: 355px;
  object-fit: cover;
}

.reviews-section {
  padding: 58px 0 66px;
  background: var(--cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.review-card {
  min-height: 215px;
  padding: 34px 36px;
  background: var(--white);
}

.review-card .stars {
  margin-bottom: 28px;
  text-align: center;
}

.review-card p {
  margin-bottom: 24px;
  font-size: 0.86rem;
}

.review-card span {
  font-size: 0.82rem;
}

.google-note {
  margin: 20px 0 0;
  color: var(--black);
}

.google-note strong {
  color: #4285f4;
}

.meet-section {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  background: var(--black);  color: var(--white);}.meet-image {  width: 100%;  height: 100%;  min-height: 380px;
  object-fit: cover;
}

.meet-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 5vw, 72px);
}

.meet-copy p {
  color: #f1eee9;
}

.signature {
  margin-top: 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 4rem;
  font-style: italic;
  line-height: 1;
}

.site-footer {
  background: var(--cream);
}

.contact-panel {
  padding: 42px 0 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.25fr) minmax(260px, 0.75fr);
  gap: 36px;
  align-items: center;
}

.contact-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

  .product-brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-service-links {
    grid-template-columns: repeat(2, 1fr);
  }

.contact-item {
  display: flex;
  gap: 14px;
  font-size: 0.72rem;
  line-height: 1.35;
}

.contact-item strong,
.contact-item span {
  display: block;
  white-space: nowrap;
}

.contact-item strong {
  margin-bottom: 6px;
  color: var(--black);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}

.footer-actions .btn-gold,
.footer-actions .btn-gold:link,
.footer-actions .btn-gold:visited,
.footer-actions .btn-gold:focus,
.footer-actions .btn-gold:active,
.footer-actions .btn-gold:first-child:active {
  color: var(--white) !important;
}

.footer-actions .btn-gold:hover {
  color: var(--black) !important;
}

.footer-actions .btn-dark-solid,
.footer-actions .btn-dark-solid:link,
.footer-actions .btn-dark-solid:visited,
.footer-actions .btn-dark-solid:focus,
.footer-actions .btn-dark-solid:active,
.footer-actions .btn-dark-solid:first-child:active {
  color: var(--white) !important;
}

.footer-actions .btn-dark-solid:hover {
  color: var(--gold) !important;
}

.footer-actions .btn-outline-gold,
.footer-actions .btn-outline-gold:link,
.footer-actions .btn-outline-gold:visited,
.footer-actions .btn-outline-gold:focus,
.footer-actions .btn-outline-gold:active,
.footer-actions .btn-outline-gold:first-child:active {
  color: var(--gold) !important;
}

.footer-actions .btn-outline-gold:hover {
  color: var(--black) !important;
}

.map-card {
  min-height: 220px;
  overflow: hidden;
  background: #f7f8fa;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.footer-bottom {
  padding: 25px 0;
  background: var(--black);
  color: var(--white);
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-logo {
  width: 86px;
  height: auto;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.68rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transfo  .natural-hair-education-grid,
rm: uppercase;
}

.social-links a {
  color: var(--gold);
  font-size: 1.1rem;
}

.products-page-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.products-page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.62) 52%, rgba(0, 0, 0, 0.15));
}

.products-page-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.products-page-hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 0.94;
}

.products-page-hero h1 em {
  color: var(--gold-light);
  font-weight: 500;
}

.products-page-hero-content > p:not(.section-kicker) {
  max-width: 680px;
  margin-bottom: 30px;
  color: #f1eee9;
  font-size: 1rem;
}

.products-page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.products-page-intro,
.product-brands-section,
.product-guidance-section,
.products-page-cta {
  padding: 72px 0;
}

.products-page-intro {
  background: var(--cream);
}

.products-page-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 68px;
  align-items: center;
}

.products-page-intro h2,
.hair-products-copy h2,
.products-page-cta h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.products-page-intro-grid > div > p:not(.section-kicker),
.hair-products-copy > p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.75;
}

.products-advice-card {
  padding: 40px;
  background: var(--black);
  border: 1px solid var(--gold-muted);
  color: var(--white);
}

.products-advice-card h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
}

.products-advice-card > p:not(.section-kicker) {
  margin-bottom: 26px;
  color: #f1eee9;
}

.product-brands-section {
  background: var(--white);
}

.products-page-lead {
  max-width: 760px;
  margin: -18px auto 38px;
  color: var(--muted);
  text-align: center;
}

.product-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.product-brand-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  padding: 30px 28px;
  border: 1px solid rgba(203, 181, 124, 0.75);
}

.product-brand-wordmark {
  min-height: 64px;
  margin-bottom: 20px;
  color: var(--black);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.product-brand-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.product-stock-note {
  max-width: 780px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.hair-extensions-products-section,
.braiding-hair-products-section {
  background: var(--cream);
}

.braiding-hair-products-section {
  background: var(--black);
  color: var(--white);
}

.hair-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: none;
}

.hair-products-grid-reverse .hair-products-copy {
  order: 1;
}

.hair-products-grid-reverse .hair-products-image-wrap {
  order: 2;
}

.hair-products-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.hair-products-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 90px);
}

.braiding-hair-products-section .hair-products-copy > p:not(.section-kicker) {
  color: #f1eee9;
}

.hair-product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0 30px;
}

.hair-product-list > div {
  padding: 18px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

.hair-product-list strong,
.hair-product-list span {
  display: block;
}

.hair-product-list strong {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.3rem;
}

.hair-product-list span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.braiding-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 28px;
}

.braiding-product-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(203, 181, 124, 0.7);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hair-products-small-copy {
  padding-top: 24px;
  border-top: 1px solid rgba(203, 181, 124, 0.4);
  font-size: 0.78rem;
}

.product-guidance-section {
  background: var(--white);
}

.product-guidance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-guidance-grid article {
  padding: 32px;
  background: var(--cream);
  border-top: 3px solid var(--gold);
}

.product-guidance-grid h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
}

.product-guidance-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.products-page-cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.products-page-cta p:not(.section-kicker) {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #f1eee9;
}

.products-page-cta .products-page-actions {
  justify-content: center;
}

.gallery-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 30%, rgba(215, 166, 64, 0.19), transparent 26%),
    var(--black);
  color: var(--white);
}

.gallery-page-hero::after {
  position: absolute;
  right: -80px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(215, 166, 64, 0.28);
  border-radius: 50%;
  content: '';
}

.gallery-page-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 62px;
  padding-bottom: 62px;
}

.gallery-page-hero h1 {
  max-width: 850px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 0.94;
}

.gallery-page-hero h1 em {
  color: var(--gold-light);
  font-weight: 500;
}

.gallery-page-hero-content > p:not(.section-kicker) {
  max-width: 680px;
  margin-bottom: 30px;
  color: #f1eee9;
}

.gallery-page-section {
  padding: 72px 0 82px;
  background: var(--cream);
}

.gallery-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.gallery-page-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.gallery-page-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.gallery-masonry {
  columns: 4 250px;
  column-gap: 22px;
}

.gallery-masonry-item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 22px;
  padding: 0;
  break-inside: avoid;
  border: 0;
  background: var(--black);
  cursor: zoom-in;
}

.gallery-masonry-item img {
  width: 100%;
  height: auto;
  transition: opacity 220ms ease, transform 350ms ease;
}

.gallery-masonry-item span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-masonry-item:hover img,
.gallery-masonry-item:focus-visible img {
  opacity: 0.84;
  transform: scale(1.025);
}

.gallery-masonry-item:hover span,
.gallery-masonry-item:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-masonry-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.gallery-page-services {
  padding: 68px 0 76px;
  background: var(--white);
}

.gallery-service-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-service-links a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border: 1px solid rgba(203, 181, 124, 0.75);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease;
}

.gallery-service-links a span {
  color: var(--gold);
}

.gallery-service-links a:hover {
  background: var(--black);
  color: var(--white);
}

.gallery-page-cta {
  padding: 72px 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.gallery-page-cta h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.gallery-page-cta > .site-shell > p:not(.section-kicker) {
  max-width: 680px;
  margin: 0 auto 30px;
  color: #f1eee9;
}

.gallery-lightbox {
  width: min(92vw, 1100px);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  overflow: visible;
  border: 1px solid var(--gold-muted);
  background: var(--black);
  color: var(--white);
}

.gallery-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
}

.gallery-lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.gallery-lightbox p {
  margin: 0;
  padding: 12px 18px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.gallery-lightbox-close {
  position: absolute;
  z-index: 1;
  top: -17px;
  right: -17px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 1199px) {
  .services-grid,
  .gallery-grid,
  .news-grid,
  .special-offers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .product-brand-grid,
  .gallery-service-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .site-header .navbar {
    min-height: auto;
    padding: 18px 0;
  }

  .header-logo {
    width: 142px;
  }

  .navbar-collapse {
    padding: 24px 0 10px;
  }

  .nav-cta {
    margin-top: 16px;
  }

  .hero-section,
  .hero-content {
    min-height: 610px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.62) 64%, rgba(0, 0, 0, 0.32) 100%);
  }

  .trust-grid,
  .reviews-grid,
  .news-grid,
  .special-offers-grid,
  .braids-intro-grid,
  .braids-appointment-grid,
  .braids-care-grid,
  .braids-testimonial-grid,
  .natural-hair-education-grid,
  .products-page-intro-grid,
  .hair-products-grid,
  .product-guidance-grid,
  .gallery-page-heading,
  .contact-page-grid,
  .appointment-page-grid,
  .appointment-hours-grid,
  .about-story-grid,
  .service-detail-grid,
  .contact-grid,
  .footer-bottom-grid,
  .care-section,
  .products-section,
  .meet-section {
    grid-template-columns: 1fr;
  }

  .hair-products-grid-reverse .hair-products-copy,
  .hair-products-grid-reverse .hair-products-image-wrap {
    order: initial;
  }

  .hair-products-image-wrap img {
    min-height: 420px;
    max-height: 600px;
  }

  .braids-style-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .braids-care-copy {
    padding: 52px 36px;
  }

  .trust-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .products-image,
  .meet-image {
    min-height: 320px;
  }

  .footer-bottom-grid {
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 767px) {
  .site-shell {
    width: min(100% - 28px, 1370px);
  }

  .hero-copy h1 {
    margin-bottom: 34px;
    font-size: clamp(2.75rem, 12vw, 4.25rem);
  }

  .hero-actions,
  .braids-hero-actions,
  .about-cta-actions,
  .products-page-actions,
  .footer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rating-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .rating-row span::after {
    display: none;
  }

  .services-grid,
  .special-offers-grid,
  .news-grid,
  .gallery-grid,
  .contact-items {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 40px 0 46px;
  }

  .products-page-hero,
  .products-page-hero-content {
    min-height: 520px;
  }

  .product-brand-grid,
  .hair-product-list {
    grid-template-columns: 1fr;
  }

  .products-page-intro,
  .product-brands-section,
  .product-guidance-section,
  .products-page-cta,
  .gallery-page-section,
  .gallery-page-services,
  .gallery-page-cta {
    padding: 48px 0;
  }

  .gallery-page-hero-content {
    min-height: 400px;
  }

  .contact-page-hero-content {
    min-height: 380px;
  }

  .appointment-page-hero-content {
    min-height: 400px;
  }

  .contact-page-section,
  .appointment-page-section,
  .appointment-hours-section {
    padding: 48px 0;
  }

  .gallery-service-links {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox-close {
    top: 8px;
    right: 8px;
  }

  .products-advice-card,
  .product-brand-card,
  .product-guidance-grid article {
    padding: 28px 24px;
  }

  .hair-products-copy {
    padding: 48px 20px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-panel,
  .contact-details-panel,
  .appointment-form-panel,
  .appointment-info-panel {
    padding: 30px 24px;
  }

  .appointment-hours-card p {
    flex-direction: column;
    gap: 5px;
  }

  .appointment-hours-card span {
    text-align: left;
  }

  .contact-page-map iframe {
    height: 340px;
  }

  .braids-hero,
  .braids-hero-content {
    min-height: 540px;
  }

  .braids-style-card {
    grid-template-columns: 1fr;
  }

  .braids-style-card > img {
    min-height: 300px;
    max-height: 420px;
  }

  .braids-inline-action {
    flex-direction: column;
  }

  .braids-appointment-images img {
    height: 300px;
  }

  .braids-intro-section,
  .braids-styles-section,
  .braids-appointment-section,
  .braids-testimonial-section,
  .braids-consultation-section,
  .natural-hair-education-section {
    padding: 48px 0;
  }

  .natural-hair-education-grid > div:last-child {
    padding: 28px 24px;
  }

  .braids-booking-card,
  .braids-testimonial-section blockquote,
  .braids-style-card-body {
    padding: 28px 24px;
  }

  .about-hero,
  .about-hero-content {
    min-height: 460px;
  }

  .about-story-section,
  .about-values-section,
  .about-cta {
    padding: 48px 0;
  }

  .qualification-card,
  .about-value-card {
    padding: 28px 24px;
  }

  .care-copy,
  .products-copy,
  .meet-copy {
    padding: 38px 20px;
  }

  .review-card {
    padding: 28px 24px;
  }
}