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

/* ─── RESET & ROOT ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:    #07060a;
  --dark:     #100f14;
  --card:     #131218;
  --gold:     #c4a265;
  --gold-lt:  #dfc28f;
  --gold-dk:  #8c6e3f;
  --cream:    #f5ede0;
  --muted:    #9a8f82;
  --border:   rgba(196, 162, 101, .18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --ease:     cubic-bezier(.25, .46, .45, .94);
  --transition: .3s var(--ease);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 2px; }

/* ─── UTILITIES ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 28px auto;
}

.divider.left {
  margin-left: 0;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  transition: background var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--gold-lt);
}

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(245, 237, 224, .35);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  transition: border-color var(--transition), color var(--transition);
  cursor: pointer;
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── SECTIONS ─── */
section {
  padding: 100px 0;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 28px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  padding: 16px 0;
  background: rgba(7, 6, 10, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--cream);
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 10px 24px;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: .05em;
  transition: color .25s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/about/salonPrincipal.JPEG');
  background-size: cover;
  background-position: center top;
  transform: scale(1.08);
  animation: heroZoom 12s var(--ease) forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(7, 6, 10, .82) 0%,
    rgba(7, 6, 10, .65) 50%,
    rgba(7, 6, 10, .90) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 40px 80px;
  max-width: 780px;
  animation: heroFadeUp .9s var(--ease) .3s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  padding: 8px 20px;
  border: 1px solid rgba(196, 162, 101, .35);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: .02em;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.fresha-badge {
  position: absolute;
  top: 100px;
  right: 40px;
  width: 100px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.6));
  transition: transform .3s var(--ease);
}

.fresha-badge:hover {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .fresha-badge {
    width: 80px;
    top: 88px;
    right: 20px;
  }
}

.hero p {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .04em;
  color: rgba(245, 237, 224, .72);
  max-width: 480px;
  margin: 0 auto 48px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.8); }
  50%       { opacity: 1; transform: scaleY(1); }
}

/* ─── MARQUEE ─── */
.marquee-strip {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid var(--gold-dk);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.marquee-item {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.marquee-item::before {
  content: '◆';
  font-size: 6px;
  color: rgba(0, 0, 0, .4);
}

/* ─── INTRO ─── */
.intro {
  text-align: center;
}

.intro h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: .02em;
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto 24px;
}

.intro h2 em {
  font-style: italic;
  color: var(--gold-lt);
}

.intro p {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 15px;
  letter-spacing: .02em;
}

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

.services-header {
  margin-bottom: 64px;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: .02em;
  max-width: 520px;
}

.services-header h2 em {
  font-style: italic;
  color: var(--gold-lt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--dark);
  padding: 40px 36px;
  transition: background var(--transition);
  cursor: default;
}

.service-card:hover {
  background: #1a1922;
}

.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--gold-dk);
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: .03em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  letter-spacing: .015em;
}

.service-card .img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 24px;
}

.service-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  filter: brightness(.9) saturate(.85);
}

.service-card:hover .img-wrap img {
  transform: scale(1.04);
}

/* ─── ABOUT ─── */
.about .about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80%;
  height: 80%;
  border: 1px solid var(--border);
  z-index: 0;
}

.about-img-wrap > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top;
  filter: brightness(.9) saturate(.8);
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: .02em;
  color: var(--cream);
  margin-bottom: 24px;
}

.about-text h2 em {
  font-style: italic;
  color: var(--gold-lt);
}

.about-text .name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
  letter-spacing: .015em;
}

.about-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.badge {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 18px;
  border: 1px solid var(--border);
}

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

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: .02em;
}

.gallery-header h2 em {
  font-style: italic;
  color: var(--gold-lt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 500px;
  gap: 6px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s var(--ease), filter .6s;
  filter: brightness(.85) saturate(.8);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: smooth;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(.95) saturate(1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 6, 10, 0);
  transition: background var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(7, 6, 10, .3);
}

/* ─── REVIEWS (Trustindex) ─── */
.reviews-section {
  background: var(--black);
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: .02em;
  color: var(--cream);
}

.reviews-header h2 em {
  font-style: italic;
  color: var(--gold-lt);
}

/* Sobrescribir colores del widget Trustindex para que encaje con el tema oscuro */
.ti-widget { color: var(--cream) !important; }
.ti-stars-container .ti-star { color: var(--gold) !important; }
.ti-review-item { background: var(--card) !important; border-color: var(--border) !important; }
.ti-reviewer-name { color: var(--cream) !important; }
.ti-review-body { color: var(--muted) !important; }

/* ─── FAQ ─── */
.faq {
  background: var(--dark);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.faq-left h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
}

.faq-left h2 em {
  font-style: italic;
  color: var(--gold-lt);
}

.faq-left p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 8px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.faq-question span:first-child {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: .02em;
}

.faq-icon {
  font-size: 20px;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  font-family: var(--font-body);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.faq-answer p {
  padding-top: 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  letter-spacing: .015em;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-image {
  height: 520px;
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.75) saturate(.8);
}

.cta-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: var(--card);
  border: 1px solid var(--border);
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-text h2 em {
  font-style: italic;
  color: var(--gold-lt);
}

.cta-text p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 340px;
  letter-spacing: .02em;
}

.cta-phone {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .05em;
  display: block;
  margin-bottom: 28px;
  transition: color var(--transition);
}

.cta-phone:hover {
  color: var(--gold-lt);
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.contact-cell {
  background: var(--black);
  padding: 48px 36px;
}

.contact-cell h4 {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-cell p,
.contact-cell a {
  font-size: 14px;
  color: var(--muted);
  line-height: 2;
  letter-spacing: .02em;
  text-decoration: none;
  display: block;
  transition: color var(--transition);
}

.contact-cell a:hover {
  color: var(--gold);
}

.contact-cell .big-link {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: .04em;
}

.contact-cell .big-link:hover {
  color: var(--gold);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid rgba(196, 162, 101, .08);
  letter-spacing: .02em;
}

.hours-row span:first-child {
  color: var(--cream);
}

.hours-row:last-child {
  border-bottom: none;
}

/* ─── MAP ─── */
.map-section {
  padding: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
  filter: grayscale(1) contrast(.85) brightness(.7);
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.75); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--card);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  white-space: nowrap;
  padding: 8px 14px;
  border: 1px solid var(--border);
  opacity: 0;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 480px) {
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-tooltip { display: none; }
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--cream);
  margin-bottom: 16px;
  display: block;
}

.footer-brand .logo span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 320px;
  letter-spacing: .015em;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h5 {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .25s;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(154, 143, 130, .5);
  letter-spacing: .05em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta { display: none; }

  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .about .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap > img { height: 360px; }
  .about-img-wrap::before { display: none; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item { height: 360px; }

  .testi-grid { grid-template-columns: 1fr; }

  .faq-inner { grid-template-columns: 1fr; gap: 32px; }

  .cta-inner { grid-template-columns: 1fr; }
  .cta-image { height: 300px; }
  .cta-text { padding: 56px 36px; }

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

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

@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  section { padding: 72px 0; }

  .services-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 420px; }

  .hero-btns { flex-direction: column; align-items: center; }
}
