@font-face {
  font-family: "Gabarito";
  src: url("../fonts/Gabarito-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Gabarito";
  src: url("../fonts/Gabarito-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Gabarito";
  src: url("../fonts/Gabarito-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Gabarito";
  src: url("../fonts/Gabarito-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {

  --pimento: #ff6647;
  --pimento-dark: #e84e2f;
  --shell: #ffe1d7;
  --shell-soft: #fff1ec;

  --ink: #171820;
  --blue: #0259de;
  --azure: #84b0fb;
  --pink: #fec1dc;

  --cream: #fff7f3;
  --white: #ffffff;

  --font-display: "Gabarito", system-ui, sans-serif;
  --font-body: "General Sans", system-ui, sans-serif;

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 44px;
  --r-pill: 999px;
  --shadow-soft: 0 18px 40px -22px rgba(23, 24, 32, 0.45);
  --shadow-card: 0 24px 60px -30px rgba(23, 24, 32, 0.5);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--shell);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }

button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 1rem 1.6rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--pimento); color: var(--cream); }
.btn--primary:hover { background: var(--pimento-dark); }
.btn--ink { background: var(--ink); color: var(--shell); }
.btn--ink:hover { background: #2a2c3a; }
.btn--ghost { background: transparent; border-color: currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--shell); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { font-size: 1.1rem; padding: 1.15rem 2rem; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--shell);
  border-bottom: 2px solid rgba(23,24,32,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo svg, .nav__logo img { height: 34px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav__links a:hover { border-bottom-color: var(--pimento); color: var(--pimento); }
.nav__right { display: flex; align-items: center; gap: 1rem; }

.nav__has-drop { position: relative; }
.nav__has-drop > a::after { content: " ▾"; font-size: 0.7em; opacity: 0.7; }
.nav__drop {
  list-style: none; margin: 0; padding: 0.5rem;
  position: absolute; top: 100%; left: -0.6rem;
  min-width: 250px;
  background: var(--cream);
  border: 2px solid rgba(23,24,32,0.1);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  display: none;
  z-index: 60;
}
.nav__has-drop:hover .nav__drop, .nav__has-drop:focus-within .nav__drop { display: block; }
.nav__drop li { margin: 0; }
.nav__drop a {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: var(--r-sm);
  border: 0;
  font-size: 0.95rem;
}
.nav__drop a:hover { background: var(--shell); color: var(--pimento); }

.lang-toggle {
  display: inline-flex;
  border: 2px solid var(--ink);
  border-radius: var(--r-pill);
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  padding: 0.35rem 0.7rem;
  color: var(--ink);
}
.lang-toggle button[aria-pressed="true"] { background: var(--ink); color: var(--shell); }

.nav__burger {
  display: none;
  background: var(--ink);
  border: 0; border-radius: var(--r-sm);
  width: 44px; height: 44px;
  padding: 0;
  align-items: center; justify-content: center;
}
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--shell);
  position: relative;
  transition: transform 0.2s ease;
}
.nav__burger span::before { position: absolute; top: -6px; }
.nav__burger span::after { position: absolute; top: 6px; }

@media (max-width: 860px) {
  .nav__burger { display: inline-flex; }
  .nav__links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    background: var(--shell);
    padding: 1.2rem var(--gutter) 1.8rem;
    border-bottom: 2px solid rgba(23,24,32,0.1);
    box-shadow: var(--shadow-soft);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { font-size: 1.2rem; }

  .nav__has-drop > a::after { content: ""; }
  .nav__drop {
    position: static; display: block; box-shadow: none; border: 0;
    background: transparent; padding: 0.2rem 0 0.4rem 0.9rem; min-width: 0;
  }
  .nav__drop a { font-size: 1rem; padding: 0.35rem 0; }
  .nav__drop a:hover { background: transparent; }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(480px, 82vh, 780px);
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  color: var(--cream);
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(23,24,32,0) 58%, rgba(23,24,32,0.5) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  padding-bottom: clamp(1.6rem, 4vw, 3rem);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  background: var(--pimento);
  color: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-soft);
}
.hero h1 {
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  font-weight: 800;
  color: var(--cream);
  max-width: 22ch;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(23,24,32,0.4);
}
.hero__lead {
  font-size: clamp(1.02rem, 2.2vw, 1.22rem);
  max-width: 52ch;
  margin-top: 0.9rem;
  color: var(--shell);
  text-shadow: 0 1px 14px rgba(23,24,32,0.5);
}
.hero__cues { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.3rem; }
.hero__cue {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(255,247,243,0.94); color: var(--ink);
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  padding: 0.45rem 0.95rem; border-radius: var(--r-pill);
  backdrop-filter: blur(2px);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.7rem; }
.hero__cta .btn--ghost { color: var(--cream); border-color: var(--cream); }
.hero__cta .btn--ghost:hover { background: var(--cream); color: var(--ink); }

@media (max-width: 680px) {
  .hero:has(.hero__img) {
    display: block;
    min-height: 0;
    overflow: visible;
    background: var(--shell);
  }
  .hero:has(.hero__img) .hero__img {
    position: static;
    width: 100%;
    height: auto;
    border-bottom-left-radius: var(--r-lg);
    border-bottom-right-radius: var(--r-lg);
  }
  .hero:has(.hero__img) .hero__scrim { display: none; }
  .hero:has(.hero__img) .hero__inner {
    padding-top: 1.2rem;
    padding-bottom: 0.4rem;
  }
  .hero:has(.hero__img) .hero__cta { justify-content: center; }

  .hero:has(.hero__img) .hero__cta .btn--ghost { color: var(--ink); border-color: var(--ink); }
  .hero:has(.hero__img) .hero__cta .btn--ghost:hover { background: var(--ink); color: var(--shell); }
}

.has-spiral { position: relative; overflow: hidden; }
.has-spiral > .container { position: relative; z-index: 1; }

.bg-spiral { position: absolute; z-index: 0; pointer-events: none; opacity: 0.22; max-width: none; }
.bg-spiral.s-tr { top: -22%; right: -14%; width: min(58%, 660px); transform: rotate(-8deg); }
.bg-spiral.s-bl { bottom: -24%; left: -14%; width: min(54%, 600px); transform: rotate(16deg); }
.bg-spiral.s-tl { top: -22%; left: -14%; width: min(54%, 600px); transform: rotate(10deg); }
.bg-spiral.s-br { bottom: -22%; right: -14%; width: min(58%, 660px); transform: rotate(-12deg); }

.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--shell { background: var(--shell); }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--shell); }

