/* ===== DESIGN TOKENS ===== */
:root {
  --white: #FFFFFF;
  --cream: #F7F5F0;
  --off-white: #FAFAF8;
  --charcoal: #2A2A2A;
  --charcoal-light: #4A4A4A;
  --charcoal-muted: #8A8A8A;
  --gold: #C9A96E;
  --gold-dark: #A88B4A;
  --gold-light: #E8D5A8;
  --border-light: #E8E6E1;
  --section-dark: #1E1E1E;
  --section-dark-surface: #2A2A2C;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.lucide-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ===== PAGE WRAPPER ===== */
.page { width: 100%; }

/* ===== HEADER ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px max(80px, calc((100% - 1280px) / 2));
  background: var(--white);
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-area .lucide-icon {
  color: var(--gold);
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--charcoal);
}
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: color 0.3s;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.3s ease;
}
.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--gold); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gold);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
}
.header-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.35);
}
.header-cta:active { transform: translateY(0); box-shadow: none; }
.header-divider {
  height: 1px;
  background: var(--border-light);
}

/* ===== HERO ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px max(80px, calc((100% - 1280px) / 2));
  background: var(--cream);
  min-height: 700px;
}
.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--gold-light);
  border-radius: 100px;
  width: fit-content;
}
.hero-badge .lucide-icon {
  color: var(--gold-dark);
}
.hero-badge span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-dark);
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal-muted);
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  background: var(--gold);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn-primary .lucide-icon { transition: transform 0.25s; }
.btn-primary:hover .lucide-icon { transform: translateX(4px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  background: transparent;
  border: 1.5px solid var(--charcoal);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.25s, box-shadow 0.3s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.btn-secondary:active { transform: translateY(0); box-shadow: none; }

/* ===== SECTION HEADERS ===== */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
}
.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal-muted);
  text-align: center;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--white);
  padding: 100px max(80px, calc((100% - 1280px) / 2));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.gallery-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gallery-row {
  display: flex;
  gap: 20px;
  width: 100%;
  height: 360px;
}
.gallery-card {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-card.featured { flex: 2; }
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
}
.gallery-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.gallery-card-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ===== PROCESS / 3 STEPS ===== */
.process {
  background: var(--cream);
  padding: 40px max(80px, calc((100% - 1280px) / 2)) 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.steps-row {
  display: flex;
  gap: 40px;
  width: 100%;
}
.step-card {
  flex: 1;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 32px;
}
.step-num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  text-align: center;
}
.step-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
}
.step-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal-muted);
  text-align: center;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--section-dark);
  padding: 100px max(80px, calc((100% - 1280px) / 2));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.pricing .section-title { color: #F5F5F0; }
.pricing .section-sub { color: #8A8A8A; }
.pricing-tiers {
  display: flex;
  gap: 28px;
  width: 100%;
}
.pricing-card {
  flex: 1;
  background: var(--section-dark-surface);
  border: 1px solid #3A3A3C;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.pricing-card.featured {
  background: linear-gradient(180deg, #3A3520 0%, var(--section-dark-surface) 100%);
  border: 1.5px solid var(--gold);
}
.popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--gold);
  border-radius: 100px;
  width: fit-content;
}
.popular-badge span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--section-dark);
}
.tier-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
}
.tier-price {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: #F5F5F0;
}
.tier-desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: #8A8A8A;
}
.tier-divider {
  height: 1px;
  background: #3A3A3C;
}
.tier-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.tier-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #B0B0B0;
}
.tier-feature .lucide-icon {
  color: var(--gold);
  flex-shrink: 0;
}
.tier-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s, border-color 0.3s;
  margin-top: auto;
}
.tier-btn.outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.tier-btn.outline:hover {
  background: rgba(201,169,110,0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.2);
}
.tier-btn.outline:active { transform: translateY(0); box-shadow: none; }
.tier-btn.filled {
  background: var(--gold);
  color: var(--section-dark);
}
.tier-btn.filled:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}
.tier-btn.filled:active { transform: translateY(0); box-shadow: none; }

/* Add-On Banner */
.addon-banner {
  margin-top: 48px;
  background: var(--section-dark-surface);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  width: 100%;
}
.addon-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.addon-info { flex: 1; }
.addon-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: rgba(201,169,110,0.12);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.addon-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.addon-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 520px;
}
.addon-price-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.addon-price {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
}
.addon-price sup {
  font-size: 20px;
  vertical-align: super;
}

.pricing-flex-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-top: 32px;
  padding: 16px 24px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius-md);
}
.pricing-flex-note strong {
  color: var(--gold);
}

.pricing-rush-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .addon-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .addon-desc { max-width: 100%; }
  .addon-banner { padding: 28px 24px; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--cream);
  padding: 100px max(80px, calc((100% - 1280px) / 2));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.testimonial-cards {
  display: flex;
  gap: 28px;
  width: 100%;
}
.testimonial-card {
  flex: 1;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.testimonial-icon {
  font-size: 28px;
  color: var(--gold-light);
}
.testimonial-quote {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal-light);
  font-style: italic;
}
.stars {
  display: flex;
  gap: 4px;
}
.stars .lucide-icon {
  color: var(--gold);
}
.testimonial-divider {
  height: 1px;
  background: var(--border-light);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-light);
}
.testimonial-info { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}
.testimonial-role {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--charcoal-muted);
}

