:root {
  --pink: #ee8f9b;
  --purple: #3a253e;
  --soft-purple: #7f6388;
  --teal: #74c9c4;
  --coral: #ee8f9b;
  --yellow: #f6d985;
  --cream: #fbf3e7;
  --cream-strong: #f5e8d7;
  --white: #ffffff;
  --ink: #322a34;
  --muted: #766e79;
  --line: #eaded5;
  --shadow: 0 18px 44px rgba(60, 42, 63, 0.11);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
a,
button,
span,
label {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--purple);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.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: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 251, 0.9);
  border-bottom: 1px solid rgba(234, 222, 213, 0.78);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  filter: drop-shadow(0 10px 20px rgba(47, 23, 79, 0.14));
  object-fit: contain;
}

.brand-name {
  display: block;
  color: var(--purple);
  font-family: "Pacifico", cursive;
  font-size: clamp(1.55rem, 4.2vw, 2.2rem);
  line-height: 1;
}

.brand-tagline {
  display: block;
  color: var(--purple);
  font-size: 0.86rem;
  font-weight: 500;
}

.nav-toggle {
  display: inline-grid;
  width: 46px;
  height: 46px;
  gap: 5px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--purple);
}

.nav-menu,
.header-reserve {
  display: none;
}

.nav-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

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

.nav-menu.is-open {
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 4px;
}

.nav-menu a {
  border-radius: var(--radius);
  color: var(--purple);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 12px;
}

.nav-menu a:hover {
  background: #fff0f7;
  color: var(--pink);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 500;
}

.nav-actions .language-toggle {
  margin-left: auto;
}

.language-option {
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--purple);
  cursor: pointer;
  font-weight: 500;
  padding: 8px 7px;
}

.language-option.is-active {
  color: var(--purple);
  font-weight: 800;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 18px;
  scroll-margin-top: 118px;
}

.section-tint {
  max-width: none;
  background: linear-gradient(180deg, rgba(255, 241, 223, 0.62), rgba(255, 249, 239, 0.85));
}

.section-tint > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.compact {
  padding-top: 22px;
  padding-bottom: 32px;
}

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