.section__head { max-width: 720px; margin-bottom: 2.6rem; }
.section__head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--pimento);
  margin-bottom: 0.8rem;
  display: block;
}
.section h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; }
.section__head p { font-size: 1.1rem; margin-top: 1rem; opacity: 0.85; }

.values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media (max-width: 980px) { .values { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .values { grid-template-columns: 1fr; } }
.value {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem 1.5rem;
  min-height: 200px;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value:hover { transform: translateY(-5px) rotate(-1deg); box-shadow: var(--shadow-card); }
.value__spiral { position: absolute; right: -34%; bottom: -30%; width: 135%; max-width: none; opacity: 0.2; z-index: 0; }
.value > *:not(.value__spiral) { position: relative; z-index: 1; }
.value h3 { font-size: 1.4rem; margin-bottom: 0.45rem; }
.value p { margin: 0; font-size: 0.97rem; }
.value.c-pimento { background: var(--pimento); color: var(--cream); }
.value.c-blue { background: var(--blue); color: #eef3ff; }
.value.c-azure { background: var(--azure); color: var(--ink); }
.value.c-pink { background: var(--pink); color: var(--ink); }
.value.c-shell { background: var(--shell-soft); border: 2px solid rgba(23,24,32,0.1); color: var(--ink); }

.tours-group { margin-bottom: 3.4rem; scroll-margin-top: 90px; }
.tours-group__head {
  display: flex; align-items: baseline; gap: 0.4rem 1rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 0.7rem;
  border-bottom: 3px solid rgba(23,24,32,0.1);
}
.tours-group__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.tours-group__tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pimento);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.4rem;
}

.tour-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  padding: 1.8rem 1.7rem 1.6rem;
  min-height: 320px;
  overflow: hidden;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  isolation: isolate;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.tour-card__deco {
  position: absolute;
  right: -28px; bottom: -34px;
  width: 160px;
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}
.tour-card > *:not(.tour-card__deco) { position: relative; z-index: 1; }

.tour-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  background: rgba(23,24,32,0.14);
  margin-bottom: 0.7rem;
}
.t-pimento .tour-card__tag, .t-blue .tour-card__tag, .t-ink .tour-card__tag { background: rgba(255,247,243,0.22); }
.tour-card__period {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  opacity: 0.75;
}
.tour-card h3 {
  font-size: 1.55rem;
  margin-top: 0.5rem;
  font-weight: 800;
}
.tour-card__audience {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  font-weight: 500;
}
.tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}
.tour-card__chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  background: rgba(23,24,32,0.12);
  padding: 0.32rem 0.7rem;
  border-radius: var(--r-pill);
}
.tour-card__foot {
  margin-top: auto;
  padding-top: 1.3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.tour-card__price { font-family: var(--font-display); font-weight: 900; font-size: 1.7rem; line-height: 1; }
.tour-card__price small { font-size: 0.8rem; font-weight: 600; opacity: 0.7; }
.tour-card__go {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--shell);
  font-size: 1.3rem;
  flex: none;
  transition: transform 0.18s ease;
}
.tour-card:hover .tour-card__go { transform: translateX(3px) rotate(-8deg); }

