:root {
  --orange: #ff9700;
  --orange-dark: #d67800;
  --cream: #fff1dd;
  --cream-light: #fff8ef;
  --black: #111111;
  --dark: #252525;
  --gray: #666666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --border: #eadfce;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
  --radius: 24px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--cream-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 239, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: none;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  width: 190px;
  height: auto;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--orange-dark);
}

.nav-button {
  background: var(--orange);
  color: var(--white);
  padding: 11px 18px;
  border-radius: 999px;
}

.nav-button:hover {
  background: var(--orange-dark);
  color: var(--white) !important;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle::after {
  content: "▾";
  font-size: 11px;
  line-height: 1;
  opacity: 0.7;
}

.dropdown-menu {
  position: absolute;
  top: top: 100%;
  left: 50%;
  width: 220px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--cream);
  color: var(--orange-dark);
}
/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-primary:hover {
  background: var(--orange-dark);
}

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

.button-light {
  background: var(--white);
  color: var(--black);
}

/* Hero */

.hero {
  padding: 76px 0 64px;
  background:
    radial-gradient(circle at top right, rgba(255, 151, 0, 0.18), transparent 36%),
    var(--cream-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  align-items: center;
  gap: 48px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

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

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h3 {
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.hero-text {
  max-width: 660px;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 30px;
}

.hero-actions {
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points span {
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 750;
  border: 1px solid rgba(255, 151, 0, 0.16);
  background: rgba(255, 255, 255, 0.5);
  color: var(--black);
  border-radius: 999px;
}

.hero-points svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: var(--orange);
}

.hero-card-slider {
  position: relative;
  width: min(100%, 552px);
  aspect-ratio: 4 / 3;
  justify-self: center;
  overflow: visible;
  min-width: 0;
}

.slider-card {
  position: absolute;
  inset: 16px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.75s ease,
    opacity 0.75s ease;
}

.slider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--white);
}

.slider-card.is-front {
  z-index: 2;
  opacity: 1;
  transform: translate(0, 0) rotate(1.5deg) scale(1);
}

.slider-card.is-back {
  z-index: 1;
  opacity: 0.78;
  transform: translate(12px, 12px) rotate(-2deg) scale(0.96);
}

.slider-card.is-moving {
  z-index: 3;
  opacity: 1;
  transform: translate(-16px, -14px) rotate(-4deg) scale(1.02);
}

.slider-next {
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--black);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%) translateX(10px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.hero-card-slider:hover .slider-next {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.slider-next:hover {
  background: var(--orange);
  color: var(--white);
}

.slider-next:focus-visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

/* Intro */

.intro {
  padding: 76px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
  min-width: 0;
}

.intro p:last-child {
  font-size: 21px;
  color: var(--dark);
}

/* Sections */

.offers,
.why,
.process {
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  min-width: 0;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.045);
}

.offer-card p {
  color: var(--gray);
  margin-bottom: 22px;
}

.offer-card a {
  color: var(--orange-dark);
  font-weight: 900;
  text-decoration: none;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange-dark);
  font-weight: 900;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

/* Image Feature */

.image-feature {
  padding: 88px 0;
  background: var(--white);
}

.image-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 58px;
  align-items: center;
  min-width: 0;
}

.feature-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image img,
.atmosphere img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}

.feature-content p {
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 28px;
}

/* Benefits */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  min-width: 0;
}

.benefit {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
}

.benefit p {
  color: var(--gray);
  margin-bottom: 0;
}

/* Process */

.process {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  min-width: 0;
}

.step {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 24px;
}

.step p {
  color: var(--gray);
  margin-bottom: 0;
}

/* Atmosphere */

.atmosphere {
  padding: 88px 0;
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: center;
  min-width: 0;
}

.atmosphere p {
  font-size: 19px;
  color: var(--dark);
}

.atmosphere img {
  border-radius: var(--radius);
  height: 460px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-content,
.intro-grid > *,
.image-feature-grid > *,
.atmosphere-grid > *,
.offer-card,
.benefit,
.step,
.contact-grid > *,
.form-row > *,
.choice-card {
  min-width: 0;
}

/* CTA */

.cta {
  padding: 88px 0;
  background: var(--cream-light);
}

.cta-box {
  background:
    linear-gradient(135deg, rgba(255, 151, 0, 0.95), rgba(214, 120, 0, 0.95));
  color: var(--white);
  border-radius: 34px;
  padding: 58px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-box .eyebrow {
  color: var(--white);
}

.cta-box p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 19px;
}

/* Contact */

.page-hero {
  padding: 34px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 151, 0, 0.16), transparent 34%),
    var(--cream-light);
}

