:root {
  --cream: #f6ead7;
  --paper: #fff8ec;
  --sand: #e9cfaa;
  --clay: #c87446;
  --wine: #7d2634;
  --brown: #332019;
  --blue: #17253a;
  --gold: #d7a957;
  --muted: #765f4f;
  --line: rgba(51, 32, 25, 0.16);
  --shadow: 0 24px 80px rgba(42, 24, 16, 0.18);
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--brown);
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 56px);
  color: #fff7ea;
  background: linear-gradient(90deg, rgba(33, 22, 18, 0.88), rgba(23, 37, 58, 0.72));
  border-bottom: 1px solid rgba(255, 247, 234, 0.14);
  box-shadow: 0 12px 34px rgba(22, 15, 11, 0.2);
  backdrop-filter: blur(18px) saturate(1.08);
}

.brand,
.nav-links,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.24);
}

.brand-mark {
  width: 18px;
  height: 26px;
  border: 2px solid currentColor;
  border-top-width: 0;
  border-radius: 0 0 10px 10px;
  position: relative;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -9px;
  width: 2px;
  height: 22px;
  background: currentColor;
  transform: translateX(-50%);
}

.nav-links {
  gap: clamp(12px, 3vw, 32px);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.92;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.24);
}

.nav-links a:hover {
  opacity: 1;
}

.header-actions {
  gap: 10px;
}

.header-contact {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 247, 234, 0.46);
  border-radius: 999px;
  padding: 7px 14px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff7ea;
  background: rgba(33, 22, 18, 0.52);
  box-shadow: 0 8px 22px rgba(18, 12, 9, 0.2);
  backdrop-filter: blur(14px);
}

.social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 247, 234, 0.46);
  border-radius: 999px;
  color: #fff7ea;
  background: rgba(33, 22, 18, 0.52);
  box-shadow: 0 8px 22px rgba(18, 12, 9, 0.2);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.social-link:hover,
.header-contact:hover {
  border-color: rgba(241, 191, 103, 0.82);
  background: rgba(55, 33, 24, 0.68);
}

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

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  min-height: 92svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--blue);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(22, 25, 34, 0.78) 0%, rgba(47, 32, 26, 0.56) 42%, rgba(23, 37, 58, 0.24) 100%),
    linear-gradient(0deg, rgba(41, 24, 18, 0.78) 0%, rgba(41, 24, 18, 0.06) 56%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(52px, 10vw, 108px) clamp(18px, 8vw, 112px);
  color: #fff7ea;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 9.1vw, 6.65rem);
  max-width: 820px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.47rem, 3.5vw, 3.36rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  line-height: 1.3;
  font-weight: 600;
}

.hero-note {
  max-width: 560px;
  color: rgba(255, 247, 234, 0.84);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: #24170f;
}

.button.quiet {
  border-color: rgba(255, 247, 234, 0.45);
  color: #fff7ea;
}

section:not(.hero) {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.trip-at-a-glance {
  background: var(--wine);
  color: #fff7ea;
}

.glance-heading,
.glance-grid,
.glance-link {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.glance-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.glance-heading .section-kicker {
  margin: 0;
  color: #f1bf67;
}

.glance-heading h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
}

.glance-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  border-top: 1px solid rgba(255, 247, 234, 0.3);
  border-left: 1px solid rgba(255, 247, 234, 0.3);
}

.glance-grid article {
  min-height: 176px;
  padding: 26px 28px;
  border-right: 1px solid rgba(255, 247, 234, 0.3);
  border-bottom: 1px solid rgba(255, 247, 234, 0.3);
}

.glance-grid span {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 247, 234, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.glance-grid strong {
  display: block;
  font-size: clamp(1.12rem, 2.1vw, 1.5rem);
  line-height: 1.2;
}

.glance-grid p {
  margin: 8px 0 0;
  color: rgba(255, 247, 234, 0.76);
  font-size: 0.94rem;
  line-height: 1.45;
}

.glance-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 26px;
  color: #fff7ea;
  font-weight: 700;
  text-decoration-color: rgba(241, 191, 103, 0.7);
  text-underline-offset: 5px;
}

.glance-link span {
  color: #f1bf67;
}

.intro-section {
  background: var(--paper);
}

.warm-band {
  background: var(--cream);
}

.two-column {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
  gap: clamp(36px, 8vw, 96px);
  align-items: start;
}

.text-flow,
.large-copy {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
}

.text-flow p:last-child,
.large-copy:last-child {
  margin-bottom: 0;
}

.section-heading {
  width: min(960px, 100%);
  margin: 0 auto clamp(34px, 5vw, 58px);
}

