/*
 * RiffCove — Main Stylesheet
 * Artisanal creative design: earth tones, organic forms, expressive typography
 * No gradients · No 3D · No emojis
 */

/* ================================================
   1. CUSTOM PROPERTIES
   ================================================ */
:root {
  --primary:    #2E3A2F;
  --secondary:  #C46A3F;
  --accent:     #E4B95B;
  --bg:         #F4EFE6;
  --surface:    #FBF8F1;
  --text:       #21251F;
  --muted:      #5C5A4E;
  --border:     #D8CFBD;

  --font-display: 'Fraunces', serif;
  --font-script:  'Caveat', cursive;
  --font-body:    'Work Sans', sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-btn:      14px 18px 12px 16px;
  --radius-card:     20px 24px 18px 22px;
  --radius-card-alt: 24px 18px 22px 16px;
  --radius-sm:       9px 11px 8px 10px;
  --radius-pill:     100px;

  --shadow-sm:    0 2px 12px rgba(46, 58, 47, 0.07);
  --shadow-md:    0 5px 28px rgba(46, 58, 47, 0.11);
  --shadow-lg:    0 10px 48px rgba(46, 58, 47, 0.15);
  --shadow-hover: 0 14px 56px rgba(46, 58, 47, 0.20);

  --ease:      0.25s ease;
  --ease-out:  0.4s cubic-bezier(0.16, 1, 0.3, 1);

  --container:        1180px;
  --container-narrow: 800px;
  --header-h:         80px;
}

/* ================================================
   2. RESET & BASE
   ================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Paper grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.038;
  pointer-events: none;
  z-index: 9998;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }
svg { display: block; }

/* ================================================
   3. TYPOGRAPHY
   ================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.13;
  color: var(--text);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.3rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.85rem); }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); }

p {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
}

strong { font-weight: 600; color: var(--text); }

.annotation {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--secondary);
  display: block;
  line-height: 1.3;
}

.label-tag {
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  color: var(--muted);
}

/* ================================================
   4. LAYOUT UTILITIES
   ================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.section--alt { background: var(--surface); }
.section--dark {
  background: var(--primary);
  color: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .annotation { margin-bottom: 0.6rem; }

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.9rem;
}

.section-header h2::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q25 3 50 7 Q75 11 100 5 Q130 1 158 8' stroke='%23C46A3F' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.75;
}

/* ================================================
   5. BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  transition:
    background var(--ease),
    color var(--ease),
    border-color var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn i { font-size: 1rem; }

.btn--primary {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--accent {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}
.btn--accent:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--bg);
  border-color: rgba(244,239,230,0.4);
}
.btn--outline-light:hover {
  background: var(--bg);
  color: var(--primary);
  border-color: var(--bg);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.05rem 2.5rem;
  font-size: 1rem;
}

/* ================================================
   6. HEADER & NAVIGATION
   ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(244, 239, 230, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 3px;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
  font-style: italic;
}

.logo-brush {
  display: block;
  height: 5px;
  width: 80%;
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color var(--ease);
  letter-spacing: 0.01em;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: width var(--ease-out);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
}

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

.nav-cta { margin-left: 0.75rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 300;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--ease);
}

.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  z-index: 190;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform var(--ease-out), opacity var(--ease);
  box-shadow: var(--shadow-lg);
}

.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--ease), padding-left var(--ease);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--secondary); padding-left: 0.35rem; }

.mobile-nav .btn {
  margin-top: 1.25rem;
  justify-content: center;
}

/* ================================================
   7. HERO SECTION
   ================================================ */
.hero {
  padding: calc(var(--header-h) + 3rem) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.42rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
}

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

.hero-subtitle {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 48ch;
}

