:root {
  --cream: #fff7ec;
  --cream-2: #fffaf2;
  --orange: #ff7f4f;
  --orange-dark: #e95d2a;
  --black: #191410;
  --muted: #6f665e;
  --line: rgba(25, 20, 16, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(98, 50, 25, 0.16);
  --shadow-soft: 0 14px 45px rgba(98, 50, 25, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

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

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

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(255, 127, 79, 0.34);
}

.brand-text {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}

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

.nav-cta {
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--black);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 76px;
  background:
    radial-gradient(circle at top left, rgba(255,127,79,.30), transparent 34%),
    linear-gradient(135deg, var(--cream-2), var(--cream));
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 127, 79, 0.18);
  pointer-events: none;
}

.hero-bg-shape-one {
  width: 420px;
  height: 420px;
  right: -140px;
  top: 80px;
}

.hero-bg-shape-two {
  width: 240px;
  height: 240px;
  left: -90px;
  bottom: -80px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
}

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

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(42px, 7vw, 78px);
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(32px, 4.6vw, 54px);
  margin-bottom: 16px;
}

h3 {
  font-size: 23px;
  margin-bottom: 8px;
}

.hero-text,
.section-heading p,
.rich-text p,
.feature-copy p,
.clients-copy p,
.contact-layout p,
.service-card p,
.event-card p,
.gallery-card p,
.uniform-grid p {
  color: var(--muted);
}

.hero-text {
  max-width: 660px;
  font-size: 19px;
  margin-bottom: 28px;
}

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

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

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 14px 32px rgba(255, 127, 79, 0.28);
}

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

.btn-secondary {
  background: white;
  color: var(--orange-dark);
  border-color: rgba(255, 127, 79, 0.3);
}

.btn-light {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  color: white;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.hero-contact span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
}

.hero-showcase {
  position: relative;
  min-height: 520px;
}

.showcase-main {
  overflow: hidden;
  border-radius: 38px;
  box-shadow: var(--shadow);
  border: 7px solid white;
  transform: rotate(2deg);
}

.showcase-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.showcase-card {
  position: absolute;
  left: -24px;
  bottom: 22px;
  max-width: 280px;
  padding: 20px;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.showcase-card strong {
  display: block;
  font-size: 24px;
}

.showcase-card span {
  color: var(--muted);
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

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

.intro-item {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.intro-item span {
  color: #ffb18f;
  font-weight: 900;
}

.intro-item h2 {
  font-size: 28px;
  margin: 8px 0;
}

.intro-item p {
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
}

.split-section,
.feature-section,
.clients-layout,
.contact-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: 1.08fr .92fr;
}

.split-media {
  position: relative;
}

.split-media img,
.feature-collage img,
.clients-image img {
  width: 100%;
  border-radius: 32px;
  border: 7px solid white;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.split-media img {
  aspect-ratio: 1 / 1;
}

.floating-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 12px 16px;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(255, 127, 79, 0.28);
}

.rich-text p {
  font-size: 18px;
  margin-top: 0;
}

.value-grid,
.mini-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.value-grid div,
.mini-benefits div {
  padding: 18px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(98, 50, 25, .06);
}

.value-grid strong,
.mini-benefits strong {
  display: block;
}

.value-grid span,
.mini-benefits span {
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.service-card {
  padding: 28px;
  border-radius: 28px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.service-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: white;
  background: var(--orange);
  font-weight: 900;
  margin-bottom: 18px;
}

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

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  font-weight: 800;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-size: 14px;
}

.feature-collage {
  position: relative;
  min-height: 520px;
}

.collage-large {
  height: 470px;
  object-fit: cover;
}

.collage-small {
  position: absolute;
  width: 48%;
  right: -10px;
  bottom: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.event-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 28px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.event-card img {
  width: 170px;
  height: 170px;
  border-radius: 22px;
  object-fit: cover;
}

.event-card h3,
.event-card p {
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 28px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card div {
  padding: 20px;
}

.gallery-card h3,
.gallery-card p {
  margin-bottom: 0;
}

.uniform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.uniform-grid article {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: white;
}

.uniform-grid span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-weight: 900;
  margin-bottom: 12px;
}

.uniform-grid h3 {
  font-size: 20px;
}

.uniform-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.clients-layout {
  grid-template-columns: .85fr 1.15fr;
}

.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.client-tags span {
  padding: 10px 13px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.contact-section {
  color: white;
  background:
    radial-gradient(circle at top right, rgba(255, 127, 79, .26), transparent 36%),
    var(--black);
}

.contact-section .eyebrow {
  color: #ffb18f;
}

.contact-section p {
  color: rgba(255,255,255,.72);
}

.contact-box {
  display: grid;
  gap: 12px;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

.contact-box h3 {
  margin-bottom: 6px;
}

.contact-box a,
.contact-box p {
  margin: 0;
  color: white;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 28px 0;
  background: #120f0d;
  color: rgba(255,255,255,.68);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-content a {
  color: #ffb18f;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .brand-text {
    white-space: normal;
  }

  .nav-links {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px 24px;
    background: var(--cream-2);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .split-section,
  .split-section.reverse,
  .feature-section,
  .clients-layout,
  .contact-layout,
  .intro-grid,
  .service-grid,
  .event-grid,
  .gallery-grid,
  .value-grid,
  .mini-benefits,
  .uniform-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 64px 0;
  }

  .hero-showcase {
    min-height: auto;
  }

  .showcase-main {
    transform: none;
  }

  .showcase-main img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .showcase-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .feature-collage {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .collage-large {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .collage-small {
    position: static;
    width: 100%;
  }

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

  .event-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .nav {
    height: 70px;
  }

  .brand {
    font-size: 14px;
  }

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

  .nav-links {
    top: 70px;
  }

  h1 {
    font-size: 42px;
  }

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

  .btn {
    width: 100%;
  }
}