.t-pimento { background: var(--pimento); color: var(--cream); }
.t-pimento .tour-card__chip { background: rgba(255,247,243,0.22); }
.t-pimento .tour-card__go { background: var(--cream); color: var(--pimento); }
.t-pimento .tour-card__price small { color: var(--shell); }

.t-blue { background: var(--blue); color: #eef3ff; }
.t-blue .tour-card__chip { background: rgba(255,255,255,0.2); }
.t-blue .tour-card__go { background: #eef3ff; color: var(--blue); }

.t-azure { background: var(--azure); color: var(--ink); }
.t-azure .tour-card__go { background: var(--ink); color: var(--azure); }

.t-pink { background: var(--pink); color: var(--ink); }
.t-pink .tour-card__go { background: var(--ink); color: var(--pink); }

.t-ink { background: var(--ink); color: var(--shell); }
.t-ink .tour-card__chip { background: rgba(255,225,215,0.16); }
.t-ink .tour-card__go { background: var(--pimento); color: var(--cream); }
.t-ink .tour-card__price small { color: var(--shell); }

.t-shell { background: var(--shell); color: var(--ink); border: 2px solid rgba(23,24,32,0.12); }
.t-shell .tour-card__go { background: var(--pimento); color: var(--cream); }

.tour-card__badge {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--shell);
  margin-bottom: 0.7rem;
}
.tour-card--soon { cursor: default; }
.tour-card--soon:hover { transform: none; box-shadow: none; }
.tour-card--ext .tour-card__go::after { content: "↗"; }

.tour-hero {
  color: var(--cream);
  padding-block: clamp(2.6rem, 6vw, 4.5rem);
  position: relative; overflow: hidden;
}
.tour-hero__back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-display); font-weight: 600;
  margin-bottom: 1.4rem; opacity: 0.9;
}
.tour-hero__back:hover { opacity: 1; }
.tour-hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 900; max-width: 18ch; }
.tour-hero__sub { font-size: 1.15rem; margin-top: 1rem; max-width: 60ch; }
.tour-hero__stats { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.tour-hero__stat {
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  background: rgba(255,247,243,0.16);
  padding: 0.5rem 0.95rem; border-radius: var(--r-pill);
}

.tour-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 920px) { .tour-layout { grid-template-columns: 1fr; } }

.tour-body h2 { font-size: 1.7rem; margin: 2rem 0 0.8rem; }
.tour-body h2:first-child { margin-top: 0; }
.tour-body p { font-size: 1.05rem; }
.tour-body ul { padding-left: 1.1rem; margin: 0 0 1.2rem; }
.tour-body li { margin-bottom: 0.5rem; font-size: 1.02rem; }

