@font-face {
  font-family: "Rosallina";
  src: url("fonts/Rosallina Script PERSONAL USE ONLY!.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Beyonest";
  src: url("fonts/Beyonest.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Perfect Girl Script";
  src: url("fonts/PerfectGirl-Script.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "High Empathy";
  src: url("fonts/High-Empathy.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Caveat";
  src: url("fonts/Caveat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Caveat";
  src: url("fonts/Caveat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #18231e;
  --muted: #4f5b54;
  --paper: #f7f4ed;
  --shell: #e9ece5;
  --leaf: #587060;
  --leaf-dark: #294236;
  --coral: #9a675a;
  --white: #ffffff;
  --line: rgba(24, 35, 30, 0.42);
  --hero-frame: clamp(10px, 1.4vw, 18px);
  --content-width: 1180px;
  --text-width: 760px;
  --font-display: "High Empathy", "Perfect Girl Script", "Bradley Hand", "Segoe Print", cursive;
  --font-countdown: "Nanum Myeongjo", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --small-text: 1.125rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--small-text);
  font-weight: 400;
  line-height: 1.48;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

.home-page {
  background: var(--white);
}

strong,
b,
button,
input,
select,
textarea {
  font-weight: 400;
}

img {
  display: block;
  max-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: absolute;
  top: var(--hero-frame);
  left: var(--hero-frame);
  z-index: 20;
  display: flex;
  justify-content: center;
  width: calc(100% - (var(--hero-frame) * 2));
  padding: clamp(18px, 2.5vw, 28px) clamp(16px, 4vw, 48px);
  color: var(--white);
}

.site-header.light-header {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  background: var(--white);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(5, max-content);
  justify-content: center;
  gap: clamp(16px, 3vw, 44px);
  width: min(1120px, 100%);
  font-size: var(--small-text);
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(24, 35, 30, 0.24);
  color: inherit;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav a {
  position: relative;
  padding: 3px 0;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  opacity: 0.75;
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  min-height: max(780px, 94svh);
  place-items: center;
  padding: 132px clamp(20px, 7vw, 90px) 180px;
  overflow: hidden;
  border: var(--hero-frame) solid var(--white);
}

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

.hero-image {
  object-fit: cover;
  object-position: center 62%;
}

.hero-overlay {
  background: rgba(19, 32, 26, 0.22);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(580px, 82vw);
}

.hero-text-image {
  width: min(100%, 440px);
  height: auto;
}

.hero-button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 5px 28px 2px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--font-countdown);
  font-size: var(--small-text);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button.hero-button {
  min-width: 138px;
  border-color: var(--white);
  border-radius: 0;
  background: var(--white);
  color: var(--leaf-dark);
}

.button.hero-button:hover {
  background: transparent;
  color: var(--white);
}

.button.primary {
  border-color: var(--leaf-dark);
  background: var(--leaf-dark);
  color: var(--white);
}

.button.primary:hover {
  background: transparent;
  color: var(--leaf-dark);
}

.button:focus-visible,
.field-group input:focus-visible,
.field-group select:focus-visible,
.field-group textarea:focus-visible {
  outline: 3px solid rgba(88, 112, 96, 0.32);
  outline-offset: 3px;
}

.eyebrow,
.section-kicker,
.detail-label {
  display: block;
  margin: 0 0 14px;
  color: var(--coral);
  font-family: var(--font-body);
  font-size: var(--small-text);
  font-weight: 400;
  line-height: 1.2;
}

.line-icon {
  display: block;
  width: clamp(52px, 5vw, 70px);
  height: clamp(52px, 5vw, 70px);
  margin-bottom: 18px;
  color: currentColor;
  fill: none;
  object-fit: contain;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-icon {
  margin-bottom: 20px;
}

.announcement-section {
  display: grid;
  justify-items: center;
  padding: clamp(72px, 9vw, 120px) clamp(24px, 7vw, 90px) 0;
  background: var(--white);
  text-align: center;
}

.announcement-section p {
  max-width: var(--text-width);
  margin: 0 0 clamp(36px, 4vw, 56px);
  color: var(--leaf-dark);
  font-size: clamp(var(--small-text), 2.3vw, 2.15rem);
  line-height: 1.5;
}

.announcement-illustration {
  width: min(360px, 42%);
  height: auto;
  margin-bottom: clamp(36px, 4vw, 56px);
}

.announcement-section + .details-section {
  padding-top: clamp(36px, 4vw, 56px);
}

.countdown {
  position: absolute;
  bottom: clamp(34px, 4vw, 52px);
  left: 50%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(600px, calc(100% - 56px));
  color: var(--white);
  transform: translateX(-50%);
}

.countdown div {
  min-width: 0;
  padding: 0 clamp(6px, 1.5vw, 14px);
  border-right: 1px solid rgba(255, 255, 255, 0.78);
  text-align: center;
}

.countdown div:last-child {
  border-right: 0;
}

.countdown strong {
  display: block;
  font-family: var(--font-countdown);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 0.85;
}

.countdown span {
  display: block;
  margin-top: 3px;
  color: var(--white);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.1;
}

.details-section,
.split-section,
.plan-trip-section,
.transport-section,
.stay-section,
.rsvp-section,
.venue-section,
.rsvp-page {
  padding: clamp(78px, 9vw, 126px) clamp(24px, 7vw, 90px);
}

.details-section {
  background: var(--white);
  color: var(--ink);
}

.details-section > .section-kicker {
  margin-bottom: clamp(42px, 6vw, 72px);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6.5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.85;
  text-align: center;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, var(--content-width));
  margin: 0 auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.detail-column {
  display: grid;
}

.detail-column-left {
  grid-template-rows: auto 1fr;
  border-right: 1px solid var(--ink);
}

.detail-column-right {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.detail-card {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(34px, 4.5vw, 56px);
  background: transparent;
}

.detail-column .detail-card:not(:last-child) {
  border-bottom: 1px solid var(--ink);
}

.detail-card h3,
.transport-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.9;
}

.detail-card p {
  max-width: 520px;
  margin: 18px 0 0;
}

.attire-palette-label {
  color: var(--leaf-dark);
  font-size: var(--small-text);
  font-weight: 400;
}

.attire-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: min(100%, 420px);
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.attire-swatches li {
  display: block;
}

.attire-swatch {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 45% 55% 48% 52%;
  transform: rotate(-2deg);
}

.attire-swatches li:nth-child(even) .attire-swatch {
  transform: rotate(2deg);
}

.attire-swatch--sea {
  background: #6f98a8;
}

.attire-swatch--sage {
  background: #9aa887;
}

.attire-swatch--sand {
  background: #d6bc91;
}

.attire-swatch--coral {
  background: #d98b7c;
}

.attire-swatch--terracotta {
  background: #b9674f;
}

.attire-swatch--marigold {
  background: #d6a33d;
}

.detail-card .attire-note {
  width: min(100%, 520px);
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: var(--small-text);
}

.text-link {
  color: var(--leaf-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.address-link {
  display: inline;
}

.schedule-card {
  justify-content: center;
}

.schedule-list {
  display: grid;
  width: 100%;
  gap: 0;
  margin: 12px 0 0;
}

.schedule-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: baseline;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(24, 35, 30, 0.2);
}

.schedule-list div:last-child {
  border-bottom: 0;
}

.schedule-list dt,
.schedule-list dd {
  margin: 0;
}

.schedule-list dd {
  color: var(--leaf-dark);
  font-weight: 400;
  white-space: nowrap;
}

.hawaii-time {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: 24px;
  padding: 18px 20px 16px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--paper);
  color: var(--leaf-dark);
}

.hawaii-time span {
  font-weight: 400;
}

.hawaii-time time {
  font-family: var(--font-body);
  font-size: var(--small-text);
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
}

.split-section,
.home-feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.split-section > *,
.home-feature-panel > * {
  min-width: 0;
}

.split-section h2,
.plan-trip-section h2,
.rsvp-section h2,
.venue-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6.5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.85;
}

.plan-trip-section {
  padding: clamp(16px, 2.5vw, 34px);
  background: var(--white);
}

.venue-section {
  padding: clamp(16px, 2.5vw, 34px);
  background: var(--white);
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
  width: min(
    var(--content-width),
    calc(100vw - clamp(24px, 7vw, 90px) - clamp(24px, 7vw, 90px))
  );
  margin: 0 auto;
  padding: clamp(16px, 2.5vw, 34px) 0;
  background: var(--white);
}

.home-feature-grid .venue-section {
  grid-column: 1 / -1;
  width: 100%;
  justify-self: center;
}

.home-feature-grid > section {
  display: flex;
  min-width: 0;
  padding: 0;
}

.home-feature-grid .home-feature-panel {
  --feature-card-pad-block: clamp(38px, 4vw, 58px);
  --feature-card-pad-inline: clamp(24px, 3vw, 40px);
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: clamp(32px, 3vw, 44px);
  width: 100%;
  padding: var(--feature-card-pad-block) var(--feature-card-pad-inline);
}

.home-feature-grid .plan-trip-section .home-feature-panel,
.home-feature-grid .rsvp-section .home-feature-panel {
  grid-template-rows: 1fr;
  gap: 0;
}

.home-feature-grid .home-feature-copy {
  display: flex;
  flex-direction: column;
}

.home-feature-grid h2 {
  font-size: clamp(2.8rem, 4vw, 4rem);
}

.home-feature-grid .home-feature-copy .button {
  align-self: flex-start;
  margin-top: auto;
}

.home-feature-grid .home-feature-copy p {
  margin-bottom: 34px;
}

.home-feature-grid .feature-image-placeholder,
.home-feature-grid .feature-image {
  width: calc(100% + var(--feature-card-pad-inline) + var(--feature-card-pad-inline));
  max-width: none;
  height: clamp(210px, 19vw, 280px);
  min-height: 0;
  margin-right: calc(0px - var(--feature-card-pad-inline));
  margin-bottom: calc(0px - var(--feature-card-pad-block));
  margin-left: calc(0px - var(--feature-card-pad-inline));
}

.home-feature-grid .venue-section .home-feature-panel {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  grid-template-rows: minmax(320px, auto);
  align-items: stretch;
}

.venue-image-frame {
  position: relative;
  min-height: 320px;
  margin-top: calc(0px - var(--feature-card-pad-block));
  margin-right: calc(0px - var(--feature-card-pad-inline));
  margin-bottom: calc(0px - var(--feature-card-pad-block));
}

.home-feature-grid .venue-image-frame .feature-image {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  margin: 0;
}

.home-feature-panel {
  padding: clamp(68px, 8vw, 112px) clamp(28px, 6vw, 84px);
}

.plan-trip-section .home-feature-panel,
.venue-section .home-feature-panel {
  background: var(--paper);
}

.home-feature-copy {
  max-width: 760px;
}

.plan-trip-section p,
.rsvp-section p,
.venue-section p {
  max-width: 700px;
  margin: 28px 0 0;
}

.home-feature-copy .button {
  margin-top: 34px;
}

.feature-image-placeholder {
  display: grid;
  width: 100%;
  min-height: clamp(280px, 32vw, 440px);
  aspect-ratio: 4 / 3;
  place-items: center;
  border: 1px dashed var(--line);
  background: var(--shell);
  color: var(--muted);
  text-align: center;
}

.feature-image {
  display: block;
  width: 100%;
  height: clamp(280px, 32vw, 440px);
  border: 1px solid var(--ink);
  object-fit: cover;
  object-position: center;
}

.plan-trip-image {
  border: 0;
  object-position: center bottom;
}

.feature-image-placeholder span {
  padding: 16px;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.rsvp-section {
  padding: clamp(16px, 2.5vw, 34px);
  background: var(--white);
  color: var(--white);
}

.rsvp-section .home-feature-panel {
  background: var(--leaf-dark);
}

.rsvp-section p {
  color: rgba(255, 255, 255, 0.88);
}

.rsvp-section .button.primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--leaf-dark);
}

.rsvp-section .button.primary:hover {
  background: transparent;
  color: var(--white);
}

.rsvp-section .feature-image-placeholder {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.favorite-spots-home-section {
  color: var(--white);
}

.favorite-spots-home-section .home-feature-panel {
  background: var(--leaf-dark);
}

.favorite-spots-home-section p {
  color: rgba(255, 255, 255, 0.88);
}

.favorite-spots-home-section .button.primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--leaf-dark);
}

.favorite-spots-home-section .button.primary:hover {
  background: transparent;
  color: var(--white);
}

.favorite-spots-home-image {
  object-position: 50% 42%;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 30px clamp(24px, 7vw, 90px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--small-text);
}

.site-footer p {
  margin: 0;
}

.site-footer > p:last-child {
  text-align: right;
}

.footer-hawaii-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
}

.footer-clock-icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.84;
}

.trip-page-header {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: max(650px, 72svh);
  align-content: center;
  justify-items: center;
  padding: 140px clamp(24px, 7vw, 90px) 100px;
  border: var(--hero-frame) solid var(--white);
  background: var(--leaf-dark);
  color: var(--white);
  isolation: isolate;
  text-align: center;
}

.trip-page-header::before,
.trip-page-header::after {
  position: absolute;
  inset: 0;
  content: "";
}

.trip-page-header::before {
  z-index: 0;
  background: url("assets/trip-hero-oahu-map.jpg") 50% 48% / cover no-repeat;
  transform: scale(1.18);
  transform-origin: 50% 48%;
}

.favorite-spots-header::before {
  background-image: url("assets/favorite-spots-hero.webp");
  background-position: 50% 36%;
  transform-origin: 50% 36%;
}

.favorite-spots-header {
  border-color: var(--paper);
}

.trip-page-header::after {
  z-index: 1;
  background: var(--leaf-dark);
  opacity: 0.76;
}

.favorite-spots-header::after {
  opacity: 0.68;
}

.trip-page-header > * {
  position: relative;
  z-index: 2;
}

.trip-page-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 9vw, 7.6rem);
  font-weight: 400;
  line-height: 0.82;
}

