:root {
  --ink: #111111;
  --paper: #f6f1e8;
  --cream: #fffaf0;
  --red: #b92727;
  --blue: #1d4b8f;
  --brass: #c7963f;
  --mint: #8ecab7;
  --charcoal: #202020;
  --muted: #6b655d;
  --line: rgba(17, 17, 17, 0.14);
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
}

.brand,
nav,
.hero-actions,
.style-picker,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 16px;
  height: 34px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: repeating-linear-gradient(
    -35deg,
    var(--red) 0 8px,
    #ffffff 8px 16px,
    var(--blue) 16px 24px,
    #ffffff 24px 32px
  );
}

nav {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
}

.header-cta,
.btn,
.style-picker button {
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-cta {
  padding: 11px 16px;
  color: var(--ink);
  background: #ffffff;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 118px clamp(18px, 5vw, 72px) 34px;
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  filter: saturate(0.9) contrast(1.08);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.65)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 45%);
}

.pole {
  position: absolute;
  right: clamp(22px, 6vw, 92px);
  top: 17vh;
  z-index: 2;
  width: 74px;
  height: 340px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pole span {
  display: block;
  width: 100%;
  height: 160%;
  border-radius: 999px;
  background: repeating-linear-gradient(
    -28deg,
    var(--red) 0 22px,
    #ffffff 22px 44px,
    var(--blue) 44px 66px,
    #ffffff 66px 88px
  );
  animation: poleSpin 6s linear infinite;
}

.blade-sweep {
  position: absolute;
  z-index: 3;
  right: 18vw;
  bottom: 21vh;
  width: 190px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  transform-origin: 100% 50%;
  animation: bladeSweep 4.8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 8vw, 7.8rem);
}

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

h3 {
  font-size: 1.65rem;
}

.hero-content p:not(.eyebrow),
.section-heading p,
.work-copy p,
.booking-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  min-width: 170px;
  padding: 15px 20px;
}

.btn.primary {
  color: #ffffff;
  background: var(--red);
}

.btn.secondary {
  color: var(--ink);
  background: var(--cream);
}

.hero-stats {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.hero-stats div {
  padding: 22px;
}

.hero-stats strong {
  display: block;
  font-family: "Archivo", sans-serif;
  font-size: 2rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--charcoal);
  color: #ffffff;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker span {
  padding: 18px 28px;
  font-family: "Archivo", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

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

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

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.service-card.featured {
  color: #ffffff;
  background: var(--blue);
  transform: translateY(-16px);
}

.service-card span {
  color: var(--brass);
  font-weight: 900;
}

.service-card p {
  color: inherit;
  line-height: 1.6;
  opacity: 0.75;
}

.service-card strong {
  font-family: "Archivo", sans-serif;
  font-size: 2.4rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  background: #ffffff;
}

.cut-stage {
  min-height: 540px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(185, 39, 39, 0.18), transparent 34%),
    linear-gradient(315deg, rgba(29, 75, 143, 0.18), transparent 40%),
    var(--paper);
}

.cut-card {
  width: min(460px, 88%);
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.cut-card.swap {
  opacity: 0;
  transform: translateY(16px) rotate(2deg);
}

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

.cut-card div {
  padding: 22px;
}

.cut-card span {
  color: var(--mint);
  font-weight: 800;
}

.work-copy {
  max-width: 620px;
}

.style-picker {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.style-picker button {
  padding: 12px 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
}

.style-picker button.active {
  color: #ffffff;
  background: var(--ink);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  background: var(--charcoal);
  color: #ffffff;
}

.booking-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 800;
}

select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  color: var(--ink);
  border: 0;
  border-radius: 6px;
  background: #ffffff;
  font: inherit;
  font-weight: 700;
}

.booking-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.booking-total strong {
  font-family: "Archivo", sans-serif;
  font-size: 2rem;
}

footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #ffffff;
  background: #111111;
}

@keyframes poleSpin {
  to {
    transform: translateY(-28%);
  }
}

@keyframes bladeSweep {
  0%,
  100% {
    opacity: 0;
    transform: rotate(-12deg) translateX(40px);
  }
  45%,
  55% {
    opacity: 1;
    transform: rotate(16deg) translateX(-160px);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 100vh;
  }

  .pole {
    width: 50px;
    height: 230px;
    top: 12vh;
  }

  .hero-stats,
  .section-heading,
  .services-grid,
  .split-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    transform: none;
  }

  .cut-stage {
    min-height: 430px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .header-cta {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}
