/* ================================================================
   DESIGN TOKENS — Trim Time Pet Grooming
   Classic, steady, understated confidence. 40 years of trust.
   ================================================================ */
:root {
  --color-primary:       #2C3E50;
  --color-primary-light: #3D5266;
  --color-primary-dark:  #1A252F;
  --color-accent:        #D4913D;
  --color-accent-light:  #E5AD62;
  --color-accent-dark:   #B8752A;
  --color-star:          #D4913D;

  --color-bg:            #FAFAF5;
  --color-bg-alt:        #F2F0E8;
  --color-bg-dark:       #1A1A1A;
  --color-text:          #2A2A2A;
  --color-text-light:    #555555;
  --color-text-muted:    #888888;
  --color-text-on-dark:  #F0EDE5;
  --color-border:        #DDD8CC;
  --color-border-light:  #EAE6DC;
  --color-link:          #2C3E50;
  --color-link-hover:    #D4913D;

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Source Sans 3', system-ui, -apple-system, sans-serif;

  --text-xs: 0.75rem; --text-sm: 0.875rem; --text-base: 1rem;
  --text-md: 1.125rem; --text-lg: 1.25rem; --text-xl: 1.5rem;
  --text-2xl: 1.875rem; --text-3xl: 2.25rem; --text-4xl: 3rem; --text-5xl: 3.75rem;

  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem; --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem; --space-20: 5rem; --space-24: 6rem;

  --max-width: 1120px;
  --radius-sm: 0.25rem; --radius-md: 0.375rem;
  --radius-lg: 0.5rem; --radius-xl: 0.75rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-bg); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--color-link); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-link-hover); }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-6); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  text-decoration: none; transition: all 0.2s; border: none; cursor: pointer;
}
.btn-primary { background: var(--color-primary); color: white; }
.btn-primary:hover { background: var(--color-primary-light); color: white; }
.btn-accent { background: var(--color-accent); color: white; }
.btn-accent:hover { background: var(--color-accent-dark); color: white; }
.btn-outline { background: transparent; color: var(--color-primary); border: 1.5px solid var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: white; }
.btn-white { background: white; color: var(--color-primary-dark); }
.btn-white:hover { background: var(--color-bg); color: var(--color-primary-dark); }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  background: var(--color-bg); border-bottom: 1px solid var(--color-border-light);
  position: sticky; top: 0; z-index: 100;
}
.header-top {
  display: flex; align-items: center; justify-content: space-between; padding: var(--space-4) 0;
}
.logo { display: flex; align-items: center; gap: var(--space-3); }
.logo-mark {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700;
  color: var(--color-primary); line-height: 1;
}
.logo-divider {
  width: 1px; height: 28px; background: var(--color-border);
}
.logo-tagline {
  font-size: var(--text-xs); color: var(--color-text-muted); font-weight: 500;
  letter-spacing: 0.03em;
}
.header-actions {
  display: flex; gap: var(--space-3); align-items: center;
}
.nav-links { display: none; list-style: none; gap: var(--space-8); }
.nav-links a { font-size: var(--text-sm); font-weight: 500; color: var(--color-text-light); }
.nav-links a:hover { color: var(--color-accent); }
.mobile-menu-btn {
  background: transparent; color: var(--color-text-light); padding: var(--space-2);
  border: none; cursor: pointer; font-size: var(--text-xl);
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* ================================================================
   HERO — Dual stat: rating + longevity
   ================================================================ */
.hero {
  background: var(--color-primary);
  padding: var(--space-16) 0 var(--space-20);
  color: white;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,145,61,0.1) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr; gap: var(--space-10);
  align-items: center; position: relative; z-index: 1;
}
.hero-stats {
  display: flex; gap: var(--space-8); margin-bottom: var(--space-6); flex-wrap: wrap;
}
.hero-stat {
  display: flex; flex-direction: column;
}
.hero-stat-number {
  font-family: var(--font-display); font-size: var(--text-4xl);
  font-weight: 700; line-height: 1; color: var(--color-accent);
}
.hero-stat-label {
  font-size: var(--text-sm); font-weight: 500; opacity: 0.8; margin-top: var(--space-1);
}
.hero h1 {
  font-size: var(--text-3xl); color: white; margin-bottom: var(--space-4);
}
.hero-subtitle {
  font-size: var(--text-md); opacity: 0.85; max-width: 520px;
  margin-bottom: var(--space-8); line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.hero-photo {
  background: rgba(255,255,255,0.08); border-radius: var(--radius-xl);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: var(--text-sm);
}

@media (min-width: 768px) {
  .hero { padding: var(--space-20) 0 var(--space-24); }
  .hero h1 { font-size: var(--text-4xl); }
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .hero-stat-number { font-size: var(--text-5xl); }
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar { background: var(--color-accent); padding: var(--space-4) 0; }
.trust-bar-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4); text-align: center;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-1); color: white;
}
.trust-label { font-size: var(--text-sm); font-weight: 700; }
.trust-sublabel { font-size: var(--text-xs); opacity: 0.8; }

