:root {
  --olive: #6f6920;
  --olive-deep: #5f5918;
  --olive-soft: #8a8440;
  --sand: #d6cebe;
  --linen: #f5f0e7;
  --cream: #f8f4ee;
  --earth: #6a3215;
  --earth-soft: #8c583d;
  --text: #4f321f;
  --muted: #7b6658;
  --white: #ffffff;
  --line: rgba(106, 50, 21, 0.14);
  --shadow: 0 30px 80px rgba(67, 42, 20, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 206, 190, .65), transparent 32%),
    radial-gradient(circle at bottom right, rgba(111, 105, 32, .12), transparent 24%),
    linear-gradient(180deg, #f7f2ea 0%, #f6efe5 46%, #f5f1e8 100%);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto
}

.section {
  padding: 96px 0;
  position: relative
}

.section.compact {
  padding-top: 56px
}

.section-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(106, 50, 21, .12);
  border-radius: 999px;
  color: var(--earth);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.eyebrow::before {
  content: "✦";
  font-size: 12px;
  opacity: .9
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
  line-height: .96;
  letter-spacing: -.02em
}

h1 {
  font-size: clamp(56px, 10vw, 108px);
  font-weight: 600
}

h2 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 600
}

h3 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600
}

p {
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
  font-size: 16px
}

.subtitle {
  font-size: 18px;
  max-width: 720px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: .28s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-soft) 100%);
  color: var(--linen);
  box-shadow: 0 18px 40px rgba(111, 105, 32, .22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(111, 105, 32, .28)
}

.btn-secondary {
  border-color: rgba(106, 50, 21, .18);
  color: var(--earth);
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: #fff;
  transform: translateY(-2px)
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition: .28s ease;
  padding: 18px 0;
}

.site-header.scrolled {
  padding: 12px 0
}

.site-header.scrolled .nav-shell {
  background: rgba(247, 242, 234, .78);
  border-color: rgba(106, 50, 21, .12);
  box-shadow: 0 18px 50px rgba(68, 44, 24, .08)
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px 14px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  backdrop-filter: blur(14px);
  transition: .28s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  /* background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .3), transparent 40%), linear-gradient(145deg, var(--olive), var(--olive-deep)); */
  color: #efe6d7;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(111, 105, 32, .22);
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0
}

.brand-text strong {
  font-size: 15px;
  color: var(--earth);
  letter-spacing: .16em;
  text-transform: uppercase
}

.brand-text span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px
}

.menu a {
  font-size: 14px;
  font-weight: 700;
  color: var(--earth-soft);
  position: relative
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--earth);
  transition: .25s ease
}

.menu a:hover::after {
  width: 100%
}

.menu-actions {
  display: flex;
  gap: 12px;
  align-items: center
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .8);
  color: var(--earth);
  font-size: 24px;
  box-shadow: var(--shadow)
}

.mobile-menu {
  display: none;
  margin-top: 14px;
  padding: 12px;
  border-radius: 28px;
  background: rgba(248, 244, 238, .95);
  border: 1px solid rgba(106, 50, 21, .12);
  box-shadow: var(--shadow)
}

.mobile-menu a {
  display: block;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(106, 50, 21, .08);
  font-weight: 700;
  color: var(--earth-soft)
}

.mobile-menu a:last-child {
  border-bottom: none
}

.mobile-menu.show {
  display: block
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: rgba(214, 206, 190, .58);
  top: 110px;
  left: -120px
}

.hero::after {
  width: 520px;
  height: 520px;
  background: rgba(111, 105, 32, .08);
  right: -120px;
  bottom: -80px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 2
}

.hero-copy p {
  font-size: 18px;
  max-width: 650px;
  margin: 22px 0 30px
}

.hero-copy .title-accent {
  color: var(--olive)
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.pill {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(106, 50, 21, .1);
  font-size: 13px;
  font-weight: 700;
  color: var(--earth-soft);
  backdrop-filter: blur(10px)
}

.hero-card {
  position: relative;
  padding: 28px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, .42)),
    radial-gradient(circle at top left, rgba(214, 206, 190, .8), transparent 36%),
    linear-gradient(145deg, #f2e8da, #ece2d2 60%, #e8dcc8);
  border: 1px solid rgba(106, 50, 21, .08);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 640px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(111, 105, 32, .16), rgba(111, 105, 32, .02) 40%, rgba(106, 50, 21, .04)),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .35), transparent 30%);
  opacity: .75;
}

