/* Base */

@font-face {
  font-family: 'Freeland';
  src: url('assets/fonts/Freeland.otf') format('opentype');
  font-display: swap;
}

:root {
  --font-script: 'Freeland', 'Caveat', cursive;
  --border-strong: var(--ink-300);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #000;
  font-family: 'Mulish', 'Museo Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

@keyframes rogFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

input::placeholder,
textarea::placeholder { color: var(--ink-300); }

header .sc-host-x img { height: var(--logo-h, 40px) !important; width: auto !important; }
footer .sc-host-x img { height: var(--logo-h-ftr, 42px) !important; width: auto !important; }

.page { width: 100%; max-width: 100vw; overflow-x: hidden; background: #000; color: var(--rog-white); }

/* Shared helpers */

.container {
  position: relative;
  z-index: 2;
  max-width: 1560px;
  margin: 0 auto;
  padding: clamp(64px, 8vh, 110px) clamp(24px, 5vw, 72px);
}

.section-dark  { position: relative; background: var(--ink-900); color: var(--text-on-dark); overflow: hidden; }
.section-light { position: relative; background: #f7f3ec; color: var(--text-body); }
.section-black { position: relative; background: #000; color: var(--text-on-dark); overflow: hidden; }

.bg { position: absolute; inset: 0; background-size: cover; }
.bg--plaster { background-image: url('assets/textures/bg-black-plaster.png'); }
.bg--marble  { background-image: url('assets/textures/marble-white.png'); mix-blend-mode: multiply; }
.op-30 { opacity: 0.3; }
.op-35 { opacity: 0.35; }
.op-45 { opacity: 0.45; }
.op-50 { opacity: 0.5; }
.op-55 { opacity: 0.55; }

.deco { position: absolute; pointer-events: none; }
.deco--hero-ring     { top: -90px; right: -90px; width: 340px; height: 340px; object-fit: contain; opacity: 0.55; }
.deco--services-ring { bottom: -100px; right: -90px; width: 300px; opacity: 0.4; }
.deco--travel-ring   { top: -90px; right: -80px; width: 280px; opacity: 0.45; }
.deco--cta-ring      { top: -80px; left: -70px; width: 260px; opacity: 0.45; }
.deco--about-brush   { bottom: -26px; left: -26px; width: 180px; opacity: 0.85; }

.sec-head { max-width: 640px; }
.sec-head--center { max-width: 640px; margin: 0 auto; text-align: center; }
.sec-head--travel { max-width: 720px; margin: 0 auto; text-align: center; }

.sec-title {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.06;
  text-transform: uppercase;
}
.sec-title--zonas  { font-size: clamp(28px, 3.4vw, 44px); }
.sec-title--travel { font-size: clamp(30px, 3.8vw, 52px); }
.t-dark  { color: #fff; }
.t-light { color: var(--text-heading); }

.gold      { color: var(--gold-400); }
.gold-deep { color: var(--gold-600); }

.sec-lead {
  margin: 18px 0 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
}

.script-line { font-family: var(--font-script); color: var(--gold-300); }

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

.photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-300);
}
.photo-caption--sm {
  padding: 18px 12px 9px;
  background: linear-gradient(0deg, rgba(0,0,0,.78), transparent);
  font-size: 10px;
  letter-spacing: 0.2em;
}
.photo-caption--lg {
  padding: 34px 18px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,.8), transparent);
  font-size: 13px;
  letter-spacing: 0.18em;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__photo {
  position: absolute;
  inset: 0;
  background-image: url('assets/img/house.jpeg');
  background-size: cover;
  background-position: center;
}

.hero__texture { mix-blend-mode: overlay; }

.site-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(24px, 5vw, 72px);
}

.site-header__right { display: flex; align-items: center; gap: clamp(16px, 3vw, 32px); }

.site-header__tag {
  display: none;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.site-header__tag-line { width: 22px; height: 1.5px; background: var(--rog-gold); display: inline-block; }

.hero__body {
  position: relative;
  z-index: 3;
  flex: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(24px, 4vw, 56px) clamp(24px, 5vw, 72px) clamp(40px, 4vw, 64px);
  max-width: 1560px;
  margin: 0 auto;
  width: 100%;
}

.hero__copy { max-width: 620px; animation: rogFade .6s var(--ease-out, ease) backwards; }

.hero__title {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
}

.voucher-row { display: flex; align-items: center; gap: 20px; margin: 34px 0 0; }

.voucher-stamp {
  flex: none;
  background: var(--gold-metallic);
  border-radius: var(--radius-md, 10px);
  padding: 16px 22px;
  box-shadow: var(--shadow-gold, 0 8px 30px rgba(150, 120, 50, .35));
  text-align: center;
  color: #1a1a1a;
}
.voucher-stamp__kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: .75;
}
.voucher-stamp__value {
  font-family: var(--font-condensed);
  font-size: 52px;
  line-height: .9;
  letter-spacing: 0.01em;
}

.voucher-note {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.15;
  color: #fff;
}
.voucher-note__strong { font-weight: 700; color: var(--gold-400); }
.voucher-note .script-line {
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: 0.02em;
  text-transform: none;
  margin-top: 6px;
}

.hero__lead {
  margin: 26px 0 0;
  max-width: 480px;
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: var(--text-on-dark-muted);
}

.hero__cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin: 26px 0 0; }

