/* ============================================================
   HAIR POINT — style.css
   Sections:
   01. Fonts & Variables
   02. Base / Reset
   03. Navigation
   04. Mobile Drawer
   05. Hero
   06. Shared Section Styles
   07. Services
   08. Testimonials
   09. Pricing
   10. Gallery
   11. Contact
   12. Footer
   13. Animations
   14. Responsive
   ============================================================ */


/* ── 01. FONTS & VARIABLES ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream:      #f9f4ef;
  --beige:      #ede5da;
  --warm-pink:  #d4a5a0;
  --blush:      #e8c5be;
  --rose:       #c4837b;
  --brown:      hsl(17, 21%, 40%);
  --text-dark:  #2e1f1a;
  --text-mid:   #6b4c44;
  --text-light: #a8867e;
  --white:      #fffcfa;
}


/* ── 02. BASE / RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  font-weight: 300;
}


/* ── 03. NAVIGATION ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(249,244,239,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--beige);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 500; letter-spacing: 2px;
  color: var(--text-dark);
}
.logo span { color: var(--rose); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--rose); }

.nav-btn {
  background: var(--rose); color: white; border: none;
  padding: 10px 24px; border-radius: 40px;
  font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 1px;
  cursor: pointer; transition: background .2s;
  text-decoration: none; display: inline-block;
}
.nav-btn:hover { background: var(--brown); }


/* ── 04. HAMBURGER & MOBILE DRAWER ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; width: 40px; height: 40px;
  cursor: pointer; border: none; background: transparent;
  gap: 5px; padding: 4px; border-radius: 8px; transition: background .2s;
}
.hamburger:hover { background: var(--beige); }
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-dark); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0;
  background: rgba(249,244,239,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige);
  z-index: 99; padding: 0 5%;
  overflow: hidden; max-height: 0;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s;
}
.nav-drawer.open { max-height: 400px; padding: 24px 5% 32px; }
.nav-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.nav-drawer ul li { border-bottom: 1px solid var(--beige); }
.nav-drawer ul li:last-child { border-bottom: none; }
.nav-drawer ul a {
  display: block; font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-mid);
  text-decoration: none; padding: 16px 0; transition: color .2s;
}
.nav-drawer ul a:hover { color: var(--rose); }
.nav-drawer .drawer-btn {
  display: block; margin-top: 20px; text-align: center;
  background: var(--rose); color: white;
  padding: 14px 24px; border-radius: 40px;
  font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 1px;
  text-decoration: none; transition: background .2s;
}
.nav-drawer .drawer-btn:hover { background: var(--brown); }


/* ── 05. HERO ── */
.hero {
  min-height: 92vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 8%;
}

.hero-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 24px;
  padding: 6px 16px; border: 1px solid var(--blush);
  border-radius: 40px; width: fit-content;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(50px, 5.5vw, 78px);
  font-weight: 300; line-height: 1.05;
  color: var(--text-dark); margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--rose); }

.hero-sub {
  font-size: 15px; line-height: 1.8;
  color: var(--text-mid); max-width: 380px; margin-bottom: 44px;
}

.hero-ctas { display: flex; gap: 16px; align-items: center; }

.btn-primary {
  background: var(--text-dark); color: var(--cream);
  padding: 14px 32px; border-radius: 40px; border: none;
  font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: 1px;
  cursor: pointer; transition: background .2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--brown); }

.btn-ghost {
  background: transparent; color: var(--text-mid);
  padding: 14px 0; border: none;
  font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: 1px;
  cursor: pointer; text-decoration: underline;
  text-underline-offset: 4px; transition: color .2s; display: inline-block;
}
.btn-ghost:hover { color: var(--rose); }

.hero-stats {
  display: flex; gap: 40px;
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid var(--beige);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 500; color: var(--text-dark);
}
.stat-label { font-size: 12px; color: var(--text-light); letter-spacing: 1px; margin-top: 4px; }

.hero-right { position: relative; overflow: hidden; background: var(--beige); }

.hero-img-single {
  position: absolute; inset: 0;
}

.hero-img-single img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease;
}

.hero-img-single:hover img { transform: scale(1.04); }

