:root {
  --bg: #f8ecd8;
  --bg-soft: #f5d9b8;
  --surface: rgba(33, 18, 22, 0.88);
  --surface-solid: #1f1317;
  --card: rgba(255, 245, 232, 0.82);
  --text: #1c1115;
  --muted: #684f53;
  --line: rgba(40, 22, 17, 0.16);
  --accent: #ff5a36;
  --accent-2: #ffd15c;
  --accent-3: #ff7bb0;
  --shadow: 0 26px 80px rgba(56, 20, 22, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 90, 54, 0.24), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(255, 209, 92, 0.24), transparent 20%),
    radial-gradient(circle at 70% 40%, rgba(255, 123, 176, 0.18), transparent 22%),
    linear-gradient(180deg, #fff1de 0%, #f6d7b5 54%, #f4cdb4 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: 8%;
  left: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 54, 0.16), transparent 68%);
}

body::after {
  right: -110px;
  bottom: 12%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 123, 176, 0.14), transparent 70%);
}

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

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

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.brand,
.eyebrow,
h1,
h2,
h3,
summary {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
}

.hero {
  padding: 28px 0 56px;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255, 90, 54, 0.22), rgba(255, 123, 176, 0.14)),
    #1b1115;
  padding: 20px;
  border: 2px solid rgba(28, 17, 21, 0.14);
}

.carousel-track {
  position: relative;
  min-height: 720px;
  border-radius: calc(var(--radius-xl) - 10px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 7, 10, 0.06), rgba(8, 7, 10, 0.28)),
    #180e13;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 209, 92, 0.08), transparent 20%),
    #180e13;
}

.hero-title-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  justify-items: center;
  padding: 24px;
  z-index: 4;
  text-align: center;
  pointer-events: none;
}

.hero-kicker {
  margin: 0 0 10px;
  color: #fff4d4;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.24em;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.4);
}

.hero-title {
  margin: 0;
  color: #fffaf2;
  font-size: clamp(4.8rem, 14vw, 10rem);
  line-height: 0.88;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transform: rotate(-3deg);
  -webkit-text-stroke: 2px rgba(28, 17, 21, 0.72);
  text-shadow:
    4px 4px 0 rgba(255, 90, 54, 0.9),
    10px 10px 26px rgba(0, 0, 0, 0.3);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 244, 230, 0.92);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.carousel-control.prev {
  left: 18px;
}

.carousel-control.next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
}

.dot.active {
  width: 34px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
}

.hero-card {
  max-width: 900px;
  margin: 26px auto 0;
  padding: 30px 30px 28px;
  border: 2px solid rgba(28, 17, 21, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 239, 220, 0.84)),
    var(--card);
  backdrop-filter: blur(12px);
  color: var(--text);
  box-shadow: 0 18px 48px rgba(70, 33, 20, 0.08);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 12px auto auto 12px;
  width: 72px;
  height: 72px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  border-radius: 14px 0 0 0;
  opacity: 0.8;
}

.hero-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero-card-copy {
  flex: 1;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--accent);
}

h1,
h2 {
  margin: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.3rem);
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.1rem);
}

h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 0.95;
}

.hero-copy,
.service-card p,
.about-copy p,
.about-highlight p,
.faq p {
  font-size: 1rem;
  line-height: 1.7;
  color: inherit;
}

.hero-copy {
  max-width: 52ch;
  margin: 14px 0 0;
  color: var(--muted);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fffaf4;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(255, 90, 54, 0.24);
}

.hero-cta-large {
  flex-shrink: 0;
  min-height: 62px;
  padding: 0 30px;
  border: 2px solid rgba(28, 17, 21, 0.12);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  position: relative;
}

.hero-cta-large::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px dashed rgba(255, 90, 54, 0.24);
  border-radius: 999px;
}

section {
  padding: 42px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-top: 6px;
}

.services,
.about,
.faq {
  position: relative;
}

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

.service-card,
.about-copy,
.about-highlight,
.faq-list details {
  border: 2px solid rgba(28, 17, 21, 0.1);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 245, 232, 0.84)),
    rgba(255, 248, 239, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(70, 33, 20, 0.06);
}