.page-hero-inner {
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 14px;
}

.page-hero p:last-child {
  max-width: 640px;
  color: var(--dark);
  font-size: 18px;
  margin-bottom: 0;
}

.page-hero-text {
  max-width: 620px;
  color: var(--dark);
  font-size: 17px;
  margin-bottom: 0;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin-top: 22px;
}

.contact-option-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 154px;
  padding: 22px 54px 22px 22px;
  border: 2px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.055);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-option-card::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 22px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange-dark);
  font-size: 18px;
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-option-card:hover {
  border-color: var(--orange);
  box-shadow: 0 16px 34px rgba(214, 120, 0, 0.14);
  transform: translateY(-3px);
}

.contact-option-card:hover::after {
  background: var(--orange);
  color: var(--white);
  transform: translateX(3px);
}

.contact-option-card span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-option-card strong {
  color: var(--black);
  font-size: 21px;
  line-height: 1.2;
}

.contact-option-card small {
  color: var(--gray);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-section {
  padding: 46px 0 78px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 28px;
  align-items: start;
  max-width: 1080px;
}

.inquiry-form,
.contact-card {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.045);
}

.inquiry-form {
  padding: 26px;
  scroll-margin-top: 96px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  margin-bottom: 18px;
  border: 1px solid #d67800;
  border-radius: 14px;
  background: var(--cream);
  color: var(--dark);
  font-weight: 800;
  padding: 12px 14px;
}

.form-error[hidden] {
  display: none;
}

.form-progress {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
}

.inquiry-form.is-stepped .form-progress {
  display: flex;
}

.progress-dots {
  display: flex;
  gap: 8px;
}

.progress-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
}

.progress-dots span.is-active {
  background: var(--orange);
}

.inquiry-form.is-stepped .form-step:not(.is-active),
.form-step[hidden] {
  display: none;
}

.form-section {
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
}

.form-section:first-child {
  padding-top: 0;
}

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

.form-section label {
  display: grid;
  gap: 7px;
  color: #3f3f3f;
  font-size: 14px;
  font-weight: 700;
}

.form-kicker {
  color: var(--orange-dark);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 12px;
}

.form-subtitle {
  color: var(--dark);
  font-size: 15px;
  font-weight: 900;
  margin: 18px 0 9px;
}

.form-kicker + .form-subtitle {
  margin-top: 0;
}

.event-details {
  padding-top: 0;
}

.event-details .form-subtitle {
  margin-top: 20px;
  margin-bottom: 9px;
}

.event-details .form-kicker + .form-subtitle {
  margin-top: 0;
}

.event-type-grid {
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 8px;
}

.event-type-grid .choice-card span {
  min-height: 36px;
  font-size: 14px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.78);
}

.event-type-grid .choice-card input:checked + span {
  background: var(--cream);
  border-color: var(--orange);
  color: var(--orange-dark);
  box-shadow: 0 6px 14px rgba(255, 151, 0, 0.12);
}

.event-type-grid .choice-card:hover span {
  background: var(--white);
}

.date-fields {
  gap: 12px;
}

.date-fields input,
.event-details input[name="location"],
.event-details input[name="dateIdea"] {
  min-height: 42px;
  border-radius: 12px;
  padding: 10px 13px;
}

.date-fields input:disabled {
  background: #f2eee7;
  border-color: #e4d8c6;
  color: var(--gray);
}

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

.form-row + .form-row {
  margin-top: 14px;
}

.form-row-spaced {
  margin-top: 12px;
}

.choice-grid + .form-row,
.choice-grid + .custom-guest-row,
.subtle-check + .form-row {
  margin-top: 14px;
}

.date-idea-row {
  margin-top: 12px;
  max-width: 520px;
}

.subtle-check:not(:has(input:checked)) + .date-idea-row {
  display: none;
}

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

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  color: var(--black);
  font: inherit;
  padding: 11px 14px;
}

