:root {
  --ink: #142a28;
  --ink-soft: #3d524f;
  --foam: #f3f7f5;
  --mist: #e4eeea;
  --teal: #0f6b63;
  --teal-deep: #0a4f4a;
  --amber: #c47a3a;
  --white: #ffffff;
  --header-h: 4rem;
  --page-pad: clamp(1rem, 4vw, 3rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  line-height: 1.6;
  background:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(15, 107, 99, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(196, 122, 58, 0.07), transparent 50%),
    linear-gradient(180deg, #f7faf8 0%, var(--foam) 45%, #eef5f2 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  overflow-wrap: break-word;
}

p {
  margin: 0;
  overflow-wrap: break-word;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding:
    env(safe-area-inset-top, 0)
    max(var(--page-pad), env(safe-area-inset-right, 0))
    0
    max(var(--page-pad), env(safe-area-inset-left, 0));
  background: transparent;
  color: var(--white);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: rgba(243, 247, 245, 0.92);
  color: var(--ink);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(20, 42, 40, 0.06);
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  z-index: 2;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: hero-zoom 18s var(--ease) forwards;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 40, 38, 0.4) 0%, rgba(10, 40, 38, 0.18) 35%, rgba(8, 28, 26, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 28, 26, 0.5) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding:
    calc(var(--header-h) + env(safe-area-inset-top, 0px) + 1.5rem)
    var(--page-pad)
    clamp(2.5rem, 7vw, 5.5rem);
  animation: rise 1s var(--ease) both;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 10vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-size: clamp(1.2rem, 3.5vw, 1.85rem);
  font-weight: 500;
  max-width: 20ch;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-lead {
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  font-weight: 300;
  max-width: 36ch;
  opacity: 0.9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.85rem 1.4rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
}

.btn-primary:hover {
  background: #b36b2f;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.meet {
  padding: clamp(2rem, 5vw, 3.75rem) var(--page-pad);
}

.meet-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.meet h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.bio {
  display: grid;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  font-weight: 300;
  max-width: 52ch;
}

.meet-portrait {
  margin: 0;
  position: relative;
  width: min(100%, 420px);
  justify-self: center;
  animation: rise 1s 0.15s var(--ease) both;
}

.meet-portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
}

.testimonials {
  padding: clamp(2rem, 5vw, 3.75rem) var(--page-pad);
  overflow-x: clip;
}

.testimonials-intro {
  max-width: 640px;
  margin: 0 auto clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
  padding-inline: 0.25rem;
}

.testimonials-intro h2 {
  font-size: clamp(1.75rem, 5.5vw, 2.85rem);
}

.testimonial-carousel {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  outline: none;
}

.testimonial-viewport {
  position: relative;
  width: 100%;
  min-width: 0;
}

.testimonial-slide {
  display: none;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  justify-items: center;
  width: 100%;
  min-width: 0;
}

.testimonial-slide.is-active {
  display: grid;
  animation: rise 0.55s var(--ease) both;
}

.testimonial-photo {
  margin: 0;
  width: min(100%, 22rem);
  min-width: 0;
}

.testimonial-photo img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}

.testimonial-quote {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-inline: clamp(0, 1vw, 0.5rem);
}

.testimonial-quote p {
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 3.4vw, 1.35rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  max-width: 52ch;
  width: 100%;
  text-align: center;
  overflow-wrap: break-word;
  hyphens: auto;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: clamp(1.15rem, 3vw, 1.75rem);
  width: 100%;
  max-width: 100%;
}

.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(2.6rem, 8vw, 2.85rem);
  height: clamp(2.6rem, 8vw, 2.85rem);
  padding: 0;
  border: 1px solid rgba(20, 42, 40, 0.2);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.carousel-btn:hover {
  background: var(--white);
  border-color: var(--teal);
  transform: translateY(-1px);
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

.carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  min-width: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 42, 40, 0.22);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.carousel-dot.is-active {
  background: var(--teal);
  transform: scale(1.15);
}

.pricing {
  padding: clamp(2rem, 5vw, 3.75rem) var(--page-pad);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.pricing-copy {
  min-width: 0;
  width: 100%;
}

.pricing h2 {
  font-size: clamp(1.85rem, 6vw, 3.1rem);
  margin-bottom: 0.85rem;
}

.pricing-lead {
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 40ch;
  margin-bottom: 1.5rem;
}

.pricing-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  width: 100%;
  max-width: 420px;
}

.pricing-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(20, 42, 40, 0.12);
}

.pricing-list li:last-child {
  border-bottom: 1px solid rgba(20, 42, 40, 0.12);
}

.pricing-list h3 {
  font-size: clamp(1.15rem, 3.5vw, 1.4rem);
  margin-bottom: 0.2rem;
}

.pricing-list p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 0.92rem;
}

.price {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 1.35rem);
  font-weight: 600;
  color: var(--teal-deep);
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
}

.price-usd {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-soft);
}

.pricing-note {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 0.95rem;
  max-width: 42ch;
  overflow-wrap: anywhere;
}

.pricing-note a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}

.pricing-media {
  margin: 0;
  width: 100%;
  min-width: 0;
}

.pricing-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}

