:root {
  color-scheme: light;
  --paper: #f8f4ec;
  --paper-soft: #fffaf1;
  --ink: #161512;
  --muted: #675f55;
  --line: rgba(22, 21, 18, 0.12);
  --sage: #7c927d;
  --sage-dark: #405640;
  --coral: #d9664f;
  --blue: #385d8a;
  --gold: #d9a441;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(36, 30, 21, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  min-height: 68px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.78);
  box-shadow: 0 12px 38px rgba(32, 28, 24, 0.11);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 0.9rem;
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(124, 146, 125, 0.14);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 850px;
  padding: 126px 24px 38px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(248, 244, 236, 0.92) 0%, rgba(248, 244, 236, 0.6) 42%, rgba(248, 244, 236, 0.2) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 244, 236, 0.02), rgba(248, 244, 236, 0.9)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=2200&q=82") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto 26px;
}

.eyebrow,
.section-kicker,
.offer-label {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 9vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  color: #363029;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.section-heading,
.inquiry-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 780;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(22, 21, 18, 0.22);
}

.button-secondary {
  color: var(--white);
  background: var(--sage-dark);
}

.button-ghost {
  color: var(--ink);
  border-color: rgba(22, 21, 18, 0.18);
  background: rgba(255, 255, 255, 0.52);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-panel article,
.guide-card,
.process-grid article,
.inquiry-form {
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel article {
  min-height: 190px;
  padding: 26px;
}

.hero-panel h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.hero-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.panel-icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--sage-dark);
  font-weight: 850;
}

.panel-image {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(22, 21, 18, 0.12), rgba(22, 21, 18, 0.74)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=900&q=80") center / cover;
}

.panel-image p {
  color: rgba(255, 255, 255, 0.82);
}

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

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 8vw, 100px);
  align-items: start;
}

.copy-stack {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.12rem;
}

.inline-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.guide-section {
  padding-top: 30px;
}

.guide-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) 1fr;
  gap: clamp(28px, 6vw, 68px);
  padding: clamp(18px, 4vw, 38px);
  background: var(--paper-soft);
}

.guide-photos {
  position: relative;
  min-height: 480px;
}

.guide-photos img {
  height: 100%;
  object-fit: cover;
  box-shadow: 0 18px 56px rgba(50, 42, 31, 0.16);
}

.guide-photo-main {
  min-height: 360px;
  border-radius: var(--radius-md);
}

.guide-photo-secondary {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 42%;
  max-width: 210px;
  aspect-ratio: 3 / 4;
  border: 8px solid var(--paper-soft);
  border-radius: var(--radius-md);
}

.guide-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 720px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.offer-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 14px 46px rgba(50, 42, 31, 0.1);
  flex-direction: column;
}

.offer-card.featured {
  border-color: rgba(217, 164, 65, 0.52);
}

.offer-card img {
  height: 230px;
  object-fit: cover;
}

.offer-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.offer-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: #f4e3bd;
  font-size: 0.74rem;
}

.price {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 850;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

.offer-body p:not(.price):not(.offer-label),
.offer-body li {
  color: var(--muted);
}

.offer-body ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 26px;
  padding-left: 20px;
}

.offer-body .button {
  margin-top: auto;
}

.process-section {
  width: 100%;
  max-width: none;
  padding: 92px max(16px, calc((100vw - var(--max)) / 2));
  background: #20312c;
  color: var(--white);
}

.process-section .section-kicker,
.process-section p {
  color: rgba(255, 255, 255, 0.72);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article {
  min-height: 240px;
  padding: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 46px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 850;
}

.venue-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.venue-media {
  min-height: 520px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(22, 21, 18, 0.04), rgba(22, 21, 18, 0.16)),
    url("https://images.unsplash.com/photo-1595867818082-083862f3d630?auto=format&fit=crop&w=1200&q=82") center / cover;
  box-shadow: var(--shadow);
}

.venue-copy p {
  color: var(--muted);
  font-size: 1.1rem;
}

.venue-copy .button {
  margin-top: 16px;
}

.inquiry-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 7vw, 80px);
  align-items: start;
  padding-top: 40px;
}

.inquiry-intro {
  position: sticky;
  top: 120px;
}

.inquiry-intro p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.12rem;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(50, 42, 31, 0.1);
}

.form-row {
  display: grid;
  gap: 8px;
}

label,
legend {
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(22, 21, 18, 0.16);
  border-radius: var(--radius-sm);
  padding: 14px 15px;
  color: var(--ink);
  background: #fbf8f1;
  font: inherit;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--sage-dark) 50%), linear-gradient(135deg, var(--sage-dark) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(56, 93, 138, 0.16);
}

fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(22, 21, 18, 0.16);
  border-radius: var(--radius-md);
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
}

fieldset input {
  width: 18px;
  height: 18px;
  accent-color: var(--sage-dark);
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
}

@media (max-width: 920px) {
  .site-header {
    top: 12px;
    width: min(calc(100% - 20px), var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    background: rgba(255, 250, 241, 0.94);
    box-shadow: 0 20px 48px rgba(32, 28, 24, 0.13);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-panel,
  .offer-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .split,
  .guide-card,
  .venue-section,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

  .guide-photos,
  .venue-media {
    min-height: 360px;
  }

  .guide-photos {
    margin-bottom: 28px;
  }

  .guide-photo-secondary {
    right: 14px;
    bottom: -28px;
  }

  .inquiry-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand-text {
    max-width: 180px;
    white-space: normal;
    line-height: 1.05;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(248, 244, 236, 0.9), rgba(248, 244, 236, 0.68) 52%, rgba(248, 244, 236, 0.95));
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(calc(100% - 24px), var(--max));
    padding: 68px 0;
  }

  .process-section {
    width: 100%;
    padding: 68px 12px;
  }

  .offer-card img {
    height: 210px;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
