/* ============================================================
   ABOUT PAGE — Lumè Nail Spa & Beauty Bar
   Founder story, values, team grid.
   ============================================================ */

/* ── About Hero with background image ────────────────────────── */

.page-hero--about {
  position: relative;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  padding: var(--space-3xl) 0 var(--space-3xl);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 36, 33, 0.35) 0%,
    rgba(42, 36, 33, 0.65) 60%,
    rgba(42, 36, 33, 0.85) 100%
  );
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .page-hero--about {
    min-height: 420px;
    padding: var(--space-3xl) 0 var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .page-hero--about {
    min-height: 480px;
  }
}

/* ── Story section ────────────────────────────────────────────── */

.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-story {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

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

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

/* ── Founder section ─────────────────────────────────────────── */

.founder-section {
  overflow: hidden;
}

.founder-content {
  max-width: 860px;
  margin-inline: auto;
}

.founder-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2xl) var(--space-xl);
  overflow: hidden;
}

.founder-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

@media (min-width: 768px) {
  .founder-card {
    padding: var(--space-3xl) var(--space-2xl) var(--space-3xl) calc(var(--space-2xl) + 6px);
  }
}

.founder-card__body p {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.founder-card__body p:last-child {
  margin-bottom: 0;
}

.founder-card__quote {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  position: relative;
}

.founder-card__quote-icon {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
  opacity: 0.25;
  margin-bottom: var(--space-sm);
}

.founder-card__quote blockquote p {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .founder-card__quote blockquote p {
    font-size: var(--text-2xl);
  }
}

.founder-card__cite {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
  margin-top: var(--space-md);
  font-style: normal;
}

.founder-card__cite-name {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-base);
  color: var(--color-secondary);
}

.founder-card__cite-role {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

/* ── Values ───────────────────────────────────────────────────── */

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-full);
  background-color: var(--color-blush);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card__icon svg {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.value-card p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-inline: auto;
}