.experiences {
  padding: clamp(1.75rem, 4.5vw, 3.5rem) var(--page-pad);
  background:
    linear-gradient(180deg, transparent, rgba(15, 107, 99, 0.05) 20%, rgba(15, 107, 99, 0.07) 80%, transparent);
}

.experiences-intro {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.experiences-intro h2 {
  font-size: clamp(1.75rem, 5vw, 2.85rem);
  margin-bottom: 0.75rem;
}

.experiences-intro p:last-child {
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 42ch;
  margin-inline: auto;
}

.experience-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
  display: grid;
  gap: 0;
}

.experience-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(0.85rem, 2.5vw, 1.25rem);
  align-items: start;
  padding: clamp(1.1rem, 3vw, 1.5rem) 0;
  border-top: 1px solid rgba(20, 42, 40, 0.12);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.experience-list li.is-visible {
  opacity: 1;
  transform: none;
}

.experience-list li:last-child {
  border-bottom: 1px solid rgba(20, 42, 40, 0.12);
}

.exp-num {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--teal);
  padding-top: 0.15rem;
}

.experience-list h3 {
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  margin-bottom: 0.35rem;
}

.experience-list p {
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 48ch;
}

.promise {
  padding: clamp(1.5rem, 4vw, 3rem) var(--page-pad);
}

.promise-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(1.75rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(15, 107, 99, 0.92), rgba(10, 79, 74, 0.96)),
    url("https://images.unsplash.com/photo-1518548419970-58e3b4079ab2?auto=format&fit=crop&w=1600&q=70");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  color: var(--white);
  border-radius: 2px;
  text-align: center;
}

.promise-panel h2 {
  font-size: clamp(1.55rem, 5vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.promise-panel p {
  max-width: 42ch;
  margin: 0 auto;
  font-weight: 300;
  opacity: 0.92;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
}

.contact {
  padding:
    clamp(2rem, 5vw, 3.75rem)
    var(--page-pad)
    clamp(2.75rem, 6vw, 4.5rem);
}

.contact-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

.contact h2 {
  font-size: clamp(1.75rem, 5vw, 2.85rem);
  margin-bottom: 0.85rem;
}

.contact-copy {
  width: 100%;
}

.contact-copy p:last-of-type {
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 42ch;
  margin-inline: auto;
}

.contact-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.15rem;
  width: 100%;
}

.contact-action .btn {
  width: min(100%, 280px);
}

.whatsapp-number {
  font-size: clamp(0.9rem, 2.2vw, 0.95rem);
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  align-items: baseline;
  justify-content: space-between;
  padding:
    1.5rem
    max(var(--page-pad), env(safe-area-inset-right, 0))
    calc(1.5rem + env(safe-area-inset-bottom, 0px))
    max(var(--page-pad), env(safe-area-inset-left, 0));
  border-top: 1px solid rgba(20, 42, 40, 0.1);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 600;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Tablet and up: side-by-side Meet section */
@media (min-width: 768px) {
  :root {
    --header-h: 4.5rem;
  }

  .meet-layout {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .meet-portrait {
    width: 100%;
    justify-self: stretch;
    order: 0;
  }

  .pricing-layout {
    grid-template-columns: 1fr 1.05fr;
  }

  .testimonial-carousel {
    max-width: 980px;
  }

  .testimonial-photo {
    width: min(100%, 28rem);
  }

  .testimonial-quote p {
    max-width: 56ch;
  }

  .testimonial-controls {
    justify-content: center;
    gap: 1.1rem;
  }

  .pricing-list li {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.25rem;
  }

  .price {
    text-align: right;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
  }

  .pricing-media img {
    aspect-ratio: 4 / 3;
  }

  .contact-action .btn {
    width: auto;
  }
}

/* Phone / small tablet: mobile nav */
@media (max-width: 860px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: calc(var(--header-h) + env(safe-area-inset-top, 0px)) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem var(--page-pad) 1.25rem;
    background: rgba(243, 247, 245, 0.98);
    color: var(--ink);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    box-shadow: 0 12px 24px rgba(20, 42, 40, 0.08);
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(20, 42, 40, 0.08);
    font-size: 1rem;
  }

  .nav-cta {
    border: 0;
    padding-left: 0;
    margin-top: 0.15rem;
  }

  .meet-portrait {
    order: -1;
  }

  .pricing-media {
    order: -1;
  }

  .hero h1,
  .hero-lead {
    max-width: none;
  }
}

/* Narrow phones */
@media (max-width: 480px) {
  .hero {
    min-height: 92svh;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(10, 40, 38, 0.45) 0%, rgba(10, 40, 38, 0.2) 40%, rgba(8, 28, 26, 0.82) 100%);
  }

  .pricing-list {
    max-width: none;
  }

  .pricing-media img {
    aspect-ratio: 5 / 3;
  }

  .testimonial-photo {
    width: min(100%, 18.5rem);
  }

  .carousel-dot {
    width: 0.65rem;
    height: 0.65rem;
    min-width: 0.65rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
}

/* Large desktops */
@media (min-width: 1200px) {
  .hero-content {
    width: min(780px, 100%);
  }
}

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

  .hero-media img,
  .hero-content,
  .meet-portrait,
  .experience-list li {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }

  .btn:hover {
    transform: none;
  }

  .testimonial-slide.is-active {
    animation: none;
  }
}
