:root {
  --ink: #080808;
  --ink-soft: #585c61;
  --paper: #edf0f3;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --surface-muted: #dfe3e7;
  --line: rgba(8, 8, 8, 0.12);
  --line-strong: rgba(8, 8, 8, 0.24);
  --red: #ff6b35;
  --red-dark: #e9541f;
  --cyan: #ff8a5f;
  --green: #26282b;
  --gold: #ffb08e;
  --black: #050505;
  --white: #ffffff;
  --glass-light: rgba(255, 255, 255, 0.58);
  --glass-dark: rgba(255, 255, 255, 0.08);
  --glass-border-light: rgba(255, 255, 255, 0.46);
  --glass-border-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
  --shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.1);
  --content-max: 1760px;
  --content-narrow: 1160px;
  --site-gutter: clamp(40px, 5vw, 104px);
  --aligned-gutter: max(var(--site-gutter), calc((100vw - var(--content-max)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f7f8f9 0%, var(--paper) 42%, #f8f8f8 100%);
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  word-break: keep-all;
}

::selection {
  color: var(--white);
  background: var(--red);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px var(--aligned-gutter);
  background: rgba(238, 241, 244, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(22px) saturate(140%);
}

.site-header.is-scrolled {
  background: rgba(238, 241, 244, 0.84);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.1);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(145deg, var(--ink), #242424);
  color: var(--white);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 26px rgba(0, 0, 0, 0.18);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 21px;
  font-weight: 900;
}

.brand-copy span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 750;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.brief-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid var(--glass-border-light);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  background: var(--glass-light);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px) saturate(135%);
}

.brief-link span:first-child {
  display: grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  padding: 0 5px;
  background: var(--red);
  color: var(--white);
  border-radius: 5px;
  font-size: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
  overflow-wrap: anywhere;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(255, 107, 53, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-secondary {
  background: var(--ink);
  color: var(--white);
}

.button-secondary.is-added {
  background: var(--red);
}

.button-ghost {
  color: var(--white);
  border-color: var(--glass-border-dark);
  background: var(--glass-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(130%);
}

.button-small {
  min-height: 40px;
  padding: 0 15px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--glass-border-light);
  border-radius: 6px;
  background: var(--glass-light);
  backdrop-filter: blur(16px);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 820px;
  padding: 104px var(--aligned-gutter) 96px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero::after {
  position: absolute;
  inset: auto var(--aligned-gutter) 118px auto;
  width: min(460px, 28%);
  height: 34%;
  border: 1px solid var(--glass-border-dark);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 22px 56px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px) saturate(115%);
  transform: skewX(-8deg);
  pointer-events: none;
  content: "";
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.72) 40%, rgba(5, 5, 5, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.08) 44%),
    linear-gradient(135deg, rgba(255, 107, 53, 0.18), rgba(255, 255, 255, 0) 42%),
    url("assets/generated/hero-event-planning.png") center right / cover no-repeat;
  transform: scale(1.02);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  font-size: 108px;
  line-height: 0.98;
  font-weight: 950;
}

.hero-lead {
  width: min(760px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.65;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(880px, 100%);
  margin-top: 52px;
  border: 1px solid var(--glass-border-dark);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(120%);
}

.hero-metrics div {
  min-height: 102px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.055);
}

.hero-metrics dt {
  font-size: 27px;
  font-weight: 950;
  line-height: 1.1;
}

.hero-metrics dd {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.quick-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(var(--content-max), calc(100% - (var(--site-gutter) * 2)));
  margin: -38px auto 0;
  position: relative;
  z-index: 5;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--glass-border-light);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(20px) saturate(140%);
}

.quick-bar a {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 12px;
  color: var(--ink);
  border-right: 1px solid rgba(8, 8, 8, 0.1);
  font-weight: 900;
  text-align: center;
}

.quick-bar a:last-child {
  border-right: 0;
}

.quick-bar a:hover,
.quick-bar a:focus-visible {
  background: var(--red);
  color: var(--white);
}

.section {
  padding: 112px var(--aligned-gutter);
}

.section-heading {
  width: min(var(--content-max), 100%);
  margin: 0 auto 38px;
}

