:root {
  --coral: #ff5a2d;
  --coral-deep: #e6441a;
  --mango: #ffb703;
  --emerald: #0b9b6b;
  --rose: #e63946;
  --ink: #1a1410;
  --muted: #6b5e54;
  --cream: #fff8f0;
  --cream-2: #fff3e6;
  --white: #ffffff;
  --night: #2b211c;
  --border: #e8d9c8;
  --shadow: 0 18px 50px rgba(26, 20, 16, 0.1);
  --radius: 22px;
  --sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --max: 1120px;
  --pad: clamp(1rem, 3vw, 1.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 8% -8%, rgba(255, 90, 45, 0.16), transparent 55%),
    radial-gradient(800px 380px at 100% 0%, rgba(11, 155, 107, 0.12), transparent 50%),
    radial-gradient(700px 360px at 50% 40%, rgba(255, 183, 3, 0.08), transparent 60%),
    var(--cream);
  line-height: 1.55;
  font-size: 1rem;
  min-height: 100dvh;
  overflow-x: hidden;
}

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

a {
  color: var(--coral-deep);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--night);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* —— Top bar —— */
.top {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 240, 0.86);
  border-bottom: 1px solid rgba(232, 217, 200, 0.85);
}

.top-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  height: clamp(42px, 9vw, 56px);
  width: auto;
  object-fit: contain;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.loc {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0b6b49;
  background: #e5f7ef;
  border: 1px solid #a7e4c8;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  white-space: nowrap;
}

/* —— Buttons —— */
.btn {
  appearance: none;
  border: none;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  position: relative;
  background: linear-gradient(135deg, var(--coral), #ff7a45);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(255, 90, 45, 0.28);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(255, 90, 45, 0.34);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn.lg {
  padding: 0.85rem 1.45rem;
  font-size: 1rem;
}

.text-link {
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--mango);
  padding-bottom: 0.1rem;
}

.text-link:hover {
  color: var(--coral-deep);
}

/* —— Hero —— */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 2.5rem) var(--pad) 1rem;
  display: grid;
  gap: 1.4rem;
  align-items: center;
  min-width: 0;
}

@media (min-width: 860px) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    padding-top: 2.75rem;
    padding-bottom: 1.5rem;
  }
}

.kicker {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-deep);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.15rem, 6.5vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.sub {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  max-width: 34rem;
}

.sub strong {
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.15rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  border-radius: calc(var(--radius) + 4px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-glow {
  position: absolute;
  inset: auto -8% -12% auto;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.45), transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(8px);
}

/* —— Sections —— */
.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 1rem;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

/* —— Carousel —— */
.experience {
  padding: 1.5rem 0 0.5rem;
}

.carousel {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 0.5rem;
  min-width: 0;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82%, 1fr);
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.35rem;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

@media (min-width: 720px) {
  .carousel-track {
    grid-auto-columns: calc(50% - 0.45rem);
  }
}

@media (min-width: 1000px) {
  .carousel-track {
    grid-auto-columns: calc(33.333% - 0.6rem);
  }
}

.slide {
  margin: 0;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 20, 16, 0.06);
  min-width: 0;
}

.slide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f0e6da;
}

.slide figcaption {
  padding: 0.8rem 0.95rem 0.95rem;
}

.slide figcaption strong {
  display: block;
  font-size: 1rem;
}

.slide figcaption span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.15rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 0 0.25rem;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.nav-btn:hover {
  border-color: var(--coral);
  color: var(--coral-deep);
}

.dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: #d9c7b4;
  cursor: pointer;
}

.dots button[aria-current="true"] {
  width: 22px;
  background: var(--coral);
}

/* —— Pillars —— */
.pillars {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem var(--pad) 0.5rem;
}

.pillar-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 760px) {
  .pillar-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.15rem 1.2rem;
  box-shadow: 0 10px 28px rgba(26, 20, 16, 0.05);
  min-width: 0;
}

.pillar:nth-child(1) {
  background: linear-gradient(160deg, #fff 55%, rgba(255, 90, 45, 0.08));
}
.pillar:nth-child(2) {
  background: linear-gradient(160deg, #fff 55%, rgba(255, 183, 3, 0.12));
}
.pillar:nth-child(3) {
  background: linear-gradient(160deg, #fff 55%, rgba(11, 155, 107, 0.1));
}

.p-icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: rgba(255, 90, 45, 0.12);
  color: var(--coral-deep);
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.pillar h3 {
  margin: 0 0 0.35rem;
  font-size: 1.12rem;
  font-family: var(--display);
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* —— How —— */
.how {
  padding: 2rem 0 0.5rem;
}

.steps {
  list-style: none;
  margin: 0 auto;
  padding: 0 var(--pad);
  max-width: var(--max);
  display: grid;
  gap: 0.7rem;
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  min-width: 0;
}

.steps .n {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), #ff8a55);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 0.92rem;
  flex-shrink: 0;
}

.steps strong {
  display: block;
  margin-bottom: 0.15rem;
}

.steps span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* —— Trust —— */
.trust {
  max-width: 46rem;
  margin: 2rem auto 0;
  padding: 0 var(--pad);
}

.trust p {
  margin: 0;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 90, 45, 0.1), rgba(255, 183, 3, 0.14) 50%, rgba(11, 155, 107, 0.1));
  border: 1px solid var(--border);
}

/* —— Closing —— */
.closing {
  max-width: 40rem;
  margin: 2.5rem auto 1rem;
  padding: 0 var(--pad);
  text-align: center;
}

.closing-logo {
  width: min(220px, 55vw);
  margin: 0 auto 0.85rem;
}

.closing h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.closing p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

/* —— Footer —— */
.foot {
  margin-top: 2rem;
  background: var(--night);
  color: #f4ebe3;
  padding: 1.5rem var(--pad) calc(1.5rem + env(safe-area-inset-bottom));
}

.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.foot-brand img {
  height: 44px;
  width: auto;
  /* lighten mark slightly on dark */
  filter: brightness(1.08);
}

.foot .loc {
  background: rgba(11, 155, 107, 0.18);
  border-color: rgba(167, 228, 200, 0.35);
  color: #9ef0c9;
}

.foot-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  align-items: center;
  color: rgba(244, 235, 227, 0.72);
  font-size: 0.9rem;
}

.foot-meta a {
  color: #ffd28a;
  text-decoration: none;
  font-weight: 700;
}

.foot-meta a:hover {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .carousel-track {
    scroll-behavior: auto;
  }
}
