:root {
  --font-body: "Jost", "Montserrat", Arial, sans-serif;
  --font-ui: "Montserrat", "Jost", Arial, sans-serif;
  --paper: #f6f0e6;
  --porcelain: #fffdf8;
  --ink: #27211d;
  --muted: #685f56;
  --line: #ded3c6;
  --teal: #0e4a50;
  --peach: #f3997b;
  --clay: #a75e3c;
  --clay-dark: #743f2b;
  --sage-dark: #3f4a3a;
  --blue-grey: #526a72;
  --shadow: 0 18px 42px rgba(39, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
  letter-spacing: 0.3px;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p,
li,
summary,
.date-card,
.details-panel,
.site-footer,
.signup-dialog {
  font-family: var(--font-ui);
}

h1,
h2 {
  font-family: var(--font-ui);
  font-weight: 500;
  line-height: 1.12;
}

h1 {
  font-size: 76px;
  line-height: 1.02;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
  max-width: 980px;
}

h2 {
  font-size: 40px;
  margin-bottom: 22px;
}

h3 {
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 12px;
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(222, 211, 198, 0.82);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 88px;
  padding: 14px 40px;
  position: sticky;
  top: 0;
  transition: box-shadow 240ms ease;
  z-index: 30;
  backdrop-filter: blur(16px);
}

.site-header.scrolled {
  box-shadow: 0 14px 30px rgba(39, 33, 29, 0.09);
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
}

.brand-logo img {
  display: block;
  height: 58px;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.site-nav a,
.site-nav button {
  background: transparent;
  border: 0;
  color: var(--teal);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 0;
  transition: color 200ms ease;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  background: var(--clay);
  border-radius: 2px;
  bottom: 5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--clay-dark);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav button,
.site-nav a.nav-cta {
  background: var(--clay);
  border-radius: 8px;
  color: var(--porcelain);
  padding: 13px 20px;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.site-nav a.nav-cta::after {
  display: none;
}

.site-nav button:hover,
.site-nav button:focus-visible,
.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus-visible {
  background: var(--clay-dark);
  box-shadow: 0 10px 20px rgba(167, 94, 60, 0.26);
  color: var(--porcelain);
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"] {
  color: var(--clay-dark);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: none;
  flex: 0 0 auto;
  height: 46px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 46px;
  z-index: 35;
}

.menu-toggle span {
  background: var(--teal);
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 220ms ease;
  width: 21px;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  color: var(--porcelain);
  display: grid;
  min-height: calc(100vh - 88px);
  min-height: calc(100svh - 88px);
  overflow: hidden;
  position: relative;
}

.hero-media {
  background-image:
    linear-gradient(90deg, rgba(22, 18, 16, 0.34), rgba(22, 18, 16, 0.52) 50%, rgba(22, 18, 16, 0.24)),
    linear-gradient(180deg, rgba(22, 18, 16, 0.22), rgba(22, 18, 16, 0.38) 58%, rgba(22, 18, 16, 0.28)),
    url("assets/hero-workshop-table.jpg");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
}


.hero-content {
  align-self: center;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: calc(100vh - 88px);
  min-height: calc(100svh - 88px);
  justify-self: center;
  max-width: 1060px;
  padding: 118px 34px 72px;
  position: relative;
  text-align: center;
  width: min(100%, 1180px);
  z-index: 1;
}

.hero-content h1 {
  align-self: center;
}

.hero-bottom {
  align-self: end;
  justify-self: center;
  width: min(100%, 760px);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero h1 {
  animation: rise-in 760ms cubic-bezier(0.22, 0.61, 0.36, 1) 140ms both;
}

.hero-copy {
  animation: rise-in 760ms cubic-bezier(0.22, 0.61, 0.36, 1) 340ms both;
}

.hero-actions {
  animation: rise-in 760ms cubic-bezier(0.22, 0.61, 0.36, 1) 520ms both;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
  transition: opacity 640ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 640ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero h1,
  .hero-copy,
  .hero-actions {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.eyebrow,
.section-kicker,
.date-label {
  color: var(--clay);
  font-size: 13px;
  font-family: var(--font-ui);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4d5c0;
}

.hero-copy {
  font-family: var(--font-ui);
  font-size: 22px;
  line-height: 34px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 0;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.22;
  min-height: 62px;
  padding: 15px 28px;
  text-align: center;
  text-transform: none;
}

.button {
  transition: transform 140ms ease, box-shadow 140ms ease, background 160ms ease;
}

.button:active,
.date-card .date-cta:active,
.signup-option:active,
.gallery-tile:active {
  transform: scale(0.975);
}

.button.primary {
  background: var(--clay);
  color: var(--porcelain);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 253, 248, 0.72);
  color: var(--porcelain);
}

.button.secondary.dark {
  background: transparent;
  border-color: var(--line);
  color: var(--teal);
}

.section-pad {
  padding: 88px 34px;
}

.section-heading,
.details,
.steps-grid,
.date-grid,
.gallery-grid,
.faq-list {
  margin-left: auto;
  margin-right: auto;
  width: min(100%, 1180px);
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading h2 {
  max-width: 740px;
}

.details {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.details-panel {
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.details-panel.muted {
  background: #f2eadf;
}

.details-panel .section-kicker {
  color: var(--clay-dark);
}

.details-panel h2 {
  margin-bottom: 28px;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.details-panel p {
  color: var(--muted);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.details-panel .section-kicker,
.details-panel .check-list {
  position: relative;
  z-index: 1;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: 18px minmax(0, 1fr);
  padding-top: 12px;
}

.check-list li::before {
  background: var(--peach);
  border-radius: 50%;
  content: "";
  height: 9px;
  margin-top: 8px;
  width: 9px;
}

.faq {
  background: var(--porcelain);
}

.section-cta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  margin: 44px auto 0;
  width: min(100%, 1180px);
}

.section-cta .text-link {
  margin-top: 0;
  padding-top: 0;
}

.details-panel .text-link {
  position: relative;
  z-index: 1;
}

.mobile-cta {
  display: none;
}

.schedule-gallery-band .about {
  background: transparent;
}

.about-inner {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  margin-left: auto;
  margin-right: auto;
  width: min(100%, 1180px);
}

.about-content {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(39, 33, 29, 0.08);
  padding: 34px;
  backdrop-filter: blur(8px);
}

.about-content .section-heading {
  margin-bottom: 24px;
}

.about-text p {
  color: #4a4238;
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 16px;
  max-width: 760px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-map {
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(39, 33, 29, 0.08);
  overflow: hidden;
  padding: 8px;
  backdrop-filter: blur(8px);
}

.about-map iframe {
  border: 0;
  border-radius: 6px;
  display: block;
  height: 100%;
  min-height: 340px;
  width: 100%;
}

.steps {
  background:
    linear-gradient(
      180deg,
      var(--porcelain) 0,
      rgba(246, 240, 230, 0.72) 150px,
      rgba(246, 240, 230, 0.54) 50%,
      rgba(246, 240, 230, 0.72) calc(100% - 150px),
      var(--porcelain) 100%
    ),
    linear-gradient(90deg, rgba(255, 253, 248, 0.48), rgba(255, 253, 248, 0.1)),
    url("assets/gallery-detail-dots.jpg");
  background-position: center 56%;
  background-size: cover;
}

.steps .step-card {
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(39, 33, 29, 0.08);
}

.details-section {
  background: var(--porcelain);
}

.gallery,
.gallery-cta,
.gallery-page {
  min-height: auto;
  padding-bottom: 96px;
  padding-top: 76px;
}

.gallery-page-heading {
  margin-bottom: 42px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  text-align: center;
}

.gallery-page-heading h1 {
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.04;
  margin: 0 auto;
  max-width: 700px;
}

.gallery-page-sub {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 28px;
  margin: 16px auto 0;
  max-width: 560px;
}

.gallery-cta-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  width: min(100%, 1180px);
}

.gallery-cta-inner > div {
  max-width: 620px;
}

.gallery-cta-inner h2 {
  margin-bottom: 14px;
}

.gallery-cta-inner p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.gallery-return {
  background: var(--porcelain);
}

.gallery-return-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.date-grid,
.gallery-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

.date-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-areas:
    "g-dots g-table g-table g-host"
    "g-portrait g-couple g-couple g-tile";
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item--dots {
  grid-area: g-dots;
}

.gallery-item--table {
  grid-area: g-table;
}

.gallery-item--host {
  grid-area: g-host;
}

.gallery-item--portrait {
  grid-area: g-portrait;
}

.gallery-item--couple {
  grid-area: g-couple;
}

.gallery-tile {
  align-content: space-between;
  background: var(--teal);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(39, 33, 29, 0.07);
  color: var(--porcelain);
  display: grid;
  gap: 18px;
  grid-area: g-tile;
  padding: 26px 24px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-tile:hover {
  box-shadow: 0 16px 32px rgba(14, 74, 80, 0.28);
  transform: translateY(-3px);
}

.gallery-tile .section-kicker {
  color: #f4d5c0;
  margin-bottom: 0;
}

.gallery-tile p {
  color: rgba(255, 253, 248, 0.82);
  font-size: 15px;
  line-height: 23px;
  margin: 0;
}

.gallery-tile strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.gallery-tile .gallery-tile-arrow {
  font-size: 24px;
  line-height: 1;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.date-card,
.step-card {
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 260px;
  padding: 28px;
}

.step-card {
  align-content: start;
  background: var(--porcelain);
  display: grid;
  justify-items: start;
  min-height: 270px;
  overflow: hidden;
  padding: 40px 32px 32px;
  position: relative;
  text-align: left;
}

.date-card p,
.step-card p,
.faq p {
  color: var(--muted);
  margin-bottom: 0;
}

.step-card h3 {
  color: var(--teal);
  font-size: 26px;
  line-height: 1.18;
  margin-bottom: 16px;
}

.step-card p {
  font-size: 17px;
  line-height: 27px;
  max-width: 330px;
}

.step-card::after {
  color: rgba(243, 153, 123, 0.14);
  font-family: var(--font-ui);
  font-size: 128px;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  right: 12px;
  top: 10px;
  z-index: 0;
}

.step-card:nth-child(1)::after {
  content: "1";
}

.step-card:nth-child(2)::after {
  content: "2";
}

.step-card:nth-child(3)::after {
  content: "3";
}

.step-card:nth-child(4)::after {
  content: "4";
}

.dates {
  background: var(--paper);
}

.schedule-gallery-band {
  background:
    linear-gradient(
      180deg,
      var(--porcelain) 0,
      rgba(246, 240, 230, 0.7) 170px,
      rgba(246, 240, 230, 0.5) 50%,
      rgba(246, 240, 230, 0.7) calc(100% - 170px),
      var(--porcelain) 100%
    ),
    linear-gradient(90deg, rgba(255, 253, 248, 0.44), rgba(255, 253, 248, 0.08)),
    url("assets/gallery-workshop-table.jpg");
  background-position: center 54%;
  background-size: cover;
}

.schedule-gallery-band .dates {
  background: transparent;
  padding-bottom: 58px;
}

.schedule-gallery-band .about {
  padding-top: 34px;
}

.dates-heading {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.dates-heading h2 {
  margin-bottom: 0;
  max-width: 640px;
}

.dates-heading .section-kicker {
  margin-bottom: 10px;
}

.schedule-gallery-band .date-card {
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(39, 33, 29, 0.08);
}

.date-card {
  display: flex;
  flex-direction: column;
}

.date-card h3 {
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.date-card .date-desc {
  white-space: pre-line;
}

.date-spots {
  align-items: center;
  align-self: flex-start;
  background: rgba(63, 107, 79, 0.11);
  border-radius: 999px;
  color: #3f6b4f;
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 700;
  gap: 8px;
  margin: 0;
  margin-top: auto;
  padding: 7px 14px;
}

.date-spots::before {
  background: currentColor;
  border-radius: 50%;
  content: "";
  flex: 0 0 auto;
  height: 8px;
  width: 8px;
}

.date-spots.low {
  background: rgba(164, 99, 11, 0.12);
  color: #a4630b;
}

.date-spots.full {
  background: rgba(104, 95, 86, 0.12);
  color: var(--muted);
}

.date-card .date-desc {
  margin-bottom: 18px;
}

.date-spots + .date-price {
  margin-top: 0;
  padding-top: 14px;
}

.date-card .date-price {
  align-items: baseline;
  color: var(--clay-dark);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: 27px;
  font-weight: 800;
  gap: 7px;
  line-height: 1.1;
  margin: 0;
  margin-top: auto;
  padding-top: 22px;
}

.date-card .date-price .per {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.date-card .date-price.is-custom {
  font-size: 21px;
  font-weight: 700;
}

.date-card .date-cta {
  align-items: center;
  align-self: flex-start;
  background: var(--clay);
  border: 0;
  border-radius: 999px;
  color: var(--porcelain);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
  min-height: 54px;
  padding: 14px 26px;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.date-card .date-cta:hover {
  background: var(--clay-dark);
  box-shadow: 0 12px 24px rgba(167, 94, 60, 0.28);
  transform: translateY(-2px);
}

.date-card .date-cta:focus-visible {
  outline: 3px solid rgba(167, 94, 60, 0.34);
  outline-offset: 3px;
}

.date-card .date-cta-icon {
  height: 18px;
  width: 18px;
}

.gallery-item {
  appearance: none;
  aspect-ratio: 2 / 3;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(39, 33, 29, 0.07);
  color: inherit;
  cursor: pointer;
  display: block;
  font: inherit;
  min-height: 100%;
  overflow: hidden;
  padding: 8px;
  position: relative;
  width: 100%;
}

.gallery-item--table,
.gallery-item--couple {
  aspect-ratio: 4 / 3;
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(167, 94, 60, 0.34);
  outline-offset: 4px;
}

.gallery-item img {
  background: linear-gradient(135deg, #fffdf8, #f2eadf);
  border-radius: 6px;
  display: block;
  filter: saturate(0.96) contrast(1.02);
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 220ms ease, transform 220ms ease;
  width: 100%;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.018);
}

.gallery-focus-detail {
  object-position: 50% 58%;
}

.gallery-focus-host,
.gallery-focus-portrait {
  object-position: 50% 26%;
}

.text-link {
  background: transparent;
  border: 0;
  color: var(--clay-dark);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-ui);
  font-weight: 800;
  margin-top: auto;
  padding: 28px 0 0;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
}

.contact-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 28px;
}

.phone-link {
  color: var(--muted);
  font-family: var(--font-ui);
  font-weight: 800;
}

.text-link::after {
  content: "\2192";
}

.signup-dialog {
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  left: 50%;
  margin: 0;
  max-width: min(92vw, 560px);
  max-height: min(86vh, 640px);
  overflow: auto;
  padding: 34px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.signup-dialog[open] {
  display: grid;
  gap: 18px;
}

.signup-dialog::backdrop {
  background: rgba(39, 33, 29, 0.54);
  backdrop-filter: blur(4px);
}

.gallery-lightbox {
  background: transparent;
  border: 0;
  color: var(--porcelain);
  margin: auto;
  max-height: 94vh;
  max-width: 94vw;
  overflow: visible;
  padding: 0;
}

.gallery-lightbox[open] {
  display: grid;
  place-items: center;
}

.gallery-lightbox::backdrop {
  background: rgba(39, 33, 29, 0.74);
  backdrop-filter: blur(5px);
}

.gallery-lightbox figure {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin: 0;
  touch-action: pan-y;
}

.gallery-count {
  color: rgba(255, 253, 248, 0.86);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

.gallery-lightbox img {
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  display: block;
  height: auto;
  max-height: 86vh;
  max-width: min(94vw, 1120px);
  object-fit: contain;
  width: auto;
}

.gallery-lightbox .dialog-close {
  background: rgba(39, 33, 29, 0.48);
  border-color: rgba(255, 253, 248, 0.42);
  color: var(--porcelain);
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  top: clamp(16px, 3vw, 34px);
  z-index: 2;
}

.gallery-nav {
  align-items: center;
  background: rgba(39, 33, 29, 0.46);
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 50%;
  color: var(--porcelain);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 44px;
  height: 58px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 6px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease;
  width: 58px;
  z-index: 2;
}

.gallery-nav:hover,
.gallery-nav:focus-visible,
.gallery-lightbox .dialog-close:hover,
.gallery-lightbox .dialog-close:focus-visible {
  background: rgba(39, 33, 29, 0.68);
  border-color: rgba(255, 253, 248, 0.76);
}

.gallery-prev {
  left: clamp(14px, 4vw, 56px);
}

.gallery-next {
  right: clamp(14px, 4vw, 56px);
}

.signup-dialog h2 {
  font-size: 34px;
  margin-bottom: 0;
}

.dialog-copy {
  color: var(--muted);
  font-family: var(--font-ui);
  margin-bottom: 4px;
}

.dialog-close {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 28px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
}

.signup-options {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.signup-option {
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  justify-items: center;
  min-height: 108px;
  padding: 18px;
  text-align: center;
}

.signup-option span {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.signup-option strong {
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.instagram-option {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--porcelain);
}

.instagram-option span {
  color: rgba(255, 253, 248, 0.78);
}

.phone-option {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 800;
}

details p {
  padding-top: 14px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: var(--porcelain);
  display: flex;
  justify-content: space-between;
  padding: 26px 34px;
}

.site-footer p {
  font-family: var(--font-ui);
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.site-footer a {
  color: rgba(255, 253, 248, 0.72);
}

@media (max-width: 920px) {
  .site-header {
    min-height: 66px;
    padding: 10px 20px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand-logo img {
    height: 46px;
  }

  .site-nav {
    align-items: stretch;
    background: rgba(255, 253, 248, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 32px rgba(39, 33, 29, 0.1);
    flex-direction: column;
    gap: 0;
    left: 0;
    margin-left: 0;
    opacity: 0;
    padding: 14px 20px 18px;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 66px;
    transform: translateY(-14px);
    transition: opacity 260ms ease, transform 260ms ease, visibility 0s linear 260ms;
    visibility: hidden;
    z-index: 28;
    backdrop-filter: blur(14px);
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: opacity 260ms ease, transform 260ms ease;
    visibility: visible;
  }

  .site-nav a,
  .site-nav button {
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    line-height: 1.2;
    opacity: 0;
    padding: 16px 0;
    text-align: left;
    transform: translateY(-8px);
    transition: opacity 260ms ease, transform 260ms ease;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav.open a,
  .site-nav.open button {
    opacity: 1;
    transform: none;
  }

  .site-nav.open > :nth-child(1) {
    transition-delay: 60ms;
  }

  .site-nav.open > :nth-child(2) {
    transition-delay: 110ms;
  }

  .site-nav.open > :nth-child(3) {
    transition-delay: 160ms;
  }

  .site-nav.open > :nth-child(4) {
    transition-delay: 210ms;
  }

  .site-nav.open > :nth-child(5) {
    transition-delay: 260ms;
  }

  .site-nav button,
  .site-nav a.nav-cta {
    align-self: stretch;
    border-bottom: 0;
    margin-top: 12px;
    padding: 15px 14px;
    text-align: center;
  }

  section[id] {
    scroll-margin-top: 80px;
  }

  .mobile-cta {
    background: rgba(255, 253, 248, 0.94);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: block;
    left: 0;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    position: fixed;
    right: 0;
    transform: translateY(110%);
    transition: transform 300ms ease;
    z-index: 25;
    backdrop-filter: blur(14px);
  }

  .mobile-cta.visible {
    transform: none;
  }

  .mobile-cta .button {
    min-height: 52px;
    padding: 12px 20px;
    width: 100%;
  }

  .site-footer {
    padding-bottom: 100px;
  }

  .hero {
    min-height: calc(100vh - 66px);
    min-height: calc(100svh - 66px);
  }

  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(20, 16, 14, 0.44) 0%, rgba(20, 16, 14, 0.32) 22%, rgba(20, 16, 14, 0.56) 50%, rgba(20, 16, 14, 0.87) 100%),
      url("assets/hero-workshop-table.jpg");
    background-position: center, center 58%;
    background-size: auto, auto 135%;
  }

  .hero h1,
  .hero-copy {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
  }

  .hero-content,
  .section-pad {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content {
    min-height: calc(100vh - 66px);
    min-height: calc(100svh - 66px);
    padding-top: 58px;
    padding-bottom: 34px;
    text-align: center;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .details,
  .date-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-map {
    order: -1;
  }

  .about-map iframe {
    height: 300px;
  }

  .gallery-cta-inner {
    justify-content: center;
    text-align: center;
  }

  .gallery-cta-inner > div {
    max-width: 620px;
  }

  .gallery-return-actions {
    justify-content: center;
  }

  .gallery-grid {
    grid-template-areas:
      "g-table g-table"
      "g-dots g-host"
      "g-couple g-couple"
      "g-portrait g-tile";
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 58px;
    padding: 8px 16px;
  }

  .brand-logo img {
    height: 42px;
  }

  .site-nav {
    top: 58px;
  }

  .menu-toggle {
    height: 42px;
    width: 42px;
  }

  .hero,
  .hero-content {
    min-height: calc(100vh - 58px);
    min-height: calc(100svh - 58px);
  }

  h1 {
    font-size: 36px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(30px, calc((100vw - 40px) * 0.112), 42px);
    line-height: 1.1;
  }

  h2 {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 18px;
  }

  .hero-actions {
    align-items: stretch;
    justify-content: center;
    margin-top: 0;
  }

  .hero-actions .button {
    align-items: center;
    display: flex;
    flex: 1 1 100%;
    font-size: 17px;
    justify-content: center;
    line-height: 1.25;
    min-height: 56px;
    padding: 12px 14px;
    text-align: center;
    white-space: normal;
  }

  .gallery-cta-inner .button,
  .gallery-return-actions .button,
  .dates-heading .button {
    width: 100%;
  }

  .about-content {
    padding: 24px 20px;
  }

  .section-pad {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .gallery-grid {
    gap: 12px;
  }

  .gallery-tile {
    gap: 12px;
    padding: 18px 16px;
  }

  .gallery-tile strong {
    font-size: 16px;
  }

  .gallery-nav {
    font-size: 34px;
    height: 46px;
    padding-bottom: 5px;
    width: 46px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .details-panel,
  .step-card {
    padding: 22px;
  }

  .step-card {
    min-height: 0;
    padding: 26px 22px 24px;
  }

  .step-card h3 {
    font-size: 23px;
    margin-bottom: 10px;
  }

  .step-card p {
    font-size: 15.5px;
    line-height: 25px;
  }

  .date-grid {
    gap: 14px;
  }

  .date-card {
    padding: 22px 20px;
  }

  .date-card h3 {
    font-size: 24px;
  }

  .date-card .date-desc {
    font-size: 15px;
    line-height: 24px;
  }

  .date-card .date-price {
    font-size: 24px;
  }

  .date-card .date-cta {
    align-self: stretch;
    font-size: 17px;
    margin-top: 16px;
    min-height: 56px;
    width: 100%;
  }

  .step-card::after {
    font-size: 84px;
    right: 14px;
    top: 14px;
  }

  .steps-grid {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .site-footer,
  .site-footer div {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    gap: 16px;
  }

  .signup-dialog {
    padding: 26px;
  }

  .signup-dialog h2 {
    font-size: 30px;
    padding-right: 48px;
  }

  .signup-options {
    grid-template-columns: 1fr;
  }
}

.img-fade {
  opacity: 0;
}

.img-fade.img-loaded {
  opacity: 1;
  transition: opacity 480ms ease, filter 220ms ease, transform 220ms ease;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

