:root {
  --ink: #201713;
  --ink-soft: #594230;
  --brown: #3b281b;
  --brown-2: #73502f;
  --cream: #fff4da;
  --paper: #f7ecd8;
  --paper-2: #efe0c7;
  --gold: #d8a341;
  --amber: #f1c66a;
  --sunset: #9f5228;
  --green: #425a35;
  --green-dark: #20311e;
  --white: #fffdf8;
  --line: rgba(59, 40, 27, 0.14);
  --line-light: rgba(255, 244, 218, 0.18);
  --shadow: 0 18px 46px rgba(32, 23, 19, 0.13);
  --glow: 0 16px 42px rgba(216, 163, 65, 0.2);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main[id] {
  scroll-margin-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 244, 218, 0.92), rgba(247, 236, 216, 0.78) 38%, rgba(255, 253, 248, 0.94)),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(59, 40, 27, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 40, 27, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
}

h2 {
  max-width: 720px;
  font-size: clamp(1.62rem, 2.7vw, 2.55rem);
  color: var(--brown);
}

h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.5vw, 1.38rem);
  line-height: 1.18;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 6px clamp(16px, 3.4vw, 42px);
  background:
    linear-gradient(90deg, rgba(32, 23, 19, 0.94), rgba(59, 40, 27, 0.91) 48%, rgba(32, 49, 30, 0.93)),
    var(--ink);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  isolation: isolate;
}

.brand::before {
  position: absolute;
  inset: 12% -12% 8%;
  z-index: -1;
  content: "";
  background: linear-gradient(115deg, rgba(241, 198, 106, 0.34), rgba(159, 82, 40, 0.13), rgba(66, 90, 53, 0.22));
  filter: blur(18px);
  opacity: 0.8;
}

.brand img {
  width: clamp(92px, 10vw, 128px);
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: rgba(255, 244, 218, 0.78);
  font-size: 0.84rem;
  font-weight: 400;
}

.main-nav a,
.footer-links a,
.text-link {
  position: relative;
}

.main-nav a::after,
.footer-links a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), var(--sunset));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.footer-links a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button,
.mobile-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta {
  min-height: 34px;
  padding: 0 14px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--amber), var(--gold));
  border: 1px solid rgba(255, 253, 248, 0.18);
  box-shadow: var(--glow);
}

.header-cta:hover,
.button:hover,
.mobile-actions a:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(540px, 76svh, 690px);
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--brown);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(241, 198, 106, 0.2) 0%, rgba(159, 82, 40, 0.08) 28%, transparent 58%),
    linear-gradient(90deg, rgba(32, 23, 19, 0.9) 0%, rgba(32, 23, 19, 0.68) 44%, rgba(32, 23, 19, 0.2) 100%),
    linear-gradient(0deg, rgba(32, 23, 19, 0.98) 0%, rgba(32, 23, 19, 0.12) 50%),
    url("assets/hero-farol.webp") center / cover;
  transform: scale(1.02);
  animation: slowReveal 900ms ease both;
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0 54px;
  animation: riseIn 700ms ease 120ms both;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.feature-band .eyebrow,
.story-section .eyebrow,
.gallery-section .eyebrow,
.final-cta .eyebrow {
  color: var(--amber);
}

.hero .eyebrow {
  font-weight: 400;
}

.hero-lead {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1rem, 1.75vw, 1.3rem);
  line-height: 1.45;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.94rem;
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--amber), var(--gold) 58%, #bd7a2c);
  box-shadow: var(--glow);
}

.button-secondary {
  color: var(--cream);
  border: 1px solid rgba(255, 244, 218, 0.42);
  background: rgba(255, 244, 218, 0.07);
}

.button-secondary:hover {
  border-color: rgba(241, 198, 106, 0.72);
  background: rgba(255, 244, 218, 0.12);
}

.button-secondary.dark {
  color: var(--ink);
  border-color: rgba(59, 40, 27, 0.22);
  background: rgba(255, 253, 248, 0.48);
}