input::placeholder,
textarea::placeholder {
  color: #858585;
  opacity: 1;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(255, 151, 0, 0.2);
}

input:disabled {
  background: #f2eee7;
  color: var(--gray);
  cursor: not-allowed;
}

.custom-guest-row input[readonly] {
  background: #f2eee7;
  color: var(--gray);
  cursor: text;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 10px;
}

.choice-card {
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--dark);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  padding: 8px 14px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.choice-card input:checked + span {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(255, 151, 0, 0.16);
}

.choice-card input:focus-visible + span {
  outline: 3px solid rgba(255, 151, 0, 0.28);
  outline-offset: 3px;
}

.choice-card:hover span {
  transform: translateY(-1px);
  border-color: var(--orange);
}

.form-section .subtle-check {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--dark);
  font-weight: 800;
  cursor: pointer;
}

.form-section .subtle-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-section .subtle-check span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--dark);
  font-size: 14px;
  line-height: 1.2;
}

.form-section .subtle-check span::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid #8b8b8b;
  border-radius: 4px;
  background: var(--white);
}

.form-section .subtle-check input:checked + span {
  background: var(--white);
  border-color: var(--orange);
  color: var(--orange-dark);
}

.form-section .subtle-check input:checked + span::before {
  background: var(--orange);
  border-color: var(--orange);
}

.custom-guest-row {
  display: grid !important;
  grid-template-columns: auto minmax(120px, 170px);
  gap: 8px;
  align-items: center;
  width: min(100%, 390px);
  max-width: 100%;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.custom-guest-row input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-guest-row span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  padding: 0 8px;
}

.custom-guest-row input[type="text"] {
  height: 40px;
  min-width: 0;
  border-radius: 12px;
  padding: 9px 12px;
}

.custom-guest-row:has(input[type="radio"]:checked) {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 8px 20px rgba(255, 151, 0, 0.12);
}

.custom-guest-row:has(input[type="radio"]:checked) span {
  color: var(--orange-dark);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding-top: 22px;
}

.form-actions .button-primary {
  border: 1px solid rgba(214, 120, 0, 0.24);
  box-shadow: 0 12px 24px rgba(214, 120, 0, 0.24);
}

.form-actions .button-primary:hover {
  box-shadow: 0 16px 30px rgba(214, 120, 0, 0.28);
}

.form-actions p {
  max-width: 360px;
  color: var(--gray);
  font-size: 14px;
  margin: 0;
}

.trust-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
}

.trust-note span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
  padding: 7px 12px;
}

.step-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 18px;
}

.step-actions .button {
  min-width: 132px;
}

.step-actions .button-primary {
  border: 1px solid rgba(214, 120, 0, 0.2);
  box-shadow: 0 8px 18px rgba(214, 120, 0, 0.18);
}

.step-actions .button-primary:hover {
  box-shadow: 0 11px 22px rgba(214, 120, 0, 0.22);
}

.privacy-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 18px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.privacy-check a {
  color: var(--orange-dark);
  font-weight: 900;
}

.thanks-box {
  max-width: 760px;
}

.contact-aside {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.035);
}

.contact-card h2 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--dark);
  font-size: 15px;
  margin-bottom: 0;
}

.contact-card-direct p {
  margin-bottom: 16px;
}

.contact-card-direct {
  scroll-margin-top: 96px;
}

.contact-card-direct.is-highlighted {
  animation: contactHighlight 1.4s ease;
}

@keyframes contactHighlight {
  0% {
    border-color: var(--orange);
    box-shadow: 0 0 0 0 rgba(255, 151, 0, 0.34), 0 8px 22px rgba(0, 0, 0, 0.035);
  }

  35% {
    border-color: var(--orange);
    box-shadow: 0 0 0 8px rgba(255, 151, 0, 0.16), 0 14px 32px rgba(0, 0, 0, 0.06);
  }

  100% {
    border-color: var(--border);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.035);
  }
}

.direct-contact-links {
  display: grid;
  gap: 8px;
}

.direct-contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  padding: 8px 13px;
}

.direct-contact-links a:hover {
  border-color: var(--orange);
  background: var(--cream);
}

.contact-card-soft {
  background: var(--cream);
}

.contact-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--dark);
  font-size: 14px;
}