.hero-portrait {
  position: absolute;
  inset: 90px 40px 70px 40px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 240, 220, .6), transparent 35%),
    radial-gradient(circle at 25% 35%, rgba(255, 255, 255, .4), transparent 24%),
    linear-gradient(180deg, #d8cab6 0%, #c2af98 28%, #8f6f5f 70%, #745348 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-portrait::before {
  content: "";
  width: 72%;
  height: 84%;
  border-radius: 160px 160px 24px 24px;
  background:
    radial-gradient(circle at 48% 16%, rgba(255, 220, 178, .28), transparent 16%),
    radial-gradient(circle at 50% 24%, rgba(255, 237, 211, .18), transparent 20%),
    linear-gradient(180deg, rgba(58, 31, 26, .92) 10%, rgba(74, 37, 28, .9) 45%, rgba(95, 58, 46, .88) 70%, rgba(58, 31, 26, .92));
  opacity: .9;
  filter: blur(.2px);
  box-shadow: inset 0 0 120px rgba(255, 214, 177, .12);
  clip-path: polygon(38% 0%, 62% 0%, 72% 6%, 79% 15%, 83% 27%, 86% 44%, 89% 59%, 89% 73%, 86% 100%, 14% 100%, 11% 73%, 11% 59%, 14% 44%, 17% 27%, 22% 15%, 29% 6%);
}

.hero-glass {
  position: absolute;
  inset: auto 22px 22px auto;
  width: min(86%, 360px);
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 248, 242, .58);
  border: 1px solid rgba(106, 50, 21, .1);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 30px rgba(76, 52, 30, .08)
}

.hero-glass .mini-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--earth-soft);
  margin-bottom: 10px;
  font-weight: 800
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px
}

.stat {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(106, 50, 21, .08)
}

.stat strong {
  display: block;
  font-size: 22px;
  color: var(--earth);
  margin-bottom: 6px
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5
}

.signature-quote {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 172px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .48);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(106, 50, 21, .08);
  color: var(--earth);
  font-size: 14px;
  line-height: 1.6;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(106, 50, 21, .08);
  box-shadow: 0 18px 50px rgba(69, 44, 26, .06);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 206, 190, .4), transparent 70%);
  transform: translate(-34%, -34%);
  pointer-events: none;
}

.card h3 {
  margin-bottom: 10px
}

.icon-chip {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(145deg, rgba(111, 105, 32, .14), rgba(106, 50, 21, .1));
  border: 1px solid rgba(106, 50, 21, .08);
  color: var(--earth);
  font-size: 20px;
}

.story-panel {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(111, 105, 32, .95), rgba(111, 105, 32, .78));
  color: #f4eede;
  box-shadow: 0 28px 70px rgba(92, 86, 25, .26);
  position: relative;
  overflow: hidden;
}

.story-panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  right: -80px;
  bottom: -70px;
}

.story-panel p {
  color: rgba(255, 247, 234, .84)
}

.service-card,
.experience-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px
}

.service-tag {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--olive-deep);
  background: rgba(111, 105, 32, .1);
  margin-bottom: 10px;
}

.benefit {
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(214, 206, 190, .38);
  color: var(--earth);
  font-weight: 700;
  font-size: 14px
}

.price {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.price span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(106, 50, 21, .08);
  font-size: 13px;
  color: var(--earth-soft);
  font-weight: 700
}

.journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.journey::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, rgba(106, 50, 21, .08), rgba(111, 105, 32, .22), rgba(106, 50, 21, .08));
}

.journey-step {
  padding-top: 0
}

.journey-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(145deg, #fff, #eee5d7);
  border: 1px solid rgba(106, 50, 21, .08);
  box-shadow: 0 18px 40px rgba(80, 54, 32, .08);
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: var(--earth);
}

.manifesto {
  padding: 44px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(106, 50, 21, .95), rgba(138, 84, 61, .88));
  color: #fff6ec;
  box-shadow: 0 26px 70px rgba(106, 50, 21, .22);
  position: relative;
  overflow: hidden;
}

.manifesto::before,
.manifesto::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06)
}

.manifesto::before {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -50px
}

