/* ============================================================
   REEL CUTTER — design.css  |  https://reel-cutter.com
   Editorial Utility — Red × White × Warm Gray
   ============================================================ */

/* ── Web Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg:          #f7f4f0;
  --bg2:         #eee9e3;
  --surface:     #ffffff;
  --surface2:    #faf8f5;
  --border:      #ddd8d0;
  --border-dark: #c5bdb3;
  --red:         #e8200c;
  --red-dark:    #c41a09;
  --red-light:   #fdecea;
  --red-mid:     #f5c0bb;
  --text:        #1a1714;
  --text-muted:  #6b6560;
  --text-faint:  #a09890;
  --white:       #ffffff;

  --font-mono:    'DM Mono', 'Courier New', monospace;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:    4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --max-w:     1100px;
  --transition: 0.18s ease;

  --shadow-sm: 0 1px 3px rgba(26,23,20,0.08);
  --shadow-md: 0 4px 16px rgba(26,23,20,0.10);
  --shadow-lg: 0 8px 32px rgba(26,23,20,0.12);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

/* ── Base ──────────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Site Header ───────────────────────────────────────────── */
.site-header {
  width: 100%;
  max-width: var(--max-w);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 24px;
  height: 64px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1.5px solid var(--border);
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-header .brand:hover { opacity: 0.85; }

.logo-icon {
  width: 28px;
  height: 28px;
  color: var(--red);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.site-header .logo {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text);
  line-height: 1;
  text-transform: uppercase;
}

.site-header .tagline {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-faint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 0;
  align-items: center;
}

.site-nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-muted);
  padding: 8px 16px;
  border-left: 1px solid var(--border);
  transition: all var(--transition);
}

.site-nav a:first-child { border-left: none; }

.site-nav a:hover,
.site-nav a.active {
  color: var(--red);
  background: var(--red-light);
}

/* ── Main ──────────────────────────────────────────────────── */
main {
  width: 100%;
  max-width: var(--max-w);
  flex: 1;
  padding: 0 24px 60px;
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero-section {
  padding: 64px 0 48px;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 48px;
}

.hero-content { max-width: 680px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -1px;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
  letter-spacing: 0.3px;
  max-width: 480px;
}

.hero-features {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: transparent;
  border: 1px solid var(--border);
  border-right: none;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.feature-pill:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.feature-pill:last-child { border-right: 1px solid var(--border); border-radius: 0 var(--radius) var(--radius) 0; }
.feature-pill svg { color: var(--red); }
.feature-pill:hover { background: var(--red-light); color: var(--red); border-color: var(--red-mid); }

/* ── Card ──────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ── Section Label ─────────────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  flex-shrink: 0;
}

/* ── Drop Zone ─────────────────────────────────────────────── */
#dropzone {
  border: 2px dashed var(--border-dark);
  border-radius: var(--radius-md);
  padding: 56px 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg);
  position: relative;
}

#dropzone:hover,
#dropzone.drag-over {
  border-color: var(--red);
  background: var(--red-light);
}

#dropzone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.dropzone-content { pointer-events: none; }
.icon { margin-bottom: 16px; display: flex; justify-content: center; }
.icon-video { color: var(--red); }

.dropzone-main {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.dropzone-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.dropzone-sub strong { color: var(--red); font-weight: 600; }

.dropzone-formats {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── File Info ─────────────────────────────────────────────── */
#file-info {
  display: none;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  letter-spacing: 0.5px;
}

#file-info span { color: var(--red); font-weight: 500; }

/* ── Video Preview ─────────────────────────────────────────── */
.video-preview-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: transparent;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
}

#video-preview {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  background: transparent;
  max-height: 70vh;
}

.preview-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248,245,242,0.4);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.video-preview-wrap:hover .preview-overlay { opacity: 1; }

.play-overlay-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  pointer-events: all;
  color: white;
}

.play-overlay-btn:hover {
  background: var(--red-dark);
  transform: scale(1.08);
}

.play-overlay-btn svg { margin-left: 3px; }

#video-watermark-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: none;
  font-family: var(--font-mono);
  font-weight: bold;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  padding: 20px;
  z-index: 5;
}

#video-watermark-overlay.active { display: flex; }

/* ── Timeline ──────────────────────────────────────────────── */
.timeline-section { margin-top: 4px; }

.timeline-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}

#timeline-wrap {
  position: relative;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: crosshair;
  border: 1.5px solid var(--border);
  background: var(--bg);
  margin-bottom: 16px;
}

#timeline-canvas { display: block; width: 100%; height: 100%; }

#timeline-overlay { position: absolute; inset: 0; pointer-events: none; }

#trim-left-shade,
#trim-right-shade {
  position: absolute;
  top: 0;
  height: 100%;
  background: rgba(26,23,20,0.18);
  pointer-events: none;
}