/* ================================================================
   SECTIONS
   ================================================================ */
.section { padding: var(--space-16) 0; }
.section-alt { background: var(--color-bg-alt); }
.section-header { text-align: center; margin-bottom: var(--space-12); }
.section-label {
  display: inline-block; font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.section-title { font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.section-subtitle {
  font-size: var(--text-md); color: var(--color-text-light);
  max-width: 560px; margin: 0 auto;
}
@media (min-width: 768px) {
  .section { padding: var(--space-20) 0; }
  .section-title { font-size: var(--text-3xl); }
}

/* ================================================================
   SERVICE CARDS (Homepage preview)
   ================================================================ */
.services-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.service-card {
  background: white; border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg); padding: var(--space-8);
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-md); }
.service-card-icon {
  width: 44px; height: 44px; background: rgba(44,62,80,0.06);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; font-size: var(--text-xl); margin-bottom: var(--space-4);
}
.service-card h3 {
  font-family: var(--font-body); font-size: var(--text-lg);
  font-weight: 600; margin-bottom: var(--space-2);
}
.service-card p {
  font-size: var(--text-sm); color: var(--color-text-light);
  line-height: 1.6; margin-bottom: var(--space-4);
}
.card-link { font-size: var(--text-sm); font-weight: 600; color: var(--color-accent); }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

/* ================================================================
   REVIEW CARDS (Homepage highlight)
   ================================================================ */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.review-card {
  background: white; border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg); padding: var(--space-8);
}
.review-stars { color: var(--color-star); font-size: var(--text-lg); margin-bottom: var(--space-3); }
.review-text {
  font-size: var(--text-base); line-height: 1.7; color: var(--color-text);
  margin-bottom: var(--space-4); font-style: italic;
}
.review-author { font-size: var(--text-sm); color: var(--color-text-muted); font-weight: 500; }
.review-source { font-size: var(--text-xs); color: var(--color-text-muted); }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* ================================================================
   ABOUT TEASER (Homepage)
   ================================================================ */
.about-teaser {
  display: grid; grid-template-columns: 1fr; gap: var(--space-10); align-items: center;
}
.about-photo {
  background: var(--color-border-light); border-radius: var(--radius-xl);
  aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted); font-size: var(--text-sm);
}
.about-teaser-content h2 { font-size: var(--text-2xl); margin-bottom: var(--space-4); }
.about-teaser-content p {
  color: var(--color-text-light); line-height: 1.7; margin-bottom: var(--space-6);
}
@media (min-width: 768px) {
  .about-teaser { grid-template-columns: 1fr 1fr; }
  .about-teaser-content h2 { font-size: var(--text-3xl); }
}

/* ================================================================
   CONTACT CTA
   ================================================================ */
.contact-cta {
  background: var(--color-primary); padding: var(--space-12) 0;
  text-align: center; color: white;
}
.contact-cta h2 { font-size: var(--text-2xl); color: white; margin-bottom: var(--space-2); }
.contact-cta p { font-size: var(--text-md); opacity: 0.85; margin-bottom: var(--space-6); }
.phone-large {
  font-family: var(--font-display); font-size: var(--text-3xl);
  color: var(--color-accent); display: block; margin-bottom: var(--space-4);
}
@media (min-width: 768px) {
  .contact-cta h2 { font-size: var(--text-3xl); }
  .phone-large { font-size: var(--text-4xl); }
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--color-bg-dark); color: var(--color-text-on-dark);
  padding: var(--space-12) 0 var(--space-6);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-8); margin-bottom: var(--space-10);
}
.footer-col h4 {
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5); margin-bottom: var(--space-4);
}
.footer-col p, .footer-col a { font-size: var(--text-sm); color: var(--color-text-on-dark); line-height: 1.8; }
.footer-col a:hover { color: var(--color-accent-light); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--space-2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-2);
  font-size: var(--text-xs); color: rgba(255,255,255,0.4);
}
.footer-logo-text {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: white;
}
.footer-logo-sub {
  font-size: var(--text-sm); color: rgba(255,255,255,0.5); margin-left: var(--space-2);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ================================================================
   MOBILE CTA
   ================================================================ */
.mobile-cta {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--color-primary); padding: var(--space-3) var(--space-4);
  z-index: 200; box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
  justify-content: center; align-items: center; gap: var(--space-3);
}
.mobile-cta a {
  color: white; font-weight: 600; font-size: var(--text-base);
  display: flex; align-items: center; gap: var(--space-2);
}
.mobile-cta a:hover { color: white; }
@media (min-width: 768px) { .mobile-cta { display: none; } }
body { padding-bottom: 60px; }
@media (min-width: 768px) { body { padding-bottom: 0; } }

