:root {
  --bg: #f3ede3;
  --surface: rgba(255, 251, 246, 0.74);
  --surface-strong: rgba(255, 250, 243, 0.92);
  --text: #34281f;
  --muted: #776758;
  --line: rgba(86, 66, 42, 0.12);
  --gold: #d2a138;
  --gold-strong: #b58322;
  --shadow: 0 24px 80px rgba(69, 48, 24, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(210, 161, 56, 0.16), transparent 26%),
    linear-gradient(180deg, #f8f2e9 0%, #eee4d6 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.ambient-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-left {
  top: -6rem;
  left: -6rem;
  background: rgba(210, 161, 56, 0.34);
}

.ambient-glow-right {
  right: -6rem;
  bottom: -8rem;
  background: rgba(163, 124, 67, 0.22);
}

.topbar,
main,
.footer,
.floating-whatsapp,
.qualification-layout {
  position: relative;
  z-index: 1;
}

.topbar {
  width: var(--container);
  margin: 0 auto;
  padding: 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand img {
  width: 168px;
  filter: brightness(0) saturate(100%);
}

.topbar-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.topbar-links a {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.btn {
  border: 1px solid transparent;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: #fffaf2;
  box-shadow: 0 18px 32px rgba(181, 131, 34, 0.22);
}

.btn-outline {
  border-color: rgba(52, 40, 31, 0.12);
  background: rgba(255, 255, 255, 0.42);
}

.btn-ghost {
  border-color: rgba(52, 40, 31, 0.12);
  color: var(--text);
  background: transparent;
}

.hidden {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.73rem;
  font-weight: 800;
  color: var(--gold-strong);
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero,
.story-grid,
.process-section,
.cta-band,
.trust-strip,
.video-section,
.contact-section {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  padding: 12px 0 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.cta-band h2,
.qualification-intro h1,
.progress-header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(3.6rem, 8vw, 6.3rem);
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.process-card p,
.cta-band p,
.qualification-intro p,
.summary-note,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.footer p {
  color: #fff;
}

.hero-text {
  max-width: 54ch;
  margin: 26px 0 0;
  font-size: 1.04rem;
}

.hero-actions,
.hero-highlights,
.topbar-links {
  flex-wrap: wrap;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.hero-highlights {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-highlights li,
.intro-list li {
  border: 1px solid rgba(52, 40, 31, 0.08);
  background: rgba(255, 255, 255, 0.34);
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  backdrop-filter: blur(12px);
}

.intro-list li {
  color: #fff;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card-main {
  height: 100%;
}

.hero-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-floating {
  position: absolute;
  left: -20px;
  bottom: 28px;
  max-width: 280px;
  padding: 24px;
  background: rgba(52, 40, 31, 0.82);
  color: #fdf8f2;
  backdrop-filter: blur(12px);
}

.trust-strip {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-strip-qualification {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 8px;
}

.trust-strip div,
.process-card,
.qualification-card,
.summary-card,
.intro-panel,
.gallery-tile,
.cta-band {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.trust-strip div {
  border-radius: var(--radius-lg);
  padding: 22px;
}

.trust-strip-qualification div {
  text-align: center;
}

.trust-strip strong {
  display: block;
  margin-bottom: 10px;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.story-grid,
.process-section {
  padding: 72px 0 0;
}

.section-heading h2,
.cta-band h2,
.qualification-intro h1,
.progress-header h2 {
  margin-top: 16px;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.gallery-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 18px;
}

.gallery-tile {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-tile::after,
.intro-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 17, 12, 0.04) 0%, rgba(22, 17, 12, 0.64) 100%);
}

.tile-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fff8f0;
}

.tile-copy span {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tile-copy h3 {
  margin: 10px 0 0;
  font-size: 1.4rem;
  line-height: 1.35;
}

.process-cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-subheading {
  margin-top: 34px;
}

.process-card {
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  min-height: 230px;
}

.process-number {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold-strong);
  font-weight: 800;
}

.cta-band {
  margin: 110px auto 80px;
  padding: 34px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: center;
}

.cta-band > div {
  flex: 1;
}

.cta-band .eyebrow {
  justify-content: center;
}

.cta-band .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-section {
  padding-bottom: 80px;
}

.contact-section {
  padding: 0 0 80px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
}

.contact-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.contact-panel h2 {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.contact-panel p,
.contact-note {
  color: var(--muted);
  line-height: 1.75;
}

.contact-info-stack {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.contact-info-card {
  background: rgba(210, 161, 56, 0.12);
  border: 1px solid rgba(210, 161, 56, 0.14);
  border-radius: 22px;
  padding: 18px 20px;
}

.contact-info-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
}

.contact-info-card strong {
  display: block;
  line-height: 1.55;
  font-size: 1.25rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form select {
  width: 100%;
  border: 1px solid rgba(52, 40, 31, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 16px 18px;
  color: var(--text);
}

.contact-submit {
  width: 100%;
  justify-content: center;
}

.contact-note {
  margin: 4px 0 0;
}

.video-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer {
  margin-top: 40px;
  background: #2d2219;
  color: rgba(255, 248, 240, 0.9);
  padding: 42px calc((100vw - var(--container)) / 2) 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  width: 180px;
}

.footer-links {
  display: grid;
  gap: 10px;
  text-align: right;
}

.footer-links a,
.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links img,
.footer-location img,
.footer-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 18px;
}

.footer-icon-instagram {
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-icon-location {
  filter: brightness(0) invert(1);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 15px 22px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.28);
}

.qualification-layout {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 70px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
  align-items: start;
}

.qualification-intro,
.qualification-card {
  border-radius: var(--radius-xl);
}

.qualification-intro,
.qualification-card {
  padding: 30px;
}

.intro-panel {
  position: relative;
  margin-top: 28px;
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
}

.intro-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-list {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.qualification-card {
  background: var(--surface-strong);
}

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

.step-indicator {
  color: var(--muted);
  font-size: 0.95rem;
  white-space: nowrap;
}

.progress-bar {
  margin-top: 22px;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(52, 40, 31, 0.08);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 14.285%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  transition: width 220ms ease;
}

.qualification-form {
  margin-top: 24px;
}

.form-step {
  display: none;
  animation: fadeUp 260ms ease;
}

.form-step.active {
  display: block;
}

.step-question {
  margin: 0 0 18px;
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.55;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.option-chip {
  min-height: 70px;
  border-radius: 20px;
  padding: 18px;
  text-align: left;
  border: 1px solid rgba(52, 40, 31, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-weight: 700;
}

.option-chip.is-selected {
  border-color: rgba(210, 161, 56, 0.82);
  background: rgba(210, 161, 56, 0.14);
  box-shadow: inset 0 0 0 1px rgba(210, 161, 56, 0.3);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 10px;
}

.field-full {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.94rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(52, 40, 31, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 16px 18px;
  color: var(--text);
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.summary-card {
  border-radius: 24px;
  padding: 24px;
}

.summary-content {
  display: grid;
  gap: 12px;
}

.summary-item {
  border-bottom: 1px solid rgba(52, 40, 31, 0.08);
  padding-bottom: 12px;
}

.summary-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.summary-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-item strong {
  line-height: 1.6;
}

.form-actions {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.form-actions .btn,
.form-actions a {
  min-width: 160px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .qualification-layout,
  .gallery-grid,
  .process-cards,
  .trust-strip,
  .video-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-card-main {
    min-height: 520px;
  }

  .gallery-tile {
    min-height: 380px;
  }

  .cta-band,
  .footer,
  .progress-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band {
    align-items: center;
  }

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 780px) {
  :root {
    --container: min(100vw - 24px, 1180px);
  }

  .topbar {
    padding-top: 8px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .topbar-links {
    display: none;
  }

  .brand img {
    width: 126px;
  }

  .topbar .btn {
    order: 3;
  }

  .hero {
    padding-top: 8px;
  }

  .hero-card-main,
  .intro-panel {
    min-height: 380px;
  }

  .hero-card-floating {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .option-grid,
  .field-grid,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .form-actions {
    display: grid;
  }

  .form-actions .btn,
  .form-actions a {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .footer {
    padding: 28px 12px 32px;
    gap: 16px;
  }

  .footer-links {
    width: 100%;
    justify-items: start;
    text-align: left;
  }

  .footer-links a,
  .footer-location {
    justify-content: flex-start;
  }
}
