/* ============================================
   OSCAR'S HAIRCUTS — STYLESHEET
   ============================================ */

/* --- Custom Properties --- */
:root {
  --midnight: #0f172a;
  --midnight-light: #1e293b;
  --midnight-mid: #334155;
  --mint: #5eead4;
  --mint-dark: #34d399;
  --mint-deeper: #10b981;
  --mint-pale: #d1fae5;
  --mint-ghost: #ecfdf5;
  --cream: #f8fafc;
  --warm-white: #fefce8;
  --sand: #fef9f0;
  --sand-light: #fffbeb;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --bg-body: #f8fafc;
  --bg-white: #ffffff;
  --bg-mint-ghost: #ecfdf5;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.12), 0 4px 12px rgba(15,23,42,0.06);
  --shadow-xl: 0 24px 60px rgba(15,23,42,0.16);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

input, textarea, select, button {
  font: inherit;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--midnight);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.skip-link:focus {
  top: 16px;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-dark {
  background: var(--midnight);
  color: #fff;
  border-color: var(--midnight);
}
.btn-dark:hover {
  background: var(--midnight-light);
  border-color: var(--midnight-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-mint {
  background: var(--mint);
  color: var(--midnight);
  border-color: var(--mint);
}
.btn-mint:hover {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(94,234,212,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--midnight);
  border-color: var(--midnight);
}
.btn-outline:hover {
  background: var(--midnight);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--midnight);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- Section Tags --- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint-deeper);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-accent {
  color: var(--mint-deeper);
  font-style: italic;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}

.section-header--center {
  text-align: center;
}
.section-header--center .section-desc {
  margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248,250,252,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
  transition: box-shadow var(--transition-base);
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--midnight);
  text-decoration: none;
}
.logo-icon {
  color: var(--mint-deeper);
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-menu a {
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition-fast);
}
.nav-menu a:hover {
  color: var(--midnight);
  background: rgba(15,23,42,0.05);
}

/* Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--midnight);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--mint-ghost) 50%, var(--sand) 100%);
}

/* Background decorative circles */
.hero-bg-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.hero-circle--1 {
  width: 500px;
  height: 500px;
  background: var(--mint);
  top: -100px;
  right: -100px;
  opacity: 0.2;
}
.hero-circle--2 {
  width: 350px;
  height: 350px;
  background: var(--mint-dark);
  bottom: -50px;
  left: 10%;
  opacity: 0.12;
}
.hero-circle--3 {
  width: 200px;
  height: 200px;
  background: var(--sand-light);
  top: 30%;
  left: 40%;
  opacity: 0.4;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 540px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.hero-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(94,234,212,0.2);
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--midnight);
  letter-spacing: -0.02em;
}
.hero-accent {
  color: var(--mint-deeper);
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--midnight);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(15,23,42,0.12);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-stack {
  position: relative;
}

.hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-img--main {
  width: 100%;
  aspect-ratio: 520/680;
}
.hero-img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img--accent {
  position: absolute;
  bottom: -30px;
  left: -50px;
  width: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-body);
}
.hero-img--accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  color: var(--midnight);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 120px 0;
  background: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(15,23,42,0.05);
  transition: all var(--transition-base);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(94,234,212,0.3);
  background: var(--mint-ghost);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  color: var(--mint-deeper);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.service-card:hover .service-card-icon {
  background: var(--mint);
  color: var(--midnight);
  box-shadow: 0 4px 16px rgba(94,234,212,0.4);
}

.service-card-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--midnight);
}

.service-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg-body) 100%);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 580/700;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
  aspect-ratio: 400/280;
  width: 280px;
}
.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  max-width: 480px;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.about-text em {
  color: var(--midnight);
  font-style: italic;
}

.about-values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint-ghost);
  border-radius: var(--radius-sm);
  color: var(--mint-deeper);
}
.about-value strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 2px;
}
.about-value span {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 120px 0;
  background: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  margin-top: 56px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.01);
  transition: all var(--transition-base);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item--wide {
  grid-column: span 7;
  aspect-ratio: 720/400;
}
.gallery-item:not(.gallery-item--wide) {
  aspect-ratio: 340/400;
}
.gallery-item:nth-child(4) {
  aspect-ratio: 340/300;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--sand) 0%, var(--mint-ghost) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  padding: 36px 30px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,23,42,0.04);
  transition: all var(--transition-base);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  color: var(--mint);
  margin-bottom: 16px;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--midnight);
  flex-shrink: 0;
}
.testimonial-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--midnight);
}
.testimonial-location {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  padding: 120px 0;
  background: var(--midnight);
  overflow: hidden;
}

.cta-bg-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.cta-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-circle--1 {
  width: 400px;
  height: 400px;
  background: var(--mint);
  top: -100px;
  left: -80px;
  opacity: 0.15;
}
.cta-circle--2 {
  width: 300px;
  height: 300px;
  background: var(--mint-dark);
  bottom: -80px;
  right: -50px;
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  margin-bottom: 20px;
}
.cta-headline em {
  color: var(--mint);
  font-style: italic;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint-ghost);
  border-radius: var(--radius-sm);
  color: var(--mint-deeper);
}
.contact-detail strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-detail span,
.contact-detail a {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  text-decoration: none;
}
.contact-detail a:hover {
  color: var(--mint-deeper);
}

/* Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid rgba(15,23,42,0.05);
}

.contact-form-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(15,23,42,0.1);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: all var(--transition-fast);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(94,234,212,0.15);
}

.form-success {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 18px;
  background: var(--mint-ghost);
  border: 1px solid var(--mint-pale);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: #065f46;
}
.form-success svg {
  color: var(--mint-deeper);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--midnight);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo--light {
  color: #fff;
  margin-bottom: 16px;
}
.logo--light .logo-icon {
  color: var(--mint);
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-links strong,
.footer-contact strong {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a,
.footer-contact a {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Default visible state for reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-sub {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-img--accent {
    left: -20px;
    width: 200px;
  }
  .hero-badge {
    right: -10px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-visual {
    max-width: 480px;
    margin: 0 auto;
  }
  .about-content {
    max-width: 100%;
  }

  .gallery-item--wide {
    grid-column: span 12;
  }
  .gallery-item:not(.gallery-item--wide) {
    grid-column: span 6;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 32px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 100;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-menu a {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: var(--radius-sm);
  }
  .nav-menu li:last-child {
    margin-top: 12px;
  }

  .hero {
    padding: 100px 0 80px;
    min-height: auto;
  }
  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .hero-img--accent {
    display: none;
  }
  .hero-badge {
    display: none;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero-stat-divider {
    display: none;
  }

  .services {
    padding: 80px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    padding: 28px 24px;
  }

  .about {
    padding: 80px 0;
  }
  .about-img-float {
    right: -10px;
    bottom: -20px;
    width: 200px;
  }

  .gallery {
    padding: 80px 0;
  }
  .gallery-item:not(.gallery-item--wide) {
    grid-column: span 12;
    aspect-ratio: 720/400;
  }

  .testimonials {
    padding: 80px 0;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .cta {
    padding: 80px 0;
  }

  .contact {
    padding: 80px 0;
  }
  .contact-form-wrap {
    padding: 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.4);
  z-index: 99;
}
.nav-overlay.active {
  display: block;
}
