/* =============================================
   MELTRONI — GLOBAL STYLES
   ============================================= */

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

:root {
  --cream: #faf6f0;
  --cream-dark: #f3ede3;
  --beige: #e8ddd0;
  --terracotta: #c06848;
  --terracotta-dark: #a35537;
  --terracotta-light: #d4856a;
  --rose: #d4a0a0;
  --rose-light: #f0d8d8;
  --brown: #3d2b1f;
  --brown-mid: #6b4c3b;
  --brown-light: #9e7057;
  --gold: #c8a86b;
  --gold-light: #e8d4a8;
  --white: #ffffff;
  --text: #3d2b1f;
  --text-mid: #6b4c3b;
  --text-light: #9e8070;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --shadow: 0 4px 20px rgba(61, 43, 31, 0.10);
  --shadow-md: 0 8px 32px rgba(61, 43, 31, 0.14);
  --shadow-lg: 0 16px 48px rgba(61, 43, 31, 0.18);

  --max-w: 1100px;
  --section-pad: 80px 20px;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--terracotta-dark);
}

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

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--brown);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-mid); }

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-align: center;
  letter-spacing: 0.02em;
}

.btn-primary {
  background-color: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(192, 104, 72, 0.35);
}

.btn-primary:hover {
  background-color: var(--terracotta-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 104, 72, 0.40);
}

.btn-outline {
  background-color: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}

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

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

/* =============================================
   HEADER / NAV
   ============================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--beige);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(61, 43, 31, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.02em;
}

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

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

.nav-links a {
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 10px 24px;
  background-color: var(--terracotta);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s !important;
}

.nav-cta:hover {
  background-color: var(--terracotta-dark) !important;
  transform: translateY(-1px);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--brown);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.9);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 43, 31, 0.65) 0%,
    rgba(192, 104, 72, 0.30) 60%,
    rgba(61, 43, 31, 0.45) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 20px;
  margin-left: clamp(20px, 8vw, 120px);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.92);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

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

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
}

.hero-scroll:hover {
  color: rgba(255, 255, 255, 0.95);
}

.hero-scroll svg {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* =============================================
   SECTION SHARED
   ============================================= */

section {
  padding: var(--section-pad);
}

.section-head {
  margin-bottom: 56px;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  margin-bottom: 16px;
}

.section-head p {
  max-width: 560px;
  font-size: 1.05rem;
}

.section-head.center p {
  margin: 0 auto;
}

/* =============================================
   FOR WHOM
   ============================================= */

.for-whom {
  background-color: var(--cream-dark);
}

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.for-whom-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--beige);
  transition: transform 0.25s, box-shadow 0.25s;
}

.for-whom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.for-whom-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--brown);
}

.for-whom-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-light);
}

/* =============================================
   OUTCOMES
   ============================================= */

.outcomes {
  background-color: var(--cream);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--terracotta);
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}

.outcome-item:hover {
  transform: translateX(4px);
}

.outcome-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--terracotta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-serif);
}

.outcome-text h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--brown);
}

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

/* =============================================
   HOW IT WORKS
   ============================================= */

.how-it-works {
  background-color: var(--brown);
  color: var(--white);
}

.how-it-works .section-head h2 {
  color: var(--white);
}

.how-it-works .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.how-it-works .section-label {
  color: var(--gold);
}

.steps-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.step-body h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step-body p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.65;
}

.steps-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.steps-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* =============================================
   PROGRAM / INCLUDED
   ============================================= */

.program {
  background-color: var(--cream-dark);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.program-card {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.25s;
}

.program-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.program-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.program-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--brown);
}

.program-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* =============================================
   GALLERY / RESULTS
   ============================================= */

.results {
  background-color: var(--cream);
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.gallery-item.wide img {
  height: 280px;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(61, 43, 31, 0.75));
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
}

/* =============================================
   FAQ
   ============================================= */

.faq {
  background-color: var(--cream-dark);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  transition: background 0.2s;
}

.faq-question:hover {
  background-color: var(--cream);
}

.faq-question.open {
  color: var(--terracotta);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  font-size: 1rem;
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

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

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* =============================================
   LEAD FORM
   ============================================= */

.lead-form-section {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.lead-form-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -8%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.lead-form-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.form-intro .section-label {
  color: var(--gold-light);
}

.form-intro h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.form-intro p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.form-guarantees {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-guarantees li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.form-guarantees li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.20);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 24px 64px rgba(61, 43, 31, 0.25);
}

.form-box h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--brown);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brown-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background-color: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(192, 104, 72, 0.15);
  background-color: var(--white);
}

.form-group input::placeholder {
  color: var(--text-light);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background-color: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(192, 104, 72, 0.40);
}

.form-submit:hover {
  background-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 104, 72, 0.45);
}

.form-agree {
  margin-top: 14px;
  font-size: 0.775rem;
  color: var(--text-light);
  line-height: 1.6;
  text-align: center;
}

.form-agree a {
  color: var(--terracotta);
}

.form-error {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
}

.form-error.visible {
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background-color: var(--brown);
  color: rgba(255, 255, 255, 0.60);
  padding: 48px 20px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 28px;
}

.footer-brand .nav-logo {
  font-size: 1.4rem;
  color: var(--white);
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.50);
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.40);
  line-height: 1.8;
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.40);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: right;
}

/* =============================================
   COOKIE BANNER
   ============================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--brown);
  color: rgba(255, 255, 255, 0.85);
  padding: 20px 24px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.20);
  border-top: 3px solid var(--terracotta);
}

.cookie-banner.visible {
  display: flex;
}

.cookie-text {
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
  color: rgba(255, 255, 255, 0.80);
}

.cookie-text a {
  color: var(--gold-light);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 10px 24px;
  background-color: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.cookie-accept:hover {
  background-color: var(--terracotta-dark);
}

/* =============================================
   SUCCESS / LEGAL PAGES
   ============================================= */

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1;
}

.page-hero {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--beige) 100%);
  padding: 80px 20px 60px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin: 36px 0 14px;
  color: var(--brown);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
  color: var(--brown-mid);
}

.legal-content p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 6px;
  color: var(--text-mid);
}

.legal-date {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--beige);
}

.success-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2.2rem;
}

.success-wrap h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.success-wrap p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 36px;
}

/* =============================================
   UTILITIES
   ============================================= */

.text-center { text-align: center; }
.text-terracotta { color: var(--terracotta); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  :root {
    --section-pad: 64px 20px;
  }

  .steps-wrap {
    grid-template-columns: 1fr;
  }

  .steps-image {
    order: -1;
  }

  .steps-image img {
    height: 300px;
  }

  .lead-form-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .gallery-item.wide {
    grid-column: span 2;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  :root {
    --section-pad: 48px 16px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 20px;
    border-bottom: 1px solid var(--beige);
    gap: 16px;
    box-shadow: 0 8px 24px rgba(61, 43, 31, 0.10);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    margin-left: 16px;
    padding-right: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .gallery-item.wide {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-copy {
    text-align: left;
  }

  .form-box {
    padding: 28px 20px;
  }
}

@media (max-width: 400px) {
  :root {
    --section-pad: 40px 16px;
  }
}