.trip-page-header p {
  max-width: 700px;
  margin: 30px auto 0;
}

.trip-venue-section {
  padding: clamp(48px, 6vw, 76px) clamp(24px, 7vw, 90px);
  background: var(--paper);
  color: var(--ink);
}

.trip-venue-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  width: min(100%, var(--content-width));
  margin: 0 auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.trip-venue-heading,
.trip-venue-address {
  min-width: 0;
  padding: clamp(30px, 4vw, 48px);
}

.trip-venue-heading {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.trip-venue-heading .line-icon {
  width: clamp(64px, 8vw, 92px);
  flex: 0 0 auto;
  margin: 0;
}

.trip-venue-heading h2 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 0.88;
}

.trip-venue-address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-left: 1px solid var(--ink);
}

.trip-venue-address p {
  margin: 0 0 6px;
  color: var(--muted);
}

.trip-venue-address-link {
  font-size: clamp(1.55rem, 2.3vw, 1.9rem);
  line-height: 1.35;
}

.trip-venue-address .button {
  margin-top: 26px;
}

.flight-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  justify-items: center;
  background: var(--white);
  color: var(--ink);
  text-align: center;
}

.flight-section > div {
  width: min(100%, 820px);
}

.flight-section .line-icon {
  margin-right: auto;
  margin-left: auto;
}