.proof-strip {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 36px));
  margin: -24px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 244, 218, 0.48);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(247, 236, 216, 0.9)),
    var(--white);
}

.proof-slider-window {
  overflow: hidden;
}

.proof-slider-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.proof-slide {
  flex: 0 0 100%;
  min-height: 110px;
  padding: 20px 26px 18px;
}

.proof-slide strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 500;
  line-height: 1;
}

.proof-slide span {
  display: block;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 720;
}

.proof-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 0 14px;
}

.proof-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(115, 80, 47, 0.2);
  transition: transform 180ms ease, background 180ms ease;
}

.proof-dots .is-active {
  background: var(--gold);
  transform: scale(1.18);
}

.section,
.faq-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: clamp(58px, 7vw, 92px) 0;
}

.intro-section,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.02fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.section-copy p,
.feature-copy p,
.story-content p,
.event-copy p,
.location-card p,
.final-cta p,
.flow-item p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.96rem, 1.25vw, 1.05rem);
}

.image-panel,
.feature-image,
.image-stack,
.event-carousel,
.location-card {
  overflow: hidden;
  border: 1px solid rgba(255, 244, 218, 0.4);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 600ms ease;
}

.image-panel:hover img,
.feature-image:hover img,
.image-stack img:hover {
  transform: scale(1.035);
}

.flow-band {
  position: relative;
  margin: 0 0 clamp(44px, 6vw, 76px);
  padding: clamp(38px, 5vw, 54px) max(18px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(32, 23, 19, 0.98), rgba(91, 58, 30, 0.94) 46%, rgba(32, 49, 30, 0.96)),
    var(--brown);
}

.flow-band::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(241, 198, 106, 0.12), transparent 36%, rgba(66, 90, 53, 0.12)),
    linear-gradient(rgba(255, 244, 218, 0.03) 1px, transparent 1px);
  background-size: auto, 100% 42px;
}

.experience-flow {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.flow-item {
  min-height: 172px;
  padding: 22px 30px 24px;
  background: transparent;
  border-right: 1px solid rgba(255, 244, 218, 0.22);
  transition: transform 180ms ease, opacity 180ms ease;
}

.flow-item:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.flow-item:last-child {
  border-right: 0;
}

.flow-item span {
  color: rgba(255, 244, 218, 0.64);
  font-size: 0.76rem;
  font-weight: 950;
}

.flow-item strong {
  display: block;
  margin-top: 22px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  font-weight: 500;
}

.flow-item p {
  color: rgba(255, 244, 218, 0.84);
  font-size: 0.91rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  justify-items: start;
  align-items: start;
  margin-bottom: 26px;
  text-align: left;
}

.section-heading h2 {
  max-width: 980px;
  line-height: 1.06;
}

.section-copy h2,
.section-heading h2,
.location-card h2 {
  background: linear-gradient(180deg, #8f602f 0%, #5b3a23 58%, #3f291d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.experience-showcase {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 14px;
  min-height: 0;
}

.experience-tabs {
  display: grid;
  gap: 8px;
  align-content: start;
}

.experience-tab {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-start;
  min-height: 68px;
  padding: 16px 18px;
  overflow: hidden;
  color: rgba(255, 244, 218, 0.76);
  background:
    linear-gradient(180deg, rgba(59, 40, 27, 0.96), rgba(32, 49, 30, 0.88)),
    var(--brown);
  border: 1px solid rgba(255, 244, 218, 0.18);
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.experience-tab::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(241, 198, 106, 0.16), transparent 42%, rgba(159, 82, 40, 0.18));
  opacity: 0;
  transition: opacity 180ms ease;
}

.experience-tab span {
  position: relative;
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 0.82rem;
  font-weight: 560;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.experience-tab:hover,
.experience-tab.is-active {
  color: var(--cream);
  border-color: rgba(216, 163, 65, 0.58);
  transform: translateX(3px);
}

.experience-tab:hover::before,
.experience-tab.is-active::before {
  opacity: 1;
}

.experience-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(247, 236, 216, 0.9)),
    var(--white);
  border: 1px solid rgba(216, 163, 65, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: panelIn 220ms ease both;
}

.experience-panel[hidden] {
  display: none;
}

.panel-media {
  min-height: 300px;
  overflow: hidden;
  background: var(--brown);
}

.panel-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.experience-panel:hover .panel-media img {
  transform: scale(1.035);
}

.panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.card-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.panel-copy p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.4vw, 1.14rem);
}

