:root {
  --ink: #213140;
  --olive: #556347;
  --sage: #83907a;
  --rose: #d6b3b1;
  --cream: #f6f0e5;
  --paper: #fbf8f2;
  --gold: #c3a769;
  --border: rgba(33, 49, 64, 0.14);
  --shadow: 0 22px 60px rgba(63, 56, 41, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 179, 177, 0.28), transparent 34%),
    radial-gradient(circle at bottom right, rgba(131, 144, 122, 0.22), transparent 28%),
    linear-gradient(180deg, #f8f3ea 0%, #f5efe3 45%, #f3eadc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
    url("./logo.jpeg");
  background-size: auto, 900px;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  opacity: 0.12;
  pointer-events: none;
}

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

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 40px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: rgba(251, 248, 242, 0.78);
  box-shadow: 0 12px 30px rgba(59, 54, 40, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(85, 99, 71, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 229, 209, 0.92));
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.brand-copy span {
  margin-top: 6px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(33, 49, 64, 0.74);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
}

.hero,
.story-grid,
.event-section,
.availability-section,
.gallery-section,
.contact-section {
  margin-top: 32px;
}

.hero {
  display: block;
  min-height: calc(50vh - 180px);
  padding: 72px 6px 20px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
}

.hero h1,
.section-heading h2,
.story-card h2,
.event-panel h3,
.availability-grid h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5.6vw, 4.8rem);
}

.lede,
.story-card p,
.event-panel p,
.availability-grid p,
.contact-copy p {
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(33, 49, 64, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

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

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

.button-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.button-secondary {
  border-color: rgba(33, 49, 64, 0.16);
  background: rgba(255, 255, 255, 0.55);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-notes li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(85, 99, 71, 0.18);
  font-size: 0.92rem;
}

.story-card,
.event-panel,
.availability-grid article,
.contact-layout,
.gallery-card {
  border: 1px solid var(--border);
  background: rgba(251, 248, 242, 0.8);
  box-shadow: var(--shadow);
}

.story-grid,
.availability-grid,
.contact-layout {
  display: grid;
  gap: 22px;
}

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

.story-card {
  padding: 30px;
  border-radius: 28px;
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(214, 179, 177, 0.22), rgba(251, 248, 242, 0.86)),
    rgba(251, 248, 242, 0.8);
}

.story-card h2,
.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.event-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(214, 179, 177, 0.14)),
    rgba(251, 248, 242, 0.86);
}

.event-kicker {
  margin: 0 0 8px;
  font-size: 0.88rem;
  color: var(--olive);
}

.event-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
}

.event-details {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.65);
}

.event-details span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(33, 49, 64, 0.62);
}

.event-details strong {
  font-size: 1.02rem;
  line-height: 1.4;
}

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

.availability-grid article {
  padding: 28px;
  border-radius: 26px;
}

.availability-grid h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.gallery-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.gallery-viewport {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 18px;
  transition: transform 260ms ease;
  will-change: transform;
}

.gallery-card {
  flex: 0 0 calc((100% - 36px) / 3);
  overflow: hidden;
  border-radius: 26px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.04);
}

.carousel-arrow {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(33, 49, 64, 0.14);
  border-radius: 50%;
  background: rgba(251, 248, 242, 0.9);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.carousel-arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.contact-layout {
  grid-template-columns: 0.8fr 1.2fr;
  padding: 28px;
  border-radius: 30px;
}

.contact-copy {
  padding-right: 8px;
}

.inline-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .story-grid,
  .event-panel,
  .availability-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 32px;
    gap: 16px;
  }

  .brand {
    width: 100%;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

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

  .site-nav a {
    display: flex;
    justify-content: center;
    padding: 10px 12px;
    border: 1px solid rgba(33, 49, 64, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
  }

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

  .hero h1 {
    max-width: none;
  }

  .gallery-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 22px, 1180px);
    margin-top: 12px;
  }

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

  body::before {
    background-size: auto, 680px;
  }

  .brand {
    align-items: flex-start;
    gap: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .brand-copy span {
    margin-top: 4px;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .site-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .hero,
  .story-grid,
  .event-section,
  .availability-section,
  .gallery-section,
  .contact-section {
    margin-top: 24px;
  }

  .hero {
    padding: 32px 0 8px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.1rem);
    line-height: 1.02;
  }

  .lede {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .hero-actions,
  .hero-notes {
    flex-direction: column;
  }

  .hero-notes li {
    width: 100%;
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .story-card,
  .event-panel,
  .availability-grid article,
  .contact-layout {
    padding: 22px;
  }

  .gallery-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .carousel-arrow {
    width: 48px;
    height: 48px;
  }

  .gallery-viewport {
    order: 1;
    grid-column: 1 / -1;
  }

  #gallery-prev {
    order: 2;
    justify-self: start;
  }

  #gallery-next {
    order: 2;
    justify-self: end;
  }

  .gallery-card {
    flex-basis: 100%;
  }

  .event-details {
    padding: 18px;
  }

  .event-details .button {
    width: 100%;
  }

  .inline-link {
    overflow-wrap: anywhere;
  }
}