/* ── 06. SHARED SECTION STYLES ── */
section {
  padding: 96px 8%;
  scroll-margin-top: 80px;
}

.section-label {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 16px; display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300; line-height: 1.1;
  color: var(--text-dark); letter-spacing: -0.5px;
}


/* ── 07. SERVICES ── */
.services { background: var(--white); }

.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-title { margin-bottom: 12px; }
.services-header p { font-size: 14px; color: var(--text-light); max-width: 420px; margin: 0 auto; }

.services-row { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }

.service-arch {
  width: 220px; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; transition: transform .3s;
}
.service-arch:hover { transform: translateY(-8px); }

.arch-img-wrap {
  width: 220px; height: 300px;
  border-radius: 120px 120px 24px 24px;
  overflow: hidden; position: relative;
  background: var(--beige); margin-bottom: 20px;
}
.arch-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-arch:hover .arch-img-wrap img { transform: scale(1.06); }

.arch-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(46,31,26,.55) 0%, transparent 55%);
  border-radius: 120px 120px 24px 24px;
}

.arch-tag {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(249,244,239,.18); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: white; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 40px; white-space: nowrap;
}

.arch-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--text-dark);
  text-align: center; margin-bottom: 6px;
}
.arch-desc { font-size: 13px; color: var(--text-light); text-align: center; line-height: 1.6; }


/* ── 08. TESTIMONIALS ── */
.testimonials { background: var(--cream); }

.testi-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; gap: 24px; flex-wrap: wrap;
}
.testi-nav { display: flex; gap: 10px; }

.carousel-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--beige); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; color: var(--text-mid);
  transition: all .2s; user-select: none;
}
.carousel-arrow:hover:not(.disabled) { background: var(--rose); border-color: var(--rose); color: white; }
.carousel-arrow.disabled { opacity: .35; cursor: not-allowed; }

.testi-track-wrap { overflow: hidden; position: relative; }
.testi-track {
  display: flex; gap: 24px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  align-items: stretch;
}

.testi-card {
  width: 340px; min-width: 340px; max-width: 340px;
  flex-shrink: 0; flex-grow: 0;
  background: var(--white); border-radius: 24px; padding: 30px 28px;
  border: 1px solid var(--beige);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
  min-height: 300px;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -18px rgba(196,131,123,.4);
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; color: var(--blush);
  line-height: 0.6; margin-bottom: 16px; height: 28px;
}
.testi-text {
  font-size: 14px; line-height: 1.7; color: var(--text-mid);
  font-style: italic;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden; word-wrap: break-word; overflow-wrap: break-word;
  flex: 1; margin-bottom: 16px;
}
.testi-stars { color: var(--rose); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--beige); margin-top: auto;
}
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; color: var(--brown); font-weight: 500; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 500; color: var(--text-dark); }
.testi-since { font-size: 12px; color: var(--text-light); margin-top: 2px; }

.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--beige); transition: background .3s, width .3s;
  cursor: pointer; border: none; padding: 0;
}
.dot.active { background: var(--rose); width: 24px; border-radius: 4px; }

.testi-more { display: flex; justify-content: center; margin-top: 36px; }
.google-review-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--white); color: var(--text-dark);
  border: 1.5px solid var(--beige);
  padding: 13px 26px; border-radius: 40px;
  font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: .5px;
  cursor: pointer; text-decoration: none; transition: all .25s;
}
.google-review-btn:hover {
  background: var(--rose); border-color: var(--rose); color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(196,131,123,.5);
}
.google-review-btn svg { width: 18px; height: 18px; }
.google-review-btn .arrow { transition: transform .25s; }
.google-review-btn:hover .arrow { transform: translateX(3px); }


/* ── 09. PRICING ── */
.pricing { background: var(--beige); }

.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .section-title { margin-bottom: 12px; }
.pricing-header p { font-size: 14px; color: var(--text-mid); max-width: 440px; margin: 0 auto; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}

.price-card {
  background: var(--white); border-radius: 28px; padding: 36px 32px;
  border: 1.5px solid transparent;
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px -20px rgba(196,131,123,.35);
}
.price-card.featured { background: var(--text-dark); border-color: var(--rose); }

