:root {
  --bg: #0c0c0b;
  --bg-alt: #141311;
  --text: #f3f0e8;
  --text-muted: #d8d1c1;
  --accent: #b89a5f;
  --accent-strong: #cfb074;
  --line: rgba(255, 255, 255, 0.12);
  --hero-overlay: rgba(0, 0, 0, 0.56);
  --max-width: 68rem;
  --narrow-width: 46rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: "Work Sans", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.65;
  font-size: 1rem;
}

a {
  color: var(--accent-strong);
  text-underline-offset: 0.16em;
}

a:hover,
a:focus-visible {
  color: #efd19a;
}

.container {
  width: min(100% - 2.25rem, var(--max-width));
  margin-inline: auto;
}

.narrow {
  max-width: var(--narrow-width);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  background: url("./background-1200.jpg") center center / cover no-repeat;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.62));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 14rem;
  background: linear-gradient(to bottom, rgba(12, 12, 11, 0), var(--bg));
  pointer-events: none;
}

.hero-content {
  padding-top: 4rem;
  padding-bottom: 5.5rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  letter-spacing: 0.01em;
  margin: 0;
}

h1 {
  font-size: clamp(2.25rem, 8vw, 5.4rem);
  line-height: 0.95;
  max-width: 12ch;
  text-wrap: balance;
}

.hero-kicker {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: clamp(0.82rem, 1.7vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.subheadline {
  margin: 1rem 0 0;
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  font-style: italic;
  color: var(--accent-strong);
}

.supporting-line {
  margin: 1.15rem 0 0;
  max-width: 40ch;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
}

.cta-group {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.button {
  display: inline-block;
  border: 1px solid var(--accent-strong);
  color: #111;
  background: var(--accent-strong);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.82rem 1.2rem;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: #e4c389;
  border-color: #e4c389;
  color: #050505;
}

.button-ghost {
  background: transparent;
  color: var(--accent-strong);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: #111;
}

.secondary-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(3.2rem, 6vw, 5.2rem) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section:nth-of-type(even) {
  background: var(--bg-alt);
}

h2 {
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  line-height: 1.07;
  margin-bottom: 1.4rem;
}

h3 {
  font-size: clamp(1.35rem, 3.1vw, 1.9rem);
  margin-bottom: 0.45rem;
}

p {
  margin: 0;
}

p + p {
  margin-top: 0.95rem;
}

.themes-list,
.includes-list,
.hotels-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.themes-list li,
.includes-list li,
.hotels-list li {
  margin-top: 0.48rem;
}

.schedule-grid {
  display: grid;
  gap: 1.6rem;
}

.section-note {
  margin-top: 1.35rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--accent-strong);
  margin-bottom: 1rem;
}

.hotel-name {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3.6vw, 2rem);
}

.ministry-wrap {
  text-align: center;
}

.ministry-logo-block {
  display: inline-block;
  background: #f2ede1;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0.5rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1.4rem;
}

.ministry-logo {
  width: min(86vw, 24rem);
  height: auto;
  display: block;
  margin: 0 auto;
}

.contact-form {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.72rem 0.8rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent-strong);
  outline-offset: 1px;
}

.contact-form .button {
  margin-top: 0.3rem;
  justify-self: start;
}

.final-cta-wrap {
  text-align: center;
}

.section-final-cta h2 {
  margin-bottom: 1.55rem;
  font-size: clamp(2.1rem, 6.5vw, 4.1rem);
}

@media (min-width: 48rem) {
  .hero {
    background-image: url("./background-2400.jpg");
  }

  .hero-content {
    padding-top: 5.5rem;
    padding-bottom: 6.4rem;
  }

  .schedule-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}