/* Reset & basics */
:root {
  --bg: #edf7ef;
  --surface: #ffffff;
  --text: #0e2f24;
  --muted: #4f6c60;
  --border: #d7e8dd;
  --primary: #0f4f3d;
  --primary-soft: #e4f7ea;
  --accent: #56bd8f;
  --accent-strong: #1f7a5b;
  --hero-start: #071d16;
  --hero-end: #0f4f3d;
  --badge-bg: #d7f1de;
  --badge-text: #0a432f;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo,
.contact-logo {
  display: block;
  max-width: 110px;
  height: auto;
}

.contact-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.card-label {
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 0;
}

.contact-logo {
  margin-left: auto;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.subtext {
  font-size: 0.95rem;
  color: var(--muted);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  background: var(--primary);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-end) 100%);
  color: #f8fafc;
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 2rem;
  align-items: start;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.05;
  margin: 1rem 0;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.hero-copy p {
  max-width: 38rem;
  margin-bottom: 1.8rem;
  color: rgba(248, 250, 252, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.hero-image--mirror {
  transform: scaleX(-1);
}

.hero-image-caption {
  display: none;
}

.cta-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
}

.cta-button {
  background: var(--accent);
  color: var(--hero-start);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.18);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.hero-list li {
  padding-left: 1.5rem;
  position: relative;
  color: rgba(248, 250, 252, 0.88);
}

.hero-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.hero-card {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  color: var(--text);
}

.card-text {
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.card-text strong {
  font-size: 1.1rem;
}

.card-note {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.trust-badge {
  display: inline-flex;
  padding: 0.65rem 0.9rem;
  color: var(--badge-text);
  background: var(--badge-bg);
  border-radius: 999px;
  font-weight: 700;
}

.section {
  padding: 3rem 0;
}

.cards-section {
  padding-top: 2rem;
}

/* Gallery */
.gallery-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0 1.5rem;
}

.gallery-title {
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.gallery-layout {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
}

.gallery-thumb {
  height: 80px;
  width: 106px;
  object-fit: contain;
  background: var(--bg);
  border-radius: 0.5rem;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}

.gallery-thumb--active {
  opacity: 1;
  border-color: var(--accent);
}

.gallery-thumb:hover {
  opacity: 0.8;
}

.gallery-main-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.gallery-main-img {
  max-height: 420px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 1rem;
  transition: opacity 0.2s ease;
}

.gallery-arrow {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.gallery-arrow:hover {
  background: var(--accent-strong);
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
}

.card h2 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.card ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.card li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
}

.card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.split-section {
  background: var(--surface);
}

.split-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-grid h2 {
  margin-bottom: 1.25rem;
}

.split-grid ol,
.split-grid p {
  color: var(--muted);
}

.split-grid ol {
  list-style-position: inside;
}

.split-grid ol li {
  margin-bottom: 1rem;
  padding-left: 0.75rem;
}

.contact-section {
  padding-bottom: 4rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 0.9fr;
}

.contact-box {
  background: linear-gradient(180deg, var(--primary), #0b402f);
  color: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.contact-cta {
  font-size: 1.1rem;
  line-height: 1.5;
}

.footer-inner {
  text-align: center;
  padding: 2rem 0;
  color: #4f6c60;
}

footer {
  background: #e9f4ea;
}

@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-button,
  .secondary-button,
  .header-phone {
    width: 100%;
  }

  .hero-copy p,
  .card-text,
  .split-grid p,
  .contact-cta {
    font-size: 0.98rem;
  }
}
