:root {
  --ink: #111820;
  --navy: #0e1a24;
  --blue: #145d7c;
  --teal: #0d7f83;
  --red: #c8101a;
  --gold: #b88a2b;
  --paper: #fbf8f2;
  --cream: #f3eee5;
  --white: #ffffff;
  --muted: #657280;
  --line: #d7e0e8;
  --ice: #e8f2f2;
  --shadow: 0 24px 70px rgba(17, 24, 32, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

body.locked {
  overflow: hidden;
}

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

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

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

.section-pad {
  padding: 104px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 40px rgba(17, 24, 32, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 58px;
  height: 58px;
  border: 3px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}

.site-header.is-scrolled .brand img {
  border-color: var(--paper);
  box-shadow: none;
}

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

.brand strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand small {
  color: currentColor;
  font-size: 0.77rem;
  opacity: 0.78;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.85rem;
  font-weight: 700;
}

nav a {
  opacity: 0.86;
}

nav a:hover {
  opacity: 1;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("/assets/celebration-style-home-web.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 18, 27, 0.92), rgba(8, 18, 27, 0.68) 44%, rgba(8, 18, 27, 0.18)),
    linear-gradient(0deg, rgba(8, 18, 27, 0.48), transparent 42%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 180px 0 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 26px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 22px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 34px;
  color: #e4edf2;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 58px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
}

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 800px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 26px;
}

.proof-row span {
  color: #d9e4eb;
  font-size: 0.92rem;
}

.proof-row strong {
  display: block;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.2;
}

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

.intro-grid,
.split-heading,
.celebration-grid,
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.intro h2 {
  max-width: 640px;
}

.intro-copy {
  border-left: 4px solid var(--red);
  padding-left: 34px;
}

.intro-copy p,
.split-heading > p,
.celebration-copy > p,
.quote-copy > p {
  color: var(--muted);
  font-size: 1.12rem;
}

.system {
  background: var(--cream);
}

.split-heading {
  align-items: end;
  margin-bottom: 78px;
}

.split-heading > p {
  max-width: 470px;
  margin-bottom: 12px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-bottom: 88px;
}

.process-line article {
  position: relative;
  padding-top: 34px;
  border-top: 4px solid var(--line);
}

.process-line article:nth-child(1) {
  border-color: var(--red);
}

.process-line article:nth-child(2) {
  border-color: var(--blue);
}

.process-line article:nth-child(3) {
  border-color: var(--teal);
}

.process-line span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.process-line article:nth-child(1) span {
  background: var(--red);
}

.process-line article:nth-child(2) span {
  background: var(--blue);
}

.process-line article:nth-child(3) span {
  background: var(--teal);
}

.process-line p,
.service-list p,
.product-band p,
.materials p {
  color: var(--muted);
}

.product-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 46px;
  color: var(--white);
  background: var(--navy);
}

.product-band .section-kicker,
.product-band p {
  color: #dce6ec;
}

.product-band h3 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.product-stage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 22px;
  padding: 26px;
  background: var(--white);
}

.product-stage img {
  width: 100%;
  height: 210px;
  object-fit: contain;
}

.celebration {
  background: var(--paper);
}

.photo-panel {
  min-height: 690px;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
}

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

.approval-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 40px 0;
  counter-reset: steps;
}

.approval-strip span {
  position: relative;
  padding-top: 50px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.approval-strip span::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 0.82rem;
}

.approval-strip span:nth-child(2)::before {
  background: var(--blue);
}

.approval-strip span:nth-child(3)::before {
  background: var(--teal);
}

.approval-strip span:nth-child(4)::before {
  background: var(--gold);
}

.callout {
  padding: 26px 28px;
  color: var(--ink) !important;
  background: var(--ice);
  border-left: 5px solid var(--blue);
}

.services {
  color: var(--white);
  background: var(--navy);
}

.services .section-kicker,
.services .split-heading > p,
.services .service-list p {
  color: #dce6ec;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.service-list article {
  min-height: 260px;
  padding: 32px 28px;
  background: var(--navy);
}

.service-list h3 {
  color: var(--white);
}

.materials {
  padding: 42px 0;
  background: var(--white);
}

.materials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.bm-logo {
  max-height: 86px;
  object-fit: contain;
}

.material-photo {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.materials p {
  margin: 0;
  font-size: 1rem;
}

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

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

.contact-stack {
  display: grid;
  gap: 10px;
  margin: 34px 0;
}

.contact-stack a:first-child {
  color: var(--red);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
}

.contact-stack a:not(:first-child) {
  color: var(--blue);
  font-weight: 800;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  padding: 8px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(20, 93, 124, 0.18);
  border-color: var(--blue);
}

.form-button {
  width: fit-content;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.hidden {
  display: none;
}

.site-footer {
  padding: 28px 0 92px;
  color: #dce6ec;
  background: var(--navy);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-inner span:first-child,
.footer-inner a {
  font-weight: 900;
}

.mobile-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 16px 48px rgba(200, 16, 26, 0.34);
  font-weight: 900;
}

.thanks {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.thanks-bg,
.thanks-overlay {
  position: absolute;
  inset: 0;
}

.thanks-bg {
  background-image: url("/assets/celebration-style-home-web.jpg");
  background-position: center;
  background-size: cover;
}

.thanks-overlay {
  background: linear-gradient(90deg, rgba(8, 18, 27, 0.94), rgba(8, 18, 27, 0.64));
}

.thanks-content {
  position: relative;
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
}

.thanks-content .brand {
  margin-bottom: 72px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .intro-grid,
  .split-heading,
  .celebration-grid,
  .quote-grid,
  .product-band,
  .materials-inner {
    grid-template-columns: 1fr;
  }

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

  .quote-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .section-pad {
    padding: 72px 0;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand small {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding: 132px 0 44px;
  }

  .proof-row,
  .field-pair,
  .approval-strip {
    grid-template-columns: 1fr;
  }

  .product-band {
    padding: 30px 22px;
  }

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

  .product-stage img {
    height: 170px;
  }

  .photo-panel,
  .photo-panel img {
    min-height: 420px;
  }

  .quote-form {
    padding: 22px;
  }

  .mobile-call {
    display: inline-flex;
  }
}