.experience-section {
  background:
    radial-gradient(circle at 14% 0%, rgba(215, 169, 87, 0.22), transparent 30%),
    var(--paper);
}

.experience-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.experience-grid article {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 236, 0.62);
}

.item-number {
  display: block;
  margin-bottom: 48px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
}

.experience-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.practical-section {
  background: var(--blue);
  color: #fff7ea;
}

.practical-section .section-kicker,
.final-cta .section-kicker {
  color: #f1bf67;
}

.info-list {
  width: min(960px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 247, 234, 0.2);
}

.info-list div {
  display: grid;
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 247, 234, 0.2);
}

.info-list dt {
  color: rgba(255, 247, 234, 0.66);
  font-weight: 700;
}

.info-list dd {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
}

.practical-details {
  width: min(960px, 100%);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.practical-details article {
  border: 1px solid rgba(255, 247, 234, 0.18);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 247, 234, 0.06);
}

.practical-details h3 {
  color: #fff7ea;
}

.practical-details p {
  margin-bottom: 0;
  color: rgba(255, 247, 234, 0.76);
}

.fee-grid,
.payment-box {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.fee-grid {
  grid-template-columns: minmax(120px, 0.58fr) minmax(0, 1fr);
}

.fee-grid span,
.payment-box span {
  color: rgba(255, 247, 234, 0.62);
  font-size: 0.9rem;
  font-weight: 700;
}

.fee-grid strong,
.payment-box strong {
  color: #fff7ea;
  font-weight: 700;
}

.payment-box p {
  display: grid;
  grid-template-columns: minmax(140px, 0.45fr) minmax(0, 1fr);
  gap: 12px;
  margin: 0;
}

.faq-section {
  background: var(--cream);
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--wine);
  font-size: 1.5rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 680px;
  margin: -6px 0 24px;
  color: var(--muted);
}

.final-cta {
  min-height: 58svh;
  display: grid;
  align-content: center;
  justify-items: start;
  background:
    linear-gradient(rgba(56, 25, 23, 0.82), rgba(24, 31, 45, 0.9)),
    url("assets/taize-evening-hero.png") center 58% / cover;
  color: #fff7ea;
}

.final-cta h2,
.final-cta p,
.final-cta .section-kicker,
.final-cta .button {
  width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.final-cta p:not(.section-kicker) {
  color: rgba(255, 247, 234, 0.82);
  font-size: 1.12rem;
}

.site-footer {
  padding: 28px clamp(18px, 5vw, 72px);
  background: #211612;
  color: rgba(255, 247, 234, 0.74);
  font-size: 0.92rem;
}

.site-footer p {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-footer .footer-credit {
  margin-top: 8px;
  color: rgba(255, 247, 234, 0.48);
  font-size: 0.82rem;
}

.footer-credit a {
  color: rgba(255, 247, 234, 0.68);
  text-decoration-color: rgba(255, 247, 234, 0.3);
  text-underline-offset: 3px;
}

.footer-credit a:hover {
  color: #fff7ea;
  text-decoration-color: rgba(241, 191, 103, 0.72);
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    width: min(100% - 36px, 620px);
    margin: 0 auto 48px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(22, 25, 34, 0.78), rgba(47, 32, 26, 0.46)),
      linear-gradient(0deg, rgba(41, 24, 18, 0.85) 0%, rgba(41, 24, 18, 0.18) 66%);
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .glance-heading {
    display: block;
  }

  .glance-heading .section-kicker {
    margin-bottom: 18px;
  }

  .glance-grid {
    grid-template-columns: 1fr;
  }

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

  .experience-grid article {
    min-height: 0;
    padding: 26px 22px;
  }

  .item-number {
    margin-bottom: 26px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 16px 18px;
    gap: 14px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .header-actions {
    gap: 8px;
  }

  .social-link {
    width: 34px;
    height: 34px;
  }

  .brand-mark {
    width: 16px;
    height: 23px;
  }

  h1 {
    font-size: clamp(2.28rem, 13.3vw, 3.64rem);
  }

  .hero-lead {
    font-size: 1.22rem;
  }

  .button {
    width: 100%;
  }

  .glance-grid article {
    min-height: 0;
    padding: 24px 20px;
  }

  .glance-grid span {
    margin-bottom: 14px;
  }

  section:not(.hero) {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .practical-details {
    grid-template-columns: 1fr;
  }

  .fee-grid,
  .payment-box p {
    grid-template-columns: 1fr;
  }

  summary::after {
    margin-left: 16px;
  }
}