.panel-copy a {
  width: fit-content;
  margin-top: 22px;
  color: var(--brown);
  border-bottom: 1px solid var(--gold);
  font-size: 0.94rem;
  font-weight: 900;
}

.panel-copy h3,
.event-copy h3 {
  color: var(--gold);
}

.feature-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.74fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(56px, 7vw, 88px) max(18px, calc((100vw - var(--max)) / 2));
  color: var(--cream);
  background:
    linear-gradient(125deg, rgba(32, 23, 19, 0.98), rgba(91, 58, 30, 0.94) 46%, rgba(32, 49, 30, 0.96)),
    var(--brown);
}

.feature-band::before,
.final-cta::before,
.gallery-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(241, 198, 106, 0.16), transparent 36%, rgba(66, 90, 53, 0.14)),
    linear-gradient(rgba(255, 244, 218, 0.035) 1px, transparent 1px);
  background-size: auto, 100% 42px;
}

.feature-copy,
.feature-image,
.gallery-section .section-heading,
.photo-carousel,
.final-cta > * {
  position: relative;
}

.feature-copy h2,
.feature-copy p,
.final-cta h2,
.final-cta p {
  color: var(--cream);
  background: none;
  -webkit-text-fill-color: initial;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  padding: 10px 12px;
  color: rgba(255, 244, 218, 0.9);
  background: rgba(255, 244, 218, 0.07);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 780;
}

.note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 0;
}

.note-row span {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 244, 218, 0.78);
  font-size: 0.9rem;
  font-weight: 520;
}

.note-row span::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 999px;
  content: "";
}

.feature-copy .button {
  margin-top: 24px;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 600ms ease;
}

.split-section {
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1fr);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 8px;
  padding: 8px;
  background:
    linear-gradient(145deg, rgba(59, 40, 27, 0.94), rgba(32, 49, 30, 0.86)),
    var(--brown);
}

.image-stack img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  transition: transform 600ms ease;
}

.image-stack img:nth-child(2) {
  min-height: 260px;
  margin-top: 42px;
}

.info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.info-list span {
  padding: 8px 11px;
  color: var(--green-dark);
  background: rgba(66, 90, 53, 0.1);
  border: 1px solid rgba(66, 90, 53, 0.18);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 850;
}

.fine-print {
  font-size: 0.85rem !important;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  padding: clamp(56px, 7vw, 86px) max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(130deg, rgba(32, 49, 30, 0.98), rgba(59, 40, 27, 0.96) 64%, rgba(159, 82, 40, 0.9)),
    var(--green-dark);
}

.story-section h2,
.story-section p,
.story-section a {
  color: var(--cream);
}

.story-logo {
  width: min(100%, 300px);
  justify-self: end;
  padding: 18px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 244, 218, 0.08), rgba(216, 163, 65, 0.12));
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.2));
}

.story-logo-triberg {
  width: min(100%, 240px);
  background: rgba(255, 253, 248, 0.92);
  object-fit: contain;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--amber) !important;
  font-weight: 900;
}

.event-carousel {
  position: relative;
  min-height: 450px;
  padding: 10px 62px 0;
  overflow: hidden;
}

.event-carousel-stage {
  position: relative;
  min-height: 430px;
}

.event-card {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 244, 218, 0.32);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(32, 23, 19, 0.14);
  background: rgba(255, 253, 248, 0.92);
  transform-origin: center;
  transition: transform 320ms ease, opacity 320ms ease, box-shadow 320ms ease;
}

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

