/* ============================================================
   QUIET COMFORT — styles.css
   Aesthetic: Refined warmth · Ivory + Rose + Lavender Mist
   ============================================================ */

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

:root {
  --ivory:      #faf8f4;
  --parchment:  #f3efe7;
  --rose-pale:  #f7ede8;
  --rose-mid:   #e8c4b8;
  --rose-acc:   #c9796a;
  --rose-dark:  #9e4f42;
  --lav-pale:   #eeeaf5;
  --lav-mid:    #d0c6e8;
  --lav-acc:    #8a75b5;
  --sage-pale:  #eaf0ec;
  --text-dark:  #2a2421;
  --text-mid:   #5a4f4a;
  --text-light: #9a8e88;
  --white:      #ffffff;
  --shadow-sm:  0 2px 12px rgba(42,36,33,.06);
  --shadow-md:  0 6px 32px rgba(42,36,33,.10);
  --shadow-lg:  0 16px 60px rgba(42,36,33,.13);
  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --radius-xl:  40px;
  --transition: .28s cubic-bezier(.4,0,.2,1);
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --max-w: 1120px;
}

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

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

a { color: var(--rose-acc); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose-dark); }

/* ---- Shared button styles -------------------------------- */
.link-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--rose-acc);
  font-family: var(--font-body);
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.link-btn:hover { color: var(--rose-dark); }

/* ---- Typography ----------------------------------------- */
.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose-acc);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 48px;
}

/* ---- Buttons -------------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-acc), #b8665a);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201,121,106,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #b8665a, var(--rose-dark));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,121,106,.40);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid rgba(200,185,175,.5);
}
.btn-outline:hover {
  border-color: var(--rose-acc);
  color: var(--rose-acc);
}

.btn-sm { padding: 9px 20px; font-size: .82rem; }
.btn-full { width: 100%; text-align: center; padding: 15px; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--text-dark);
  color: rgba(255,255,255,.82);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 680px;
  width: calc(100% - 48px);
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  animation: slideUp .4s ease both;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-banner p { font-size: .875rem; flex: 1; }
.cookie-banner .link-btn { color: var(--rose-mid); font-size: inherit; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner.hidden { display: none; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(42,36,33,.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.modal-close:hover { color: var(--text-dark); background: var(--parchment); }

.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-right: 40px;
}

.modal-body {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.85;
}

.modal-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-dark);
  margin: 22px 0 8px;
}

.modal-body p { margin-bottom: 14px; }
.modal-body ul { padding-left: 20px; margin-bottom: 14px; }
.modal-body ul li { margin-bottom: 6px; }
.modal-body a { color: var(--rose-acc); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,244,.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200,185,175,.18);
  transition: box-shadow var(--transition);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: .01em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: .02em;
  text-decoration: none;
}
.nav-links a:hover { color: var(--rose-acc); }

.nav-cta {
  background: var(--rose-acc) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: .85rem !important;
}
.nav-cta:hover { background: var(--rose-dark) !important; color: #fff !important; }

/* Burger button */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--rose-pale) 55%, var(--lav-pale) 100%);
  padding-top: 64px;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.blob-1 { width: 600px; height: 600px; background: radial-gradient(circle, #f0cfc5 0%, transparent 70%); top: -120px; right: -100px; animation: float1 14s ease-in-out infinite; }
.blob-2 { width: 500px; height: 500px; background: radial-gradient(circle, #d8cef0 0%, transparent 70%); bottom: -80px; left: -80px; animation: float2 17s ease-in-out infinite; }
.blob-3 { width: 350px; height: 350px; background: radial-gradient(circle, #fce8d8 0%, transparent 70%); top: 40%; left: 30%; animation: float3 20s ease-in-out infinite; }

.orb { position: absolute; border-radius: 50%; opacity: .2; }
.orb-1 { width: 220px; height: 220px; border: 1px solid var(--rose-mid); top: 20%; right: 20%; animation: spin 30s linear infinite; }
.orb-2 { width: 140px; height: 140px; border: 1px solid var(--lav-mid); bottom: 25%; left: 18%; animation: spin 20s linear infinite reverse; }

@keyframes float1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-30px,25px) scale(1.06)} }
@keyframes float2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(25px,-20px) scale(1.08)} }
@keyframes float3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-20px,15px) scale(.95)} }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: heroFadeIn .9s ease both;
}
@keyframes heroFadeIn { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

.hero-badge {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-acc);
  background: rgba(201,121,106,.10);
  border: 1px solid rgba(201,121,106,.22);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 22px;
  letter-spacing: -.01em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-scroll-hint { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll-hint span { display: block; width: 1px; height: 56px; background: linear-gradient(to bottom, var(--rose-mid), transparent); animation: scrollPulse 2s ease-in-out infinite; margin: 0 auto; }
@keyframes scrollPulse { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.3)} }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }
.about-inner { max-width: 780px; }
.about-text { font-size: 1.1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 48px; }
.about-pillars { display: flex; gap: 32px; flex-wrap: wrap; }
.pillar { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 600; color: var(--text-dark); letter-spacing: .03em; }
.pillar-icon { color: var(--rose-acc); font-size: 1rem; }