.info-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.4rem 0 2rem; }
.info-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--shell-soft);
  border: 2px solid rgba(23,24,32,0.08);
  border-radius: var(--r-pill);
  padding: 0.55rem 1rem;
  font-weight: 600; font-size: 0.92rem;
}
.info-pill strong { font-family: var(--font-display); }

.booking {
  position: sticky;
  top: 86px;
  background: var(--white);
  border: 2px solid rgba(23,24,32,0.1);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}
.booking__price { font-family: var(--font-display); font-weight: 900; font-size: 2rem; line-height: 1; }
.booking__price small { font-size: 0.9rem; font-weight: 600; opacity: 0.6; }

.bokun-widget { min-height: 420px; }
.bokun-widget .bokunWidget { width: 100%; }
.booking__label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em;
  margin: 1.4rem 0 0.6rem; display: block;
}

.cal {
  border: 2px solid rgba(23,24,32,0.1);
  border-radius: var(--r-md);
  padding: 0.9rem;
}
.cal__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.6rem;
}
.cal__title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; text-transform: capitalize; }
.cal__nav {
  width: 36px; height: 36px; border-radius: var(--r-pill);
  border: 2px solid rgba(23,24,32,0.15); background: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.cal__nav:hover:not([disabled]) { background: var(--shell); }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__dow {
  text-align: center; font-size: 0.72rem; font-weight: 700;
  font-family: var(--font-display); opacity: 0.55; padding-bottom: 4px;
}
.cal__day {
  aspect-ratio: 1; border: 0; background: transparent;
  border-radius: var(--r-sm);
  font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.cal__day.is-empty { visibility: hidden; }
.cal__day.is-disabled { color: rgba(23,24,32,0.22); cursor: not-allowed; }
.cal__day.is-available { background: var(--shell); color: var(--ink); }
.cal__day.is-available:hover { background: var(--azure); }
.cal__day.is-selected { background: var(--pimento); color: var(--cream); }
.cal__day.is-available::after {
  content: ""; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--pimento);
}
.cal__day.is-selected::after { background: var(--cream); }

.slots { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.slot {
  border: 2px solid rgba(23,24,32,0.15); background: var(--white);
  border-radius: var(--r-pill); padding: 0.5rem 1rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
}
.slot.is-active { background: var(--ink); color: var(--shell); border-color: var(--ink); }

.stepper {
  display: flex; align-items: center; gap: 0.8rem;
  border: 2px solid rgba(23,24,32,0.15);
  border-radius: var(--r-pill);
  padding: 0.4rem 0.5rem;
  width: fit-content;
}
.stepper button {
  width: 38px; height: 38px; border-radius: var(--r-pill);
  border: 0; background: var(--shell); color: var(--ink);
  font-size: 1.3rem; font-weight: 700; display: inline-flex;
  align-items: center; justify-content: center;
}
.stepper button:hover:not([disabled]) { background: var(--azure); }
.stepper button[disabled] { opacity: 0.4; cursor: not-allowed; }
.stepper output { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; min-width: 1.6ch; text-align: center; }

.stepper-row {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  margin-bottom: 0.55rem;
}
.stepper-row__label { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }

.booking__total {
  display: flex; align-items: baseline; justify-content: space-between;
  margin: 1.4rem 0 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(23,24,32,0.1);
}
.booking__total span { font-weight: 600; }
.booking__total strong { font-family: var(--font-display); font-size: 1.7rem; }

.booking__note { font-size: 0.85rem; opacity: 0.7; margin-top: 0.8rem; }
.booking__note a { color: var(--pimento); font-weight: 600; text-decoration: underline; }

.notice {
  background: var(--shell);
  border-left: 4px solid var(--pimento);
  border-radius: var(--r-sm);
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  margin-top: 1rem;
}
.notice strong { font-family: var(--font-display); }

.booking__selection {
  background: var(--shell);
  border-radius: var(--r-md);
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  margin-top: 1rem;
  min-height: 1px;
}
.booking__selection.empty { color: rgba(23,24,32,0.55); }

.diet { margin-top: 1.1rem; display: grid; gap: 0.7rem; }
.diet__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em;
}
.diet-q {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  background: var(--shell); border-radius: var(--r-sm);
  padding: 0.55rem 0.7rem 0.55rem 0.9rem;
}
.diet-q__label { font-size: 0.92rem; font-weight: 600; }
.yesno {
  display: inline-flex; flex: none;
  border: 2px solid rgba(23,24,32,0.15);
  border-radius: var(--r-pill); overflow: hidden; background: var(--white);
}
.yesno button {
  background: transparent; border: 0;
  padding: 0.4rem 0.95rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  color: var(--ink);
}
.yesno button.is-active { background: var(--pimento); color: var(--cream); }
.diet-detail {
  width: 100%; margin-top: -0.2rem;
  padding: 0.7rem 0.85rem;
  border: 2px solid rgba(23,24,32,0.15);
  border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--white);
}
.diet-detail:focus { outline: none; border-color: var(--pimento); }
.diet-detail[hidden] { display: none; }