.price-cat-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; }
.price-card.featured .price-cat-label { color: var(--blush); }

.price-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400; color: var(--text-dark);
  margin-bottom: 24px; line-height: 1.1;
}
.price-card.featured .price-cat-title { color: var(--cream); }

.price-group { margin-bottom: 18px; }
.price-group:last-of-type { margin-bottom: 0; flex: 1; }

.price-group-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 8px;
  padding-bottom: 7px; border-bottom: 1px solid var(--beige);
}
.price-card.featured .price-group-label {
  color: rgba(249,244,239,.4);
  border-bottom-color: rgba(255,255,255,.1);
}

.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 6px 0; border-bottom: 1px solid rgba(237,229,218,.5); gap: 12px;
}
.price-row:last-child { border-bottom: none; }
.price-card.featured .price-row { border-bottom-color: rgba(255,255,255,.07); }

.price-row-name { font-size: 13px; color: var(--text-mid); line-height: 1.4; }
.price-card.featured .price-row-name { color: rgba(249,244,239,.8); }

.price-row-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 500; color: var(--text-dark);
  white-space: nowrap; flex-shrink: 0;
}
.price-card.featured .price-row-val { color: var(--blush); }
.price-row-val.ab::before {
  content: 'ab '; font-size: 10px;
  font-family: 'Jost', sans-serif; font-weight: 300; color: var(--text-light);
}
.price-card.featured .price-row-val.ab::before { color: rgba(249,244,239,.4); }

.price-book-btn {
  display: block; width: 100%; padding: 13px; border-radius: 40px;
  font-family: 'Jost', sans-serif; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: .2s; text-decoration: none; text-align: center;
  border: 1.5px solid var(--text-dark); background: transparent;
  color: var(--text-dark); margin-top: 28px;
}
.price-book-btn:hover { background: var(--text-dark); color: white; }
.price-card.featured .price-book-btn { background: var(--rose); color: white; border-color: var(--rose); }
.price-card.featured .price-book-btn:hover { background: var(--brown); border-color: var(--brown); }

.price-disclaimer {
  text-align: center; margin-top: 32px;
  font-size: 12px; color: var(--text-light); line-height: 1.7;
  max-width: 620px; margin-left: auto; margin-right: auto;
  padding: 14px 20px; background: rgba(249,244,239,.8);
  border-radius: 12px; border: 1px solid var(--beige);
}
.price-disclaimer span { color: var(--rose); margin-right: 6px; }


/* ── 10. GALLERY ── */
.gallery { background: var(--white); }

.gallery-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; gap: 24px; flex-wrap: wrap;
}

.gallery-header .section-label {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 16px; display: block;
}

.gallery-header .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 0;
}
.gallery-nav { display: flex; gap: 10px; }

.gallery-track-wrap {
  overflow: hidden; position: relative;
  cursor: grab;
}
.gallery-track-wrap:active { cursor: grabbing; }

.gallery-track {
  display: flex; gap: 20px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  align-items: stretch;
  padding: 20px 0;
}

.gallery-item {
  flex: 0 0 calc((100% - 40px) / 3);
  height: 420px;
  border-radius: 20px; overflow: hidden;
  position: relative; cursor: pointer;
  background: var(--beige);
  transition: transform .4s;
}

.gallery-item:hover { transform: translateY(-6px); }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.95) contrast(1.03) saturate(.9) sepia(.05);
  transition: transform .6s, filter .3s;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) contrast(1.05) saturate(1);
}

/* Subtle bottom gradient overlay */
.gallery-item::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(46,31,26,.25) 0%, transparent 40%);
  border-radius: inherit;
}

/* Shimmer sweep on hover */
.gallery-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.28) 50%, transparent 60%);
  transform: translateX(-120%);
  z-index: 2; pointer-events: none; border-radius: inherit;
}
.gallery-item:hover::before { animation: shimmer .7s ease forwards; }

@keyframes shimmer { to { transform: translateX(120%); } }

.gallery-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }


/* ── 11. CONTACT ── */
.contact { background: var(--cream); border-top: 1px solid var(--beige); }