.call-link {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #fff;
}
.call-link__row { display: inline-flex; align-items: center; gap: 10px; }
.call-link__label {
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.call-note {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.03em;
  color: var(--text-on-dark-muted);
}

.travel-strip { display: flex; gap: 14px; margin: 34px 0 0; }
.travel-strip__item {
  position: relative;
  margin: 0;
  flex: 1;
  height: clamp(130px, 13vw, 190px);
  border-radius: var(--radius-sm, 6px);
  overflow: hidden;
  border: 1px solid var(--gold-700);
}

/* Hero form card */

.form-col { animation: rogFade .6s var(--ease-out, ease) .12s backwards; }

.form-card {
  position: relative;
  background: var(--surface-card);
  border-radius: var(--radius-lg, 14px);
  box-shadow: var(--shadow-xl, 0 30px 70px rgba(0, 0, 0, .5));
  overflow: hidden;
  max-width: 480px;
  margin-left: auto;
}
.form-card__bar { height: 4px; background: var(--gold-metallic); }
.form-card__inner { padding: clamp(26px, 3vw, 40px); }
.form-card__title {
  margin: 12px 0 6px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.01em;
  color: var(--text-heading);
}
.form-card__sub { margin: 0 0 24px; font-weight: 300; font-size: 14px; line-height: 1.6; color: var(--text-muted); }

.form-fields { display: flex; flex-direction: column; gap: 16px; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

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

.field-col { display: flex; flex-direction: column; gap: 7px; }
.field-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-textarea {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14.5px;
  color: var(--text-body);
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm, 6px);
  padding: 12px 14px;
  resize: vertical;
  min-height: 76px;
  outline: none;
}

.consent-wrap { margin-top: 2px; }
.field-error { margin: 8px 0 0; font-family: var(--font-sans); font-size: 12px; color: var(--status-error); }
.submit-wrap { margin-top: 6px; }
.server-error { margin: 2px 0 0; text-align: center; font-family: var(--font-sans); font-size: 12.5px; color: var(--status-error); }
.form-smallprint { margin: 2px 0 0; text-align: center; font-weight: 300; font-size: 11.5px; color: var(--text-muted); }

.success { padding: clamp(34px, 3.5vw, 52px) clamp(26px, 3vw, 40px); text-align: center; }
.success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--gold-050);
  border: 1.5px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success__title { margin: 12px 0 10px; font-family: var(--font-display); font-weight: 500; font-size: 26px; color: var(--text-heading); }
.success__text { margin: 0 auto; max-width: 340px; font-weight: 300; font-size: 14.5px; line-height: 1.7; color: var(--text-body); }
.success__actions { margin-top: 26px; }

/* Credibility strip */

.cred {
  position: relative;
  background: var(--ink-900);
  border-top: 1px solid var(--border-on-dark);
  overflow: hidden;
}
.cred__grid {
  position: relative;
  z-index: 2;
  max-width: 1560px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
}
.cred__item { display: flex; align-items: center; gap: 16px; }
.cred__bar { flex: none; width: 2px; height: 44px; background: var(--gold-metallic); }
.cred__title { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: 0.04em; color: #fff; }
.cred__sub { font-weight: 300; font-size: 13px; color: var(--text-on-dark-muted); margin-top: 3px; }

/* About */

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.about__media { position: relative; }
/* image-slot is a custom element: the template engine mangles `class` on it, so target by id */
#rog-team { width: 100%; height: clamp(320px, 42vw, 520px); display: block; }
.about__text { max-width: 560px; }
.about__p { margin: 22px 0 0; font-weight: 300; font-size: 16px; line-height: 1.75; color: var(--text-muted); }
.about__p + .about__p { margin-top: 16px; }

.meta-row { display: flex; flex-wrap: wrap; gap: 24px; margin: 28px 0 0; }
.meta__k {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-accent);
}
.meta__v { margin-top: 6px; font-size: 15px; color: var(--text-body); }
.meta__note { margin-top: 3px; font-weight: 300; font-size: 11px; color: var(--text-muted); }

/* Services */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin: 44px 0 0;
}
.svc-card {
  position: relative;
  background: var(--surface-dark);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.svc-card__top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-metallic);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.svc-card__num { font-family: var(--font-condensed); font-size: 34px; color: var(--gold-400); line-height: 1; }