.flight-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6.5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.85;
}

.travel-notes {
  margin-top: 0;
}

.travel-notes p {
  margin: 0;
}

.travel-notes p + p {
  margin-top: 24px;
}

.travel-notes .button {
  margin-top: 34px;
}

.airport-note span:first-child {
  color: var(--leaf-dark);
  font-weight: 400;
}

.airport-code {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-left: 6px;
  padding: 2px 10px 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  color: var(--leaf-dark);
  font-size: var(--small-text);
  font-weight: 400;
  line-height: 1;
}

.transport-section {
  background: var(--paper);
  color: var(--ink);
}

.transport-intro,
.stay-content {
  max-width: 820px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}

.transport-intro .line-icon,
.stay-content .line-icon {
  margin-right: auto;
  margin-left: auto;
}

.transport-intro h2,
.stay-content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6.5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.85;
}

.transport-intro p,
.stay-content p {
  margin: 28px auto 0;
}

.transport-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, var(--content-width));
  margin: 0 auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.transport-card {
  min-width: 0;
  padding: clamp(30px, 4vw, 48px);
}

.transport-card:not(:last-child) {
  border-right: 1px solid var(--ink);
}

.transport-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding-left: 1.15em;
}

.stay-section {
  background: var(--white);
}

.stay-content {
  margin-bottom: clamp(48px, 6vw, 72px);
}

