/* Hard Surface Maintenance - Brand Styles
   Brand palette derived from logo:
   - Primary green:  #22c55e
   - Deep green:     #16a34a
   - Navy text:      #0f172a
   - Slate body:     #334155
   - Concrete bg:    #f5f5f4
   - White:          #ffffff
*/

:root {
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-darker: #15803d;
  --navy: #0f172a;
  --slate: #334155;
  --slate-light: #64748b;
  --bg: #ffffff;
  --bg-alt: #f5f5f4;
  --bg-dark: #0f172a;
  --border: #e5e7eb;
  --max: 1200px;
  --radius: 12px;
  --shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green-darker); }

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.logo-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;             /* match height of brand-text + tagline */
  padding: 0 0.55rem;
  background: var(--bg-alt);       /* subtle light grey block */
  border: 2px solid var(--border); /* clean grey border */
  border-radius: 6px;
  font-family: "Arial Black", "Helvetica Neue", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 900;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--navy);              /* M */
}

.logo-monogram .hs {
  color: var(--green-dark);        /* H and S */
}

.logo .logo-mark {
  color: var(--green);
}

.logo-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--slate-light);
  letter-spacing: 0;
  margin-top: -2px;
}

@media (max-width: 480px) {
  .logo-monogram { font-size: 1.6rem; padding: 0 0.45rem; }
  .logo { font-size: 1.2rem; gap: 0.5rem; }
}

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

.nav-links a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

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

.nav-cta {
  background: var(--green);
  color: white !important;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-dark); }

/* ---------- Dropdown menu ---------- */
.has-dropdown { position: relative; }

.has-dropdown > a::after {
  content: " ▾";
  font-size: 0.7em;
  margin-left: 0.2rem;
  opacity: 0.7;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 0.5rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}

.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.has-dropdown.open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li { display: block; }
.dropdown a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}
.dropdown a:hover,
.dropdown a:focus {
  background: var(--bg-alt);
  color: var(--green-dark);
}
.dropdown .dropdown-sep {
  border-top: 1px solid var(--border);
  margin: 0.4rem 0;
}

@media (max-width: 768px) {
  .has-dropdown > a::after { content: ""; }
  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-alt);
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
    width: 100%;
  }
  .dropdown a { padding: 0.5rem 0.75rem; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.2s;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform 0.25s;
  }
  .nav-links.open { transform: translateY(0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--green);
  color: white;
}
.btn-primary:hover {
  background: var(--green-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: white;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-ghost:hover {
  background: white;
  color: var(--navy);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero h1 { color: white; }

.hero-eyebrow {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin: 1.25rem 0 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  color: var(--navy);
}

.hero-badge h3 { color: var(--navy); }
.hero-badge ul { list-style: none; padding: 0; }
.hero-badge li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-badge li::before {
  content: "✓";
  display: inline-flex;
  width: 20px; height: 20px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 3rem 0 4rem; }
}

/* ---------- Sections ---------- */
section { padding: 5rem 0; }
@media (max-width: 768px) { section { padding: 3.5rem 0; } }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--slate);
}

.bg-alt { background: var(--bg-alt); }

/* ---------- Service grid (cards) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p { color: var(--slate); margin-bottom: 0; }

.service-card ul {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}
.service-card ul li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}
.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.service-card .learn-more {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.95rem;
}
.service-card .learn-more::after {
  content: " →";
  transition: transform 0.2s;
  display: inline-block;
}
.service-card:hover .learn-more::after {
  transform: translateX(4px);
}

/* ---------- Why-us ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 1rem;
}
.feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--green);
  color: white;
  padding: 3.5rem 0;
  text-align: center;
}
.cta-band h2 { color: white; }
.cta-band p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; }
.cta-band .btn-secondary {
  background: white;
  color: var(--green-darker);
  border-color: white;
  margin-top: 1.5rem;
}
.cta-band .btn-secondary:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ---------- Contact / Forms ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.contact-info {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
}
.contact-info h3 { margin-bottom: 1.25rem; }
.contact-info-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-info-item .icon {
  width: 38px; height: 38px;
  background: var(--green);
  color: white;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-item .icon svg { width: 18px; height: 18px; }
.contact-info-item strong { display: block; color: var(--navy); }
.contact-info-item a { color: var(--slate); }

.form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-row { margin-bottom: 1.25rem; }
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .form-grid-2 { grid-template-columns: 1fr; }
}

label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  color: var(--navy);
  transition: border 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}
textarea { resize: vertical; min-height: 120px; }

.form .btn-primary { width: 100%; padding: 1rem; }

.form-note {
  font-size: 0.85rem;
  color: var(--slate-light);
  text-align: center;
  margin-top: 1rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: #cbd5e1;
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 { color: white; margin-bottom: 1rem; font-size: 1rem; }
.site-footer p { color: #94a3b8; font-size: 0.95rem; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: var(--green); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: 0.5rem; font-size: 0.95rem; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--green); }

/* ---------- Page header (sub-pages) ---------- */
.page-head {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.page-head h1 { color: white; margin-bottom: 0.75rem; }
.page-head p { color: #cbd5e1; font-size: 1.15rem; max-width: 640px; margin: 0 auto; }

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.stat {
  text-align: center;
  padding: 1.25rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
  display: block;
}
.stat-label { font-size: 0.85rem; color: var(--slate-light); }

.areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 600px) {
  .areas { grid-template-columns: 1fr; }
}
.area-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
}
.area-card:hover { border-color: var(--green); }
.area-card .area-tag {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.area-card h4 { color: var(--navy); margin-bottom: 0.5rem; }
.area-card p { color: var(--slate); margin: 0; font-size: 0.95rem; }

/* ---------- Service detail page ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
}

.service-detail h2 { margin-top: 2rem; }
.service-detail h2:first-child { margin-top: 0; }
.service-detail p { font-size: 1.05rem; }

.service-detail .checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.service-detail .checklist li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--slate);
}
.service-detail .checklist li:last-child { border-bottom: none; }
.service-detail .checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 22px; height: 22px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.detail-aside {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.detail-aside h3 { margin-bottom: 1rem; }
.detail-aside .btn { width: 100%; margin-top: 0.5rem; }
.detail-aside .price-line {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--slate);
  font-size: 0.95rem;
}
.detail-aside .price-line:last-of-type { border-bottom: none; }
.detail-aside .price-line strong { color: var(--navy); }

@media (max-width: 768px) {
  .detail-aside { position: static; }
}

/* Tag-style sub-service chips */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}
.tag {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green-darker);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Steps numbered list inside detail */
.steps {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  padding: 1rem 0 1rem 3rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0.85rem;
  width: 32px; height: 32px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.steps li strong { color: var(--navy); display: block; margin-bottom: 0.15rem; }

/* ---------- Photo blocks ---------- */
.photo-section {
  padding: 2rem 0 0.5rem;
}
.photo-section + .photo-section { padding-top: 0.5rem; }

.photo-grid {
  display: grid;
  gap: 1.25rem;
}
.photo-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.photo-grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
}
.photo-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .photo-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .photo-grid--2x2,
  .photo-grid--4 {
    grid-template-columns: 1fr;
  }
}
.photo-grid--1 {
  grid-template-columns: 1fr;
}