h1,
h2,
h3 {
  color: var(--purple);
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 300;
  line-height: 1.02;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.04rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.eyebrow {
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  line-height: 1.1;
  padding: 14px 20px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  border: 1px solid var(--purple);
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(58, 37, 62, 0.16);
}

.button-primary:hover {
  background: #2f1d34;
}

.button-secondary {
  border: 1px solid var(--pink);
  background: var(--pink);
  color: var(--purple);
}

.button-small {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 0.84rem;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  width: max-content;
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero {
  display: grid;
  gap: clamp(34px, 6vw, 68px);
  align-items: center;
  min-height: calc(100svh - 94px);
  padding-top: 42px;
  position: relative;
}

.hero::before {
  content: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy::after {
  content: none;
}

.mobile-hero-brand,
.mobile-hero-title,
.mobile-hero-subtitle,
.mobile-hero-email,
.mobile-hero-socials,
.mobile-hero-photo-stack,
.mobile-hero-workshop-photo,
.mobile-hero-room-photo,
.mobile-hero-paint-photo,
.mobile-hero-badge-one,
.mobile-hero-badge-two,
.mobile-hero-badges,
.mobile-button-arrow {
  display: none;
}

.hero-text {
  max-width: 540px;
  color: var(--ink);
  font-size: clamp(1rem, 2.1vw, 1.14rem);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 28px;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-stats span {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.hero-stats strong {
  color: var(--purple);
  font-weight: 600;
}

.hero-media {
  position: relative;
  min-height: 340px;
}

.hero-main-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  border-radius: var(--radius);
  filter: sepia(0.1) saturate(1.08) brightness(1.065) contrast(0.965);
  object-fit: cover;
  object-position: 36% center;
  box-shadow: var(--shadow);
}

.hero-paint-detail {
  position: absolute;
  right: -22px;
  bottom: 28px;
  z-index: 3;
  width: min(42%, 250px);
  aspect-ratio: 1 / 1.15;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(60, 42, 63, 0.18);
  object-fit: cover;
  object-position: 46% 62%;
  transform: rotate(3deg);
}

@media (max-width: 619px) {
  body {
    background: #fbf3e7;
  }

  .site-header {
    position: absolute;
    width: 100%;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    justify-content: stretch;
    position: relative;
    min-height: 78px;
    padding: 16px 18px 8px;
  }

  .brand {
    display: none;
  }

  .brand-mark {
    display: none;
  }

  .brand > span {
    display: none;
  }

  .nav-toggle {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
    border-color: rgba(60, 42, 63, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(60, 42, 63, 0.06);
  }

  .nav-actions {
    display: flex;
    grid-column: 1 / -1;
    order: 2;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 0;
    padding-right: 72px;
  }

  .nav-actions .language-toggle {
    margin-left: 0;
  }

  .language-toggle {
    font-size: 1rem;
    font-weight: 700;
  }

  .language-option {
    padding: 7px 6px;
  }

  .header-reserve {
    display: none;
    min-height: 46px;
    border-color: rgba(234, 222, 213, 0.74);
    background: rgba(255, 255, 255, 0.82);
    color: var(--purple);
    box-shadow: 0 12px 28px rgba(60, 42, 63, 0.08);
  }

  .nav-actions.is-open {
    display: flex;
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 4px;
  }

  .nav-menu.is-open {
    order: 3;
    margin-top: 6px;
    border: 1px solid rgba(234, 222, 213, 0.82);
    border-radius: 8px;
    background: rgba(255, 253, 251, 0.96);
    box-shadow: 0 16px 34px rgba(60, 42, 63, 0.14);
  }

  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  #about-title,
  #gallery-title {
    font-size: 1.55rem;
    line-height: 1.22;
    margin-bottom: 10px;
  }

  .hero {
    display: block;
    max-width: min(100%, 430px);
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 18px;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    width: 100%;
    min-height: auto;
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    background: #fbf3e7;
    box-shadow: none;
    padding: 30px 0 0;
    text-align: center;
  }

  .mobile-hero-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 20px;
    color: var(--purple);
  }

  .mobile-hero-mark {
    display: inline-grid;
    flex: 0 0 78px;
    width: 78px;
    height: 58px;
    place-items: center;
  }

  .mobile-hero-mark img {
    width: 78px;
    height: 56px;
    object-fit: contain;
    transform: translateY(2px) rotate(-5deg);
    transform-origin: 42% 58%;
  }

  .mobile-hero-logo-text {
    min-width: 0;
  }

  .mobile-hero-logo-text strong {
    display: block;
    font-family: "Pacifico", cursive;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 0.96;
    white-space: nowrap;
  }

  .mobile-hero-logo-text .logo-coral {
    color: #df777f;
  }

  .mobile-hero-logo-text .logo-teal {
    color: #57a99d;
  }

  .mobile-hero-logo-text .logo-gold {
    color: #c79255;
  }

  .mobile-hero-logo-text small {
    display: block;
    margin-top: 4px;
    color: #1f1725;
    font-size: 1.06rem;
    font-weight: 500;
    line-height: 1;
  }

  .hero .eyebrow,
  .desktop-hero-title {
    display: none;
  }

  .desktop-hero-text {
    display: none;
  }

  h1 {
    position: relative;
    z-index: 3;
    max-width: 16ch;
    margin: 0 auto 18px;
    color: var(--purple);
    font-family: "Allura", "Pacifico", cursive;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 0.86;
    text-shadow: none;
  }

  .mobile-hero-title {
    display: inline;
  }

  .mobile-hero-subtitle {
    display: block;
  }

  .hero-text {
    position: relative;
    z-index: 3;
    max-width: 29ch;
    margin: 0 auto 34px;
    color: var(--purple);
    font-size: 1.16rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.45;
    text-shadow: none;
  }

  .mobile-hero-socials {
    display: none;
    grid-template-columns: repeat(3, 36px);
    justify-content: center;
    gap: 18px;
    margin: 0 0 2px;
  }

  .mobile-hero-socials a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #2a1734;
    font-size: 1.85rem;
    font-family: "Poppins", system-ui, sans-serif;
    font-weight: 800;
    line-height: 1;
    padding: 0;
  }

  .mobile-hero-workshop-photo {
    display: block;
    width: 100%;
    aspect-ratio: 1.03 / 1;
    margin: 0 auto 0;
    border-radius: clamp(58px, 18vw, 92px) clamp(58px, 18vw, 92px) 18px 18px;
    background: #fff4df;
    box-shadow: none;
    object-fit: cover;
    object-position: 50% center;
    filter: saturate(0.9) brightness(1.12) contrast(0.86);
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0 0 8px 8px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 62px;
    justify-content: center;
    border: 0;
    border-radius: 0;
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 0.87rem;
    font-weight: 800;
    line-height: 1.15;
    padding: 12px 10px;
    box-shadow: none;
  }

  .hero-actions .button-primary {
    background: var(--purple);
    border-color: var(--purple);
    box-shadow: none;
  }

  .hero-actions .button-secondary {
    background: var(--pink);
    color: var(--purple);
  }

  .mobile-button-arrow {
    display: inline;
  }

  .hero-stats {
    display: none;
  }

  .hero-stats span {
    gap: 3px;
  }

  .hero-media {
    display: none;
  }

  .quick-info {
    background: var(--cream);
  }
}

.quick-info,
.event-grid,
.steps,
.testimonial-grid,
.split-section {
  display: grid;
  gap: 16px;
}

.quick-info {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 18px;
  padding-top: clamp(42px, 7vw, 74px);
  padding-bottom: clamp(42px, 7vw, 74px);
}

.info-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: start;
  padding: 22px 0;
}

.info-card h3,
.info-card p {
  margin-bottom: 0;
}

.info-card h3 {
  max-width: none;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.12;
  white-space: nowrap;
}

.info-card p {
  max-width: 30rem;
  font-size: 0.95rem;
  line-height: 1.72;
  font-weight: 300;
}

.info-card .info-subtitle {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.info-card p,
.step p,
.testimonial-card figcaption,
.section-heading p,
.about-copy p,
.reserve-copy p,
.event-content p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 4px;
  align-items: start;
  margin-bottom: 22px;
}

.event-grid {
  position: relative;
}

.event-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(60, 42, 63, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.event-card:hover,
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.event-image-wrap {
  position: relative;
}

.event-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 1.9;
  object-fit: cover;
}

[data-event-id="tropical-sunset"] .event-image-wrap img {
  object-position: center 44%;
}

.date-card {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  width: 58px;
  min-height: 74px;
  place-items: center;
  border-radius: 7px;
  background: var(--white);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
  box-shadow: 0 8px 18px rgba(47, 23, 79, 0.14);
}

.date-card strong {
  color: var(--pink);
  font-size: 1.78rem;
  font-weight: 600;
}

.event-content {
  padding: 16px 16px 18px;
}

.event-content h3 {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
  align-items: baseline;
}

.availability-note {
  color: var(--pink);
  font-size: 0.74rem;
  font-weight: 600;
}

.event-details {
  display: grid;
  gap: 7px;
  margin: 0 0 10px;
}

.event-details div {
  display: flex;
  gap: 6px;
  align-items: baseline;
}

.event-details dt {
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 600;
}

.event-details dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}

