.hero {
  position: relative;
  min-height: 760px;
  color: var(--white);
  background: var(--ink);
}

.hero::after {
  content: '';
  position: absolute;
  right: -130px;
  bottom: -130px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.heroGrid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 80px;
  align-items: center;
  padding-top: 74px;
  padding-bottom: 92px;
}

.heroCopy h1 {
  max-width: 700px;
  margin-bottom: 30px;
  font-size: clamp(4.3rem, 7.6vw, 7.2rem);
}

.intro {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.heroActions .button {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.heroActions .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
}

.heroActions .button:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.heroMeta {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
}

.heroMeta .status-pill {
  padding-right: 18px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.heroVisual {
  position: relative;
  min-height: 550px;
}

.colorRail {
  position: absolute;
  top: 18px;
  left: 13%;
  right: -12%;
  display: grid;
  height: 20px;
  grid-template-columns: 1fr 0.42fr 0.9fr;
}

.colorRail span:nth-child(1) {
  background: #5a5a57;
}

.colorRail span:nth-child(2) {
  background: var(--orange);
}

.colorRail span:nth-child(3) {
  background: var(--lime);
}

.portrait {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29, 29, 27, 0.62), transparent 44%);
}

.portraitLabel {
  position: absolute;
  right: 18px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  text-align: right;
}

.portraitLabel strong {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
}

.portraitLabel small {
  margin-top: 6px;
  color: var(--lime);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.portraitTim {
  right: 0;
  bottom: 12px;
  z-index: 3;
  width: 62%;
  height: 410px;
  border: 9px solid var(--paper);
  transform: rotate(2deg);
}

.portraitScott {
  top: 54px;
  left: 0;
  z-index: 1;
  width: 46%;
  height: 285px;
  border: 7px solid var(--paper);
  transform: rotate(-2.8deg);
}

.portraitScott::after {
  background:
    linear-gradient(to bottom, rgba(29, 29, 27, 0.72), transparent 38%),
    linear-gradient(to top, rgba(29, 29, 27, 0.5), transparent 36%);
}

.portraitScott img {
  transform: scaleX(-1);
}

.portraitScott .portraitLabel {
  top: 14px;
  right: 16px;
  bottom: auto;
  left: auto;
  align-items: flex-end;
  text-align: right;
}

.portraitJason {
  bottom: 10px;
  left: 5%;
  z-index: 2;
  width: 42%;
  height: 260px;
  border: 7px solid var(--paper);
  transform: rotate(-1.2deg);
}

.portraitJason img {
  object-position: 50% 18%;
}

.portraitJason .portraitLabel {
  right: auto;
  left: 14px;
  align-items: flex-start;
  text-align: left;
}

.heroStamp {
  position: absolute;
  top: 52px;
  right: -18px;
  z-index: 4;
  display: flex;
  width: 126px;
  height: 126px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.heroStamp strong {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 0.9;
}

.heroStamp span {
  margin-top: 7px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.marquee {
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  background: var(--orange);
  border-top: 1px solid rgba(29, 29, 27, 0.18);
  border-bottom: 1px solid rgba(29, 29, 27, 0.18);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  flex: 0 0 max(100vw, 760px);
  width: max(100vw, 760px);
  gap: 26px;
  align-items: center;
  justify-content: space-around;
  padding: 16px 28px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee i {
  color: var(--paper);
  font-style: normal;
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    width: 100%;
    animation: none;
    transform: none;
  }

  .marquee-group {
    flex: 0 0 100%;
    width: 100%;
    flex-wrap: wrap;
    gap: 8px 0;
  }

  .marquee-group[aria-hidden="true"],
  .marquee-group i {
    display: none;
  }

  .marquee-group span {
    flex: 0 0 50%;
    text-align: center;
  }
}

@media (min-width: 720px) and (prefers-reduced-motion: reduce) {
  .marquee-group span {
    flex-basis: 25%;
  }
}

.serviceList {
  border-top: 1px solid var(--line);
}

.serviceRow {
  display: grid;
  grid-template-columns: 52px minmax(270px, 1fr) 110px 70px 70px;
  gap: 22px;
  align-items: center;
  padding: 28px 12px;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease, padding 160ms ease;
}

.serviceRow:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: var(--white);
}

.serviceNumber {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.serviceRow h3 {
  margin: 0 0 4px;
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.serviceRow p {
  margin: 0;
  color: var(--gray);
  font-size: 0.82rem;
}

.duration {
  color: var(--gray);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
}

.serviceRow .text-link {
  justify-self: end;
}

.menuNote {
  margin: 18px 0 0;
  color: var(--gray);
  font-size: 0.7rem;
  text-align: right;
}

.story {
  padding: 120px 0;
  color: var(--white);
  background: var(--ink);
}

.storyGrid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 100px;
  align-items: center;
}

.storyCard {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: flex-end;
  padding: 42px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50% 50% 4px 4px;
}

.storyCard::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(29, 29, 27, 0.24);
  border-radius: 50% 50% 2px 2px;
}

.storyCard p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-style: italic;
  line-height: 1.02;
}

.scissors {
  position: absolute;
  top: 25%;
  left: 50%;
  color: var(--ink);
  font-size: 6.5rem;
  transform: translate(-50%, -50%) rotate(-28deg);
}

.storyCopy h2 {
  margin-bottom: 36px;
  font-size: clamp(3.4rem, 6.6vw, 6rem);
}

.storyCopy > p:not(:first-child) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.04rem;
}