.section-heading h2,
.planner-copy h2,
.proof-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 950;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding-bottom: 3px;
  color: var(--ink);
  border-bottom: 2px solid var(--red);
  font-weight: 900;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

.intro-card {
  min-height: 250px;
  padding: 30px;
  background: var(--glass-light);
  border: 1px solid var(--glass-border-light);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(130%);
}

.intro-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 32px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 950;
}

.intro-card h3 {
  margin: 42px 0 12px;
  font-size: 24px;
  line-height: 1.25;
}

.intro-card p,
.solution-card li,
.package-card p,
.planner-copy p,
.proof-copy p,
.process-list p,
.contact-copy p {
  color: var(--ink-soft);
}

.solutions-section {
  background:
    linear-gradient(180deg, #080808 0%, #171819 100%);
  color: var(--white);
}

.solutions-section .section-heading h2,
.solutions-section .text-link {
  color: var(--white);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

.solution-card {
  display: grid;
  min-height: 520px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-border-dark);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(120%);
}

.solution-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #2a2c2f;
  filter: grayscale(0.12) contrast(1.04);
}

.solution-card div {
  padding: 24px;
}

.solution-card p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
}

.solution-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.25;
}

.solution-card li {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

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

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

.sets-section {
  background:
    linear-gradient(180deg, #edf0f3 0%, #e3e6ea 100%);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-tab {
  min-height: 42px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--glass-light);
  border: 1px solid var(--glass-border-light);
  border-radius: 6px;
  font-weight: 900;
  backdrop-filter: blur(16px);
}

.filter-tab.is-active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

.package-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  background: var(--glass-light);
  border: 1px solid var(--glass-border-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(130%);
}

.package-card[hidden] {
  display: none;
}

.package-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #dfe3e7;
  filter: grayscale(0.06) contrast(1.03);
}

.package-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 12px;
  padding: 24px;
}

.package-kicker {
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
}

.package-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.22;
}

.package-card p {
  margin: 0;
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.package-meta span {
  padding: 7px 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(8, 8, 8, 0.08);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 850;
}

.planner-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(560px, 1.18fr) minmax(380px, 0.9fr);
  gap: 24px;
  padding: 112px var(--aligned-gutter);
  background:
    linear-gradient(120deg, rgba(255, 107, 53, 0.1), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #f2f4f6 0%, #e5e8ec 100%),
    var(--paper);
}

.planner-copy,
.planner-form,
.planner-result {
  min-height: 100%;
}

.planner-copy {
  align-self: center;
  max-width: 420px;
}

.estimate-source-box {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 18px;
  background: var(--glass-light);
  border: 1px solid var(--glass-border-light);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(130%);
}

.estimate-source-box strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.estimate-source-box a {
  width: fit-content;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(255, 107, 53, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.planner-form,
.planner-result {
  padding: 28px;
  background: var(--glass-light);
  border: 1px solid var(--glass-border-light);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(135%);
}

.planner-form {
  display: grid;
  gap: 24px;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
.range-field > span,
.contact-form label span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.segmented-control,
.budget-options,
.check-grid {
  display: grid;
  gap: 8px;
}

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

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

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

.segmented-control label,
.budget-options label,
.check-grid label {
  min-width: 0;
}

.segmented-control input,
.budget-options input,
.check-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented-control span,
.budget-options span,
.check-grid span {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 8px 10px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(8, 8, 8, 0.08);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.segmented-control input:checked + span,
.budget-options input:checked + span,
.check-grid input:checked + span {
  color: var(--white);
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 -2px 0 var(--red), 0 12px 24px rgba(0, 0, 0, 0.12);
}

.range-field {
  display: grid;
  gap: 10px;
}

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

.range-field strong {
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--red);
}

.select-field {
  display: grid;
  gap: 10px;
}

.select-field span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.select-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(8, 8, 8, 0.08);
  border-radius: 6px;
  outline: none;
  font-weight: 850;
}

.select-field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.16);
}

.planner-result {
  display: grid;
  align-content: start;
  gap: 20px;
  background:
    linear-gradient(145deg, rgba(255, 107, 53, 0.12), rgba(255, 255, 255, 0.03) 38%),
    rgba(8, 8, 8, 0.92);
  border-color: var(--glass-border-dark);
  color: var(--white);
}

.result-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
}