.steps-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.steps {
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 14px 0;
  text-align: center;
}

.step h3 {
  margin-bottom: 0;
  white-space: nowrap;
}

.step p {
  margin-bottom: 0;
}

.step span {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--purple);
  font-weight: 600;
}

.step:nth-child(1) span {
  background: #ffbfda;
}

.step:nth-child(3) span {
  background: #9de8e5;
}

.about-section {
  display: grid;
  gap: 26px;
  align-items: center;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 8px solid var(--white);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(47, 23, 79, 0.08);
}

.split-section {
  align-items: stretch;
}

.list-panel,
.testimonial-card,
.contact-card {
  border: 1px solid #f3dfcd;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 32px rgba(90, 46, 74, 0.08);
}

.list-panel {
  min-height: 100%;
  padding: 24px;
}

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  min-height: 26px;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(183, 95, 140, 0.32);
  border-radius: 6px;
  background: #fff4f9;
  color: var(--purple);
  content: "✓";
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
}

.check-list .check-list-note {
  margin-top: 10px;
  padding-left: 0;
  color: #6f6472;
  font-size: 1.02rem;
}

.check-list .check-list-note::before {
  content: none;
}

.list-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.testimonials {
  padding-top: 40px;
  padding-bottom: 40px;
}

.testimonial-card {
  margin: 0;
  padding: 22px;
}

.testimonial-card blockquote {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 1rem;
  font-weight: 800;
}