.about {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2.6rem;
  align-items: center;
}
@media (max-width: 820px) { .about { grid-template-columns: 1fr; } }
.about__media { display: flex; align-items: center; justify-content: center; }
.about__photo {
  width: clamp(180px, 72%, 280px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  transform: rotate(-2deg);
}
@media (max-width: 820px) { .about__photo { width: clamp(180px, 60%, 260px); } }
.about h2 { font-size: clamp(2rem, 5vw, 3rem); }
.about__sign { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--pimento); margin-top: 1.4rem; }

.giftcards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-bottom: 2.6rem;
}

.giftcard-photo {
  position: relative;
  display: block;
  padding: 0;
  background: none;
  border: 3px solid transparent;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, border-color 0.18s ease;
  -webkit-appearance: none; appearance: none;
}
.giftcard-photo img { display: block; width: 100%; height: auto; }
.giftcard-photo:hover { transform: translateY(-4px); }
.giftcard-photo:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.giftcard-photo[aria-pressed="true"] { border-color: var(--ink); }
.giftcard-photo .check {
  position: absolute; top: 0.7rem; right: 0.7rem; z-index: 2;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink); color: var(--shell);
  display: none; align-items: center; justify-content: center; font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.28);
}
.giftcard-photo[aria-pressed="true"] .check { display: inline-flex; }

.steps { counter-reset: step; display: grid; gap: 1rem; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  background: var(--white);
  border: 2px solid rgba(23,24,32,0.08);
  border-radius: var(--r-md);
  padding: 1.2rem 1.3rem;
}
.step__num {
  counter-increment: step;
  font-family: var(--font-display); font-weight: 900;
  width: 42px; height: 42px; border-radius: var(--r-pill);
  background: var(--pimento); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.step p { margin: 0; font-size: 0.98rem; }

.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: 0.8rem 0.95rem;
  border: 2px solid rgba(23,24,32,0.15);
  border-radius: var(--r-sm);
  background: var(--white); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pimento);
}
.amounts { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.amount {
  border: 2px solid rgba(23,24,32,0.15); background: var(--white);
  border-radius: var(--r-pill); padding: 0.6rem 1.1rem;
  font-family: var(--font-display); font-weight: 700;
}
.amount[aria-pressed="true"] { background: var(--pimento); color: var(--cream); border-color: var(--pimento); }

.modal {
  position: fixed; inset: 0; z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 1.2rem;
  background: rgba(23,24,32,0.55);
}
.modal.is-open { display: flex; }
.modal__box {
  background: var(--cream);
  border-radius: var(--r-lg);
  max-width: 460px; width: 100%;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}
.modal__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 38px; height: 38px; border-radius: var(--r-pill);
  border: 0; background: var(--shell); font-size: 1.2rem;
}
.modal h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.modal__summary { background: var(--shell); border-radius: var(--r-md); padding: 1rem; margin: 1rem 0; font-size: 0.95rem; }
.modal__summary div { display: flex; justify-content: space-between; padding: 0.2rem 0; }

