/* ============================================
   Gouden Handen - Massage & Wellness
   Color Palette:
   - Gold:       #b8860b / #d4a843
   - Dark Gold:  #8b6914
   - Cream:      #faf6ef
   - Warm White:  #fdfcf9
   - Dark:       #2a2118
   - Text:       #4a3f35
   - Light Text: #7a6f63
   ============================================ */

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

:root {
  --gold: #b8860b;
  --gold-light: #d4a843;
  --gold-lighter: #e8cc7a;
  --gold-subtle: #f5ecd4;
  --cream: #faf6ef;
  --warm-white: #fdfcf9;
  --dark: #2a2118;
  --text: #4a3f35;
  --text-light: #7a6f63;
  --text-lighter: #a89d91;
  --border: #e8e0d4;
  --shadow: 0 4px 30px rgba(42, 33, 24, 0.08);
  --shadow-lg: 0 12px 40px rgba(42, 33, 24, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text);
  background-color: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* --- Typography --- */
.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section__description {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn--full {
  width: 100%;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.nav--scrolled {
  background: rgba(253, 252, 249, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(42, 33, 24, 0.08);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  transition: color var(--transition);
}

.nav--scrolled .nav__logo {
  color: var(--dark);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav--scrolled .nav__link {
  color: var(--text-light);
}

.nav--scrolled .nav__link:hover {
  color: var(--dark);
  background: var(--cream);
}

.nav__link--cta {
  background: var(--gold);
  color: #fff !important;
  padding: 10px 24px;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.nav--scrolled .nav__toggle span {
  background: var(--dark);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg,
      rgba(42, 33, 24, 0.75) 0%,
      rgba(42, 33, 24, 0.5) 50%,
      rgba(184, 134, 11, 0.3) 100%
    ),
    linear-gradient(180deg,
      #3d2e1e 0%,
      #5a4230 30%,
      #6b503a 60%,
      #8b6914 100%
    );
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 800px;
}

.hero__logo {
  margin-bottom: 28px;
}

.hero__logo-icon {
  width: 280px;
  height: auto;
  color: var(--gold-lighter);
  margin: 0 auto;
  display: block;
  opacity: 0.9;
}

.hero__voor {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-lighter);
  letter-spacing: 2px;
  margin-top: -8px;
  margin-bottom: 20px;
  opacity: 0.85;
}

.hero__tagline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-lighter);
  margin-bottom: 24px;
  padding: 8px 24px;
  border: 1px solid rgba(232, 204, 122, 0.3);
  border-radius: 50px;
}

.hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff 0%, var(--gold-lighter) 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  background: var(--warm-white);
}

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

.about__image-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--cream), var(--gold-subtle));
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__image-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold-light);
  border-radius: calc(var(--radius-lg) - 8px);
  opacity: 0.3;
}

.about__image-placeholder {
  width: 60%;
  color: var(--gold);
}

.about__text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about__stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  background: var(--cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  transition: all var(--transition);
  border: 1px solid transparent;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-subtle);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--gold);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.services__cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.services__cta p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* =============================================
   BANNER
   ============================================= */
.banner {
  background:
    linear-gradient(135deg,
      rgba(42, 33, 24, 0.85),
      rgba(139, 105, 20, 0.85)
    ),
    linear-gradient(180deg, #3d2e1e, #6b503a);
  padding: 80px 0;
  text-align: center;
}

.banner__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.banner__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 550px;
  margin: 0 auto;
  font-weight: 300;
}

/* =============================================
   TEAM
   ============================================= */
.team {
  background: var(--warm-white);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.team-card:hover {
  border-color: var(--gold-subtle);
  box-shadow: var(--shadow);
}

.team-card__avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  color: var(--gold);
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-card__avatar:has(img) {
  padding: 0;
}

.team-card__avatar svg {
  width: 100%;
  height: 100%;
}

.team-card__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.team-card__bio {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.team-card__schedule {
  font-size: 0.8rem;
  color: var(--text-lighter);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.team-card__schedule-label {
  font-weight: 600;
  color: var(--text-light);
  margin-right: 4px;
}

/* =============================================
   TRAINING
   ============================================= */
.training {
  background: var(--cream);
}

.training__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.training__text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.training__features {
  margin-bottom: 36px;
}

.training__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text);
}

.training__features svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
}

.training__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 32px;
}

.training__price-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.training__price-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.training__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.training__visual-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.training__visual-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.training__visual-icon svg {
  width: 100%;
  height: 100%;
}

.training__visual-card span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: var(--warm-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

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

.contact__card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact__card:hover {
  box-shadow: var(--shadow);
}

.contact__card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--gold);
  background: var(--warm-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.contact__card-icon svg {
  width: 100%;
  height: 100%;
}

.contact__card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact__card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact__card a {
  color: var(--gold);
}

.contact__card a:hover {
  color: var(--gold-light);
}

.contact__hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
  gap: 24px;
}

/* --- Contact Form --- */
.contact__form-wrapper {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact__form-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 28px;
}

.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all var(--transition);
  outline: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--text-lighter);
}

.form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a6f63' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- Map --- */
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact__map iframe {
  display: block;
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__logo-icon {
  width: 48px;
  height: auto;
  color: var(--gold-light);
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.footer__address {
  font-size: 0.85rem;
}

.footer h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold-light);
}

.footer__contact p {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer__contact a:hover {
  color: var(--gold-light);
}

.footer__bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    gap: 48px;
  }

  .training__grid {
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--warm-white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
  }

  .nav__menu.active {
    right: 0;
  }

  .nav__link {
    color: var(--text) !important;
    padding: 12px 16px;
    width: 100%;
    border-radius: 8px;
  }

  .nav__link:hover {
    background: var(--cream) !important;
  }

  .nav__link--cta {
    color: #fff !important;
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero__logo-icon {
    width: 200px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image-frame {
    max-width: 400px;
    margin: 0 auto;
  }

  .about__stats {
    gap: 24px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .team__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .training__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .training__visual {
    order: -1;
  }

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

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

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

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

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .about__stats {
    flex-wrap: wrap;
  }

  .contact__form-wrapper {
    padding: 24px;
  }
}
