/* ============================================================
   Yuca Intl LLC — Site Stylesheet
   Light theme · Coral accent · Headless navigation
   ============================================================ */

:root {
  --cream: #FBF7F2;
  --cream-deep: #F3EDE3;
  --cream-soft: #FFFFFF;
  --ink: #1F1B16;
  --ink-soft: #4A4238;
  --ink-muted: #6E645A;
  --coral: #FF6F61;
  --coral-deep: #E85D4F;
  --coral-soft: #FF8E7A;
  --coral-tint: #FFF0EC;
  --sand: #E9DFD1;
  --line: #E4DACA;
  --forest: #2A2520;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ---------- Brand badge (headless nav) ---------- */
.brand-badge {
  position: fixed;
  top: 18px;
  left: 22px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.02rem;
  color: var(--ink);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  box-shadow: 0 8px 24px rgba(31, 27, 22, 0.08);
}

.brand-badge .brand-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px var(--coral-tint);
}

.brand-badge:hover {
  border-color: var(--coral);
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  padding: 118px 24px 96px;
  background: var(--cream);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--coral-tint);
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--cream-deep);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}

.hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 54px;
}

.hero-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 3px;
}

.hero-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.25s ease;
}

.hero-nav a:hover {
  color: var(--coral-deep);
}

.hero-nav a:hover::after {
  width: 100%;
}

.hero-headline {
  position: relative;
  z-index: 3;
  max-width: 820px;
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: -26px;
}

.hero-headline .accent {
  color: var(--coral-deep);
}

.hero-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 18px;
}

/* Offset grid */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-top: 44px;
}

.hero-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: 0 14px 34px rgba(31, 27, 22, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(31, 27, 22, 0.1);
}

.hero-card .card-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--coral-deep);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.hero-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.hero-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.hc-1 { grid-column: 1 / span 4; grid-row: 1; transform: translateY(0); }
.hc-2 { grid-column: 5 / span 4; grid-row: 1; transform: translateY(30px); }
.hc-3 { grid-column: 9 / span 4; grid-row: 1; transform: translateY(0); }
.hc-4 { grid-column: 2 / span 4; grid-row: 2; transform: translateY(-14px); }
.hc-5 { grid-column: 6 / span 4; grid-row: 2; transform: translateY(20px); }
.hc-6 { grid-column: 10 / span 3; grid-row: 2; transform: translateY(-4px); }

.hero-card.accent-card {
  background: var(--coral);
  border-color: var(--coral);
  color: #FFFFFF;
}

.hero-card.accent-card h3,
.hero-card.accent-card p,
.hero-card.accent-card .card-num {
  color: #FFFFFF;
}

.hero-card.accent-card .card-num {
  color: #FFF4F0;
}

/* ---------- Statement / manifesto ---------- */
.statement-section {
  padding: 110px 24px;
  background: var(--forest);
}

.statement-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.statement-section .statement-label {
  color: var(--coral-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 26px;
}

.statement-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  max-width: 900px;
}

.statement-section h2 .accent {
  color: var(--coral-soft);
}

.statement-section p {
  color: #CFC8BE;
  max-width: 760px;
  margin-top: 28px;
  font-size: 1.05rem;
}

/* ---------- Services (numbered list) ---------- */
.services-section {
  padding: 110px 24px;
  background: var(--cream);
}

.services-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.section-head .eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-head p {
  max-width: 380px;
  color: var(--ink-muted);
  font-size: 1rem;
}

.service-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 120px 1fr 240px;
  gap: 28px;
  padding: 34px 8px;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.service-item:hover {
  background: var(--cream-deep);
  padding-left: 20px;
}

.service-item .big-num {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--coral);
  line-height: 1;
}

.service-item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.service-item p {
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.service-item .service-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral-deep);
  align-self: center;
}

/* ---------- About (alternating rows) ---------- */
.about-section {
  padding: 110px 24px;
  background: var(--cream-deep);
}

.about-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}

.about-row:last-child {
  margin-bottom: 0;
}

.about-row.reverse .about-media {
  order: 2;
}

.about-media {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  background: var(--coral-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}

.about-media .media-block {
  width: 78%;
  height: 220px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  box-shadow: 0 24px 48px rgba(232, 93, 79, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 20px;
}

.about-row .about-body .eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 14px;
}

.about-body h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.about-body p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-points {
  list-style: none;
  margin-top: 20px;
}

.about-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--coral);
}

/* ---------- Process timeline ---------- */
.process-section {
  padding: 110px 24px;
  background: var(--cream);
}

.process-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.process-inner .section-head {
  margin-bottom: 70px;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--coral-soft);
}

.timeline-step {
  position: relative;
  margin-bottom: 52px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--coral);
  border: 4px solid var(--coral-tint);
}

.timeline-step .step-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 8px;
}

.timeline-step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.timeline-step p {
  color: var(--ink-muted);
  max-width: 720px;
}

/* ---------- Comparison table ---------- */
.compare-section {
  padding: 110px 24px;
  background: var(--cream-deep);
}

.compare-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table thead th {
  background: var(--forest);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table td:first-child {
  font-weight: 700;
  color: var(--ink);
}

.compare-table td {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.compare-table .check {
  color: var(--coral-deep);
  font-weight: 800;
}

.compare-table .x {
  color: var(--ink-muted);
}

/* ---------- Contact ---------- */
.contact-section {
  padding: 110px 24px 120px;
  background: var(--forest);
}

.contact-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-section .eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin-bottom: 14px;
}

.contact-section h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 22px;
}

.contact-section .contact-intro {
  color: #CFC8BE;
  font-size: 1.02rem;
  max-width: 460px;
  margin-bottom: 34px;
}

.contact-detail {
  display: block;
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 14px;
  font-weight: 600;
}

.contact-detail span {
  color: #CFC8BE;
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-form {
  background: var(--cream-soft);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  margin-bottom: 20px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px var(--coral-tint);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: #FFFFFF;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
}

.form-note {
  margin-top: 16px;
  font-size: 0.84rem;
  color: var(--ink-muted);
}

/* ---------- Footer ---------- */
.footer-section {
  background: var(--forest);
  padding: 80px 24px 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-watermark {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #34302A;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.footer-brand .brand-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
  margin-right: 8px;
}

.footer-top p {
  color: #A79E92;
  font-size: 0.94rem;
  max-width: 300px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: #A79E92;
  font-size: 0.94rem;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--coral-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #8C8277;
  font-size: 0.85rem;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 24px;
}

.footer-bottom .legal-links a {
  color: #A79E92;
  font-size: 0.85rem;
}

.footer-bottom .legal-links a:hover {
  color: var(--coral-soft);
}

/* ---------- Scroll reveal ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Counter ---------- */
.counter {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--coral-deep);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hc-1, .hc-2, .hc-3, .hc-4, .hc-5, .hc-6 {
    grid-column: auto;
    grid-row: auto;
    transform: none;
  }

  .service-item {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }

  .service-item .service-tag {
    grid-column: 2;
  }

  .about-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-row.reverse .about-media {
    order: 0;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .hero-section {
    padding: 96px 18px 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .brand-badge {
    top: 14px;
    left: 14px;
    padding: 8px 14px;
    font-size: 0.92rem;
  }

  .hero-nav {
    gap: 18px;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-item .big-num {
    font-size: 2rem;
  }

  .service-item .service-tag {
    grid-column: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 26px;
  }
}