/* ================================================================
   PAGE HERO (Services, inner pages)
   ================================================================ */
.page-hero { background: var(--color-bg-alt); padding: var(--space-12) 0; text-align: center; }
.page-hero h1 { font-size: var(--text-3xl); margin-bottom: var(--space-3); }
.page-hero p { font-size: var(--text-md); color: var(--color-text-light); max-width: 560px; margin: 0 auto; }
@media (min-width: 768px) {
  .page-hero { padding: var(--space-16) 0; }
  .page-hero h1 { font-size: var(--text-4xl); }
}

/* ================================================================
   SERVICE FULL CARDS (Services page)
   ================================================================ */
.service-full-card {
  background: white; border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg); padding: var(--space-8);
}
.service-full-card h3 {
  font-family: var(--font-body); font-size: var(--text-lg); font-weight: 600;
  display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3);
}
.service-full-card .desc {
  color: var(--color-text-light); font-size: var(--text-sm); line-height: 1.7;
  margin-bottom: var(--space-4);
}
.price-tag {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: rgba(44,62,80,0.06); padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md); font-size: var(--text-sm);
  font-weight: 600; color: var(--color-primary);
}

/* ================================================================
   PROCESS BAR (Services page)
   ================================================================ */
.process-bar {
  background: var(--color-primary); color: white;
  border-radius: var(--radius-xl); padding: var(--space-10);
}
.process-bar h2 { color: white; font-size: var(--text-2xl); margin-bottom: var(--space-6); }
.steps { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.step { display: flex; gap: var(--space-4); align-items: flex-start; }
.step-num {
  width: 36px; height: 36px; border-radius: var(--radius-md); background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--text-sm); flex-shrink: 0;
}
.step h4 { font-family: var(--font-body); font-weight: 600; color: white; margin-bottom: var(--space-1); }
.step p { font-size: var(--text-sm); opacity: 0.8; line-height: 1.6; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-hero { background: var(--color-bg-alt); padding: var(--space-16) 0; }
.about-inner { display: grid; grid-template-columns: 1fr; gap: var(--space-10); align-items: center; }
.about-content h1 { font-size: var(--text-3xl); margin-bottom: var(--space-6); }
.about-content .lead { font-size: var(--text-md); color: var(--color-text-light); line-height: 1.8; margin-bottom: var(--space-4); }
.photo-placeholder {
  background: var(--color-border-light); border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted); font-size: var(--text-sm);
}
@media (min-width: 768px) {
  .about-hero { padding: var(--space-20) 0; }
  .about-inner { grid-template-columns: 1fr 1fr; }
  .about-content h1 { font-size: var(--text-4xl); }
}

.milestone-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.milestone {
  background: white; border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg); padding: var(--space-8); text-align: center;
}
.milestone-year {
  font-family: var(--font-display); font-size: var(--text-3xl);
  font-weight: 700; color: var(--color-accent); margin-bottom: var(--space-2);
}
.milestone h3 { font-family: var(--font-body); font-size: var(--text-base); font-weight: 600; margin-bottom: var(--space-2); }
.milestone p { font-size: var(--text-sm); color: var(--color-text-light); line-height: 1.6; }
@media (min-width: 768px) { .milestone-grid { grid-template-columns: repeat(3, 1fr); } }

.values-row { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.value-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.value-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: rgba(44,62,80,0.06); display: flex; align-items: center;
  justify-content: center; font-size: var(--text-xl); flex-shrink: 0;
}
.value-item h3 { font-family: var(--font-body); font-size: var(--text-base); font-weight: 600; margin-bottom: var(--space-1); }
.value-item p { font-size: var(--text-sm); color: var(--color-text-light); line-height: 1.6; }
@media (min-width: 768px) { .values-row { grid-template-columns: repeat(3, 1fr); } }

/* ================================================================
   REVIEWS PAGE
   ================================================================ */