.service-card {
  padding: 26px 24px;
  transform: rotate(-1deg);
}

.service-card:nth-child(even) {
  transform: rotate(1deg);
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.about-copy,
.about-highlight {
  padding: 28px;
}

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

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-highlight {
  background:
    radial-gradient(circle at top left, rgba(255, 209, 92, 0.22), transparent 40%),
    linear-gradient(180deg, rgba(255, 90, 54, 0.92), rgba(107, 33, 67, 0.95));
  color: #fff8f0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.highlight-number {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.8rem, 10vw, 7rem);
  line-height: 0.9;
}

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

.faq-list details {
  padding: 0 22px;
}

summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.75rem;
  padding: 18px 0;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 76ch;
}

@media (max-width: 980px) {
  main {
    width: min(960px, calc(100% - 28px));
  }

  .hero {
    padding: 22px 0 46px;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
  }

  .carousel-track {
    min-height: 580px;
  }

  .hero-title {
    font-size: clamp(4rem, 12vw, 7.2rem);
  }

  .hero-card {
    max-width: 100%;
  }

  .hero-card-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta-large {
    min-width: 260px;
  }
}

@media (max-width: 720px) {
  main {
    width: calc(100% - 20px);
  }

  body {
    background:
      radial-gradient(circle at 12% 8%, rgba(255, 90, 54, 0.2), transparent 22%),
      radial-gradient(circle at 88% 10%, rgba(255, 209, 92, 0.2), transparent 18%),
      linear-gradient(180deg, #fff1de 0%, #f6d7b5 54%, #f4cdb4 100%);
  }

  .hero {
    padding: 14px 0 34px;
  }

  .hero-carousel {
    padding: 12px;
    border-radius: 24px;
  }

  .carousel-track {
    min-height: 420px;
    border-radius: 16px;
  }

  .hero-card {
    margin-top: 18px;
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .hero-cta-large {
    width: 100%;
    min-height: 56px;
    padding: 0 20px;
  }

  .hero-title {
    font-size: clamp(3rem, 15vw, 4.8rem);
    line-height: 0.92;
    -webkit-text-stroke: 1px rgba(28, 17, 21, 0.72);
  }

  .hero-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.7rem);
    line-height: 0.98;
  }

  .eyebrow {
    font-size: 0.92rem;
  }

  .hero-copy,
  .service-card p,
  .about-copy p,
  .about-highlight p,
  .faq p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }

  .carousel-control.prev {
    left: 10px;
  }

  .carousel-control.next {
    right: 10px;
  }

  .carousel-dots {
    bottom: 14px;
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 28px;
  }

  .service-card {
    padding: 22px 18px;
    transform: none;
  }

  .service-card:nth-child(even) {
    transform: none;
  }

  .about-copy,
  .about-highlight,
  .faq-list details {
    padding: 20px 18px;
  }

  summary {
    font-size: 1.45rem;
    padding: 14px 0;
  }

  section {
    padding: 30px 0;
  }

  .section-heading {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  main {
    width: calc(100% - 16px);
  }

  .hero-carousel {
    padding: 10px;
  }

  .carousel-track {
    min-height: 320px;
  }

  .hero-title-wrap {
    padding: 16px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 15vw, 3.6rem);
    transform: rotate(-2deg);
    text-shadow:
      2px 2px 0 rgba(255, 90, 54, 0.9),
      6px 6px 18px rgba(0, 0, 0, 0.26);
  }

  .hero-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero-card {
    padding: 18px 14px 16px;
  }

  .hero-card::before {
    width: 42px;
    height: 42px;
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }

  h3 {
    font-size: 1.65rem;
  }

  .hero-copy,
  .service-card p,
  .about-copy p,
  .about-highlight p,
  .faq p {
    font-size: 0.9rem;
  }

  .hero-cta-large {
    min-height: 52px;
    font-size: 0.95rem;
  }

  .hero-cta-large::after {
    inset: -4px;
  }

  .highlight-number {
    font-size: 4.3rem;
  }

  summary {
    font-size: 1.2rem;
  }
}