.event-card-main {
  z-index: 5;
  width: min(74vw, 980px);
  height: clamp(280px, 32vw, 460px);
  transform: translate(-50%, -50%);
}

.event-card-left,
.event-card-right {
  z-index: 4;
  width: min(28vw, 390px);
  height: clamp(220px, 24vw, 330px);
  opacity: 0.6;
}

.event-card-left {
  transform: translate(calc(-50% - min(30vw, 410px)), -50%) scale(0.93);
}

.event-card-right {
  transform: translate(calc(-50% + min(30vw, 410px)), -50%) scale(0.93);
}

.event-card-far-left,
.event-card-far-right {
  z-index: 3;
  width: min(20vw, 260px);
  height: clamp(180px, 19vw, 260px);
  opacity: 0.26;
  filter: saturate(0.7);
}

.event-card-far-left {
  transform: translate(calc(-50% - min(45vw, 620px)), -50%) scale(0.88);
}

.event-card-far-right {
  transform: translate(calc(-50% + min(45vw, 620px)), -50%) scale(0.88);
}

.event-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-top: -6px;
  padding: 0 2px;
}

.event-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-copy h3 {
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
}

.gallery-section {
  position: relative;
  padding: clamp(58px, 7vw, 92px) max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(32, 23, 19, 0.98), rgba(59, 40, 27, 0.96) 55%, rgba(32, 49, 30, 0.94)),
    var(--brown);
}

.gallery-section .section-heading h2 {
  color: var(--cream);
  background: none;
  -webkit-text-fill-color: initial;
}

.gallery-heading h2 {
  max-width: 720px;
}

.photo-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.carousel-stage {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(320px, 1fr) minmax(160px, 0.55fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.carousel-slide {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 244, 218, 0.08);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 420ms ease, filter 180ms ease;
}

.carousel-slide-main {
  height: clamp(330px, 42vw, 560px);
}

.carousel-slide-side {
  height: clamp(220px, 27vw, 390px);
  opacity: 0.42;
  filter: saturate(0.75);
  transform: scale(0.94);
}

.carousel-slide-main:hover img {
  transform: scale(1.025);
}

.carousel-arrow {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(241, 198, 106, 0.48);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 244, 218, 0.12), rgba(216, 163, 65, 0.18));
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.carousel-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--amber);
  border-right: 2px solid var(--amber);
  content: "";
}

.carousel-arrow-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.carousel-arrow-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.carousel-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 198, 106, 0.76);
  background: linear-gradient(135deg, rgba(255, 244, 218, 0.18), rgba(216, 163, 65, 0.26));
}

.location-section {
  padding: clamp(62px, 7vw, 96px) 18px;
  background:
    linear-gradient(90deg, rgba(32, 23, 19, 0.78), rgba(32, 23, 19, 0.3)),
    url("assets/farol-entrada.webp") center / cover fixed;
}

.location-card {
  width: min(620px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4.4vw, 44px);
  background: rgba(255, 253, 248, 0.91);
  backdrop-filter: blur(14px);
}

.location-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.faq-section {
  width: min(900px, calc(100% - 36px));
  padding: clamp(58px, 7vw, 86px) 0;
}

.faq-section .section-heading {
  grid-template-columns: 1fr;
  margin-bottom: 20px;
}

.faq-grid {
  display: grid;
  gap: 10px;
}

details {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(32, 23, 19, 0.05);
}

summary {
  cursor: pointer;
  padding: 15px 18px;
  color: var(--brown);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.final-cta {
  position: relative;
  padding: clamp(60px, 8vw, 96px) 18px;
  overflow: hidden;
  color: var(--cream);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(32, 23, 19, 0.97), rgba(115, 80, 47, 0.94) 48%, rgba(159, 82, 40, 0.9)),
    var(--sunset);
}

