@font-face {
  font-family: Bricolage;
  src: url("/assets/fonts/bricolage-800.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: Bricolage;
  src: url("/assets/fonts/bricolage-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Atkinson;
  src: url("/assets/fonts/atkinson-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Atkinson;
  src: url("/assets/fonts/atkinson-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
:root {
  --wine: #741e36;
  --wine-dark: #421424;
  --coral: #ed896e;
  --gold: #efc77e;
  --cream: #fff9ef;
  --blush: #f7e5df;
  --ink: #2b2022;
  --muted: #6d5b5d;
  --line: #ddcec3;
  --max: 1240px;
  --display: Bricolage, Arial, sans-serif;
  --body: Atkinson, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
}
h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}
h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
button,
input {
  font: inherit;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  padding: 0.8rem 1rem;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 86px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(255, 249, 239, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo {
  text-decoration: none;
  line-height: 1;
}
.logo strong {
  display: block;
  font-family: var(--display);
  font-size: 1.65rem;
  color: var(--wine);
  letter-spacing: -0.06em;
}
.logo span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
.navigation a {
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}
.navigation a:hover {
  text-decoration: underline;
}
.language-picker {
  position: relative;
  font-size: 0.84rem;
  font-weight: 700;
}
.language-picker summary {
  cursor: pointer;
  color: var(--wine);
  list-style: none;
  white-space: nowrap;
}
.language-picker summary::-webkit-details-marker { display: none; }
.language-panel {
  position: absolute;
  z-index: 80;
  top: calc(100% + 1rem);
  right: 0;
  width: min(430px, calc(100vw - 32px));
  max-height: min(650px, calc(100vh - 120px));
  overflow: auto;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(43,32,34,.2);
}
.language-panel label { display: block; margin-bottom: .45rem; }
.language-panel input {
  width: 100%;
  min-height: 44px;
  padding: .7rem .85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}
.language-status { margin: .55rem 0; color: var(--muted); font-size: .78rem; }
.language-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; }
.language-grid a {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  padding: .55rem .65rem;
  border-radius: 10px;
  text-decoration: none;
}
.language-grid a:hover,
.language-grid a[aria-current="page"] { background: var(--blush); text-decoration: none; }
.language-empty { margin: .75rem 0 0; color: var(--muted); }
.language-link {
  color: var(--wine);
}
.nav-cta {
  background: var(--wine);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}
.nav-cta:hover {
  text-decoration: none !important;
  background: var(--wine-dark);
}
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font-weight: 700;
}
.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
  background: var(--wine-dark);
  color: #fff;
}
.hero-photo {
  min-height: 720px;
  background:
    linear-gradient(180deg, rgba(22, 86, 108, 0.06), rgba(66, 20, 36, 0.24)),
    url("/assets/spain-dream.webp") center/cover;
  position: relative;
}
.sun-seal {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(1.5rem, 5vw, 5rem);
  width: 178px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--coral);
  color: var(--wine-dark);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1rem;
  transform: rotate(-6deg);
  box-shadow: 0 16px 45px rgba(30, 12, 18, 0.22);
}
.sun-seal span,
.sun-seal strong {
  display: block;
}
.sun-seal span {
  font-size: 0.72rem;
}
.sun-seal strong {
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.05;
}
.hero-copy {
  padding: clamp(4rem, 8vw, 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9b2946;
}
.hero .eyebrow,
.final-cta .eyebrow {
  color: #ffb7a3;
}
.hero h1 {
  font-size: clamp(4rem, 7.2vw, 7.5rem);
  margin: 0.8rem 0 1.5rem;
  max-width: 8.5ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-lede {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  max-width: 590px;
  color: #f4e4e5;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--coral);
  color: var(--wine-dark);
  box-shadow: 0 9px 0 rgba(0, 0, 0, 0.18);
}
.text-link {
  font-weight: 700;
}
.trust-line {
  display: flex;
  gap: 0.7rem 1.2rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 2.4rem 0 0;
  color: #f4e4e5;
  font-size: 0.82rem;
}
.letter {
  padding: clamp(6rem, 12vw, 11rem) 24px;
  text-align: center;
  max-width: 1040px;
  margin: auto;
}
.letter h2 {
  font-size: clamp(3rem, 7vw, 7rem);
  max-width: 11ch;
  margin: 1rem auto 1.5rem;
  color: var(--wine);
}
.letter > p:last-child {
  max-width: 760px;
  margin: auto;
  font-size: 1.18rem;
  color: var(--muted);
}
.journey {
  background: #fff;
  padding: clamp(5rem, 9vw, 9rem) max(24px, calc((100vw - var(--max)) / 2));
}
.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: 3.5rem;
}
.section-heading h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  margin: 0.8rem 0 0;
  color: var(--wine);
}
.section-heading > p {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 590px;
}
.service-search {
  display: grid;
  grid-template-columns: auto minmax(250px, 520px) 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-block: 1px solid var(--line);
}
.service-search label {
  font-weight: 700;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 0.95rem;
}
.search-field:focus-within {
  outline: 3px solid rgba(237, 137, 110, 0.35);
  border-color: var(--wine);
}
.search-field input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0.75rem 0;
  outline: 0;
  color: var(--ink);
}
.search-clear {
  border: 0;
  background: transparent;
  color: var(--wine);
  padding: 0.55rem 0;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}
.search-count {
  justify-self: end;
  color: var(--muted);
  font-size: 0.86rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card {
  min-height: 330px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.service-card:nth-child(2),
.service-card:nth-child(5) {
  background: var(--blush);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(66, 20, 36, 0.1);
}
.service-icon {
  font-size: 2rem;
}
.service-card > p:first-of-type {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wine);
  margin-top: auto;
}
.service-card h3 {
  font-size: 2rem;
  margin: 0.65rem 0;
}
.service-card > p:last-child {
  color: var(--muted);
}
.service-card[hidden] {
  display: none;
}
.empty-state {
  text-align: center;
  padding: 4rem;
  background: var(--blush);
  border-radius: 24px;
}
.empty-state span {
  font-size: 2.5rem;
}
.journey-cta {
  margin-top: 2rem;
  padding: 1.4rem;
  border-radius: 20px;
  background: var(--wine-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.journey-cta p {
  margin: 0;
  font-weight: 700;
}
.day {
  padding: clamp(6rem, 11vw, 10rem) max(24px, calc((100vw - var(--max)) / 2));
}
.day-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}
.day-title h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  max-width: 11ch;
  margin: 0;
  color: var(--wine);
}
.moments {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  min-height: 560px;
}
.moment {
  padding: 2.5rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #fff;
}
.moment span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wine);
  font-weight: 700;
}
.moment h3 {
  font-size: 2.35rem;
}
.moment p {
  color: var(--muted);
}
.moment-photo {
  background:
    linear-gradient(rgba(66, 20, 36, 0.12), rgba(66, 20, 36, 0.18)),
    url("/assets/spain-dream.webp") center/cover;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: #fff;
}
.moment-photo span {
  font-family: var(--display);
  font-size: 2rem;
}
.final-cta {
  background: var(--wine);
  color: #fff;
  padding: clamp(5rem, 9vw, 8rem) max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
}
.final-cta h2 {
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  margin: 0.8rem 0;
}
.final-cta > div:last-child {
  font-size: 1.15rem;
  color: #f4e4e5;
}
.button-light {
  background: var(--gold);
  color: var(--wine-dark);
}
.final-whatsapp {
  display: inline-block;
  margin-left: 1rem;
  font-weight: 700;
}
.boundary {
  padding: 2rem max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 0.6fr 2fr;
  gap: 2rem;
  background: var(--gold);
  color: var(--wine-dark);
}
.boundary p {
  margin: 0;
  font-size: 0.9rem;
}
.privacy-note {
  padding: 1rem max(24px, calc((100vw - var(--max)) / 2));
  background: #f3eadb;
  color: #4d3037;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.86rem;
}
.privacy-note p {
  margin: 0;
}
.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #13795b;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s;
}
.whatsapp:hover {
  transform: translateY(-3px);
}
.whatsapp > span:first-child {
  font-size: 1.45rem;
}
.whatsapp small,
.whatsapp strong {
  display: block;
  line-height: 1.1;
}
.whatsapp small {
  font-size: 0.65rem;
}
.whatsapp strong {
  font-size: 0.84rem;
}
footer {
  background: var(--wine-dark);
  color: #fff;
  padding: 4rem max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
}
.footer-logo strong {
  color: var(--gold);
}
footer a {
  display: block;
  margin: 0.4rem 0;
}
.fine {
  grid-column: 1/-1;
  border-top: 1px solid #815665;
  padding-top: 1.3rem;
  color: #cdb9bd;
  font-size: 0.75rem;
}
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-pending {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 3px;
}
.hero :focus-visible,
.final-cta :focus-visible,
footer :focus-visible {
  outline-color: #ffd47f;
}
@media (max-width: 1100px) {
  .menu-button {
    display: block;
  }
  .navigation {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    padding: 1.2rem max(24px, calc((100vw - var(--max)) / 2)) 1.5rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 30px rgba(43, 32, 34, 0.12);
    flex-direction: column;
    align-items: stretch;
  }
  .navigation.is-open {
    display: flex;
  }
  .navigation > a:not(.nav-cta):not(.language-link) {
    display: block;
  }
  .navigation a {
    padding: 0.55rem 0;
  }
  .language-picker summary { padding: .55rem 0; }
  .language-panel {
    position: static;
    width: 100%;
    max-height: min(55vh, 520px);
    margin-top: .4rem;
    box-shadow: none;
  }
  .nav-cta {
    text-align: center;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: clamp(3.6rem, 7vw, 5.8rem);
  }
  .hero-copy {
    padding: 4rem;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-search {
    grid-template-columns: 1fr 1fr;
  }
  .search-count {
    grid-column: 1/-1;
    justify-self: start;
    margin: 0;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 17px;
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }
  html {
    scroll-padding-top: 72px;
  }
  .site-header {
    height: 72px;
    padding: 0 18px;
  }
  .logo strong {
    font-size: 1.35rem;
  }
  .logo span {
    font-size: 0.48rem;
  }
  .menu-button {
    display: block;
  }
  .navigation {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 1.2rem 18px 1.5rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 30px rgba(43, 32, 34, 0.12);
    flex-direction: column;
    align-items: stretch;
  }
  .navigation.is-open {
    display: flex;
  }
  .navigation > a:not(.nav-cta):not(.language-link) {
    display: block;
  }
  .navigation a {
    padding: 0.55rem 0;
  }
  .nav-cta {
    text-align: center;
    padding: 0.85rem;
  }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .hero-photo {
    min-height: 52svh;
    grid-row: 1;
  }
  .sun-seal {
    width: auto;
    aspect-ratio: auto;
    left: 18px;
    right: auto;
    bottom: 18px;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    transform: none;
    text-align: left;
  }
  .sun-seal span,
  .sun-seal strong {
    display: inline;
    font-size: 0.8rem;
  }
  .hero-copy {
    padding: 3.6rem 20px 4.5rem;
  }
  .hero h1 {
    font-size: clamp(3.35rem, 16vw, 5rem);
    max-width: 9ch;
  }
  .hero-lede {
    font-size: 1.08rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .trust-line {
    display: grid;
  }
  .letter {
    padding: 6rem 20px;
  }
  .letter h2 {
    font-size: 3.6rem;
  }
  .section-heading,
  .final-cta,
  .boundary {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .journey {
    padding: 5rem 20px;
  }
  .section-heading h2 {
    font-size: 3.55rem;
  }
  .service-search,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 0;
    padding: 1.6rem;
  }
  .service-card > p:first-of-type {
    margin-top: 1.5rem;
  }
  .journey-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .day {
    padding: 6rem 20px;
  }
  .day-title {
    display: block;
  }
  .day-title h2 {
    font-size: 3.5rem;
  }
  .moments {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .moment {
    min-height: 340px;
    padding: 1.7rem;
  }
  .moment-photo {
    min-height: 60svh;
    grid-row: 2;
  }
  .final-cta {
    padding: 5rem 20px;
  }
  .final-cta h2 {
    font-size: 3.7rem;
  }
  .final-whatsapp {
    display: block;
    margin: 1.2rem 0 0;
  }
  .boundary {
    padding: 2rem 20px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 3.5rem 20px;
  }
  .fine {
    grid-column: auto;
  }
  .whatsapp {
    left: auto;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border: 2px solid #fff;
  }
  .whatsapp > span:last-child {
    display: none;
  }
}
@media (max-width: 380px) {
  .hero h1 {
    font-size: 3rem;
  }
  .letter h2,
  .section-heading h2,
  .day-title h2,
  .final-cta h2 {
    font-size: 3rem;
  }
  .button {
    width: 100%;
    text-align: center;
  }
  .sun-seal {
    right: 14px;
    left: 14px;
    justify-content: center;
    text-align: center;
  }
}
[dir="rtl"] body { text-align: right; }
[dir="rtl"] .language-panel { right: auto; left: 0; }
[dir="rtl"] .hero-actions,
[dir="rtl"] .trust-line,
[dir="rtl"] .privacy-note { direction: rtl; }
[dir="rtl"] .whatsapp { right: auto; left: 18px; }
@media (max-width:760px) {
  .language-grid { grid-template-columns: 1fr; }
  [dir="rtl"] .whatsapp { left: 14px; right: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .button,
  .service-card,
  .whatsapp {
    transition: none;
  }
  .button:hover,
  .service-card:hover,
  .whatsapp:hover {
    transform: none;
  }
}
/* Neptox studio credit */
.neptox-credit{grid-column:1/-1;justify-self:center;display:inline-flex!important;align-items:center;gap:.5rem;width:max-content;max-width:100%;margin:1.6rem auto 0!important;padding:.38rem .2rem!important;border:0!important;background:none!important;box-shadow:none!important;color:#7c3aed!important;text-decoration:none!important;font:650 .72rem/1 system-ui,-apple-system,"Segoe UI",sans-serif!important;letter-spacing:.045em;text-shadow:0 1px 0 rgba(255,255,255,.55),0 0 16px rgba(124,58,237,.2);transition:transform .25s ease,filter .25s ease}
.neptox-credit::before,.neptox-credit::after{display:none!important}
.neptox-credit span{color:#8b5cf6;font-size:.82rem;text-shadow:0 0 12px rgba(139,92,246,.72);transition:transform .25s ease}
.neptox-credit small{color:#7451b9;font:inherit}
.neptox-credit strong{background:linear-gradient(100deg,#6d28d9 0%,#a855f7 34%,#f0abfc 50%,#8b5cf6 68%,#5b21b6 100%);background-size:220% auto;-webkit-background-clip:text;background-clip:text;color:transparent;font:850 .78rem/1 system-ui,-apple-system,"Segoe UI",sans-serif;letter-spacing:.025em;animation:neptox-purple-shine 4.5s ease-in-out infinite}
.neptox-credit:hover{transform:translateY(-1px);filter:drop-shadow(0 0 8px rgba(139,92,246,.42))}
.neptox-credit:hover span{transform:rotate(18deg) scale(1.08)}
.neptox-credit:focus-visible{outline:3px solid #8b5cf6!important;outline-offset:5px}
@keyframes neptox-purple-shine{0%,20%{background-position:100% 50%}55%,100%{background-position:0 50%}}
@media(prefers-reduced-motion:reduce){.neptox-credit,.neptox-credit span,.neptox-credit strong{animation:none!important;transition:none!important}}