/* ── Team grid ────────────────────────────────────────────────── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  text-align: center;
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.team-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-secondary);
  margin-bottom: var(--space-2xs);
}

.team-card__role {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-sm);
}

.team-card__bio {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE — Apple/Vogue Editorial Redesign (about.html)
   Every rule inside @media (max-width: 768px) only
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ═══ HERO ═══ */
  .elite-page-hero {
    min-height: 100svh !important;
    height: auto !important;
    align-items: flex-end;
    padding-bottom: 72px;
  }
  .elite-page-hero__overlay {
    background: linear-gradient(180deg,
      rgba(20,12,8,0.2) 0%,
      rgba(20,12,8,0.1) 35%,
      rgba(20,12,8,0.65) 70%,
      rgba(20,12,8,0.92) 100%) !important;
  }
  .elite-page-hero__content {
    padding: 0 24px;
  }

  .elite-logo-mark {
    width: 68px !important;
    height: auto !important;
    object-fit: contain;
  }
  .elite-logo-wordmark {
    font-size: 20px !important;
    letter-spacing: 0.3em !important;
    color: #FFFFFF !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 400 !important;
  }
  .elite-logo-tagline {
    font-size: 9px !important;
    letter-spacing: 0.32em !important;
    color: rgba(255,255,255,0.5) !important;
    font-family: -apple-system, sans-serif !important;
  }

  .elite-breadcrumb {
    font-size: 10px;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.45);
    font-family: -apple-system, sans-serif;
    margin-bottom: 14px;
  }
  .elite-breadcrumb a {
    color: rgba(255,255,255,0.45);
  }
  .elite-breadcrumb__sep {
    color: rgba(201,169,110,0.6) !important;
    margin: 0 6px !important;
  }

  .elite-page-hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 52px !important;
    font-weight: 300;
    font-style: italic;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    line-height: 1.08;
    margin-bottom: 16px;
  }
  .elite-page-hero__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    font-family: -apple-system, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.01em;
  }

  /* Scroll indicator */
  .about-scroll-cue {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
  }
  .about-scroll-cue__text {
    font-size: 9px;
    letter-spacing: 0.38em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    font-family: -apple-system, sans-serif;
    margin-bottom: 6px;
  }
  .about-scroll-cue__arrow {
    color: #C9A96E;
    animation: aboutBounce 2s infinite;
  }
  @keyframes aboutBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }

  /* ═══ OUR STORY ═══ */
  .elite-story-section {
    padding: 60px 24px 56px !important;
    background: #FAFAF8 !important;
  }
  .elite-story-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    padding: 0 !important;
  }
  .elite-story-image-wrap {
    border-radius: 20px;
    overflow: hidden;
  }
  .elite-story-eyebrow {
    font-size: 10px !important;
    letter-spacing: 0.38em !important;
    color: #8B4B3F !important;
    text-transform: uppercase;
    font-family: -apple-system, sans-serif !important;
    font-weight: 500;
    margin-bottom: 14px;
  }
  .elite-story-heading {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 40px !important;
    font-weight: 300 !important;
    color: #1D1D1F !important;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 0 !important;
  }
  .elite-story-divider {
    width: 44px !important;
    height: 1.5px !important;
    background: linear-gradient(90deg, #C9A96E, #E8C98A) !important;
    margin: 18px 0 28px !important;
    border: none;
  }
  .elite-story-body p {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #3A3A3C !important;
    font-family: Georgia, serif !important;
    font-weight: 400;
    margin-bottom: 22px !important;
  }
  .elite-story-body em {
    font-style: italic;
    color: #8B4B3F;
  }

  /* Pull-quote */
  .about-pull-quote {
    display: block;
    margin: 28px 0;
    padding: 20px 22px;
    border-left: 3px solid #C9A96E;
    background: rgba(201,169,110,0.06);
    border-radius: 0 12px 12px 0;
  }
  .about-pull-quote__text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    color: #8B4B3F;
    line-height: 1.5;
    margin: 0;
  }

  /* ═══ FOUNDER ═══ */
  .founder-section {
    background: linear-gradient(180deg, #F5EDE8 0%, #F0E4DC 100%) !important;
    padding: 56px 24px 52px !important;
  }
  .founder-section .section-header {
    text-align: left;
  }
  .founder-section .section-label {
    font-size: 10px !important;
    letter-spacing: 0.38em !important;
    color: #8B4B3F !important;
    text-transform: uppercase;
    font-family: -apple-system, sans-serif !important;
    font-weight: 500;
    text-align: center;
    display: block;
    margin-bottom: 14px;
  }
  .founder-section .section-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 36px !important;
    font-weight: 400 !important;
    color: #1D1D1F !important;
    text-align: left;
    line-height: 1.15;
    margin-bottom: 4px !important;
  }
  .founder-section .divider {
    width: 44px !important;
    height: 1.5px !important;
    background: linear-gradient(90deg, #C9A96E, #E8C98A) !important;
    margin: 16px 0 28px !important;
  }

  .founder-card {
    background: #FFFFFF !important;
    border-radius: 24px !important;
    padding: 26px 22px 28px !important;
    box-shadow: 0 4px 24px rgba(44,31,26,0.08), 0 1px 4px rgba(44,31,26,0.04) !important;
    border: 1px solid rgba(201,169,110,0.12);
    margin-bottom: 20px;
    border-left: 3px solid #C9A96E !important;
  }
  .founder-card__accent { display: none; }

  .founder-card__body p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #3A3A3C !important;
    font-family: -apple-system, sans-serif !important;
    margin-bottom: 18px !important;
  }
  .founder-card__body p:last-child { margin-bottom: 0 !important; }

  /* Dark quote card */
  .founder-card__quote {
    background: linear-gradient(135deg, #1A0F0A 0%, #2C1F1A 100%);
    border-radius: 24px;
    padding: 28px 24px !important;
    box-shadow: 0 8px 32px rgba(20,12,8,0.2);
    margin: 20px -22px -28px -22px;
    border-top: none !important;
    position: relative;
  }
  .founder-card__quote-icon {
    width: auto !important;
    height: auto !important;
    opacity: 1 !important;
    color: #C9A96E !important;
    margin-bottom: 12px !important;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    line-height: 0.5;
    display: block;
  }
  .founder-card__quote-icon svg { display: none; }
  .founder-card__quote-icon::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: #C9A96E;
    line-height: 0.5;
  }

  .founder-card__quote blockquote p {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 22px !important;
    font-style: italic;
    font-weight: 300;
    color: #F5EFE9 !important;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .founder-card__cite {
    border-top: 1px solid rgba(201,169,110,0.2);
    padding-top: 16px;
    margin-top: 0 !important;
  }
  .founder-card__cite-name {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(245,239,233,0.85) !important;
    font-family: -apple-system, sans-serif !important;
    margin-bottom: 3px;
  }
  .founder-card__cite-role {
    font-size: 10px !important;
    letter-spacing: 0.2em !important;
    color: #C9A96E !important;
    font-family: -apple-system, sans-serif !important;
    text-transform: uppercase;
  }

  /* ═══ VALUES — Horizontal Scroll Carousel ═══ */
  .section[aria-labelledby="values-heading"] {
    background: #FFFFFF;
    padding: 56px 0 60px !important;
  }
  .section[aria-labelledby="values-heading"] .container {
    padding: 0;
    max-width: 100%;
  }
  .section[aria-labelledby="values-heading"] .section-header {
    padding: 0 24px;
    margin-bottom: 28px;
    text-align: center;
  }
  .section[aria-labelledby="values-heading"] .section-label {
    font-size: 10px !important;
    letter-spacing: 0.38em !important;
    color: #8B4B3F !important;
    font-family: -apple-system, sans-serif !important;
    font-weight: 500;
    text-transform: uppercase;
  }
  .section[aria-labelledby="values-heading"] h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 38px !important;
    font-weight: 300 !important;
    color: #1D1D1F !important;
  }
  .section[aria-labelledby="values-heading"] .divider {
    width: 44px !important;
    height: 1.5px !important;
    background: linear-gradient(90deg, #C9A96E, #E8C98A) !important;
    margin: 16px auto 0 !important;
  }

  .values-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px !important;
    padding: 4px 24px 20px !important;
    grid-template-columns: unset !important;
  }
  .values-grid::-webkit-scrollbar { display: none; }

  .value-card {
    flex: 0 0 72vw;
    max-width: 280px;
    scroll-snap-align: center;
    background: #FFFFFF !important;
    border-radius: 22px !important;
    padding: 28px 22px !important;
    border: 1px solid rgba(201,169,110,0.15);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
    transition: transform 0.3s ease;
    text-align: center;
  }
  .value-card:active {
    transform: scale(0.97);
  }

  .value-card__icon {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50%;
    background: rgba(201,169,110,0.1) !important;
    border: 1px solid rgba(201,169,110,0.25);
    margin: 0 auto 18px !important;
  }
  .value-card__icon svg {
    width: 22px !important;
    height: 22px !important;
    color: #8B4B3F;
  }

  .value-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    color: #1D1D1F;
    margin-bottom: 12px !important;
  }
  .value-card p {
    font-size: 14px !important;
    line-height: 1.7;
    color: #86868B !important;
    font-family: -apple-system, sans-serif;
  }

  /* Values dots */
  .values-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 4px;
    padding: 0 24px;
  }
  .values-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(201,169,110,0.3);
    transition: all 0.3s ease;
  }
  .values-dots span.active {
    width: 20px;
    height: 6px;
    border-radius: 3px;
    background: #C9A96E;
  }

  /* ═══ TEAM ═══ */
  .section[aria-labelledby="team-heading"] {
    background: #FAFAF8 !important;
    padding: 56px 24px 52px !important;
  }
  .section[aria-labelledby="team-heading"] .section-label {
    font-size: 10px !important;
    letter-spacing: 0.32em !important;
    color: #8B4B3F !important;
    font-family: -apple-system, sans-serif !important;
    font-weight: 500;
    text-transform: uppercase;
  }
  .section[aria-labelledby="team-heading"] h2 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 38px !important;
    font-weight: 300 !important;
    color: #1D1D1F !important;
  }
  .section[aria-labelledby="team-heading"] .divider {
    width: 44px !important;
    height: 1.5px !important;
    background: linear-gradient(90deg, #C9A96E, #E8C98A) !important;
    margin: 16px auto 24px !important;
  }
  .section[aria-labelledby="team-heading"] .section-header p {
    display: none; /* Hide placeholder text */
  }

  /* Coming soon notice */
  .team-coming-soon {
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 12px;
    color: #8B7355;
    font-family: -apple-system, sans-serif;
    text-align: center;
  }

  .team-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  .team-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(201,169,110,0.12);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    text-align: left;
  }

  .team-card__photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
  }
  .team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .team-card__name {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #1D1D1F !important;
    margin-bottom: 3px !important;
    padding: 14px 14px 0;
  }
  .team-card__role {
    font-size: 9px !important;
    letter-spacing: 0.18em !important;
    color: #C9A96E !important;
    text-transform: uppercase;
    font-family: -apple-system, sans-serif !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    padding: 0 14px;
  }
  .team-card__bio {
    font-size: 12px !important;
    color: #AEAEB2 !important;
    font-family: -apple-system, sans-serif !important;
    line-height: 1.5 !important;
    font-style: italic;
    padding: 0 14px 16px;
  }

  /* ═══ CTA ═══ */
  .section[aria-labelledby="about-cta-heading"] {
    background: #F5EDE8 !important;
    padding: 64px 24px 68px !important;
  }
  .section[aria-labelledby="about-cta-heading"] h2 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 40px !important;
    font-weight: 300 !important;
    font-style: italic;
    color: #1D1D1F !important;
    line-height: 1.15;
    letter-spacing: -0.3px;
    margin-bottom: 4px !important;
  }
  .section[aria-labelledby="about-cta-heading"] .divider {
    width: 44px !important;
    height: 1.5px !important;
    background: linear-gradient(90deg, #C9A96E, #E8C98A) !important;
    margin: 16px auto 22px !important;
  }
  .section[aria-labelledby="about-cta-heading"] p {
    font-size: 15px !important;
    color: #5A4438 !important;
    font-family: -apple-system, sans-serif !important;
    line-height: 1.6;
    margin-bottom: 32px !important;
    max-width: 100% !important;
  }

  .section[aria-labelledby="about-cta-heading"] .btn--primary {
    display: block !important;
    width: 100% !important;
    padding: 17px !important;
    background: linear-gradient(135deg, #C9A96E 0%, #E8C98A 50%, #B8933A 100%) !important;
    border: none !important;
    border-radius: 14px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.18em !important;
    color: #FFFFFF !important;
    text-transform: uppercase;
    font-family: -apple-system, sans-serif !important;
    text-align: center;
    box-shadow: 0 6px 24px rgba(185,147,58,0.35) !important;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 18px !important;
  }
  .section[aria-labelledby="about-cta-heading"] .btn--primary:active {
    transform: scale(0.98);
  }

  /* DM/WhatsApp note */
  .section[aria-labelledby="about-cta-heading"] p[style*="font-style: italic"] {
    font-size: 13px !important;
    color: rgba(90,68,56,0.65) !important;
    font-family: -apple-system, sans-serif !important;
    font-style: italic !important;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0 !important;
  }

  /* ═══ FOOTER — Luxury Couture ═══ */
  .footer {
    background: #1A0F0A !important;
    border-top: 1px solid rgba(201,169,110,0.18);
    padding: 52px 24px 44px !important;
    overflow: hidden;
  }
  .footer .container { padding: 0; max-width: 100%; }
  .footer__grid {
    display: flex !important;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 0;
    border-bottom: none;
    grid-template-columns: unset !important;
  }
  .footer__brand {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__logo { display: block; margin: 0 auto 20px; }
  .footer__logo-img {
    width: 80px !important;
    height: auto !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
  .footer__tagline {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 16px !important;
    font-style: italic;
    font-weight: 300;
    color: rgba(245,239,233,0.72) !important;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 16px !important;
    padding: 0 12px;
  }
  .footer__social {
    display: flex !important;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  .footer__social-link {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    background: rgba(201,169,110,0.1) !important;
    border: 1px solid rgba(201,169,110,0.25);
  }
  .footer__heading {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.32em !important;
    color: #C9A96E !important;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 16px !important;
  }
  .footer__heading::after {
    width: 32px;
    background: linear-gradient(90deg, transparent, #C9A96E, transparent);
    margin: 8px auto 0;
  }
  .footer__links a {
    display: block;
    text-align: center;
    padding: 10px 0;
    font-size: 15px;
    color: rgba(245,239,233,0.6) !important;
    font-family: -apple-system, sans-serif;
    text-decoration: none;
    border-bottom: 1px solid rgba(201,169,110,0.08);
  }
  .footer__links li:last-child a { border-bottom: none; }
  .footer__contact-item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0 !important;
    margin-bottom: 20px;
  }
  .footer__contact-item svg {
    color: #C9A96E;
    margin-bottom: 8px;
  }
  .footer__contact-item span {
    font-family: -apple-system, sans-serif;
    font-size: 14px;
    color: rgba(245,239,233,0.82);
    text-align: center;
  }
  .footer__contact-item a {
    color: rgba(245,239,233,0.85) !important;
    text-decoration: none;
  }
  .footer__hours td {
    padding: 10px 0 !important;
    font-family: -apple-system, sans-serif;
    font-size: 14px;
  }
  .footer__hours td:first-child {
    color: rgba(245,239,233,0.55) !important;
  }
  .footer__hours td:last-child {
    color: rgba(245,239,233,0.82);
    text-align: right;
  }
  .footer__bottom {
    margin-top: 32px !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(201,169,110,0.1) !important;
    flex-direction: column !important;
    gap: 4px !important;
  }
  .footer__bottom span {
    font-size: 11px !important;
    color: rgba(245,239,233,0.28) !important;
    text-align: center;
  }
  .footer__bottom a {
    color: rgba(201,169,110,0.5) !important;
    text-decoration: none !important;
  }
}

/* Hide mobile-only elements on desktop */
@media (min-width: 769px) {
  .about-pull-quote { display: none !important; }
  .team-coming-soon { display: none !important; }
  .values-dots { display: none !important; }
  .about-scroll-cue { display: none !important; }
}
