:root {
  --ink: #211612;
  --charcoal: #111111;
  --white: #ffffff;
  --cream: #fff9ef;
  --beige: #f4e5cf;
  --sand: #ddc09c;
  --tan: #b88961;
  --brown: #6f4328;
  --orange: #e9782d;
  --orange-dark: #ad4f20;
  --green: #687b50;
  --rose: #b94c5c;
  --line: rgba(111, 67, 40, 0.18);
  --shadow: 0 20px 45px rgba(33, 22, 18, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

img,
video,
iframe {
  max-width: 100%;
}

img,
video {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: 4.7rem;
}

h2 {
  max-width: 850px;
  font-size: 3rem;
}

h3 {
  font-size: 1.45rem;
}

h4 {
  font-size: 1.05rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--charcoal);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
}

.brand span {
  max-width: 175px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.primary-nav a,
.primary-nav summary {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 650;
  cursor: pointer;
}

.primary-nav a:hover,
.primary-nav summary:hover {
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "+";
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-dropdown[open] summary::after {
  content: "-";
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 270px;
  padding: 0.65rem;
  background: rgba(255, 249, 239, 0.98);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.72rem 0.85rem;
  color: var(--ink);
  border-radius: 6px;
}

.nav-dropdown-menu a:hover {
  color: var(--orange-dark);
  background: rgba(233, 120, 45, 0.09);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  cursor: pointer;
}

.mobile-menu-button span,
.mobile-menu-button span::before,
.mobile-menu-button span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.mobile-menu-button span {
  position: relative;
}

.mobile-menu-button span::before {
  position: absolute;
  top: -7px;
}

.mobile-menu-button span::after {
  position: absolute;
  top: 7px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  gap: 0.45rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(173, 79, 32, 0.22);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline {
  color: var(--brown);
  border-color: rgba(111, 67, 40, 0.32);
  background: transparent;
}

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

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 82vh;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero.hero-small {
  min-height: 62vh;
}

.hero-media,
.hero-media::after,
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-media::after {
  z-index: 1;
  display: block;
  content: "";
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.72), rgba(33, 22, 18, 0.5) 42%, rgba(33, 22, 18, 0.76)),
    linear-gradient(90deg, rgba(33, 22, 18, 0.45), rgba(33, 22, 18, 0.08));
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  padding: 8.6rem 0 4.4rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero p {
  max-width: 720px;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.8rem;
}

.stat {
  min-width: 150px;
  padding-right: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.7fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-info-item {
  padding: 1rem 1.2rem;
  border-right: 1px solid var(--line);
}

.quick-info-item:last-child {
  border-right: 0;
}

.quick-info-item span,
.contact-card span,
.footer-label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-info-item strong,
.contact-card strong {
  font-size: 1rem;
}

.section {
  padding: 5.5rem 0;
}

.section.compact {
  padding: 3.8rem 0;
}

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

.section.dark {
  color: var(--white);
  background: var(--ink);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-header p {
  max-width: 520px;
  margin: 0;
  color: rgba(33, 22, 18, 0.72);
}

.dark .section-header p,
.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 1rem;
  padding: 0.36rem 0.72rem;
  color: var(--orange-dark);
  background: rgba(233, 120, 45, 0.09);
  border: 1px solid rgba(233, 120, 45, 0.22);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.split.reverse .split-media {
  order: 1;
}

.split.reverse .split-copy {
  order: 2;
}

.lead {
  color: rgba(33, 22, 18, 0.78);
  font-size: 1.12rem;
}

.split-media,
.service-card,
.review-card,
.value-card,
.process-step,
.contact-panel,
.faq details,
.gallery img {
  border-radius: var(--radius);
}

.split-media {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.badge-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(230px, calc(100% - 2rem));
  padding: 1rem;
  color: var(--white);
  background: rgba(33, 22, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.badge-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.feature-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.65rem;
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.services-grid,
.values-grid,
.process-grid,
.reviews-grid,
.included-grid,
.gallery {
  display: grid;
  gap: 1.2rem;
}

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

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 32px rgba(33, 22, 18, 0.08);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.service-card-body {
  padding: 1.3rem;
}

.service-card p,
.value-card p,
.process-step p,
.review-card p {
  color: rgba(33, 22, 18, 0.72);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  color: var(--orange-dark);
  font-weight: 850;
}

.text-link:hover {
  color: var(--brown);
}

.values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card,
.process-step,
.contact-card,
.review-card,
.included-item {
  background: var(--white);
  border: 1px solid var(--line);
}

.value-card,
.process-step,
.review-card,
.included-item {
  padding: 1.25rem;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: process;
}

.process-step {
  position: relative;
}

.process-step::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-weight: 850;
  counter-increment: process;
  content: counter(process);
}

.standards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.standards-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.standards-list li,
.included-item {
  min-height: 58px;
  padding: 0.9rem 1rem;
  font-weight: 760;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.included-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.included-item {
  background: var(--cream);
}

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

.review-card blockquote {
  margin: 0 0 1rem;
  color: rgba(33, 22, 18, 0.85);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.4;
}

.review-card strong {
  display: block;
}

.review-widget,
.quote-embed {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-widget {
  min-height: 420px;
  padding: 0.6rem;
}

.review-widget iframe {
  display: block;
  min-height: 420px;
}

.quote-embed {
  min-height: 1280px;
  overflow: visible;
}

.quote-embed iframe {
  display: block;
  width: 100% !important;
  height: 1280px !important;
  min-height: 1280px;
}

.gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 250px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--beige);
}

.gallery img:first-child {
  grid-row: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 1.4rem;
  align-items: start;
}

.contact-panel {
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-cards {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-card {
  display: block;
  padding: 1rem;
}

.map-wrap {
  overflow: hidden;
  min-height: 410px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 410px;
  border: 0;
}

.faq {
  display: grid;
  gap: 0.8rem;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 1rem 1.1rem;
  font-weight: 850;
  cursor: pointer;
}

.faq summary::after {
  content: "+";
  color: var(--orange-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  padding: 0 1.1rem 1rem;
  color: rgba(33, 22, 18, 0.72);
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--brown);
}

.cta-band::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(33, 22, 18, 0.82), rgba(111, 67, 40, 0.74)),
    url("images/red-french-manicure-los-angeles.jpg") center / cover;
  content: "";
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 750;
}

.breadcrumbs a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: center;
}

.service-detail-grid + .service-detail-grid {
  margin-top: 1.5rem;
}

.service-detail-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

img[src*="classic-french-manicure-los-angeles"],
img[src*="creative-gel-extensions-los-angeles"],
img[src*="lilac-star-nail-art-los-angeles"] {
  object-position: 50% 42%;
}

img[src*="pink-french-gel-manicure-los-angeles"] {
  object-position: 50% 36%;
}

img[src*="copper-nail-art-los-angeles"] {
  object-position: 50% 44%;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 0.7fr));
  gap: 2rem;
  padding: 3.4rem 0;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: 50%;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 0.9rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.95rem;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.footer-bottom {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .nav-wrap {
    gap: 0.8rem;
  }

  .primary-nav {
    gap: 0.85rem;
  }

  .nav-actions .phone-link {
    display: none;
  }

  .services-grid,
  .reviews-grid,
  .values-grid,
  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand span {
    max-width: 145px;
    font-size: 0.96rem;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .nav-wrap {
    position: absolute;
    top: calc(100% - 2px);
    left: 14px;
    right: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 1rem;
    background: rgba(33, 22, 18, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-wrap {
    display: flex;
  }

  .primary-nav,
  .nav-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-nav a,
  .primary-nav summary {
    min-height: 42px;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.4rem;
    transform: none;
  }

  .nav-actions .phone-link {
    display: inline-flex;
  }

  .hero,
  .hero.hero-small {
    min-height: 84vh;
  }

  .hero-content {
    padding: 7.2rem 0 3.8rem;
  }

  .hero p {
    font-size: 1.02rem;
  }

  .hero-stats {
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .stat {
    min-width: 120px;
    border-right: 0;
  }

  .quick-info {
    margin-top: 0;
  }

  .quick-info-grid,
  .split,
  .split.reverse,
  .standards,
  .contact-grid,
  .service-detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-info-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info-item:last-child {
    border-bottom: 0;
  }

  .split.reverse .split-media,
  .split.reverse .split-copy {
    order: initial;
  }

  .split-media {
    aspect-ratio: 4 / 3;
  }

  .section {
    padding: 4rem 0;
  }

  .section-header {
    display: block;
  }

  .section-header p {
    margin-top: 0.8rem;
  }

  .standards-list,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-auto-rows: 230px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .services-grid,
  .reviews-grid,
  .values-grid,
  .process-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 220px;
  }

  .service-detail-grid img {
    height: 260px;
  }

  .quote-embed,
  .quote-embed iframe {
    min-height: 1460px;
  }

  .quote-embed {
    width: calc(100% + 28px);
    margin-right: -14px;
    margin-left: -14px;
  }

  .quote-embed iframe {
    height: 1460px !important;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat strong {
    font-size: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
