:root {
  --bg: #f7f3ea;
  --surface: #ffffff;
  --surface-soft: #f5f0e6;
  --surface-deep: #efe7d8;
  --text: #1f2624;
  --muted: #66716b;
  --line: #ddd6c7;
  --brand: #0f4a43;
  --brand-2: #1d665c;
  --brand-soft: #e7f0ed;
  --accent: #c79b3b;
  --accent-soft: #f6ebcd;
  --success: #1d7a56;
  --shadow: 0 16px 40px rgba(15, 74, 67, 0.08);
  --shadow-soft: 0 10px 24px rgba(15, 74, 67, 0.05);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(199, 155, 59, 0.08), transparent 22%),
    linear-gradient(180deg, #fbf8f1 0%, #f6f1e6 100%);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: linear-gradient(180deg, #faf6ee 0%, #f3ecdf 100%);
}

.center {
  text-align: center;
}

.mt-28 {
  margin-top: 28px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 241, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 74, 67, 0.08);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo h1 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
}

.logo p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.logo-badge {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  flex: 0 0 auto;
  overflow: hidden;
}

.logo-badge--image {
  background: #ffffff;
  border: 1px solid rgba(15, 74, 67, 0.1);
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(15, 74, 67, 0.08);
  color: var(--brand);
}

/* Hero */
.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: #7b5b19;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  border: 1px solid rgba(199, 155, 59, 0.22);
}

.hero-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.96rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(15, 74, 67, 0.16);
}

.btn.primary:hover {
  box-shadow: 0 18px 36px rgba(15, 74, 67, 0.22);
}

.btn.secondary {
  background: #fff;
  color: var(--brand);
  border-color: rgba(15, 74, 67, 0.14);
}

.btn.secondary:hover {
  background: rgba(15, 74, 67, 0.04);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.92rem;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.hero-media {
  position: relative;
}

.hero-media__frame {
  background: #fff;
  border-radius: 28px;
  padding: 10px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 74, 67, 0.08);
  aspect-ratio: 20 / 21;
}

.hero-media__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.hero-floating {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(92%, 340px);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(15, 74, 67, 0.08);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 14px 16px;
  backdrop-filter: blur(12px);
}

.hero-floating__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.hero-floating__row + .hero-floating__row {
  border-top: 1px dashed var(--line);
}

.hero-floating__row strong {
  font-size: 0.94rem;
}

.hero-floating__row span {
  color: var(--muted);
  font-size: 0.92rem;
  text-align: left;
}

/* Strip */
.strip-section {
  padding: 18px 0 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.strip-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

/* Section heading */
.section-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-head span {
  display: inline-block;
  color: #7b5b19;
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
  border: 1px solid rgba(199, 155, 59, 0.2);
}

.section-head h3 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.28;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* Cards & grids */
.feature-grid,
.channel-grid,
.contact-grid,
.flow-grid,
.gallery-grid {
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.channel-grid,
.contact-grid {
  grid-template-columns: repeat(2, 1fr);
}

.flow-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.channel-card,
.contact-card,
.flow-card,
.gallery-card,
.cta-banner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.channel-card,
.contact-card,
.flow-card {
  padding: 24px;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 16px;
  border: 1px solid rgba(15, 74, 67, 0.08);
}

.feature-card h4,
.channel-card h4,
.contact-card h4,
.flow-card h4,
.cta-banner h3 {
  margin: 0 0 10px;
  line-height: 1.35;
}

.feature-card p,
.channel-card p,
.contact-card p,
.flow-card p,
.cta-banner p {
  margin: 0;
  color: var(--muted);
}

.channel-card a,
.contact-card a,
.social-links a {
  color: var(--brand);
  font-weight: 700;
}

.channel-card a:hover,
.contact-card a:hover,
.social-links a:hover {
  text-decoration: underline;
}

.channel-card--primary {
  background: linear-gradient(180deg, #fbfdfc 0%, #eef5f2 100%);
}

.contact-static {
  display: inline-block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 14px;
}

.flow-card {
  text-align: center;
}

.flow-card strong {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: var(--accent-soft);
  color: #7b5b19;
  border: 1px solid rgba(199, 155, 59, 0.2);
  font-size: 1.05rem;
}

/* Gallery */
.gallery-card {
  overflow: hidden;
  padding: 0;
}

.gallery-card__media {
  aspect-ratio: 20 / 17;
  overflow: hidden;
  background: #f2f4f3;
}

.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-card:hover .gallery-card__media img {
  transform: scale(1.04);
}

.gallery-card__body {
  padding: 18px 18px 20px;
}

.gallery-card__body h4 {
  margin: 0 0 8px;
}

.gallery-card__body p {
  margin: 0;
  color: var(--muted);
}

/* CTA banner */
.cta-banner {
  padding: 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #fffdf9 0%, #f5efe3 100%);
}

.cta-banner__content span {
  display: inline-block;
  color: #7b5b19;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

/* WhatsApp floating */
.whatsapp-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #187a55 0%, #1f8b61 100%);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 18px 36px rgba(24, 122, 85, 0.24);
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(24, 122, 85, 0.32);
}

.whatsapp-float__icon {
  font-size: 1.15rem;
  line-height: 1;
}

.whatsapp-float__text {
  font-size: 0.94rem;
}

/* Footer */
.footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(15, 74, 67, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a {
  color: var(--brand);
  font-weight: 700;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid,
  .cta-banner,
  .gallery-grid,
  .flow-grid,
  .feature-grid,
  .channel-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-banner__actions {
    justify-content: flex-start;
  }

  .gallery-grid,
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 0;
  }

  .nav-links {
    justify-content: center;
  }

  .strip-grid,
  .feature-grid,
  .channel-grid,
  .contact-grid,
  .flow-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-copy h2 {
    font-size: 2rem;
  }

  .hero-media__frame {
    aspect-ratio: 4 / 3.5;
  }

  .hero-floating {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .whatsapp-float {
    left: 12px;
    right: 12px;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .section {
    padding: 56px 0;
  }

  .logo-badge {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .logo h1 {
    font-size: 1rem;
  }

  .logo p,
  .nav-links a {
    font-size: 0.88rem;
  }

  .hero-copy h2,
  .section-head h3 {
    line-height: 1.3;
  }

  .feature-card,
  .channel-card,
  .contact-card,
  .flow-card,
  .cta-banner {
    padding: 20px;
  }

  .hero-actions,
  .cta-banner__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-badges span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}