.planner-result h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.22;
}

.planner-result p,
.planner-result dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.estimate-total {
  display: grid;
  gap: 7px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.34), rgba(255, 255, 255, 0.08));
  border: 1px solid var(--glass-border-dark);
  border-radius: 8px;
}

.estimate-total span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.estimate-total strong {
  color: var(--white);
  font-size: 32px;
  line-height: 1.1;
}

.estimate-total em {
  color: var(--gold);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.planner-result dl {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--glass-border-dark);
  border-radius: 8px;
  overflow: hidden;
}

.planner-result dl div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.planner-result dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 850;
}

.selected-packages {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.selected-packages p {
  margin: 0 0 8px;
  color: var(--white);
  font-weight: 900;
}

.selected-packages li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.selected-packages li + li {
  margin-top: 5px;
}

.estimate-lines {
  display: grid;
  gap: 10px;
}

.estimate-lines p {
  color: var(--white);
  font-weight: 900;
}

.estimate-lines table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  font-size: 13px;
}

.estimate-lines th,
.estimate-lines td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  vertical-align: top;
}

.estimate-lines th {
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.estimate-lines td {
  color: rgba(255, 255, 255, 0.76);
}

.estimate-lines tr:last-child td {
  border-bottom: 0;
}

.estimate-lines td:last-child {
  white-space: nowrap;
  text-align: right;
  font-weight: 900;
}

.estimate-note {
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  font-size: 13px;
}

.estimate-copy-text {
  width: 100%;
  min-height: 170px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  resize: vertical;
  outline: none;
  font-size: 13px;
  line-height: 1.5;
}

.estimate-copy-text[hidden] {
  display: none;
}

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

.portfolio-section {
  background:
    linear-gradient(180deg, #f7f8f9 0%, #e9ecef 100%);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

.portfolio-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portfolio-card-large {
  grid-column: span 2;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.78;
  filter: grayscale(0.12) contrast(1.06);
  transition: transform 240ms ease, opacity 240ms ease;
}

.portfolio-card:hover img {
  transform: scale(1.03);
  opacity: 0.68;
}

.portfolio-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.08));
  backdrop-filter: blur(8px);
}

.portfolio-card p {
  margin: 0 0 6px;
  color: var(--gold);
  font-weight: 950;
}

.portfolio-card h3 {
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.22;
}

