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

:root {
  --red:       #c0392b;
  --red-dark:  #922b21;
  --charcoal:  #1a1a1a;
  --offwhite:  #f5f0eb;
  --light:     #ffffff;
  --muted:     #555555;
  --border:    #ddd;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  background: var(--offwhite);
  color: var(--charcoal);
  line-height: 1.7;
}

/* ===== NAVIGATION ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .brand {
  color: var(--light);
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul a {
  color: #ccc;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--light);
}

/* ===== HERO ===== */
#hero {
  background: var(--red-dark);
  color: var(--light);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(0,0,0,0.04) 30px,
    rgba(0,0,0,0.04) 60px
  );
}

.hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--light);
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.4rem;
}

#hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

#hero h1 em {
  font-style: italic;
  color: #f7b4ae;
}

#hero p.lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: inline-block;
  background: var(--light);
  color: var(--red-dark);
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.hero-cta:hover {
  background: var(--offwhite);
  color: var(--red-dark);
}

/* ===== SECTIONS SHARED ===== */
section {
  padding: 4rem 2rem;
}

section:nth-child(even) {
  background: var(--light);
}

.section-inner {
  max-width: 820px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--charcoal);
}

p + p {
  margin-top: 1rem;
}

/* ===== CONCERNS ===== */
.concerns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.2rem;
}

.concern-card {
  background: var(--offwhite);
  border-left: 4px solid var(--red);
  padding: 1.2rem 1.4rem;
  border-radius: 2px;
}

.concern-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}

.concern-card p {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== MEDIA GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  background: #ddd;
  aspect-ratio: 4/3;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  overflow: hidden;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== CALL TO ACTION ===== */
#action {
  background: var(--charcoal);
  color: var(--light);
  text-align: center;
}

#action h2 {
  color: var(--light);
}

#action p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.85;
}

.btn-primary {
  background: var(--red);
  color: var(--light);
}

.btn-outline {
  background: transparent;
  color: var(--light);
  border: 2px solid rgba(255,255,255,0.5);
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  color: #777;
  text-align: center;
  padding: 1.5rem 2rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
}

/* ===== BEFORE / AFTER REVEAL ===== */
.ba-wrap {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 2rem auto 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
  user-select: none;
  touch-action: none;
  background: #111;
}

.ba-wrap .ba-before {
  display: block;
  width: 100%;
  height: auto;
}

.ba-after-clip {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;       /* driven by JS */
  overflow: hidden;
}

.ba-after-clip img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;      /* overridden to full wrap width by JS */
  max-width: none;
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;        /* driven by JS */
  transform: translateX(-50%);
  width: 3px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.55);
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #444;
  font-weight: bold;
}

.ba-label {
  position: absolute;
  top: 14px;
  background: rgba(0,0,0,0.62);
  color: #fff;
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  pointer-events: none;
}

.ba-label-before { left: 14px; }
.ba-label-after  { right: 14px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  nav ul { gap: 1rem; }
  #hero { padding: 3.5rem 1.2rem 3rem; }
  section { padding: 3rem 1.2rem; }
}
