/* ============================================================
   Bui Nails & Spa — Demo Site
   Fonts: Cormorant Garamond (headings) + DM Sans (body/nav)
   Palette: #F5C800 accent | #FAF7F2 bg | #1A1A1A text | #C8A882 beige
   ============================================================ */

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

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #FAF7F2;
  color: #1A1A1A;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

address { font-style: normal; }

/* ---------- Media fill guard ---------- */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__img, .hero__img, .over__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Tokens ---------- */
:root {
  --yellow: #F5C800;
  --yellow-dark: #d4aa00;
  --bg: #FAF7F2;
  --bg-card: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --beige: #C8A882;
  --beige-light: #F5EDE0;
  --border: #E8E0D5;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1160px;
  --nav-h: 72px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.section__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ---------- Section ---------- */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn--lg { padding: 0.9rem 2.2rem; font-size: 1rem; }
.btn--md { padding: 0.75rem 1.8rem; font-size: 0.95rem; }
.btn--sm { padding: 0.55rem 1.3rem; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--yellow {
  background: var(--yellow);
  color: var(--text);
  border-color: var(--yellow);
}
.btn--yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,200,0,0.35);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--yellow);
  color: var(--yellow-dark);
  transform: translateY(-2px);
}

/* ---------- NAV ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: #FAF7F2;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.nav-logo__mark {
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  flex-shrink: 0;
}

.nav-logo__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s;
}

.nav-logo__text em { font-style: italic; color: var(--yellow); }

.site-header.scrolled .nav-logo__text { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  color: rgba(255,255,255,0.9);
  transition: all 0.2s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }

.site-header.scrolled .nav-link { color: var(--text-muted); }
.site-header.scrolled .nav-link:hover { color: var(--text); background: rgba(0,0,0,0.04); }

.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.site-header.scrolled .hamburger span { background: var(--text); }

/* ---------- MOBILE MENU ---------- */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  overflow-y: auto;
}

.mobile-menu__overlay.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 1.5rem 2rem;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.mobile-menu__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
  width: 36px;
  height: 36px;
}
.mobile-menu__close svg { width: 22px; height: 22px; }

.mobile-menu__list {
  list-style: none;
  flex: 1;
}

.mobile-menu__item {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu__item:hover { color: var(--yellow-dark); padding-left: 0.5rem; }

.mobile-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.mobile-menu__tel {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  justify-content: center;
}
.mobile-menu__tel svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-menu__tel:hover { color: var(--yellow-dark); }

body.menu-open { overflow: hidden; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 12, 8, 0.72) 0%,
    rgba(15, 12, 8, 0.45) 55%,
    rgba(15, 12, 8, 0.20) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding-top: var(--nav-h);
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 700px;
}

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

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
  width: 28px;
  height: 28px;
}
.hero__scroll svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- SERVICES ---------- */
.services { background: #FAF7F2; }

.card-grid { display: grid; gap: 1.5rem; }

/* Services: 6-col grid — first 3 cards each span 2 cols (3 per row),
   last 2 cards each span 3 cols (2 per row, perfectly centred) */
.card-grid--services {
  grid-template-columns: repeat(6, 1fr);
}
.card-grid--services .card { grid-column: span 2; }
.card-grid--services .card:nth-child(4),
.card-grid--services .card:nth-child(5) { grid-column: span 3; }

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.card:hover .card__img { transform: scale(1.04); }

.card__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245,200,0,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.card:hover .card__img-overlay { background: rgba(245,200,0,0.18); }

.card__img-cta {
  background: var(--yellow);
  color: var(--text);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.card:hover .card__img-cta { opacity: 1; transform: translateY(0); }

.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--yellow-dark);
  transition: gap 0.2s;
}
.card__link svg { width: 14px; height: 14px; }
.card__link:hover { gap: 0.625rem; }