.photo {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  background: linear-gradient(135deg, #f5f5f4 0%, #e7e7e6 100%);
  border: 1px dashed #d6d3d1;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo--featured {
  aspect-ratio: 16 / 7;   /* wider - sits well below the hero */
}

.photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo .placeholder-label {
  padding: 1.25rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--slate-light);
  font-style: italic;
  max-width: 85%;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.photo .placeholder-label strong {
  display: block;
  color: var(--navy);
  font-style: normal;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* Subtle diagonal pattern overlay when no image is present */
.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 14px,
    rgba(15, 23, 42, 0.025) 14px,
    rgba(15, 23, 42, 0.025) 15px
  );
  pointer-events: none;
}
.photo:has(img)::before,
.photo:has(img) .placeholder-label {
  display: none;
}

/* =========================================================
   Carousel - featured 3-photo slideshow
   ========================================================= */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-slide {
  flex: 0 0 80%;
  margin: 0;
  aspect-ratio: 16 / 7;
  position: relative;
  background: linear-gradient(135deg, #f5f5f4 0%, #e7e7e6 100%);
  border: 1px dashed #d6d3d1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0.4;
  transition: opacity 0.5s ease;
  border-radius: var(--radius);
}
.carousel-slide.active {
  opacity: 1;
}

.carousel-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 14px,
    rgba(15, 23, 42, 0.025) 14px,
    rgba(15, 23, 42, 0.025) 15px
  );
  pointer-events: none;
}

.carousel-slide:has(img)::before,
.carousel-slide:has(img) .placeholder-label {
  display: none;
}

.carousel-slide .placeholder-label {
  padding: 1.25rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--slate-light);
  font-style: italic;
  max-width: 85%;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.carousel-slide .placeholder-label strong {
  display: block;
  color: var(--navy);
  font-style: normal;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* Prev/Next arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 3;
}

.carousel-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow--prev {
  left: 1rem;
}

.carousel-arrow--next {
  right: 1rem;
}

/* Dot indicators */
.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.25);
}

.carousel-dot.active {
  background: var(--green);
  transform: scale(1.25);
}

.carousel-dot:hover {
  background: #fff;
}

@media (max-width: 600px) {
  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  .carousel-arrow--prev { left: 0.5rem; }
  .carousel-arrow--next { right: 0.5rem; }
  .carousel-slide {
    aspect-ratio: 4 / 3;
  }
}

/* =========================================================
   Scroll indicator - "more below" hint pinned to the right
   ========================================================= */
.scroll-indicator {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  font-family: inherit;
}

.scroll-indicator.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-indicator:hover {
  background: #fff;
  color: var(--green-dark);
}

.scroll-indicator-mouse {
  display: inline-block;
  width: 16px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 9px;
  position: relative;
  flex-shrink: 0;
}

.scroll-indicator-mouse::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 2px;
  height: 5px;
  background: currentColor;
  border-radius: 1px;
  transform: translateX(-50%);
  animation: scroll-wheel 1.6s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 7px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

.scroll-indicator-arrow {
  display: inline-block;
  font-size: 0.95rem;
  line-height: 1;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

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

@media (max-width: 600px) {
  .scroll-indicator {
    right: 0.75rem;
    bottom: 1rem;
    padding: 0.45rem 0.8rem 0.45rem 0.55rem;
    font-size: 0.62rem;
    gap: 0.4rem;
  }
  .scroll-indicator-mouse {
    width: 13px;
    height: 20px;
  }
}