.hero-annotation {
  margin-bottom: 2rem;
  font-size: 1.55rem;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.hero-reassurance {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  opacity: 0.75;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-reassurance::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.hero-blob {
  position: absolute;
  pointer-events: none;
}

.hero-blob--1 {
  top: -30px;
  right: -50px;
  width: 320px;
  height: 320px;
  opacity: 0.22;
  animation: floatBlob 9s ease-in-out infinite;
}

.hero-blob--2 {
  bottom: 0px;
  left: -30px;
  width: 220px;
  height: 220px;
  opacity: 0.15;
  animation: floatBlob 13s ease-in-out infinite reverse;
}

.hero-illustration {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* ================================================
   8. EQUIPMENT CATEGORIES
   ================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem 1.75rem;
  transition: transform var(--ease-out), box-shadow var(--ease-out), border-color var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform var(--ease-out);
  transform-origin: left center;
}

.category-card:hover {
  transform: translateY(-7px) rotate(0.4deg);
  box-shadow: var(--shadow-hover);
  border-color: var(--border);
}

.category-card:hover::after { transform: scaleX(1); }
.category-card:hover .card-reveal { opacity: 1; transform: translateY(0); }

.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 1.45rem;
  color: var(--primary);
  border: 1px solid var(--border);
  transition: background var(--ease), color var(--ease);
}

.category-card:hover .category-icon {
  background: var(--secondary);
  color: var(--bg);
  border-color: var(--secondary);
}

.category-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.category-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.card-reveal {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity var(--ease), transform var(--ease);
  text-decoration: none;
}

.card-reveal::after {
  content: '→';
  transition: transform var(--ease);
}

.card-reveal:hover::after { transform: translateX(3px); }

/* ================================================
   9. HOW IT WORKS
   ================================================ */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.steps-connector {
  position: absolute;
  top: 42px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  border-top: 2px dashed var(--border);
  pointer-events: none;
}

.step-item {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  transition: transform var(--ease), box-shadow var(--ease);
}

.step-item:hover .step-num { transform: scale(1.1); box-shadow: var(--shadow-md); }

.step-item:nth-child(2) .step-num { background: var(--secondary); }
.step-item:nth-child(3) .step-num { background: var(--accent); color: var(--text); }

.step-item h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.step-item p  { font-size: 0.89rem; max-width: 26ch; margin: 0 auto; }

/* ================================================
   10. WHY RIFFCOVE
   ================================================ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  max-width: 880px;
  margin: 0 auto 3rem;
}

.advantage-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: box-shadow var(--ease), transform var(--ease);
  align-items: flex-start;
}

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

.advantage-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  color: var(--secondary);
  transition: background var(--ease), color var(--ease);
}

.advantage-card:hover .advantage-icon {
  background: var(--secondary);
  color: var(--bg);
  border-color: var(--secondary);
}

.advantage-card h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.advantage-card p  { font-size: 0.87rem; max-width: none; }

/* Stats strip */
.stats-strip {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 2.25rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  max-width: 860px;
  margin: 0 auto;
}

.stat { text-align: center; }

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.77rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ================================================
   11. ABOUT PREVIEW
   ================================================ */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-preview-content h2 { margin-bottom: 1.25rem; }
.about-preview-content p  { margin-bottom: 1.25rem; }

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: gap var(--ease), color var(--ease);
}

.about-link:hover { gap: 0.75rem; color: var(--primary); }

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================================
   12. TESTIMONIALS
   ================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card-alt);
  padding: 2rem 1.75rem;
  transition: transform var(--ease), box-shadow var(--ease);
}

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

.quote-glyph {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 1.1rem;
  display: block;
  opacity: 0.55;
}

.testimonial-text {
  font-size: 0.93rem;
  line-height: 1.72;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}

.author-avatar--terra { background: var(--secondary); }
.author-avatar--ocre  { background: var(--accent); color: var(--text); }

.author-name  { font-weight: 600; font-size: 0.9rem; color: var(--text); display: block; }
.author-role  { font-size: 0.78rem; color: var(--muted); display: block; }

/* ================================================
   13. LEAD FORM / QUOTE FORM
   ================================================ */
.form-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.form-section-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
}

.form-blob {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
}

.form-blob--1 { top: -60px; left: -60px; width: 400px; height: 400px; }
.form-blob--2 { bottom: -80px; right: -40px; width: 350px; height: 350px; }

.form-section-inner {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) 0;
}

.form-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.form-header h2 { color: var(--bg); }
.form-header h2::after { opacity: 0.6; }
.form-header .annotation { color: var(--accent); margin-bottom: 0.6rem; }

.quote-form {
  background: var(--surface);
  border-radius: 28px 32px 26px 30px;
  padding: 2.75rem 3rem;
  box-shadow: 0 20px 80px rgba(0,0,0,0.25);
  position: relative;
}

.form-brush {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  pointer-events: none;
}
.form-brush--top    { top: -10px; }
.form-brush--bottom { bottom: -10px; transform: translateX(-50%) scaleY(-1); }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.77rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.78rem 1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(196, 106, 63, 0.13);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--border); }

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C5A4E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-rgpd {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.form-rgpd input[type="checkbox"] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--secondary);
  cursor: pointer;
}

.form-rgpd label {
  font-size: 0.84rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  line-height: 1.55;
  font-weight: 400;
}

.form-rgpd label a { color: var(--secondary); text-decoration: underline; }

.form-submit-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 0.4rem;
}

.form-submit-wrap .btn { min-width: 240px; justify-content: center; }

/* Honeypot */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Inline messages */
.form-msg {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  grid-column: 1 / -1;
}
.form-msg.is-success {
  display: block;
  background: rgba(46, 58, 47, 0.09);
  color: var(--primary);
  border: 1px solid rgba(46, 58, 47, 0.22);
}
.form-msg.is-error {
  display: block;
  background: rgba(196, 106, 63, 0.09);
  color: var(--secondary);
  border: 1px solid rgba(196, 106, 63, 0.22);
}

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: var(--secondary);
}