/* ---------- OVER THAO ---------- */
.over {
  background: linear-gradient(135deg, #F5EDE0 0%, #EDE0CE 100%);
}

.over__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.over__image-col {
  position: relative;
}

.over__img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.over__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.over__accent-block {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  background: var(--yellow);
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.35;
}

.over__lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.over__body {
  font-size: 0.975rem;
  color: #4A4A4A;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.over__signature {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--yellow);
}

.over__signature-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  line-height: 1.1;
}

.over__signature-role {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.over__cta { margin-top: 0.5rem; }

/* ---------- REVIEWS ---------- */
.reviews {
  background: #FAF7F2;
}

.reviews__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  box-shadow: var(--shadow-sm);
}
.reviews__google-badge strong { color: var(--text); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.review-card__stars {
  display: flex;
  gap: 3px;
}
.review-card__stars svg { width: 16px; height: 16px; }

.review-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__avatar--b { background: #C8A882; color: #fff; }
.review-card__avatar--c { background: #1A1A1A; color: #fff; }

.review-card__name {
  font-size: 0.9rem;
  color: var(--text);
  display: block;
}
.review-card__date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- PRICING ---------- */
.pricing {
  background: linear-gradient(180deg, #FAF7F2 0%, #F0E8DC 100%);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 2px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

.pricing-card--featured {
  border-color: var(--yellow);
  background: #FFFBE6;
  box-shadow: var(--shadow-md);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 50px;
}

.pricing-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245,200,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-dark);
  margin-bottom: 0.25rem;
}
.pricing-card__icon svg { width: 22px; height: 22px; }

.pricing-card__name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.pricing-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  flex: 1;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0.5rem 0;
}

.pricing-card__from {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pricing-card__amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-card__btn { width: 100%; text-align: center; }

.pricing__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2rem;
}

/* ---------- CONTACT ---------- */
.contact {
  background: #FAF7F2;
}

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

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245,200,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-dark);
  flex-shrink: 0;
}
.contact-item__icon svg { width: 20px; height: 20px; }

.contact-item__text { flex: 1; }

.contact-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-item__value {
  font-size: 0.975rem;
  color: var(--text);
  font-weight: 500;
}
a.contact-item__value:hover { color: var(--yellow-dark); }

.contact-item__hours {
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-item__hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.contact-item__hours div span:first-child { color: var(--text-muted); }
.contact-item__hours div span:last-child { font-weight: 500; }
.contact-item__hours .closed span { color: #b0b0b0; }

.contact__map { margin-top: 0.5rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }

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

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.req { color: var(--yellow-dark); }

.form-input {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,200,0,0.18);
}
.form-textarea { resize: vertical; min-height: 120px; }

.form-submit svg { width: 18px; height: 18px; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ---------- FOOTER ---------- */
.footer-kit {
  background: #1A1A1A;
  color: rgba(255,255,255,0.75);
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem clamp(1.25rem, 4vw, 3rem) 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.footer__logo-mark {
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  flex-shrink: 0;
}

.footer__logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
}

.footer__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__list a:hover { color: #fff; }

.footer__hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  gap: 0.5rem;
}
.footer__hours li.closed { color: rgba(255,255,255,0.3); }

.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer__contact-list svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.6; }
.footer__contact-list a:hover { color: var(--yellow); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer__credit a { color: var(--yellow); }
.footer__credit a:hover { text-decoration: underline; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-card:nth-child(4),
  .pricing-card:nth-child(5) { }
  /* Collapse services to 2-col + 2+1 at medium breakpoint */
  .card-grid--services { grid-template-columns: repeat(4, 1fr); }
  .card-grid--services .card { grid-column: span 2; }
  .card-grid--services .card:nth-child(4),
  .card-grid--services .card:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .mobile-menu__trigger { display: flex; }
  .nav-links { display: none; }

  /* Over section */
  .over__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .over__image-col { max-width: 320px; margin: 0 auto; }

  /* Services */
  /* Mobile services: single column, no uneven rows */
  .card-grid--services {
    grid-template-columns: 1fr !important;
  }
  .card-grid--services .card {
    grid-column: span 1 !important;
  }

  /* Pricing */
  .pricing__grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  .hero__title { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .pricing__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* ---------- Scrolled nav state for white bg ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
