/* Usinto — Luxury Beauty Salon */
:root {
  --pink: #f8d7da;
  --pink-deep: #f0c4c9;
  --pink-soft: #fdf2f3;
  --white: #ffffff;
  --ink: #333333;
  --ink-soft: #5a5a5a;
  --gold: #c9a96e;
  --gold-dark: #b89555;
  --gold-light: #e8d5b0;
  --shadow: 0 20px 50px rgba(51, 51, 51, 0.08);
  --radius: 28px;
  --radius-sm: 999px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Open Sans", sans-serif;
  --header-h: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* —— Typography —— */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

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

.section-lead {
  color: var(--ink-soft);
  max-width: 540px;
  margin-inline: auto;
  font-size: 1.05rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.35);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(201, 169, 110, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-light:hover {
  background: var(--pink);
  transform: translateY(-2px);
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(51, 51, 51, 0.06);
}

/* Open mobile menu: drop backdrop-filter so fixed nav isn't clipped to header height */
.site-header.is-menu-open {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1140px, 92%);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 1001;
}

.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav a:hover,
.nav a.active {
  color: var(--gold-dark);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.65rem 1.35rem !important;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-dark);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
  overflow: hidden;
  background: var(--pink-soft);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease) infinite alternate;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(248, 215, 218, 0.92) 0%,
    rgba(248, 215, 218, 0.55) 42%,
    rgba(51, 51, 51, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 5.5rem);
  line-height: 1;
  margin-bottom: 1.25rem;
  color: var(--ink);
  animation: fadeUp 0.9s var(--ease) both;
}

.hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  margin-bottom: 1rem;
  animation: fadeUp 0.9s 0.12s var(--ease) both;
}

.hero p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 480px;
  animation: fadeUp 0.9s 0.22s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.9s 0.32s var(--ease) both;
}

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

/* —— Page Hero (inner) —— */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 4.5rem) 0 4.5rem;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-soft) 55%, var(--white) 100%);
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.18), transparent 70%);
  top: -80px;
  right: -60px;
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--ink-soft);
  max-width: 560px;
  margin-inline: auto;
}

/* —— Reveal animations —— */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* —— Services grid —— */
.section {
  padding: 6rem 0;
}

.section-alt {
  background: var(--pink-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease);
}

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

.service-card-body {
  position: absolute;
  inset: auto 0 0;
  padding: 2rem 1.75rem;
  background: linear-gradient(to top, rgba(51, 51, 51, 0.88), transparent);
  color: var(--white);
  z-index: 1;
}

.service-card-body h3 {
  color: var(--white);
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.service-card-body p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.service-card .link-more {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

/* —— Split feature —— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.split-content .section-title {
  text-align: left;
}

.split-content p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.split.reverse .split-media {
  order: 2;
}

/* —— Offers —— */
.offers-banner {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
}

.offers-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offers-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(51, 51, 51, 0.82) 0%, rgba(51, 51, 51, 0.35) 100%);
}

.offers-content {
  position: relative;
  z-index: 1;
  padding: 3rem;
  max-width: 480px;
  color: var(--white);
}

.offers-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.offers-content p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.offer-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* —— Gallery —— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(201, 169, 110, 0);
  transition: background 0.4s;
}

.gallery-item:hover::after {
  background: rgba(201, 169, 110, 0.18);
}

/* —— Reviews —— */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(248, 215, 218, 0.8);
  transition: transform 0.4s var(--ease);
}

.review-card:hover {
  transform: translateY(-6px);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.review-card blockquote {
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}

.review-author {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.review-meta {
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-top: 0.2rem;
}

/* —— CTA band —— */
.cta-band {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 50%, var(--gold-light) 140%);
  text-align: center;
  padding: 5rem 0;
}

.cta-band h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

/* —— About specifics —— */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

.team-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.team-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--gold-dark);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.advantage {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--pink);
  transition: box-shadow 0.4s, transform 0.4s var(--ease);
}

.advantage:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.advantage-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  color: var(--ink);
}

.advantage h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.advantage p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* —— Services page —— */
.service-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-detail:nth-child(even) .service-detail-media {
  order: 2;
}

.service-detail-media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.service-detail-body h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.service-detail-body p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.service-list {
  margin: 1.25rem 0 1.75rem;
}

.service-list li {
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
  color: var(--ink-soft);
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  background: var(--pink-soft);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--ink-soft);
  transition: color 0.3s;
}

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

.contact-visual {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
  aspect-ratio: 16 / 10;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-form {
  background: var(--white);
  border: 1px solid var(--pink);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.booking-form h2 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.form-intro {
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #e8dce0;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
}

.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid textarea {
  border-color: #c45c5c;
  box-shadow: 0 0 0 3px rgba(196, 92, 92, 0.15);
}

.form-error {
  display: none;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: #c45c5c;
  line-height: 1.35;
}

.form-group.is-invalid .form-error {
  display: block;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-success {
  display: none;
  background: var(--pink-soft);
  border: 1px solid var(--pink);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.form-success.is-visible {
  display: block;
  animation: fadeUp 0.5s var(--ease);
}

.map-wrap {
  margin-top: 4rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  opacity: 0.75;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 1.15rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.92rem;
  opacity: 0.75;
  margin-bottom: 0.55rem;
  transition: opacity 0.3s, color 0.3s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  opacity: 0.9;
  transition: color 0.3s, opacity 0.3s;
}

.footer-legal a:hover {
  color: var(--gold-light);
  opacity: 1;
}

/* —— Legal pages —— */
.legal-content {
  max-width: 780px;
  margin-inline: auto;
}

.legal-content h2 {
  font-size: 1.45rem;
  margin: 2.25rem 0 0.85rem;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.6rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
}

.legal-content ul {
  margin: 0 0 1.25rem 1.25rem;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 0.45rem;
}

.legal-meta {
  font-size: 0.88rem;
  color: var(--gold-dark);
  margin-bottom: 2rem;
}

.legal-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .services-grid,
  .reviews-grid,
  .team-grid,
  .advantages {
    grid-template-columns: 1fr 1fr;
  }

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

  .split,
  .service-detail,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media,
  .service-detail:nth-child(even) .service-detail-media {
    order: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s, visibility 0.35s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    font-size: 1.25rem;
  }

  .site-header.is-menu-open .header-inner {
    position: relative;
    z-index: 1001;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .reviews-grid,
  .team-grid,
  .advantages,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .hero {
    align-items: center;
    text-align: left;
    padding-bottom: 4rem;
  }

  .offers-content {
    padding: 2rem 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