/* ===== CONTACT ===== */
.contact {
  background: var(--white);
  padding: 100px max(80px, calc((100% - 1280px) / 2));
  display: flex;
  align-items: center;
  gap: 80px;
}
.contact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
}
.contact-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal-muted);
}
.trust-badges {
  display: flex;
  gap: 24px;
  align-items: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: #8A8A8A;
}
.trust-badge .lucide-icon {
  color: var(--gold);
}
.contact-form {
  flex: 1;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: flex-start;
}
.form-row {
  display: flex;
  gap: 16px;
  width: 100%;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--charcoal-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #BDBDBD;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px 36px;
  background: var(--gold);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
}
.submit-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}
.submit-btn:active { transform: translateY(0); box-shadow: none; }
.submit-btn .lucide-icon { transition: transform 0.25s; }
.submit-btn:hover .lucide-icon { transform: translateX(4px); }

/* Form reveal animation */
.form-fields {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease 0.1s, margin-top 0.5s ease;
  margin-top: 0;
}
.form-fields.visible {
  max-height: 600px;
  opacity: 1;
  margin-top: 24px;
}
.form-fields .form-row + .form-row { margin-top: 20px; }
.form-fields .submit-btn { margin-top: 20px; }
.form-consent {
  margin-top: 16px;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--charcoal-muted);
  cursor: pointer;
  line-height: 1.5;
}
.consent-label input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.consent-label a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-label a:hover {
  color: var(--gold-dark);
}
#revealBtn.hidden { display: none; }
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--section-dark);
  padding: 60px max(80px, calc((100% - 1280px) / 2));
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer-brand {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand .logo-area .lucide-icon { color: var(--gold); }
.footer-brand .logo-text { color: #F5F5F0; font-size: 16px; }
.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: #8A8A8A;
}
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
}
.footer-col a {
  font-family: var(--font-body);
  font-size: 13px;
  color: #8A8A8A;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-divider {
  height: 1px;
  background: #3A3A3C;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: #6A6A6A;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  background: var(--cream);
  padding: 80px max(80px, calc((100% - 880px) / 2));
}
.legal-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.legal-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--charcoal);
}
.legal-updated {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--charcoal-muted);
  margin-bottom: 16px;
}
.legal-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 16px;
}
.legal-body h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 4px;
}
.legal-body p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--charcoal-light);
}
.legal-body ul {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-body li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal-light);
}
.legal-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-body a:hover {
  color: var(--gold-dark);
}

/* ===== HAMBURGER MENU (hidden on desktop) ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 4px;
}

/* ===== RESPONSIVE — TABLET (≤ 1024px) ===== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; gap: 40px; min-height: auto; padding: 60px 40px; }
  .gallery-row { height: 260px; }
  .steps-row { gap: 20px; }
  .step-card { padding: 28px; }
  .pricing-tiers { gap: 16px; }
  .pricing-card { padding: 28px; }
  .testimonial-cards { gap: 16px; }
  .testimonial-card { padding: 28px; }
  .contact { flex-direction: column; gap: 40px; padding: 60px 40px; }
  .contact-form { align-self: stretch; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-brand { width: 100%; }
}

/* ===== RESPONSIVE — MOBILE (≤ 768px) ===== */
@media (max-width: 768px) {
  /* Header */
  .header { padding: 16px 20px; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 100;
  }
  .nav.open { display: flex; }
  .header { position: relative; }
  .menu-toggle { display: block; }
  .header-cta { padding: 10px 16px; font-size: 11px; white-space: nowrap; }
  .logo-text { font-size: 14px; letter-spacing: 2px; }

  /* Hero */
  .hero { padding: 40px 20px; gap: 32px; }
  .hero-headline { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; justify-content: center; }
  /* Section headers */
  .section-title { font-size: 28px; }
  .section-sub { font-size: 14px; }

  /* Gallery */
  .gallery { padding: 60px 20px; gap: 32px; }
  .gallery-row { flex-direction: column; height: auto; gap: 12px; }
  .gallery-card { height: 220px; }
  .gallery-card.featured { flex: 1; }

  /* Process */
  .process { padding: 60px 20px; gap: 32px; }
  .steps-row { flex-direction: column; gap: 16px; }
  .step-card { padding: 24px; }
  .step-title { font-size: 22px; }

  /* Pricing */
  .pricing { padding: 60px 20px; gap: 32px; }
  .pricing-tiers { flex-direction: column; gap: 16px; }
  .pricing-card { padding: 24px; }
  .tier-price { font-size: 36px; }

  /* Testimonials */
  .testimonials { padding: 60px 20px; gap: 32px; }
  .testimonial-cards { flex-direction: column; gap: 16px; }

  /* Contact */
  .contact { padding: 60px 20px; gap: 32px; }
  .contact-title { font-size: 28px; }
  .contact-form { padding: 24px; }
  .form-row { flex-direction: column; gap: 16px; }
  .submit-btn { padding: 16px 24px; font-size: 14px; }

  /* Footer */
  .footer { padding: 40px 20px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Legal */
  .legal-page { padding: 40px 20px; }
  .legal-title { font-size: 28px; }
  .legal-body h2 { font-size: 20px; }
}