.portfolio-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.proof-section {
  background:
    linear-gradient(180deg, #e9ecef 0%, #f7f8f9 100%);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

.proof-copy {
  align-self: center;
}

.proof-copy p:last-child {
  max-width: 520px;
}

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

.team-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 460px;
  background: var(--glass-light);
  border: 1px solid var(--glass-border-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(130%);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-muted);
  filter: grayscale(0.08) contrast(1.04);
}

.team-card div {
  padding: 24px;
}

.team-card p {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
}

.team-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.team-card span {
  color: var(--ink-soft);
  font-size: 14px;
}

.process-section {
  background:
    linear-gradient(180deg, #171819 0%, #080808 100%);
  color: var(--white);
}

.process-section .eyebrow,
.process-section .text-link {
  color: var(--gold);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: min(var(--content-max), 100%);
  margin: 0 auto;
  border-top: 1px solid var(--glass-border-dark);
  border-left: 1px solid var(--glass-border-dark);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px) saturate(120%);
}

.process-list li {
  min-height: 245px;
  padding: 24px;
  border-right: 1px solid var(--glass-border-dark);
  border-bottom: 1px solid var(--glass-border-dark);
}

.process-list span {
  color: var(--gold);
  font-weight: 950;
}

.process-list h3 {
  margin: 42px 0 10px;
  font-size: 22px;
}

.process-list p {
  color: rgba(255, 255, 255, 0.68);
}

.partner-band {
  padding: 56px var(--aligned-gutter);
  background:
    linear-gradient(90deg, #111111 0%, #242424 58%, var(--red) 100%);
  color: var(--white);
}

.partner-band > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

.partner-band p {
  margin: 0;
  font-size: 20px;
  font-weight: 950;
}

.partner-band ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.partner-band li {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 850;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  padding: 112px var(--aligned-gutter);
  background:
    linear-gradient(180deg, #f7f8f9 0%, #e5e8ec 100%);
}

.contact-copy,
.contact-form {
  width: min(100%, 640px);
}

.contact-copy {
  justify-self: end;
  align-self: center;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.contact-links a {
  display: inline-flex;
  width: fit-content;
  color: var(--ink);
  border-bottom: 2px solid var(--red);
  font-size: 20px;
  font-weight: 950;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: var(--glass-light);
  border: 1px solid var(--glass-border-light);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(135%);
}

.contact-form label {
  min-width: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.16);
}

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

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 32px var(--aligned-gutter);
  color: rgba(255, 255, 255, 0.76);
  background: var(--black);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 950;
}

.footer-brand img {
  width: 78px;
  height: auto;
  padding: 6px;
  background: var(--white);
  border-radius: 6px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 1320px) {
  .planner-section {
    grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  }

  .planner-copy {
    grid-column: 1 / -1;
    max-width: 760px;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 22px;
  }

  .site-nav {
    position: fixed;
    top: 67px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 18px 22px;
    background: rgba(238, 241, 244, 0.94);
    border-bottom: 1px solid var(--glass-border-light);
    backdrop-filter: blur(22px) saturate(140%);
  }

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

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero {
    min-height: 600px;
    padding: 76px 22px 74px;
  }

  .hero::after {
    right: 22px;
    bottom: 48px;
    width: min(380px, 42%);
    height: 40%;
  }

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

  .hero-lead {
    font-size: 19px;
  }

  .quick-bar {
    width: min(100% - 28px, 920px);
  }

  .section,
  .planner-section,
  .contact-section {
    padding-right: 22px;
    padding-left: 22px;
  }

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

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

  .planner-copy {
    grid-column: 1 / -1;
    max-width: 720px;
  }

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

  .proof-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .contact-form {
    width: min(100%, 760px);
    justify-self: center;
  }

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

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 66px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .brief-link span:last-child,
  .header-actions .button-small {
    display: none;
  }

  .hero {
    min-height: 560px;
    padding: 62px 20px 58px;
  }

  .hero-background {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.52)),
      linear-gradient(0deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.08) 48%),
      linear-gradient(135deg, rgba(255, 107, 53, 0.16), rgba(255, 255, 255, 0) 48%),
      url("assets/generated/hero-event-planning.png") center / cover no-repeat;
  }

  .hero::after {
    display: none;
  }

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

  .hero-lead {
    margin-top: 18px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 24px;
  }

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

  .hero-metrics {
    display: none;
  }

  .quick-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    width: 100%;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  .quick-bar a {
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .quick-bar a:nth-child(2n) {
    border-right: 0;
  }

  .quick-bar a:last-child {
    grid-column: 1 / -1;
  }

  .section,
  .planner-section,
  .contact-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-heading h2,
  .planner-copy h2,
  .proof-copy h2,
  .contact-copy h2 {
    font-size: 31px;
  }

  .section-heading-row {
    display: grid;
    align-items: start;
  }

  .intro-grid,
  .solution-grid,
  .package-grid,
  .planner-section,
  .range-pair,
  .team-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .intro-card {
    min-height: 220px;
    padding: 24px;
  }

  .solution-card {
    min-height: auto;
  }

  .filter-tabs {
    justify-content: flex-start;
  }

  .planner-result {
    order: 3;
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card-large {
    grid-column: auto;
  }

  .portfolio-card,
  .portfolio-card img {
    min-height: 330px;
  }

  .team-card {
    min-height: auto;
  }

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

  .process-list li {
    min-height: 190px;
  }

  .partner-band {
    padding: 42px 22px;
  }

  .partner-band > div {
    grid-template-columns: 1fr;
  }

  .partner-band ul {
    justify-content: flex-start;
  }

  .contact-links a {
    font-size: 18px;
  }

  .full-field {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero {
    min-height: 540px;
    padding-right: 16px;
    padding-left: 16px;
  }

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

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

  .section,
  .planner-section,
  .contact-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .segmented-control,
  .budget-options,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .planner-form,
  .planner-result,
  .contact-form {
    padding: 20px;
  }
}
