:root {
  --ink: #181814;
  --paper: #f8f5ec;
  --paper-strong: #fffaf0;
  --charcoal: #26231d;
  --charcoal-soft: #39352c;
  --amber: #f0aa34;
  --amber-strong: #d57a1b;
  --teal: #1e9488;
  --mint: #dff4ef;
  --coral: #dc6248;
  --line: rgba(38, 35, 29, 0.16);
  --white-soft: rgba(255, 250, 240, 0.86);
  --shadow: 0 22px 70px rgba(24, 24, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 50;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid var(--line);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px 40px;
  color: var(--paper-strong);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(248, 245, 236, 0.94);
  box-shadow: 0 12px 40px rgba(24, 24, 20, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: inline-flex;
  align-items: end;
  justify-content: center;
  gap: 3px;
  width: 34px;
  height: 34px;
  padding: 8px 7px;
  color: var(--paper-strong);
  background: var(--ink);
  border-radius: 8px;
}

.site-header:not(.is-scrolled):not(.is-open) .brand-mark {
  color: var(--ink);
  background: var(--paper-strong);
}

.brand-mark span {
  display: block;
  width: 4px;
  background: currentColor;
  border-radius: 999px;
}

.brand-mark span:nth-child(1) {
  height: 8px;
}

.brand-mark span:nth-child(2) {
  height: 16px;
}

.brand-mark span:nth-child(3) {
  height: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a:last-child {
  color: var(--ink);
  background: var(--amber);
}

.site-header.is-scrolled .main-nav a:not(:last-child):hover,
.site-header.is-open .main-nav a:not(:last-child):hover {
  background: rgba(24, 24, 20, 0.07);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper-strong);
  background: var(--ink);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 15, 12, 0.88) 0%, rgba(16, 15, 12, 0.64) 36%, rgba(16, 15, 12, 0.2) 72%),
    linear-gradient(0deg, rgba(16, 15, 12, 0.75) 0%, rgba(16, 15, 12, 0.08) 34%, rgba(16, 15, 12, 0.52) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
  margin: 0 auto 96px;
  transform: translateX(-23vw);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--teal);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: 64px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 16px 34px rgba(240, 170, 52, 0.26);
}

.button-primary:hover {
  background: #ffbf55;
}

.button-secondary {
  color: var(--paper-strong);
  border-color: rgba(255, 250, 240, 0.44);
  background: rgba(255, 250, 240, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 250, 240, 0.16);
}

.hero-service-strip {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-service-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 999px;
  color: var(--paper-strong);
  background: rgba(16, 15, 12, 0.44);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
}

.section,
.intro-band,
.split-band,
.event-band {
  padding: 92px 0;
}

#packages,
#process,
#events,
#quote {
  scroll-margin-top: 92px;
}

.section-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.intro-band {
  background: var(--paper-strong);
}

.intro-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: 0;
}

p {
  font-size: 17px;
}

.intro-grid p:not(.section-kicker),
.section-heading p,
.split-layout p,
.quote-copy > p,
.event-columns p,
.process-grid p,
.package-card p {
  color: rgba(38, 35, 29, 0.76);
}

.intro-grid p:not(.section-kicker) {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: 19px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}

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

.section-heading p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  align-self: end;
}

.compact-heading {
  display: block;
}

.compact-heading h2 {
  max-width: 760px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  display: flex;
  min-height: 442px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 14px 38px rgba(24, 24, 20, 0.07);
}

.package-featured {
  border-color: rgba(30, 148, 136, 0.42);
  box-shadow: var(--shadow);
}

.package-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.tag,
.guest-count {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.tag {
  color: var(--ink);
  background: var(--mint);
}

.guest-count {
  color: var(--charcoal-soft);
  background: rgba(240, 170, 52, 0.18);
}

.package-card p {
  margin: 14px 0 0;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 24px;
  color: var(--charcoal-soft);
  font-weight: 700;
}

.package-card li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
  content: "";
}