#trim-region {
  position: absolute;
  top: 0;
  height: 100%;
  border: 2px solid var(--red);
  pointer-events: none;
  border-radius: 2px;
}

.handle {
  position: absolute;
  top: 0;
  width: 18px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  pointer-events: all;
  z-index: 10;
  background: var(--red);
}

#handle-left { left: -9px; border-radius: var(--radius) 0 0 var(--radius); }
#handle-right { right: -9px; border-radius: 0 var(--radius) var(--radius) 0; }

.handle-bar {
  width: 2px;
  height: 24px;
  background: rgba(255,255,255,0.6);
  border-radius: 1px;
}

#playhead {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--text);
  opacity: 0.5;
  pointer-events: none;
  display: none;
}

.timecodes {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.tc-label { color: var(--text-faint); margin-right: 4px; }
.tc-value { color: var(--text); font-weight: 500; }
.tc-value.region { color: var(--red); }

/* ── Controls / Buttons ────────────────────────────────────── */
.controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

button {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

button:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
}

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

button.primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

button.primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
}

.export-btn {
  margin-top: 24px;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 2px;
}

/* ── Watermark Controls ────────────────────────────────────── */
.watermark-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.toggle-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-dark);
  border-radius: 24px;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-slider { background: var(--red); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-row label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--red);
  background: var(--surface);
}

.form-row input[type="range"] {
  width: 100%;
  accent-color: var(--red);
}

.range-value {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--red);
  font-weight: 500;
}

.form-row-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.watermark-preview { margin-top: 8px; }

.preview-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
  font-weight: 500;
}

.watermark-demo {
  position: relative;
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #1a1714 0%, #2d2825 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  border: 1.5px solid var(--border);
}

#watermark-demo-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  transition: all var(--transition);
}

/* ── Format / Quality Selector ─────────────────────────────── */
.format-selector,
.quality-selector {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 20px;
  align-items: center;
}

.quality-selector {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.fmt-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-faint);
  text-transform: uppercase;
  font-weight: 500;
  margin-right: 14px;
}

.fmt-btn,
.quality-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-right: none;
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  border-radius: 0;
}

.fmt-btn:first-of-type,
.quality-btn:first-of-type { border-radius: var(--radius-md) 0 0 var(--radius-md); }

.fmt-btn:last-of-type,
.quality-btn:last-of-type {
  border-right: 1.5px solid var(--border);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.fmt-btn:hover,
.quality-btn:hover { background: var(--red-light); color: var(--red); border-color: var(--red-mid); }

.fmt-btn.selected,
.quality-btn.selected {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  z-index: 1;
  position: relative;
}

.fmt-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 12px;
  letter-spacing: 0.3px;
}

/* ── Export Progress ───────────────────────────────────────── */
#export-progress {
  display: none;
  margin-top: 20px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

#export-status {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.progress-bar-wrap {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--red);
  width: 0%;
  transition: width 0.3s;
  border-radius: 2px;
}

/* ── How It Works ──────────────────────────────────────────── */
.how-it-works {
  padding: 56px 0 40px;
  border-top: 1.5px solid var(--border);
  margin-top: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  text-align: left;
  margin-bottom: 36px;
  color: var(--text);
  letter-spacing: -0.5px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step-card {
  background: var(--surface);
  padding: 28px 24px;
  transition: background var(--transition);
  border-right: 1.5px solid var(--border);
}

.step-card:last-child { border-right: none; }
.step-card:hover { background: var(--red-light); }

.step-icon {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── Features Section ──────────────────────────────────────── */
.features-section { padding: 40px 0 60px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 28px;
  transition: background var(--transition);
}

.feature-card:hover { background: var(--red-light); }

.feature-icon { font-size: 28px; margin-bottom: 12px; display: block; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 24px 24px;
  border-top: 1.5px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  margin-bottom: 24px;
  align-items: start;
}

.footer-logo {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-desc {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.7;
  max-width: 360px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-faint);
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--red); }

.footer-bottom {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.5px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom a { color: var(--red); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-header { padding: 0 16px; height: 56px; }
  main { padding: 0 16px 40px; }
  .card { padding: 24px 20px; }
  .hero-section { padding: 40px 0 32px; }
  .form-row-group { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { text-align: left; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { border-right: none; border-bottom: 1.5px solid var(--border); }
  .step-card:last-child { border-bottom: none; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .timecodes { gap: 12px; }
}

/* ── Accessibility ─────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

::selection { background: var(--red); color: #fff; }

/* ── Contact Form ──────────────────────────────────────────── */
#contact-form input,
#contact-form select,
#contact-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 14px;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
  display: block;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
  border-color: var(--red);
  background: var(--surface);
}

#contact-form textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