.final-cta h2,
.final-cta p {
  margin-inline: auto;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(160px, 0.8fr));
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(54px, 7vw, 86px) clamp(18px, 4vw, 58px) 26px;
  color: rgba(255, 244, 218, 0.72);
  background:
    linear-gradient(90deg, var(--ink), var(--brown), var(--green-dark));
}

.site-footer img {
  width: 150px;
}

.footer-brand p {
  max-width: 310px;
  margin: 18px 0 0;
  color: rgba(255, 244, 218, 0.7);
  font-size: 0.95rem;
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer strong {
  margin-bottom: 12px;
  color: var(--cream);
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 520;
}

.footer-info {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-info a,
.footer-links a,
.footer-credit a {
  color: var(--amber);
  font-weight: 760;
}

.footer-credit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 4px;
  padding-top: 24px;
  margin-top: 10px;
  color: rgba(255, 244, 218, 0.62);
  border-top: 1px solid var(--line-light);
  font-size: 0.88rem;
}

.mobile-actions {
  display: none;
}

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

@keyframes slowReveal {
  from {
    opacity: 0.72;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .proof-strip,
  .experience-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-section,
  .split-section,
  .feature-band,
  .story-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .experience-panel {
    grid-template-columns: 1fr;
  }

  .panel-media,
  .panel-media img {
    min-height: 240px;
  }

  .story-logo {
    justify-self: start;
  }

  .event-carousel {
    min-height: 360px;
    padding: 8px 32px 0;
  }

  .event-carousel-stage {
    min-height: 340px;
  }

  .event-card-main {
    width: min(76vw, 760px);
    height: clamp(230px, 32vw, 330px);
  }

  .event-card-left,
  .event-card-right {
    width: min(24vw, 230px);
    height: clamp(170px, 19vw, 220px);
    opacity: 0.42;
  }

  .event-card-left {
    transform: translate(calc(-50% - min(34vw, 300px)), -50%) scale(0.9);
  }

  .event-card-right {
    transform: translate(calc(-50% + min(34vw, 300px)), -50%) scale(0.9);
  }

  .event-card-far-left,
  .event-card-far-right {
    width: min(16vw, 140px);
    height: clamp(130px, 15vw, 170px);
    opacity: 0.16;
  }

  .event-support {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .carousel-stage {
    grid-template-columns: 0.42fr 1fr 0.42fr;
    gap: 10px;
  }

  .carousel-slide-main {
    height: clamp(300px, 52vw, 470px);
  }

  .carousel-slide-side {
    height: clamp(210px, 36vw, 330px);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-credit {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 64px;
  }

  section[id],
  main[id] {
    scroll-margin-top: 70px;
  }

  body::before {
    background-size: 32px 32px;
  }

  .site-header {
    gap: 10px;
    padding: 7px 14px;
  }

  .brand img {
    width: 96px;
  }

  .header-cta {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 560px;
  }

  .hero-media {
    background:
      linear-gradient(118deg, rgba(241, 198, 106, 0.18) 0%, rgba(159, 82, 40, 0.08) 32%, transparent 62%),
      linear-gradient(0deg, rgba(32, 23, 19, 0.96) 0%, rgba(32, 23, 19, 0.66) 56%, rgba(32, 23, 19, 0.18) 100%),
      url("assets/hero-farol.webp") center / cover;
  }

  .hero-content {
    width: calc(100% - 30px);
    padding: 82px 0 38px;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  h2 {
    font-size: clamp(1.34rem, 6vw, 1.84rem);
    line-height: 1.1;
  }

  h2 br,
  h3 br,
  .feature-copy h2 br,
  .story-content h2 br,
  .section-heading h2 br,
  .final-cta h2 br {
    display: none;
  }

  .hero-lead {
    max-width: 320px;
    font-size: 0.96rem;
  }

  .hero-actions,
  .location-actions {
    gap: 8px;
  }

  .button {
    width: 100%;
    min-height: 45px;
  }

  .proof-strip {
    width: calc(100% - 28px);
    margin-top: -20px;
  }

  .proof-slide {
    min-height: 104px;
    padding: 16px 18px;
  }

  .proof-slide strong {
    font-size: 1.6rem;
  }

  .proof-slide span {
    font-size: 0.8rem;
  }

  .section,
  .faq-section {
    width: calc(100% - 30px);
  }

  .section {
    padding: 52px 0;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading h2,
  .gallery-heading h2,
  .location-card h2 {
    max-width: none;
  }

  .experience-flow,
  .check-list {
    grid-template-columns: 1fr;
  }

  .flow-band {
    padding: 28px 15px;
  }

  .flow-item {
    min-height: auto;
    padding: 18px 4px 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 244, 218, 0.18);
  }

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

  .experience-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .experience-tabs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(186px, 78%);
    gap: 8px;
    padding-bottom: 6px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .experience-tabs::-webkit-scrollbar {
    display: none;
  }

  .experience-tab {
    min-height: 54px;
    padding: 13px 15px;
    scroll-snap-align: start;
  }

  .panel-media,
  .panel-media img {
    min-height: 210px;
  }

  .panel-copy {
    padding: 20px 18px 22px;
  }

  .panel-copy p,
  .panel-copy a {
    max-width: none;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:nth-child(2) {
    min-height: 230px;
    margin-top: 0;
  }

  .feature-band,
  .story-section,
  .gallery-section {
    padding-inline: 15px;
  }

  .feature-band,
  .story-section {
    gap: 18px;
  }

  .feature-image img {
    aspect-ratio: 16 / 11;
  }

  .check-list {
    gap: 7px;
  }

  .check-list li {
    padding: 10px 12px;
    font-size: 0.86rem;
  }

  .note-row {
    flex-direction: column;
    gap: 8px;
  }

  .photo-carousel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .event-carousel {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 300px;
    padding: 0 0 2px;
  }

  .event-carousel-stage {
    min-height: 270px;
  }

  .event-card-main {
    width: calc(100% - 52px);
    height: 240px;
  }

  .event-card-left,
  .event-card-right {
    width: 88px;
    height: 146px;
    opacity: 0.18;
  }

  .event-card-left {
    transform: translate(calc(-50% - 42vw), -50%) scale(0.88);
  }

  .event-card-right {
    transform: translate(calc(-50% + 42vw), -50%) scale(0.88);
  }

  .event-card-far-left,
  .event-card-far-right {
    display: none;
  }

  .event-support {
    gap: 14px;
    margin-top: 10px;
  }

  .event-copy h3 {
    font-size: 1.25rem;
  }

  .carousel-stage {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .carousel-slide-side {
    display: none;
  }

  .carousel-slide-main {
    height: min(72vw, 320px);
  }

  .carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    background: rgba(32, 23, 19, 0.66);
    backdrop-filter: blur(8px);
  }

  .carousel-arrow-prev {
    left: 6px;
  }

  .carousel-arrow-next {
    right: 6px;
  }

  .location-section {
    background-attachment: scroll;
  }

  .location-card {
    padding: 22px 18px;
  }

  .location-card p {
    font-size: 0.94rem;
  }

  .faq-grid {
    gap: 8px;
  }

  summary {
    padding: 14px 16px;
    line-height: 1.34;
    font-size: 0.94rem;
  }

  details p {
    padding: 0 16px 16px;
  }

  .final-cta {
    padding: 52px 15px;
  }

  .site-footer {
    gap: 22px;
    padding: 46px 18px 88px;
  }

  .site-footer img {
    width: 126px;
  }

  .footer-credit {
    display: block;
    line-height: 1.6;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 8px;
    background: rgba(32, 23, 19, 0.92);
    border-top: 1px solid var(--line-light);
    backdrop-filter: blur(16px);
  }

  .mobile-actions a {
    min-height: 48px;
    color: var(--ink);
    background: linear-gradient(135deg, var(--amber), var(--gold));
    font-weight: 950;
  }
}