.contact-card li + li {
  margin-top: 8px;
}

/* Legal pages */

.legal-section {
  padding: 46px 0 78px;
  background: var(--white);
}

.legal-content {
  max-width: 860px;
  display: grid;
  gap: 18px;
}

.legal-card {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.035);
}

.legal-card h2 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.legal-card p {
  color: var(--dark);
  margin-bottom: 14px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--orange-dark);
  font-weight: 800;
}

.legal-meta {
  color: var(--gray) !important;
  font-size: 14px;
  font-weight: 800;
}

.legal-note {
  background: var(--cream);
}

/* Footer */

.site-footer {
  padding: 34px 0;
  background: var(--black);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner div {
  display: flex;
  gap: 20px;
}

.footer-inner a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.78;
}

.footer-inner a:hover {
  opacity: 1;
}

/* Responsive */

@media (max-width: 1080px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-card-slider {
    width: min(100%, 560px);
    justify-self: start;
  }

  .feature-image img,
  .atmosphere img {
    height: 330px;
  }

  .card-grid,
  .benefit-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .logo {
    width: 180px;
  }

  .main-nav {
    gap: 18px;
    font-size: 14px;
  }

  .hero-grid,
  .intro-grid,
  .image-feature-grid,
  .atmosphere-grid,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 0 62px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-text,
  .intro p:last-child,
  .feature-content p,
  .atmosphere p {
    font-size: 18px;
  }

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

  .button {
    width: 100%;
  }

  .feature-image img,
  .atmosphere img {
    height: 330px;
  }

  .hero-card-slider {
    width: min(100%, 420px);
  }

  .slider-card {
    inset: 12px;
  }

  .slider-card.is-back {
    transform: translate(10px, 10px) rotate(-2deg) scale(0.96);
  }

  .slider-card.is-moving {
    transform: translate(-12px, -12px) rotate(-3deg) scale(1.02);
  }

  .slider-next {
    opacity: 1;
    right: 24px;
    transform: translateY(-50%) translateX(0);
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .card-grid,
  .benefit-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

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

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

  .custom-guest-row {
    grid-template-columns: minmax(0, 1fr) minmax(105px, 130px);
    width: 100%;
  }

  .custom-guest-row input[type="text"] {
    width: 100%;
  }

  .offers,
  .why,
  .process,
  .image-feature,
  .atmosphere,
  .cta,
  .intro {
    padding: 58px 0;
  }

  .page-hero {
    padding: 32px 0 26px;
  }

  .contact-options {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
  }

  .contact-option-card {
    min-height: 0;
    padding: 18px 50px 18px 18px;
  }

  .contact-option-card strong {
    font-size: 19px;
  }

  .contact-option-card small {
    font-size: 14px;
  }

  .contact-section {
    padding: 36px 0 58px;
  }

  .inquiry-form,
  .contact-card {
    padding: 20px;
  }

  .form-section {
    padding: 18px 0;
  }

  .contact-aside {
    grid-template-columns: 1fr;
  }

  .form-actions .button {
    width: 100%;
  }

  .cta-box {
    padding: 38px 22px;
    border-radius: 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.set-overview {
  padding: 64px 0 88px;
  background: var(--white);
}

.set-list {
  display: grid;
  gap: 34px;
}

.set-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.44fr) minmax(0, 1.56fr);
  gap: 38px;
  align-items: center;
  padding: 16px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream-light);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.045);
}

.set-image {
  width: 100%;
  height: clamp(190px, 17vw, 230px);
  border-radius: 16px;
  background: transparent;
  overflow: hidden;
  box-shadow: none;
}

.set-price {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  width: fit-content;
  margin: 0 0 12px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--orange-dark);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}

.set-price span {
  color: var(--dark);
  font-size: 13px;
  font-weight: 900;
}

.set-content h2 {
  font-size: clamp(27px, 3.4vw, 40px);
  margin-bottom: 8px;
}

.set-content p {
  max-width: 620px;
  color: var(--dark);
  font-size: 17px;
  margin-bottom: 16px;
}

@media (max-width: 820px) {
  .set-card,
  .set-card-reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
  }

  .set-card-reverse .set-image,
  .set-card-reverse .set-content {
    order: initial;
  }

  .set-image {
    height: clamp(190px, 44vw, 250px);
  }
}