/* ============================================================
   SIGNUP
   ============================================================ */
.signup { background: linear-gradient(145deg, var(--lav-pale) 0%, var(--rose-pale) 100%); }
.signup-inner { max-width: 700px; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200,185,175,.15);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--text-mid); }
.req { color: var(--rose-acc); }
.opt { color: var(--text-light); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: .8rem; }

.form-group input,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid #e0d8d0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--ivory);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a8e88' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--rose-acc);
  box-shadow: 0 0 0 3px rgba(201,121,106,.12);
  background: var(--white);
}
.form-group input.invalid, .form-group select.invalid { border-color: #c0605a; }

.field-error { font-size: .78rem; color: #c0605a; min-height: 16px; }

.form-footer { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.form-note { font-size: .8rem; color: var(--text-light); text-align: center; }

.form-success { text-align: center; padding: 24px; background: var(--sage-pale); border-radius: var(--radius-md); margin-top: 20px; }
.form-success .success-icon { font-size: 2rem; color: #5a9e6a; margin-bottom: 10px; }
.form-success p { font-size: .95rem; color: var(--text-mid); }
.hidden { display: none !important; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--parchment); }

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,185,175,.15);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.feature-img {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--rose-pale), var(--lav-pale));
  margin-bottom: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--text-dark); margin-bottom: 10px; }
.feature-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   COMMUNITY STANDARDS
   ============================================================ */
.standards { background: var(--white); }
.standards-inner { max-width: 780px; }

.standards-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
}
.standards-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--ivory);
  border: 1px solid rgba(200,185,175,.18);
  transition: box-shadow var(--transition);
}
.standards-list li:hover { box-shadow: var(--shadow-sm); }
.std-icon { font-size: 1.1rem; color: var(--rose-acc); line-height: 1.6; flex-shrink: 0; width: 28px; text-align: center; }
.standards-list strong { display: block; font-size: .95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; letter-spacing: .01em; }
.standards-list p { font-size: .875rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   SAFETY
   ============================================================ */
.safety { background: linear-gradient(150deg, var(--parchment), var(--lav-pale)); }
.safety-inner { max-width: 680px; text-align: center; margin: 0 auto; }
.safety-badge { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: rgba(201,121,106,.10); color: var(--rose-acc); border: 1px solid rgba(201,121,106,.22); padding: 8px 20px; border-radius: 50px; margin-bottom: 24px; }
.safety-text { font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 36px; }
.safety-seals { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.seal { font-size: .82rem; font-weight: 600; color: var(--text-mid); background: var(--white); border: 1px solid rgba(200,185,175,.25); padding: 9px 20px; border-radius: 50px; box-shadow: var(--shadow-sm); letter-spacing: .02em; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--ivory); }

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

.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.gallery-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--rose-pale), var(--lav-pale));
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .4s ease;
}
.gallery-card:hover .gallery-img img { transform: scale(1.04); }

.gallery-info { padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; }
.gallery-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; color: var(--text-dark); }
.gallery-caption { font-size: .82rem; color: var(--text-light); font-style: italic; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: linear-gradient(160deg, var(--lav-pale), var(--rose-pale)); }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,185,175,.15);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #d4a96a; font-size: 1.1rem; letter-spacing: .08em; margin-bottom: 16px; }
.testimonial-card p { font-family: var(--font-display); font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.t-name { font-size: .82rem; font-weight: 600; letter-spacing: .05em; color: var(--text-light); text-transform: uppercase; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--white); }
.faq-inner { max-width: 720px; }

.faq-list { margin-top: 52px; display: flex; flex-direction: column; border-top: 1px solid rgba(200,185,175,.3); }
.faq-item { border-bottom: 1px solid rgba(200,185,175,.3); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--rose-acc); }
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--rose-acc);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.faq-a p { padding-bottom: 22px; font-size: .93rem; color: var(--text-mid); line-height: 1.8; }
.faq-a:not([hidden]) { max-height: 400px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.7);
  padding-top: 72px;
  padding-bottom: 32px;
}

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

.footer-brand .logo { font-family: var(--font-display); font-size: 1.4rem; color: #fff; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-bottom: 8px; }
.footer-address { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: 12px; }

.footer-links { display: contents; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 6px; }

.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  text-align: left;
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-link-btn:hover { color: #fff; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: .78rem; color: rgba(255,255,255,.35); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: rgba(250,248,244,.97); backdrop-filter: blur(18px); flex-direction: column; gap: 0; padding: 16px 24px 24px; border-bottom: 1px solid rgba(200,185,175,.2); box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(200,185,175,.15); font-size: 1rem; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 8px; display: inline-block; text-align: center; padding: 12px 24px !important; border-radius: 50px; }
  .nav-burger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero-content { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-pillars { flex-direction: column; gap: 16px; }
  .safety-seals { flex-direction: column; align-items: center; }
  .cookie-banner { flex-direction: column; gap: 14px; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
  .modal-box { padding: 32px 24px; }
}

@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