.rating-hero { background: var(--color-primary); padding: var(--space-16) 0; text-align: center; color: white; }
.rating-big { font-family: var(--font-display); font-size: var(--text-5xl); font-weight: 700; color: var(--color-accent); line-height: 1; margin-bottom: var(--space-2); }
.rating-stars-big { font-size: var(--text-2xl); color: var(--color-accent); margin-bottom: var(--space-3); }
.rating-counts { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-8); margin-top: var(--space-6); }
.rating-source { text-align: center; }
.rating-source .count { font-size: var(--text-2xl); font-weight: 700; color: white; display: block; }
.rating-source .label { font-size: var(--text-sm); opacity: 0.7; }
.review-themes { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; margin-top: var(--space-8); }
.theme-tag { background: rgba(255,255,255,0.12); color: white; padding: var(--space-2) var(--space-4); border-radius: var(--radius-md); font-size: var(--text-sm); font-weight: 500; }

.reviews-featured-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.review-featured-card { background: white; border: 1px solid var(--color-border-light); border-radius: var(--radius-lg); padding: var(--space-8); }
.review-header { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--color-bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: var(--text-sm); color: var(--color-primary);
}
.reviewer-name { font-weight: 600; font-size: var(--text-sm); }
.reviewer-date { font-size: var(--text-xs); color: var(--color-text-muted); }
@media (min-width: 768px) { .reviews-featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-featured-grid { grid-template-columns: repeat(3, 1fr); } }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-hero { background: var(--color-bg-alt); padding: var(--space-16) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
.contact-info h1 { font-size: var(--text-3xl); margin-bottom: var(--space-6); }
.contact-detail { display: flex; gap: var(--space-4); align-items: flex-start; margin-bottom: var(--space-6); }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: rgba(44,62,80,0.06); display: flex; align-items: center;
  justify-content: center; font-size: var(--text-lg); flex-shrink: 0;
}
.contact-detail h3 { font-family: var(--font-body); font-size: var(--text-base); font-weight: 600; margin-bottom: var(--space-1); }
.contact-detail p { font-size: var(--text-sm); color: var(--color-text-light); line-height: 1.6; }
.contact-map {
  background: var(--color-border-light); border-radius: var(--radius-xl);
  aspect-ratio: 16/10; overflow: hidden;
}
.contact-map iframe {
  width: 100%; height: 100%; border: 0;
}
.suite-note {
  background: rgba(44,62,80,0.04); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-6);
  display: flex; gap: var(--space-4); align-items: flex-start; margin-top: var(--space-4);
}
.suite-note p { font-size: var(--text-sm); color: var(--color-text-light); line-height: 1.6; }
.suite-note strong { color: var(--color-text); }
@media (min-width: 768px) {
  .contact-hero { padding: var(--space-20) 0; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-info h1 { font-size: var(--text-4xl); }
}

/* Section CTA Note */
.section-cta-note {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-12);
  padding: var(--space-4) var(--space-6);
  background: rgba(184,134,11,0.06);
  border-radius: var(--radius-md);
  text-align: center;
}

.section-cta-note a {
  font-weight: 600;
  color: var(--color-primary-dark);
}

/* Mobile Responsiveness Fixes */
.hero h1,
.page-hero h1,
.about-hero-content h1,
.contact-info h1 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .header-top {
    gap: var(--space-2);
  }

  .logo-text {
    font-size: var(--text-lg);
  }

  .hero h1 {
    font-size: var(--text-2xl);
  }

  .page-hero h1,
  .about-hero-content h1,
  .contact-info h1 {
    font-size: var(--text-2xl);
  }

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

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .trust-bar-inner {
    gap: var(--space-3);
  }

  .trust-label {
    font-size: var(--text-xs);
  }

  .phone-number-large {
    font-size: var(--text-2xl);
  }

  .contact-cta h2 {
    font-size: var(--text-xl);
  }

  .rating-big {
    font-size: var(--text-4xl);
  }

  .credential-badge {
    width: 100%;
    justify-content: center;
  }
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* ================================================================
   SERVICE CARD IMAGES
   ================================================================ */
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}

.service-full-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
}

/* ================================================================
   MOBILE NAV MENU
   ================================================================ */
@media (max-width: 767px) {
  .header-actions .btn-primary {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border-light);
    padding: var(--space-4) var(--space-6);
    box-shadow: var(--shadow-md);
    gap: 0;
    z-index: 99;
  }

  .nav-links.open li {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border-light);
  }

  .nav-links.open li:last-child {
    border-bottom: none;
  }

  .nav-links.open a {
    font-size: var(--text-base);
    display: block;
  }
}
