:root {
  --ink: #111317;
  --muted: #5d6572;
  --line: #dde2e7;
  --paper: #f7f8f6;
  --white: #ffffff;
  --red: #d8342a;
  --yellow: #f4c542;
  --steel: #51606d;
  --graphite: #20242b;
  --green: #2f7d65;
  --shadow: 0 18px 55px rgba(17, 19, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(17, 19, 23, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand,
.header-actions,
.nav-links,
.hero-actions,
.trust-row,
.booking-actions,
.contact-list a,
.mobile-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  font-weight: 800;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 6px;
}

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

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.nav-links {
  gap: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--yellow);
}

.header-actions {
  gap: 10px;
}

.icon-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.icon-link .ig-text {
  grid-area: 1 / 1;
  font-size: 12px;
  font-weight: 900;
}

.icon-link svg {
  grid-area: 1 / 1;
}

.icon-link svg + .ig-text,
.icon-link:has(svg:not(:empty)) .ig-text {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  font-weight: 800;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(216, 52, 42, 0.25);
}

.button-small {
  min-height: 42px;
  padding: 0 15px;
  font-size: 14px;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 132px clamp(18px, 6vw, 84px) 76px;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 13, 17, 0.94) 0%, rgba(11, 13, 17, 0.76) 42%, rgba(11, 13, 17, 0.28) 100%),
    linear-gradient(0deg, rgba(11, 13, 17, 0.56), rgba(11, 13, 17, 0.05));
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 7vw, 86px);
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.6;
}

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

.trust-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.trust-row span {
  min-height: 58px;
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.trust-row strong {
  display: block;
  color: var(--white);
  font-size: 18px;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quick-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 86px;
  padding: 18px;
  font-weight: 800;
  border-right: 1px solid var(--line);
}

.quick-strip a:last-child {
  border-right: 0;
}

.quick-strip svg,
.service-card svg,
.contact-list svg,
.button svg,
.icon-link svg,
.mobile-cta svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 6vw, 84px);
}

.rent-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--graphite);
  color: var(--white);
}

.rent-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.rent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.rent-brand-card {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.88), rgba(32, 36, 43, 0.96)),
    linear-gradient(45deg, rgba(244, 197, 66, 0.16), transparent);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rent-brand-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  image-rendering: auto;
}

.rent-brand-card span {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.05;
}

.rent-brand-card small {
  color: var(--yellow);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.section h2 {
  max-width: 760px;
  font-size: clamp(32px, 4.5vw, 58px);
}

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

.service-section {
  background: var(--paper);
}

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

.service-card {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 19, 23, 0.06);
}

.service-card svg {
  width: 32px;
  height: 32px;
  color: var(--red);
}

.service-card h3 {
  margin: 30px 0 12px;
  font-size: 22px;
}

.service-card p,
.instagram-copy p,
.hours-card p {
  color: var(--muted);
  line-height: 1.65;
}

.booking-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #93231d 58%, var(--graphite));
}

.booking-band h2 {
  max-width: 820px;
  font-size: clamp(30px, 4vw, 50px);
}

.booking-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.instagram-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(310px, 0.72fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  background: var(--white);
}

.instagram-copy p {
  max-width: 660px;
  font-size: 17px;
}

.insta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 560px;
  margin: 28px 0;
}

.insta-stats span {
  padding: 18px;
  background: #f1f3f5;
  border-radius: 8px;
}

.insta-stats strong {
  display: block;
  font-size: 30px;
}

.instagram-button {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.instagram-phone {
  max-width: 430px;
  margin-left: auto;
  padding: 14px;
  background: var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.phone-top {
  width: 80px;
  height: 6px;
  margin: 4px auto 13px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.profile-head {
  aspect-ratio: 1 / 0.72;
  overflow: hidden;
  background: var(--white);
  border-radius: 16px;
}

.profile-head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.post {
  display: flex;
  flex-direction: column;
  justify-content: end;
  aspect-ratio: 1;
  padding: 10px;
  color: var(--white);
  font-weight: 900;
  background: var(--graphite);
  border-radius: 8px;
}

.post small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
}

.post-dark {
  background: linear-gradient(135deg, #101114, var(--red));
}

.post-photo {
  background: linear-gradient(135deg, var(--steel), var(--green));
}

.post-red {
  background: linear-gradient(135deg, var(--red), var(--yellow));
}

.proof-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.proof-item {
  min-height: 170px;
  padding: 34px;
  background: var(--paper);
}

.proof-item strong {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
}

.proof-item span {
  color: var(--muted);
  line-height: 1.6;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.7fr);
  gap: 18px;
  background: var(--graphite);
}

.careers-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.55fr);
  gap: 18px;
  align-items: stretch;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 19, 23, 0.96), rgba(32, 36, 43, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(244, 197, 66, 0.25), transparent 34%);
}

.careers-content,
.careers-panel {
  padding: clamp(28px, 4vw, 46px);
  border-radius: 8px;
}

.careers-content {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.careers-content h2 {
  max-width: 880px;
}

.careers-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.careers-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  color: var(--ink);
  background: var(--white);
}

.careers-panel h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.careers-panel span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  color: var(--steel);
  font-weight: 700;
  background: #f1f3f5;
  border-radius: 6px;
}

.careers-panel .button {
  margin-top: 10px;
}

.contact-card,
.hours-card {
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  border-radius: 8px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-list a {
  gap: 12px;
  min-height: 48px;
  color: var(--steel);
  font-weight: 700;
}

.hours-card h3 {
  margin: 0 0 22px;
  font-size: 28px;
}

.hours-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.hours-card dt {
  color: var(--muted);
}

.hours-card dd {
  margin: 0;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .quick-strip,
  .service-grid,
  .proof-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .rent-section,
  .instagram-section,
  .careers-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .instagram-phone {
    margin: 0;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand small,
  .header-actions .button,
  .icon-link {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 14px;
  }

  .hero {
    min-height: 760px;
    padding: 108px 18px 92px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .trust-row span {
    width: calc(50% - 6px);
  }

  .quick-strip,
  .service-grid,
  .proof-section,
  .insta-stats {
    grid-template-columns: 1fr;
  }

  .quick-strip a {
    min-height: 68px;
    justify-content: flex-start;
  }

  .service-card {
    min-height: 220px;
  }

  .hours-card dl div {
    display: grid;
    gap: 4px;
  }

  .site-footer {
    padding-bottom: 90px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 25;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(17, 19, 23, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    color: var(--white);
    font-weight: 800;
    background: var(--red);
    border-radius: 6px;
  }

  .mobile-cta a:last-child {
    background: var(--graphite);
  }
}