.svc-card__title { margin: 14px 0 8px; font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: 0.04em; color: #fff; }
.svc-card__text { margin: 0; font-weight: 300; font-size: 14px; line-height: 1.6; color: var(--text-on-dark-muted); }

/* How it works */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 48px 0 0;
}
.step { text-align: center; padding: 0 12px; }
.step__num { font-family: var(--font-display); font-weight: 200; font-size: 56px; line-height: 1; color: var(--gold-500); }
.step__rule { width: 36px; height: 2px; background: var(--gold-metallic); margin: 14px auto; }
.step__title { margin: 0 0 8px; font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: 0.04em; color: var(--text-heading); }
.step__text { margin: 0; font-weight: 300; font-size: 14px; line-height: 1.6; color: var(--text-muted); }

/* Travel showcase */

.travel__script { margin: 12px 0 0; font-size: clamp(26px, 3vw, 38px); }
.travel__lead {
  margin: 18px auto 0;
  max-width: 560px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
}
.travel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 44px 0 0;
}
.travel-card {
  position: relative;
  margin: 0;
  height: clamp(280px, 32vw, 440px);
  border-radius: var(--radius-lg, 14px);
  overflow: hidden;
  border: 1px solid var(--gold-700);
  box-shadow: var(--shadow-xl, 0 24px 60px rgba(0, 0, 0, .5));
}
.travel__cta { display: flex; justify-content: center; margin: 40px 0 0; }

/* Zones */

.zonas__inner {
  position: relative;
  z-index: 2;
  max-width: 1560px;
  margin: 0 auto;
  padding: clamp(56px, 7vh, 90px) clamp(24px, 5vw, 72px);
  text-align: center;
}
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 34px 0 0; }
.chip {
  border: 1px solid var(--gold-500);
  color: #fff;
  border-radius: 999px;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.zonas__note { margin: 22px 0 0; font-weight: 300; font-size: 13.5px; color: var(--text-on-dark-muted); }

/* Why us (pillars) */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 44px 0 0;
}
.pillar {
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 21px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.pillar__text { margin: 14px 0 0; font-weight: 300; font-size: 14px; line-height: 1.7; color: var(--text-on-dark-muted); }

/* Final CTA */

.cta { position: relative; overflow: hidden; background: #000; }
.cta__photo {
  position: absolute;
  inset: 0;
  background-image: url('assets/img/couple.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.cta__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.72)); }
.cta__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(64px, 9vh, 120px) clamp(24px, 5vw, 72px);
  text-align: center;
}
.cta__title {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.04;
  text-transform: uppercase;
  color: #fff;
}
.cta__lead {
  margin: 20px auto 0;
  max-width: 520px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
}
.cta__script { margin: 16px auto 0; font-size: clamp(26px, 3vw, 36px); }
.cta__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 34px 0 0; }
.cta__phone-note { margin: 14px 0 0; font-weight: 300; font-size: 11px; letter-spacing: 0.03em; color: var(--text-on-dark-muted); }

/* Footer */

.site-footer {
  position: relative;
  background: var(--ink-800);
  border-top: 1px solid var(--border-on-dark);
  overflow: hidden;
}
.footer__grid {
  position: relative;
  z-index: 2;
  max-width: 1560px;
  margin: 0 auto;
  padding: clamp(40px, 4vw, 64px) clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer__tagline { margin: 22px 0 0; font-family: var(--font-script); font-size: 30px; line-height: 1.2; color: var(--gold-300); }
.footer__sub { margin: 10px 0 0; font-weight: 300; font-size: 13.5px; color: var(--text-on-dark-muted); }
.footer__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__item { display: flex; flex-direction: column; gap: 2px; }
.footer__k { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-on-dark-muted); }
.footer__v { font-size: 15px; color: #fff; text-decoration: none; }
.footer__note { font-weight: 300; font-size: 10.5px; color: var(--text-on-dark-muted); }
.footer__text { margin: 0; font-weight: 300; font-size: 13.5px; line-height: 1.7; color: var(--text-on-dark-muted); }
.footer__legal {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-on-dark);
  padding: 18px clamp(24px, 5vw, 72px);
  max-width: 1560px;
  margin: 0 auto;
}
.footer__copy { margin: 0; font-size: 11.5px; color: var(--ink-300); }

/* Mobile */

@media (max-width: 900px) {
  .site-header { justify-content: center; }
  .site-header__right { display: none; }
  .hero__body { grid-template-columns: 1fr; }
  .hero__copy { margin: 0 auto; width: 100%; }
  .voucher-row { flex-wrap: wrap; justify-content: center; text-align: center; }
  .hero__cta-row { justify-content: center; text-align: center; }
  .travel-strip { gap: 10px; }
  .photo-caption--sm { font-size: 8.5px; letter-spacing: 0.08em; padding: 14px 8px 8px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .form-card { margin: 0 auto; }
  .cred { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .deco--about-brush { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Small phones: the DS button is nowrap and can outgrow the viewport */
@media (max-width: 480px) {
  .hero__cta-row .sc-host-x a {
    width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    font-size: 13px !important;
    letter-spacing: 0.12em !important;
  }
}
