:root {
  --ink: #1e1b18;
  --muted: #6e625a;
  --paper: #fff8ed;
  --surface: #ffffff;
  --line: #ead9c3;
  --gold: #f6b73c;
  --teal: #0f8d8a;
  --coral: #ef654d;
  --pink: #f7a9bd;
  --sky: #75d3e2;
  --green: #2a7747;
  --shadow: 0 22px 70px rgba(61, 39, 19, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(117, 211, 226, 0.24), transparent 26rem),
    radial-gradient(circle at 95% 18%, rgba(247, 169, 189, 0.22), transparent 24rem),
    linear-gradient(180deg, #fff9f1 0%, #fff4e2 52%, #fffaf4 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 248, 237, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-links a {
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(15, 141, 138, 0.1);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: 36px;
  width: 100%;
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 74px max(16px, calc((100vw - 1180px) / 2)) 44px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(30, 27, 24, 0.74) 0%, rgba(30, 27, 24, 0.42) 46%, rgba(30, 27, 24, 0.1) 100%),
    url("assets/party-hero.png") center / cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 170px;
  background: linear-gradient(180deg, transparent, var(--paper));
  content: "";
}

.party-decoration {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  opacity: 0.95;
}

.decoration-one {
  right: 8%;
  top: 12%;
  width: 150px;
  height: 150px;
  background:
    radial-gradient(circle at 30% 32%, #fff 0 8%, transparent 9%),
    radial-gradient(circle at 42% 40%, var(--sky) 0 18%, transparent 19%),
    radial-gradient(circle at 62% 32%, var(--coral) 0 17%, transparent 18%),
    radial-gradient(circle at 51% 62%, var(--gold) 0 18%, transparent 19%);
}

.decoration-two {
  left: 46%;
  bottom: 13%;
  width: 115px;
  height: 115px;
  background:
    radial-gradient(circle at 30% 28%, var(--pink) 0 21%, transparent 22%),
    radial-gradient(circle at 62% 28%, var(--sky) 0 19%, transparent 20%),
    radial-gradient(circle at 46% 64%, var(--gold) 0 18%, transparent 19%);
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.92;
  text-shadow: 0 10px 38px rgba(0, 0, 0, 0.28);
}

.hero-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--teal), #0a6867);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 141, 138, 0.26);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  padding: 26px;
  backdrop-filter: blur(18px);
}

.hero-panel h2 {
  margin: 10px 0 16px;
}

.hero-panel p {
  margin: 16px 0 0;
  color: var(--muted);
}

.panel-badge {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(239, 101, 77, 0.12);
  color: #aa301e;
  padding: 7px 10px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.mini-package span {
  border-radius: 8px;
  background: #fff5e4;
  padding: 10px;
  color: #5b3b12;
  font-weight: 800;
}

.section,
.quote-layout,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.product-card,
.flow-grid article,
.recommendation-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  position: absolute;
  right: -34px;
  top: -34px;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: rgba(117, 211, 226, 0.22);
  content: "";
}

.service-icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: rgba(213, 154, 47, 0.18);
  color: #8a5c11;
  font-weight: 900;
}

.service-card h3 {
  margin: 20px 0 8px;
}

.service-card p,
.flow-grid p,
.product-meta,
.cart-items,
.inquiry-output p,
.footer p {
  color: var(--muted);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 26px;
  padding: 70px 0;
}

.recommendation-panel {
  margin-bottom: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 228, 0.96)),
    radial-gradient(circle at 88% 16%, rgba(246, 183, 60, 0.25), transparent 10rem);
  box-shadow: 0 16px 46px rgba(61, 39, 19, 0.1);
}

.field-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 12px;
}

.field-row label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.field-row select,
.field-row input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
}

.recommendation-copy {
  margin: 16px 0;
  border-left: 5px solid var(--coral);
  background: rgba(255, 255, 255, 0.76);
  padding: 14px 16px;
}

.recommendation-copy p {
  margin: 6px 0 0;
  color: var(--muted);
}

.recommendation-copy span {
  color: var(--ink);
  font-weight: 900;
}

.product-list {
  display: grid;
  gap: 14px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  overflow: hidden;
}

.product-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral), var(--sky));
  content: "";
}

.product-card h3 {
  margin: 0 0 6px;
}

.product-meta {
  margin: 0;
}

.product-price {
  margin-top: 12px;
  color: var(--green);
  font-weight: 900;
}

.quantity-control {
  display: grid;
  grid-template-columns: 42px 54px 42px;
  align-items: center;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.quantity-control button {
  height: 42px;
  border: 0;
  background: #fff0d3;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
}

.quantity-control output {
  text-align: center;
  font-weight: 900;
}

.cart-panel {
  min-width: 0;
}

.cart-sticky {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 237, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(117, 211, 226, 0.24), transparent 12rem);
  box-shadow: var(--shadow);
  padding: 22px;
}

.cart-sticky h2 {
  margin: 0 0 18px;
}

.cart-items {
  display: grid;
  gap: 10px;
  padding-bottom: 16px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.cart-row strong {
  color: var(--ink);
}

.totals {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  border-top: 2px solid var(--ink);
  padding-top: 14px;
}

.totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.totals dt {
  color: var(--muted);
}

.totals dd {
  margin: 0;
  font-weight: 900;
}

.inquiry-form {
  display: grid;
  gap: 12px;
}

.inquiry-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-output textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 11px 12px;
  color: var(--ink);
}

.inquiry-output {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.inquiry-output h3 {
  margin: 0;
}

.inquiry-output textarea {
  margin: 8px 0 12px;
  resize: vertical;
}

.details-band {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 26px;
  border-top: 1px solid var(--line);
}

.details-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

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

.flow-grid article {
  background: rgba(255, 255, 255, 0.72);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 32px 0 42px;
}

.footer-contact {
  display: grid;
  gap: 8px;
  text-align: right;
}

@media (max-width: 900px) {
  .hero,
  .quote-layout,
  .details-band {
    grid-template-columns: 1fr;
  }

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

  .field-row {
    grid-template-columns: 1fr;
  }

  .cart-sticky {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .decoration-one,
  .decoration-two {
    display: none;
  }

  .service-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

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

  .footer {
    flex-direction: column;
  }

  .footer-contact {
    text-align: left;
  }
}