.stay-button {
  margin-top: 34px;
}

.spots-section {
  padding: clamp(78px, 9vw, 126px) clamp(24px, 7vw, 90px);
}

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

.places-section {
  background: var(--white);
}

.spots-intro {
  max-width: 820px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}

.spots-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6.5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.85;
}

.spots-intro p {
  margin: 28px auto 0;
}

.spots-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.spot-card {
  display: flex;
  min-width: 0;
  grid-column: span 2;
  flex-direction: column;
  border: 1px solid var(--ink);
  background: var(--white);
}

.places-section .spot-card {
  background: var(--paper);
}

.spot-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.spot-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.restaurants-section .spot-card:nth-child(4),
.restaurants-section .spot-card:nth-child(5),
.restaurants-section .spot-card:nth-child(6) {
  grid-column: span 2;
}

.places-section .spot-card:nth-child(4),
.places-section .spot-card:nth-child(5),
.places-section .spot-card:nth-child(6),
.stay-grid .spot-card:nth-child(4),
.stay-grid .spot-card:nth-child(5),
.stay-grid .spot-card:nth-child(6) {
  grid-column: span 2;
}

.stay-grid .spot-card {
  background: var(--paper);
}

.spot-photo-placeholder {
  display: grid;
  width: 100%;
  height: clamp(210px, 22vw, 280px);
  place-items: center;
  flex: 0 0 auto;
  border-bottom: 1px dashed var(--line);
  background: var(--shell);
  color: var(--muted);
  text-align: center;
}