.text-action {
  align-self: flex-start;
  min-height: 42px;
  margin-top: auto;
  padding: 0;
  border: 0;
  color: var(--teal);
  background: transparent;
  font-weight: 900;
}

.text-action:hover {
  color: var(--amber-strong);
}

.split-band {
  color: var(--paper-strong);
  background: var(--charcoal);
}

.split-band .section-kicker,
.event-band .section-kicker {
  color: var(--amber);
}

.split-band h2,
.split-band h3,
.event-band h2,
.event-band h3 {
  color: var(--paper-strong);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.76fr);
  gap: 72px;
  align-items: center;
}

.split-layout p {
  max-width: 590px;
  margin: 20px 0 0;
  color: rgba(255, 250, 240, 0.74);
}

.addon-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.addon-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.process-grid article {
  min-height: 280px;
  padding: 26px;
  background: var(--paper-strong);
}

.step-number {
  display: block;
  margin-bottom: 46px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 950;
}

.process-grid p {
  margin: 14px 0 0;
}

.event-band {
  color: var(--paper-strong);
  background:
    linear-gradient(90deg, rgba(24, 24, 20, 0.92), rgba(24, 24, 20, 0.72)),
    radial-gradient(circle at 16% 8%, rgba(240, 170, 52, 0.18), transparent 34%),
    linear-gradient(135deg, #1d1b17, #25443d);
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.9fr);
  gap: 72px;
  align-items: start;
}

.event-columns {
  display: grid;
  gap: 18px;
}

.event-columns > div {
  padding: 28px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
}

.event-columns p {
  margin: 12px 0 0;
  color: rgba(255, 250, 240, 0.74);
}

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

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.92fr);
  gap: 72px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 118px;
}

.quote-copy > p {
  margin: 20px 0 0;
  max-width: 560px;
}

.quote-note {
  display: grid;
  gap: 6px;
  max-width: 420px;
  margin-top: 36px;
  padding: 18px;
  border: 1px solid rgba(30, 148, 136, 0.22);
  border-radius: 8px;
  background: var(--mint);
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

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

label {
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(38, 35, 29, 0.22);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper-strong);
}

input,
select {
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 12px 14px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(30, 148, 136, 0.26);
  border-color: var(--teal);
}

.form-button {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 850;
}

.site-footer {
  padding: 28px 0;
  color: var(--paper-strong);
  background: var(--ink);
}

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

.footer-brand .brand-mark {
  color: var(--ink);
  background: var(--paper-strong);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 250, 240, 0.76);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .hero-content {
    transform: none;
    margin-left: 40px;
  }

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

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    padding: 12px 20px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 68px 14px auto 14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--paper-strong);
    box-shadow: var(--shadow);
  }

  .nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    justify-content: center;
  }

  .hero {
    min-height: 80vh;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 15, 12, 0.88), rgba(16, 15, 12, 0.42)),
      linear-gradient(0deg, rgba(16, 15, 12, 0.82), rgba(16, 15, 12, 0.26));
  }

  .hero-content {
    width: min(680px, calc(100% - 40px));
    margin: 0 auto 112px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-service-strip {
    left: 20px;
    right: 20px;
    bottom: 24px;
    justify-content: flex-start;
  }

  .section,
  .intro-band,
  .split-band,
  .event-band {
    padding: 70px 0;
  }

  .section-inner {
    width: min(100% - 40px, 680px);
  }

  .intro-grid,
  .section-heading,
  .split-layout,
  .event-layout,
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading .section-kicker,
  .section-heading h2,
  .section-heading p {
    grid-column: auto;
    grid-row: auto;
  }

  h2 {
    font-size: 34px;
  }

  .package-grid,
  .process-grid,
  .addon-list {
    grid-template-columns: 1fr;
  }

  .package-card,
  .process-grid article {
    min-height: auto;
  }

  .step-number {
    margin-bottom: 24px;
  }

  .quote-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .brand {
    gap: 9px;
    font-size: 15px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-service-strip span {
    font-size: 12px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  .package-card,
  .quote-form,
  .event-columns > div {
    padding: 22px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    display: grid;
  }
}