.storyCopy .text-link {
  margin-top: 24px;
  color: var(--lime);
}

.visit {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.visitIntro h2 {
  margin-bottom: 32px;
  font-size: clamp(3.5rem, 6vw, 5.6rem);
}

.visitIntro > p:not(.eyebrow) {
  max-width: 320px;
  color: var(--gray);
  font-size: 1.06rem;
}

.visitActions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}

.hoursCard {
  padding: 32px 38px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hoursHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--ink);
}

.hoursHeader > span:first-child {
  font-family: Georgia, serif;
  font-size: 2rem;
}

.hoursList > div {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
}

.hoursList > div span:last-child {
  color: var(--gray);
}

.finalCta {
  padding: 110px 0;
  text-align: center;
  background: var(--lime);
}

.finalCta .eyebrow {
  color: var(--ink);
}

.finalCta h2 {
  margin-bottom: 42px;
  font-size: clamp(4rem, 8vw, 7rem);
}

.finalCta h2 em {
  color: var(--white);
}

@media (max-width: 1000px) {
  .heroGrid {
    grid-template-columns: 1fr 0.8fr;
    gap: 28px;
  }

  .serviceRow {
    grid-template-columns: 42px 1fr 90px 60px 60px;
  }

  .storyGrid {
    gap: 54px;
  }
}

@media (max-width: 800px) {
  .heroGrid {
    grid-template-columns: 1fr;
  }

  .heroCopy {
    position: relative;
    z-index: 4;
  }

  .heroVisual {
    min-height: 500px;
  }

  .serviceRow {
    grid-template-columns: 38px 1fr auto;
  }

  .duration {
    display: none;
  }

  .serviceRow .text-link {
    grid-column: 2;
    justify-self: start;
  }

  .storyGrid,
  .visit {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .storyCard {
    min-height: 460px;
  }
}

@media (max-width: 560px) {
  .heroGrid {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .heroCopy h1 {
    font-size: clamp(3.75rem, 18vw, 5.3rem);
  }

  .heroActions,
  .visitActions {
    align-items: stretch;
    flex-direction: column;
  }

  .heroActions .button,
  .visitActions .button {
    width: 100%;
  }

  .heroMeta {
    align-items: start;
    flex-direction: column;
  }

  .heroMeta .status-pill {
    padding: 0 0 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .heroVisual {
    min-height: 460px;
  }

  .portraitTim {
    width: 66%;
    height: 300px;
    border-width: 7px;
  }

  .portraitScott {
    top: 42px;
    width: 46%;
    height: 215px;
    border-width: 5px;
  }

  .portraitJason {
    bottom: 4px;
    left: 3%;
    width: 45%;
    height: 205px;
    border-width: 5px;
  }

  .portraitLabel strong {
    font-size: 1.15rem;
  }

  .portraitLabel small {
    font-size: 0.5rem;
  }

  .heroStamp {
    top: 18px;
    right: -4px;
    width: 92px;
    height: 92px;
  }

  .heroStamp strong {
    font-size: 1.85rem;
  }

  .heroStamp span {
    margin-top: 4px;
    font-size: 0.48rem;
  }

  .serviceRow {
    gap: 12px;
    padding: 22px 4px;
  }

  .serviceRow:hover {
    padding-right: 8px;
    padding-left: 8px;
  }

  .serviceRow h3 {
    font-size: 1.45rem;
  }

  .serviceRow p {
    display: none;
  }

  .story {
    padding: 82px 0;
  }

  .storyCard {
    min-height: 390px;
    padding: 34px;
  }

  .hoursCard {
    padding: 24px 20px;
  }

  .hoursHeader {
    gap: 14px;
    align-items: start;
    flex-direction: column;
  }

  .hoursList > div {
    font-size: 0.76rem;
  }
}