.manifesto::after {
  width: 160px;
  height: 160px;
  bottom: -30px;
  left: -20px
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center
}

.manifesto blockquote {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.02em
}

.manifesto-list {
  display: grid;
  gap: 14px
}

.manifesto-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  font-weight: 600;
  line-height: 1.7
}

.faq {
  display: grid;
  gap: 16px
}

.faq-item {
  padding: 0;
  overflow: hidden
}

.faq-button {
  width: 100%;
  border: none;
  background: transparent;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--earth);
  cursor: pointer;
}

.faq-button strong {
  font-size: 18px
}

.faq-symbol {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(111, 105, 32, .1);
  font-size: 22px;
  flex: 0 0 auto;
  transition: .28s ease
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease
}

.faq-answer p {
  padding: 0 28px 26px
}

.faq-item.active .faq-symbol {
  transform: rotate(45deg)
}

.faq-item.active .faq-answer {
  max-height: 220px
}

.cta-band {
  padding: 42px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, .14), transparent 24%),
    linear-gradient(135deg, var(--olive-deep), var(--olive) 58%, #8d8747);
  color: #f7f1e7;
  box-shadow: 0 30px 80px rgba(111, 105, 32, .26);
  overflow: hidden;
  position: relative;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -80px;
  bottom: -120px;
  background: rgba(255, 255, 255, .08)
}

.cta-band p {
  color: rgba(247, 241, 231, .82);
  max-width: 760px
}

.footer {
  padding: 32px 0 48px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px
}

.footer .card {
  height: 100%
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px
}

.footer li,
.footer p {
  font-size: 15px
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(106, 50, 21, .12);
  color: var(--muted);
  font-size: 14px
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 20px 50px rgba(37, 211, 102, .35);
  font-weight: 800;
}

.floating-whatsapp .bubble {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .16)
}

.reveal {
  /* opacity: 0;
  transform: translateY(28px); */
  transition: opacity .7s ease, transform .7s ease
}

.reveal.show {
  opacity: 1;
  transform: translateY(0)
}

@media (max-width: 1120px) {

  .menu,
  .menu-actions {
    display: none
  }

  .menu-toggle {
    display: grid;
    place-items: center
  }

  .section-head,
  .hero-grid,
  .grid-3,
  .grid-4,
  .grid-2,
  .footer-grid,
  .manifesto-grid {
    grid-template-columns: 1fr
  }

  .journey {
    grid-template-columns: 1fr 1fr
  }

  .journey::before {
    display: none
  }

  .hero-card {
    min-height: 560px
  }
}

@media (max-width: 720px) {
  .section {
    padding: 76px 0
  }

  .hero {
    padding-top: 134px
  }

  .brand-text span {
    display: none
  }

  .hero-card {
    min-height: 500px;
    padding: 22px
  }

  .hero-portrait {
    inset: 84px 22px 92px
  }

  .signature-quote {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    margin-bottom: 14px
  }

  .hero-glass {
    left: 18px;
    right: 18px;
    width: auto
  }

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

  .journey {
    grid-template-columns: 1fr
  }

  .cta-band,
  .manifesto,
  .story-panel,
  .card {
    padding: 24px
  }

  .faq-button {
    padding: 20px
  }

  .faq-answer p {
    padding: 0 20px 20px
  }

  .floating-whatsapp span:last-child {
    display: none
  }
}


.gallery-grid {
  gap: 18px;
}

.grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.gallery-card {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.gallery-group+.gallery-group {
  border-top: 1px solid rgba(106, 50, 21, .08);
  padding-top: 28px;
}

#gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

#gallery-modal.show {
  display: block;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 8, 0.72);
  backdrop-filter: blur(6px);
}

.gallery-modal-content {
  position: relative;
  width: min(92vw, 980px);
  max-height: 90vh;
  margin: 4vh auto;
  background: rgba(255, 248, 242, .98);
  border-radius: 24px;
  padding: 18px 18px 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
  overflow: hidden;
}

.gallery-modal-content img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: 18px;
  background: #f3ece3;
}

.gallery-modal-content p {
  margin-top: 12px;
  text-align: center;
  color: var(--earth);
  font-weight: 700;
}

.gallery-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--earth);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

@media (max-width: 720px) {
  .gallery-card img {
    height: 240px;
  }
}