.contact-header { text-align: center; margin-bottom: 56px; }
.contact-header .section-title { margin-bottom: 14px; }
.contact-header p { color: var(--text-mid); font-size: 15px; line-height: 1.7; max-width: 500px; margin: 0 auto; }

.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: stretch;
  max-width: 1200px; margin: 0 auto;
}

.contact-info { display: flex; flex-direction: column; gap: 14px; }

.contact-info-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px; border-radius: 16px;
  background: var(--white); border: 1px solid var(--beige);
  transition: all .25s;
}
.contact-info-item:hover { border-color: var(--blush); transform: translateX(4px); }

.contact-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blush), var(--warm-pink));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: white;
}
.contact-icon svg {
  width: 22px; height: 22px;
  stroke: white; stroke-width: 1.8;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

.contact-info-text .label {
  font-size: 11px; color: var(--text-light);
  letter-spacing: 1.5px; margin-bottom: 4px; text-transform: uppercase;
}
.contact-info-text .val { font-size: 15px; color: var(--text-dark); line-height: 1.4; }
.contact-info-text a { color: inherit; text-decoration: none; transition: color .2s; }
.contact-info-text a:hover { color: var(--rose); }

.contact-map {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--beige); background: var(--beige);
  min-height: 380px; position: relative;
  box-shadow: 0 10px 30px -15px rgba(46,31,26,.15);
}
.contact-map iframe {
  width: 100%; height: 100%; min-height: 380px;
  border: 0; display: block;
  filter: saturate(.9) contrast(1.02);
}


/* ── 12. FOOTER ── */
footer {
  background: var(--beige);
  border-top: 1px solid var(--warm-pink);
  color: var(--text-mid);
  padding: 40px 8%;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--text-dark); letter-spacing: 2px;
}
.footer-logo span { color: var(--rose); }
footer p { font-size: 13px; }


/* ── 13. ANIMATIONS ── */

/* Fade up on scroll — hidden state */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.fade-up[data-delay="1"] { transition-delay: .1s; }
.fade-up[data-delay="2"] { transition-delay: .2s; }
.fade-up[data-delay="3"] { transition-delay: .3s; }
.fade-up[data-delay="4"] { transition-delay: .4s; }
.fade-up[data-delay="5"] { transition-delay: .5s; }
.fade-up[data-delay="6"] { transition-delay: .6s; }

/* Hero entrance (fires immediately, no scroll needed) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp .7s ease both; }
.hero-left > *:nth-child(1) { animation-delay: .1s; }
.hero-left > *:nth-child(2) { animation-delay: .2s; }
.hero-left > *:nth-child(3) { animation-delay: .3s; }
.hero-left > *:nth-child(4) { animation-delay: .4s; }
.hero-left > *:nth-child(5) { animation-delay: .5s; }

/* Counter pop */
@keyframes counterPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.stat-num.pop { animation: counterPop .35s ease; }


/* ── 14. RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 400px; position: relative; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 24px; }
  .gallery-item { flex: 0 0 calc((100% - 20px) / 2); height: 420px; }
  .nav-links, .nav-btn { display: none; }
  .hamburger { display: flex; }
  .nav-drawer { display: block; }
  .contact-map { min-height: 300px; order: 2; }
  .contact-info { order: 1; }
  .contact-inner { display: flex; flex-direction: column; }
}

@media (max-width: 600px) {
  .hero { grid-template-columns: 1fr; min-height: auto; display: flex; flex-direction: column; }
  .hero-left { padding: 56px 6% 40px; }
  .hero h1 { font-size: clamp(38px, 10vw, 54px); }
  .hero-sub { max-width: 100%; font-size: 14px; }
  .hero-ctas { flex-direction: column; gap: 12px; align-items: stretch; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 15px 20px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-right { min-height: 300px; width: 100%; position: relative; flex-shrink: 0; }
  .hero-img-grid { position: absolute; inset: 0; }
  .gallery-item { flex: 0 0 85%; height: 360px; }
  .testi-card { width: calc(100vw - 12%); min-width: 0; max-width: 400px; }
  section { padding: 56px 6%; }
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(28px, 7vw, 42px); }
  .stat-num { font-size: 28px; }
  footer { flex-direction: column; text-align: center; gap: 12px; }
}