:root {
  --red: #df4a54;
  --red-dark: #bd3340;
  --black: #111111;
  --ink: #242426;
  --white: #ffffff;
  --off-white: #f7f7f6;
  --muted: #6f7073;
  --border: #dedede;
  --shell: min(1120px, calc(100% - 40px));
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --display: "Arial Narrow", "Helvetica Neue Condensed", Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--black);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow-shell {
  max-width: 900px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 30px;
  align-items: center;
}

.nav-home {
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 44px);
}

.nav-menu a {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-menu a:hover {
  color: var(--red);
}

.menu-button {
  display: none;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid var(--red);
  border-radius: 3px;
  color: var(--white);
  background: var(--red);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.7rem;
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 10, 11, 0.9) 0%, rgba(10, 10, 11, 0.72) 58%, rgba(10, 10, 11, 0.42) 100%),
    url("../img/bg1.png") center / cover no-repeat;
}

.hero-content {
  padding-top: 130px;
  padding-bottom: 70px;
}

.hero-logo {
  width: min(230px, 58vw);
  max-height: 150px;
  margin-bottom: 24px;
  object-fit: contain;
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  color: var(--white);
  font-family: var(--body);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: none;
}

.hero-location,
.hero-hours {
  margin-bottom: 8px;
  color: #e2e2e2;
  font-size: 0.94rem;
}

.hero-location a {
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

.hero-hours span {
  margin-inline: 7px;
  color: var(--red);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.rating {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  color: #dedede;
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.78rem;
  text-decoration: none;
}

.rating strong {
  color: var(--white);
}

.stars {
  color: var(--red);
  letter-spacing: 0.08em;
}

.section {
  padding: clamp(76px, 9vw, 120px) 0;
}

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

.eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.centered-heading {
  text-align: center;
}

.team {
  background: var(--off-white);
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(300px, 1fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.portrait-column {
  max-width: 430px;
}

.portrait {
  width: 100%;
  height: auto;
  border: 6px solid var(--white);
  border-radius: 3px;
  box-shadow: 14px 14px 0 var(--red);
}

.team-copy {
  max-width: 600px;
}

.experience {
  display: flex;
  align-items: end;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.experience strong {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.73;
}

.experience span {
  max-width: 110px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.team-copy > p:not(.experience) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.signature-quote {
  margin: 0 0 28px;
  padding: 16px 18px;
  border-left: 4px solid var(--red);
  border-radius: 2px;
  color: var(--black);
  background: var(--white);
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
}

.text-link {
  color: var(--black);
  font-weight: 800;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
}

.text-link span {
  margin-left: 8px;
  color: var(--red);
}

.services {
  background: var(--white);
}

.service-list {
  border-top: 1px solid var(--border);
}

.service {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 30px 8px;
  border-bottom: 1px solid var(--border);
}

.service h3 {
  margin-bottom: 6px;
  font-family: var(--body);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  letter-spacing: 0;
  text-transform: none;
}

.service p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.price {
  color: var(--red);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
}

.section-action {
  margin-top: 38px;
  text-align: center;
}

.reviews {
  color: var(--white);
  background: var(--black);
}

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

.reviews-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.reviews-heading .section-heading {
  margin-bottom: 0;
}

.review-total {
  min-width: 205px;
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  border: 1px solid #363638;
  border-radius: 3px;
  color: #bfc0c2;
  font-size: 0.76rem;
  text-decoration: none;
}

.review-total strong {
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

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

.review-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  padding: 28px;
  border: 1px solid #313134;
  border-radius: 3px;
  background: #19191b;
}

.review-card blockquote {
  margin: 24px 0 34px;
  color: #d4d4d5;
  font-size: 0.95rem;
}

.review-card figcaption {
  margin-top: auto;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.light-link {
  color: var(--white);
}

.contact {
  background: var(--off-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(50px, 8vw, 90px);
  align-items: stretch;
}

.contact-copy {
  padding: clamp(76px, 9vw, 110px) 0;
}

.details {
  display: grid;
  gap: 22px;
  margin-bottom: 38px;
}

.details div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
}

.details dt {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.details dd {
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 650;
}

.details a {
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

.map {
  min-height: 570px;
  border-top: 6px solid var(--red);
  background: #d2d2d2;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 570px;
  display: block;
  border: 0;
  filter: grayscale(1);
}

.site-footer {
  padding: 38px 0;
  color: #9c9c9e;
  background: var(--black);
}

.footer-content {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-content img {
  width: 150px;
  max-height: 60px;
  object-fit: contain;
}

.footer-content p {
  margin-bottom: 0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-book {
  display: none;
}

@media (max-width: 820px) {
  .nav {
    grid-template-columns: 1fr auto auto;
  }

  .menu-button {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    color: var(--white);
    background: transparent;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    width: 18px;
    height: 2px;
    display: block;
    background: currentColor;
  }

  .menu-lines {
    position: relative;
  }

  .menu-lines::before,
  .menu-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-lines::before {
    top: -5px;
  }

  .menu-lines::after {
    top: 5px;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 20px;
    border-bottom: 1px solid #333;
    background: var(--black);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    min-height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #29292b;
  }

  .team-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .portrait-column {
    width: min(500px, 100%);
    margin-inline: auto;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 0;
  }

  .map,
  .map iframe {
    min-height: 420px;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: min(calc(100% - 28px), 1120px);
  }

  body {
    padding-bottom: 60px;
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-home {
    font-size: 0.7rem;
  }

  .nav-book {
    display: none;
  }

  .hero {
    min-height: 700px;
    background-position: center;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 58px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .rating {
    max-width: 100%;
    flex-wrap: wrap;
  }

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

  .portrait {
    border-width: 4px;
    box-shadow: 9px 9px 0 var(--red);
  }

  .experience strong {
    font-size: 5.5rem;
  }

  .service {
    padding: 24px 2px;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .review-total {
    min-width: 0;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 10px;
  }

  .details div {
    grid-template-columns: 64px 1fr;
  }

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

  .mobile-book {
    position: fixed;
    inset: auto 0 0;
    z-index: 50;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: var(--white);
    background: var(--red);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