.spot-photo {
  display: block;
  width: 100%;
  height: clamp(210px, 22vw, 280px);
  flex: 0 0 auto;
  border-bottom: 1px solid var(--ink);
  background: var(--shell);
  object-fit: cover;
  object-position: center;
}

.spot-photo--contain {
  background: #fff;
  object-fit: contain;
}

.spot-photo-placeholder span {
  padding: 16px;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.spot-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 3.2vw, 38px);
}

.spot-card-content h3 {
  margin: 0;
  font-family: var(--font-countdown);
  font-size: clamp(2.15rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 0.96;
}

.spot-card-content p {
  margin: 22px 0 28px;
}

.spot-card-content .text-link {
  margin-top: auto;
}

.spots-note {
  max-width: 780px;
  margin: clamp(42px, 5vw, 64px) auto 0;
  color: var(--muted);
  text-align: center;
}

.photo-credits {
  max-width: 980px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
  text-align: center;
}

.photo-credits a {
  text-underline-offset: 3px;
}

.rsvp-page {
  min-height: calc(100vh - 100px);
  background: var(--paper);
}

.rsvp-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 60px);
  width: min(100%, 820px);
  margin: 0 auto;
}

.rsvp-intro {
  text-align: center;
}

.rsvp-intro h1 {
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 7.5vw, 6.8rem);
  font-weight: 400;
  line-height: 0.84;
}