.site-footer {
  background: var(--ink);
  color: var(--shell);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; } }
.site-footer .logo svg, .site-footer .logo img { height: 38px; margin-bottom: 1rem; }
.footer-col h4 {
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem;
  color: var(--pink); margin-bottom: 0.9rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-col a:hover { color: var(--pimento); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,225,215,0.15);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.85rem; opacity: 0.7;
}
.footer-slogan { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.6rem,5vw,2.6rem); color: var(--pimento); margin-bottom: 1.4rem; }

.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(120%);
  background: var(--ink); color: var(--shell);
  padding: 0.9rem 1.3rem; border-radius: var(--r-pill);
  font-weight: 600; box-shadow: var(--shadow-card);
  transition: transform 0.3s ease; z-index: 120; max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); }

.gift-cta {
  position: relative;
  overflow: hidden;
  background: var(--pink);
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.4rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
}
@media (max-width: 820px) { .gift-cta { grid-template-columns: 1fr; } }
.gift-cta > * { position: relative; z-index: 1; }
.gift-cta h2 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.gift-cta__media {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 210px;
}
.gift-cta__card {
  width: 80%;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  display: block;
}
.gift-cta__card--back {
  position: absolute;
  transform: rotate(-7deg) translate(-9%, -7%);
}
.gift-cta__card--front {
  position: relative; z-index: 2;
  transform: rotate(4deg);
}
@media (max-width: 820px) { .gift-cta__media { min-height: 180px; } }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.6rem;
  align-items: start;
}
@media (max-width: 820px) { .contact-layout { grid-template-columns: 1fr; gap: 1.8rem; } }
.contact-form {
  background: var(--white);
  border: 2px solid rgba(23,24,32,0.1);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-aside .info-card {
  background: var(--shell-soft);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  margin-bottom: 1.2rem;
}
.contact-aside h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.contact-aside a.mail { color: var(--pimento); font-weight: 700; font-family: var(--font-display); }
.form-error { color: var(--pimento); font-size: 0.85rem; margin-top: 0.3rem; font-weight: 600; }
.required-star { color: var(--pimento); }

.form-success {
  text-align: center;
  padding: 1rem 0.5rem;
}
.form-success .icon {
  width: 64px; height: 64px; border-radius: var(--r-pill);
  background: var(--pimento); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 2rem; margin-bottom: 1rem;
}
.form-success h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.form-success p { color: rgba(23,24,32,0.75); max-width: 36ch; margin-inline: auto; }
.btn[aria-busy="true"] { opacity: 0.7; pointer-events: none; }

.intro-band { text-align: center; }
.intro-band .section__head { margin-inline: auto; margin-bottom: 0; max-width: 780px; }
.intro-band h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.intro-band .section__head p { font-size: 1.15rem; margin-top: 1rem; opacity: 0.85; }

body { overflow-x: clip; }

.section--shell, .section--cream { position: relative; overflow: clip; }
.section--shell > .container, .section--cream > .container { position: relative; z-index: 1; }

.section--shell::before, .section--cream::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
  background: url("../img/spiral-ink.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

main > section:nth-of-type(6n+1)::before { background-position: 12% 22%; }
main > section:nth-of-type(6n+2)::before { background-position: 86% 14%; }
main > section:nth-of-type(6n+3)::before { background-position: 48% 82%; }
main > section:nth-of-type(6n+4)::before { background-position: 96% 64%; }
main > section:nth-of-type(6n+5)::before { background-position: 6% 70%; }
main > section:nth-of-type(6n)::before   { background-position: 68% 42%; }

.gallery-grid {
  columns: 3 280px;
  column-gap: 1.1rem;
}
.gallery__item {
  break-inside: avoid;
  margin: 0 0 1.1rem;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gallery__item img {
  width: 100%; height: auto; display: block;
  transition: transform 0.35s ease;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__credit {
  text-align: center;
  margin-top: 1.8rem;
  font-weight: 600;
  opacity: 0.85;
}
.gallery__credit a {
  color: var(--pimento);
  font-weight: 700;
  font-family: var(--font-display);
}