.field-error {
  font-size: 0.76rem;
  color: var(--secondary);
  font-weight: 500;
}

/* ================================================
   14. PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  padding: calc(var(--header-h) + var(--space-xl)) 0 var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}

.page-hero .label-tag { display: block; margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 1rem; }

.page-hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 55ch;
  margin: 0 auto;
  line-height: 1.72;
}

.page-hero-blob {
  position: absolute;
  pointer-events: none;
}

/* ================================================
   15. EQUIPMENT CATALOGUE PAGE
   ================================================ */
.eq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: var(--space-3xl);
}

.eq-section:last-of-type { margin-bottom: 0; }

.eq-section--reverse { direction: rtl; }
.eq-section--reverse > * { direction: ltr; }

.eq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.eq-badge i { font-size: 0.9rem; }

.eq-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 1rem;
}

.eq-content p { margin-bottom: 1.25rem; }

.eq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.eq-tag {
  padding: 0.3rem 0.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.eq-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  min-height: 300px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.pricing-card--featured {
  background: var(--primary);
  border-color: var(--primary);
}

.pricing-card--featured h3,
.pricing-card--featured .pricing-meta { color: var(--bg); }
.pricing-card--featured p { color: rgba(244,239,230,0.65); }

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.pricing-mult {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.6rem;
}

.pricing-card--featured .pricing-mult { color: var(--accent); }

.pricing-meta {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-note {
  text-align: center;
  font-size: 0.83rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* ================================================
   16. FAQ
   ================================================ */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.6rem 0;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.faq-a {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ================================================
   17. PROCESS PAGE
   ================================================ */
.process-timeline {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 26px;
  bottom: 26px;
  width: 2px;
  border-left: 2px dashed var(--border);
}

.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.process-step:last-child { margin-bottom: 0; }

.process-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.process-step:nth-child(2) .process-num,
.process-step:nth-child(5) .process-num { background: var(--secondary); }
.process-step:nth-child(3) .process-num,
.process-step:nth-child(6) .process-num { background: var(--accent); color: var(--text); }

.process-body { padding-top: 0.4rem; }
.process-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.process-body p { font-size: 0.92rem; }

/* Info boxes */
.info-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem;
}

.info-box-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.info-box-title i { color: var(--secondary); }

.info-box ul { display: flex; flex-direction: column; gap: 0.6rem; }
.info-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.info-box ul li::before {
  content: '—';
  color: var(--secondary);
  flex-shrink: 0;
  font-weight: 600;
}

/* ================================================
   18. ABOUT PAGE
   ================================================ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: var(--space-3xl);
}

.about-story-content h2 { margin-bottom: 1.25rem; }
.about-story-content p  { margin-bottom: 1.25rem; }

.about-story-visual {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  max-width: 900px;
  margin: 0 auto;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: transform var(--ease), box-shadow var(--ease);
}

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

.value-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.value-card h3 { font-size: 1.1rem; margin-bottom: 0.55rem; }
.value-card p  { font-size: 0.89rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  padding: 2.25rem 1.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: transform var(--ease), box-shadow var(--ease);
}

.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.team-card:nth-child(2) .team-avatar { background: var(--secondary); }
.team-card:nth-child(3) .team-avatar { background: var(--accent); color: var(--text); }

.team-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.2rem; }

.team-role {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin-bottom: 0.85rem;
}

.team-bio { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* ================================================
   19. CONTACT PAGE
   ================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-title { font-size: 1.6rem; margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-detail-ico {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.77rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.contact-detail span,
.contact-detail a { font-size: 0.95rem; color: var(--text); line-height: 1.5; }
.contact-detail a:hover { color: var(--secondary); }

.contact-map-box {
  margin-top: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  text-align: center;
}

.contact-map-caption {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.contact-form-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 2.5rem;
}

.contact-form-box h3 { margin-bottom: 1.75rem; }

.contact-form .form-grid { grid-template-columns: 1fr 1fr; }

/* ================================================
   20. CTA SECTION
   ================================================ */
.cta-section {
  text-align: center;
  padding: var(--space-3xl) 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.cta-section .annotation { margin-bottom: 0.75rem; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p  { max-width: 50ch; margin: 0 auto 2.25rem; }

/* ================================================
   21. LEGAL PAGES
   ================================================ */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem var(--space-3xl);
}

.legal-body h2 {
  font-size: 1.45rem;
  margin-top: var(--space-xl);
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--border);
  color: var(--primary);
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-body p {
  margin-bottom: 1rem;
  font-size: 0.94rem;
  line-height: 1.78;
}

.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-body ul li {
  font-size: 0.94rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

.legal-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
}

.legal-info-card dl { display: grid; grid-template-columns: auto 1fr; gap: 0.4rem 1.5rem; }
.legal-info-card dt {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding-top: 0.1rem;
  white-space: nowrap;
}
.legal-info-card dd { font-size: 0.94rem; color: var(--text); }

/* ================================================
   22. FOOTER
   ================================================ */
.site-footer {
  background: var(--primary);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: var(--space-xl);
}

.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bg);
  letter-spacing: -0.03em;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(244,239,230,0.55);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 32ch;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}

.footer-contact-row i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.footer-contact-row span,
.footer-contact-row a {
  font-size: 0.88rem;
  color: rgba(244,239,230,0.68);
  line-height: 1.5;
  transition: color var(--ease);
}

.footer-contact-row a:hover { color: var(--accent); }

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(244,239,230,0.4);
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(244,239,230,0.65);
  transition: color var(--ease), padding-left var(--ease);
}

.footer-nav a:hover {
  color: var(--bg);
  padding-left: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(244,239,230,0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(244,239,230,0.38);
}

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

.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(244,239,230,0.38);
  transition: color var(--ease);
}

.footer-legal-links a:hover { color: rgba(244,239,230,0.7); }

/* ================================================
   23. SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.28s; }
.reveal-d4 { transition-delay: 0.38s; }
.reveal-d5 { transition-delay: 0.48s; }
.reveal-d6 { transition-delay: 0.58s; }

/* ================================================
   24. KEYFRAMES
   ================================================ */
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  30%  { transform: translate(10px, -14px) rotate(4deg); }
  65%  { transform: translate(-7px, 9px) rotate(-3deg); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero staggered entrance */
.hero-content > * {
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-badge        { animation-delay: 0.05s; }
.hero h1           { animation-delay: 0.15s; }
.hero-subtitle     { animation-delay: 0.25s; }
.hero-annotation   { animation-delay: 0.32s; }
.hero-cta-group    { animation-delay: 0.4s; }

/* ================================================
   24B. PHOTO ELEMENTS
   ================================================ */

/* Hero atmospheric background photo */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.07;
  filter: sepia(0.3) saturate(0.5);
  transform: scale(1.02);
}

.hero-grid { position: relative; z-index: 1; }

/* About page — photo frame card */
.about-photo-frame {
  border-radius: 22px 28px 20px 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 420px;
  margin: 0 auto;
}

.about-photo-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-photo-frame:hover img {
  transform: scale(1.03);
}

/* Equipment visual — photo fills the box */
.eq-visual {
  overflow: hidden;
}

.eq-visual img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.eq-visual:hover img {
  transform: scale(1.04);
}

/* ================================================
   25. RESPONSIVE — 1200px
   ================================================ */
@media (max-width: 1200px) {
  :root { --container: 980px; }
  .footer-grid { gap: 2.5rem; }
}

/* ================================================
   26. RESPONSIVE — 992px
   ================================================ */
@media (max-width: 992px) {
  :root {
    --space-3xl: 5.5rem;
    --space-xl: 3rem;
  }

  .hero-grid { gap: 2.5rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: 1fr; max-width: 580px; margin-left: auto; margin-right: auto; }
  .about-preview-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story-visual { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .info-boxes { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .eq-section { grid-template-columns: 1fr; gap: 2rem; }
  .eq-section--reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
  .values-grid { grid-template-columns: 1fr; max-width: 580px; }
  .steps-connector { display: none; }
}

/* ================================================
   27. RESPONSIVE — 768px
   ================================================ */
@media (max-width: 768px) {
  :root {
    --header-h: 68px;
    --space-3xl: 4rem;
    --space-xl: 2.5rem;
  }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; top: var(--header-h); }

  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-cta-group { align-items: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-visual { min-height: 260px; }

  .steps-wrapper { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; }
  .values-grid { max-width: 100%; }

  .quote-form { padding: 2rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form .form-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }

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

  .stats-strip { gap: 2rem; }

  .about-preview-grid { grid-template-columns: 1fr; }
  .legal-info-card dl { grid-template-columns: 1fr; gap: 0.1rem; }
  .legal-info-card dd { margin-bottom: 0.75rem; }
}

/* ================================================
   28. RESPONSIVE — 576px
   ================================================ */
@media (max-width: 576px) {
  .container { padding: 0 1.25rem; }
  .container--narrow { padding: 0 1.25rem; }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.65rem; }

  .hero { padding-top: calc(68px + 2rem); }

  .pricing-grid { grid-template-columns: 1fr; }
  .footer-legal-links { gap: 1rem; }
  .page-hero { padding-top: calc(68px + 2.5rem); }

  .quote-form { border-radius: 18px; }
  .contact-form-box { padding: 1.75rem; }
  .legal-body { padding: 0 1.25rem var(--space-2xl); }
}