.rsvp-intro p {
  max-width: 560px;
  margin: 20px auto 0;
}

.rsvp-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
}

.rsvp-form {
  display: grid;
  gap: 30px;
}

.field-group {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field-group label,
.field-heading,
.field-group legend {
  color: var(--leaf-dark);
  font-size: var(--small-text);
  font-weight: 400;
  line-height: 1.25;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(24, 35, 30, 0.34);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--small-text);
  line-height: 1.3;
}

.field-group input,
.field-group select {
  min-height: 60px;
  padding: 7px 16px 3px;
}

.field-group textarea {
  min-height: 128px;
  padding: 14px 16px;
  resize: vertical;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--leaf);
}

.attendee-list {
  display: grid;
  gap: 18px;
}

.field-help,
.field-error,
.form-alert {
  margin: 0;
  font-size: var(--small-text);
}

.field-help {
  color: var(--muted);
}

.field-error,
.form-alert {
  color: #8b2f24;
}

.form-alert {
  padding: 14px 16px;
  border: 1px solid rgba(139, 47, 36, 0.4);
  background: rgba(154, 103, 90, 0.1);
}

.rsvp-confirmation {
  padding: clamp(18px, 3vw, 34px) 0;
  color: var(--leaf-dark);
  text-align: center;
}

.rsvp-confirmation:focus {
  outline: none;
}

.rsvp-confirmation h2 {
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 8vw, 6.8rem);
  font-weight: 400;
  line-height: 0.84;
}

.confirmation-copy {
  max-width: 580px;
  margin: 24px auto 0;
  color: var(--muted);
}

.rsvp-summary {
  max-width: 680px;
  margin: clamp(38px, 5vw, 54px) auto 0;
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: left;
}