.testimonial-card figcaption {
  font-size: 0.88rem;
  font-weight: 800;
}

.notes-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.note-card {
  border: 1px solid #f2dfd0;
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
}

.note-card h3 {
  margin: 0 0 8px;
  color: var(--purple);
  font-size: 1rem;
}

.note-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 8px;
}

details {
  border: 1px solid #f2dfd0;
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding: 14px 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  float: right;
  color: var(--purple);
  content: "⌄";
}

details[open] summary::after {
  content: "⌃";
}

details p {
  color: var(--muted);
  margin: 0;
  padding: 0 16px 14px;
  white-space: pre-line;
}

.reserve-section {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: min(1080px, calc(100% - 36px));
  margin-top: 18px;
  margin-bottom: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.72), transparent 11rem),
    linear-gradient(135deg, #fff5fe 0%, #eee0ff 55%, #f9ecff 100%);
  box-shadow: 0 20px 55px rgba(89, 49, 110, 0.12);
  overflow: hidden;
}

.reserve-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.reserve-intro {
  max-width: 44rem;
  margin: 0 auto;
  text-align: left;
}

.selected-class-summary {
  display: grid;
  gap: 4px;
  max-width: 34rem;
  margin: 18px auto 0;
  border: 1px solid #f3dfcd;
  border-radius: var(--radius);
  background: var(--white);
  padding: 14px 16px;
  box-shadow: 0 12px 24px rgba(90, 46, 74, 0.08);
  text-align: left;
}

.selected-class-summary[hidden] {
  display: none;
}

.summary-label {
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}

.summary-title {
  color: var(--purple);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0;
}

.summary-detail {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0;
}

.reserve-art {
  position: absolute;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}

.reserve-brushes {
  left: 20px;
  bottom: 36px;
  font-size: clamp(3rem, 10vw, 6.8rem);
  transform: rotate(-12deg);
}

.reserve-palette {
  right: 20px;
  bottom: 34px;
  font-size: clamp(3.3rem, 10vw, 6.5rem);
  transform: rotate(10deg);
}

.reservation-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  max-width: 830px;
  margin: 0 auto;
  width: 100%;
}

.reservation-form label {
  display: grid;
  gap: 6px;
  color: var(--purple);
  font-size: 0.9rem;
  font-weight: 600;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  border: 1px solid #ead9e9;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

.reservation-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--soft-purple);
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.contact-section {
  position: relative;
  text-align: left;
  overflow: hidden;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.contact-card p {
  margin-bottom: 0;
}

.contact-card a:not(.button) {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-beach {
  width: 100%;
  border-radius: var(--radius);
  height: auto;
  object-fit: contain;
}

.site-footer {
  display: grid;
  gap: 8px;
  justify-items: center;
  background: var(--purple);
  color: var(--white);
  padding: 28px 18px;
  text-align: center;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 600;
}

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

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 620px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .steps,
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .quick-info {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }

  .info-card {
    grid-template-columns: 1fr;
    border-right: 0;
    padding: 0 18px;
  }

  .steps {
    align-items: start;
  }

  .step {
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr 1fr;
  }

  .reservation-form {
    grid-template-columns: repeat(3, 1fr);
  }

  .full-field {
    grid-column: 1 / -1;
  }

  .contact-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .contact-beach {
    grid-column: 2;
    grid-row: 1 / span 3;
    min-height: 170px;
  }
}

@media (min-width: 860px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    padding: 12px 28px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu,
  .nav-actions {
    display: flex;
    align-items: center;
  }

  .nav-actions {
    grid-column: auto;
  }

  .nav-menu {
    justify-content: center;
    gap: 12px;
  }

  .nav-actions {
    gap: 12px;
  }

  .header-reserve {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(470px, 1fr);
    padding-top: 64px;
    padding-bottom: 78px;
  }

  .hero-media {
    min-height: 540px;
  }

  .hero-main-photo {
    min-height: 540px;
  }

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

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

  .section-heading {
    grid-template-columns: 1fr auto;
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading p {
    grid-column: 1;
  }

  .section-heading .text-link {
    grid-column: 2;
    grid-row: 2;
  }

  .about-section {
    grid-template-columns: 0.7fr 1fr;
  }
}

@media (min-width: 1080px) {
  .section {
    padding-left: 28px;
    padding-right: 28px;
  }
}