.rsvp-summary h3 {
  margin: 0 0 24px;
  font-family: var(--font-countdown);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.rsvp-summary dl {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  margin: 0;
}

.rsvp-summary dt,
.rsvp-summary dd {
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid rgba(24, 35, 30, 0.2);
}

.rsvp-summary dt {
  padding-right: 20px;
  color: var(--coral);
  font-weight: 400;
}

.rsvp-summary dd {
  overflow-wrap: anywhere;
  color: var(--ink);
}

.save-date {
  margin-top: clamp(42px, 6vw, 64px);
  padding-top: clamp(34px, 5vw, 52px);
  border-top: 1px solid var(--line);
}

.save-date h3 {
  margin: 0;
  font-family: var(--font-countdown);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.save-date > p {
  margin: 18px auto 0;
  color: var(--muted);
}

.calendar-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.calendar-choice {
  display: flex;
  min-width: 0;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px 9px;
  border: 1px solid var(--ink);
  border-radius: 3px 2px 4px 2px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-countdown);
  font-size: 1.25rem;
  line-height: 1.08;
  text-decoration: none;
  box-shadow: 2px 2px 0 rgba(24, 35, 30, 0.12);
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.calendar-choice:nth-child(1) {
  transform: rotate(-0.35deg);
}

.calendar-choice:nth-child(2) {
  transform: rotate(0.28deg);
}

.calendar-choice:nth-child(3) {
  transform: rotate(-0.18deg);
}

.calendar-choice:hover {
  background: var(--shell);
  transform: translateY(-2px) rotate(0deg);
}

.calendar-choice:focus-visible {
  outline: 3px solid rgba(88, 112, 96, 0.32);
  outline-offset: 3px;
}

.calendar-sketch-icon {
  position: relative;
  display: block;
  width: 25px;
  height: 23px;
  flex: 0 0 auto;
  border: 1.5px solid currentColor;
  border-radius: 3px 2px 4px 2px;
  transform: rotate(-2deg);
}

.calendar-sketch-icon::before {
  position: absolute;
  top: 5px;
  right: -1.5px;
  left: -1.5px;
  border-top: 1.5px solid currentColor;
  content: "";
}

.calendar-sketch-icon::after {
  position: absolute;
  top: 10px;
  left: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 7px 0 currentColor, 0 6px currentColor, 7px 6px currentColor;
  content: "";
}

.rsvp-form .button.primary {
  width: 100%;
}

.rsvp-form .button.primary:disabled {
  cursor: wait;
  opacity: 0.68;
}

.hidden-field,
.netlify-detection-form {
  display: none;
}

@media (max-width: 900px) {
  .home-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-feature-grid .venue-section .home-feature-panel {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .venue-image-frame {
    min-height: 280px;
    margin-top: 0;
    margin-left: calc(0px - var(--feature-card-pad-inline));
  }

  .detail-list,
  .split-section,
  .home-feature-panel,
  .rsvp-shell {
    grid-template-columns: 1fr;
  }

  .detail-column-left {
    border-right: 0;
  }

  .detail-column-right {
    border-top: 1px solid var(--ink);
  }

  .feature-image-placeholder,
  .feature-image {
    max-width: 760px;
  }

}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    justify-content: flex-end;
    padding: 16px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    flex: 0 0 auto;
  }

  .nav-toggle:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.4);
    outline-offset: 3px;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 16px;
    display: grid;
    visibility: hidden;
    grid-template-columns: 1fr;
    gap: 2px;
    width: min(270px, calc(100vw - 32px));
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(24, 35, 30, 0.96);
    box-shadow: 0 16px 38px rgba(12, 20, 16, 0.24);
    font-size: 1.35rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 9px 5px;
  }

  .site-nav a:last-child {
    grid-column: auto;
  }

  .site-header.light-header .nav-toggle {
    background: var(--white);
    color: var(--ink);
  }

  .site-header.light-header .nav-toggle:focus-visible {
    outline-color: rgba(88, 112, 96, 0.4);
  }

  .site-header.light-header .site-nav {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
  }

  .calendar-actions {
    grid-template-columns: 1fr;
  }

  .calendar-choice {
    width: 100%;
  }

  .home-feature-grid .plan-trip-section .feature-image,
  .home-feature-grid .rsvp-section .feature-image,
  .home-feature-grid .venue-section .venue-image-frame {
    display: none;
  }

  .home-feature-grid .home-feature-panel,
  .home-feature-grid .venue-section .home-feature-panel {
    grid-template-rows: auto;
    gap: 0;
  }

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

  .spot-card,
  .spot-card:nth-child(4) {
    grid-column: auto;
  }

  .spot-card:nth-child(5) {
    width: calc(50% - (clamp(18px, 2.5vw, 30px) / 2));
    grid-column: 1 / -1;
    justify-self: center;
  }

  .restaurants-section .spot-card:nth-child(5),
  .restaurants-section .spot-card:nth-child(6) {
    width: auto;
    grid-column: auto;
    justify-self: stretch;
  }

  .places-section .spot-card:nth-child(4),
  .places-section .spot-card:nth-child(5),
  .places-section .spot-card:nth-child(6),
  .stay-grid .spot-card:nth-child(4),
  .stay-grid .spot-card:nth-child(5),
  .stay-grid .spot-card:nth-child(6) {
    width: auto;
    grid-column: auto;
    justify-self: stretch;
  }

  .hero {
    min-height: max(820px, 100svh);
    padding: 150px 20px 190px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background: rgba(19, 32, 26, 0.3);
  }

  .hero-content {
    width: min(520px, 88vw);
  }

  .hero-text-image {
    width: min(100%, 390px);
  }

  .countdown {
    bottom: 38px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(360px, calc(100% - 42px));
  }

  .countdown div {
    padding: 7px 4px;
  }

  .countdown div:nth-child(2) {
    border-right: 0;
  }

  .countdown div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  }

  .transport-options {
    grid-template-columns: 1fr;
  }

  .trip-venue-card {
    grid-template-columns: 1fr;
  }

  .trip-venue-heading {
    align-items: flex-start;
  }

  .trip-venue-address {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .transport-card:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer > p:last-child {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .details-section,
  .split-section,
  .plan-trip-section,
  .transport-section,
  .stay-section,
  .rsvp-section,
  .venue-section,
  .rsvp-page {
    padding: 68px 20px;
  }

  .trip-venue-section {
    padding: 48px 20px;
  }

  .trip-venue-heading,
  .trip-venue-address {
    padding: 30px 22px;
  }

  .trip-venue-heading {
    flex-direction: column;
  }

  .spots-section {
    padding: 68px 20px;
  }

  .spots-intro {
    margin-bottom: 38px;
  }

  .spots-intro h2 {
    font-size: clamp(3.15rem, 15vw, 4.25rem);
    line-height: 0.92;
    text-wrap: balance;
  }

  .spots-intro p {
    margin-top: 22px;
  }

  .spots-section .spots-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .stay-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .spots-section .spot-card,
  .spots-section .spot-card:nth-child(4),
  .spots-section .spot-card:nth-child(5),
  .spots-section .spot-card:nth-child(6) {
    width: 100%;
    grid-column: 1;
    justify-self: stretch;
  }

  .stay-grid .spot-card,
  .stay-grid .spot-card:nth-child(4),
  .stay-grid .spot-card:nth-child(5),
  .stay-grid .spot-card:nth-child(6) {
    width: 100%;
    grid-column: 1;
    justify-self: stretch;
  }

  .spot-photo,
  .spot-photo-placeholder {
    height: 230px;
  }

  .spot-card-content {
    padding: 28px 22px 30px;
  }

  .spot-card-content h3 {
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 1;
    text-wrap: balance;
  }

  .spot-card-content p {
    margin: 18px 0 24px;
    font-size: 1.35rem;
  }

  .spots-section .detail-label,
  .stay-grid .detail-label {
    margin-bottom: 11px;
    font-size: 1.2rem;
  }

  .spots-note {
    margin-top: 42px;
    font-size: 1.25rem;
  }

  .photo-credits {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.55;
    text-align: left;
  }

  .plan-trip-section,
  .rsvp-section,
  .venue-section {
    padding: 14px;
  }

  .home-feature-grid {
    width: calc(100vw - 40px);
    padding: 14px 0;
  }

  .home-feature-grid .home-feature-panel {
    --feature-card-pad-block: 44px;
    --feature-card-pad-inline: 22px;
  }

  .home-feature-panel {
    gap: 44px;
    padding: 58px 22px;
  }

  .trip-page-header {
    min-height: max(680px, 90svh);
    padding: 160px 20px 90px;
  }

  .hero-button-row {
    width: min(100%, 330px);
  }

  .button.hero-button {
    min-width: 0;
    flex: 1;
  }

  .detail-card,
  .transport-card {
    padding: 34px 22px;
  }

  .schedule-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .schedule-list dd {
    white-space: normal;
  }

  .hawaii-time {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .button:not(.hero-button) {
    width: 100%;
  }

  .rsvp-panel {
    padding: 24px 18px;
  }

  .rsvp-summary {
    padding: 22px 18px;
  }

  .rsvp-summary dl {
    grid-template-columns: 1fr;
  }

  .rsvp-summary dt {
    padding: 15px 0 2px;
  }

  .rsvp-summary dd {
    padding: 2px 0 15px;
    border-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-nav a::after,
  .button {
    transition: none;
  }
}
