:root {
  --red: #d91f26;
  --deep: #191919;
  --paper: #f8f7f5;
  --soft: #ece9e5;
  --muted: #686868;
  --line: #dedbd7;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--deep);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
}
.shell {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav {
  height: 81px;
  display: flex;
  align-items: center;
  gap: 35px;
}
.brand {
  color: var(--deep);
  font: 800 21px/1 "Barlow Condensed";
  letter-spacing: 0.4px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
}
.brand > span > span {
  color: var(--red);
}
.brand-icon {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  width: 34px;
  height: 34px;
  font: 800 13px "Barlow Condensed";
  transform: skew(-8deg);
}
nav {
  display: flex;
  gap: 25px;
  margin: auto;
}
nav a {
  font-size: 13px;
  font-weight: 700;
  color: #555;
  text-decoration: none;
  position: relative;
}
nav a.active,
nav a:hover {
  color: var(--red);
}
nav a.active:after {
  content: "";
  height: 2px;
  background: var(--red);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -31px;
}
.button {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  padding: 15px 21px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s;
}
.button:hover {
  background: #b9141c;
  transform: translateY(-2px);
}
.button b {
  font-size: 18px;
  line-height: 10px;
}
.button-small {
  padding: 11px 15px;
}
.menu-button {
  display: none;
}
.hero {
  background: #fff;
  padding: 44px 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 532px;
  align-items: center;
  gap: 42px;
}
.kicker {
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 16px;
}
.kicker:before {
  content: "//";
  margin-right: 7px;
}
h1,
h2,
h3 {
  font-family: "Barlow Condensed";
  text-transform: uppercase;
}
h1 {
  font-size: clamp(58px, 7vw, 88px);
  line-height: 0.88;
  letter-spacing: -1.8px;
  margin: 0 0 23px;
}
h1 em,
h2 em {
  font-style: normal;
  color: var(--red);
}
.hero-copy > p:not(.kicker) {
  max-width: 465px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
  margin-bottom: 29px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.text-link {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--deep);
}
.text-link span {
  color: var(--red);
  font-size: 18px;
  margin-left: 7px;
}
.hero-points {
  display: flex;
  gap: 22px;
  margin-top: 34px;
  font-size: 11px;
  font-weight: 700;
}
.hero-points span:first-child {
  color: var(--red);
}
.hero-image {
  height: 488px;
  position: relative;
  align-self: end;
  overflow: hidden;
}
.hero-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 25, 25, 0.3), transparent 55%);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-label {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: var(--red);
  color: #fff;
  padding: 20px 23px;
  width: 167px;
}
.image-label b {
  font: 700 25px "Barlow Condensed";
  display: block;
}
.image-label span {
  font-size: 10px;
}
.trust-bar {
  background: var(--deep);
  color: #fff;
}
.trust-bar .shell {
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.trust-bar span {
  font-size: 9px;
  letter-spacing: 1px;
  color: #aaa;
}
.trust-bar div {
  font: 700 18px "Barlow Condensed";
  letter-spacing: 0.3px;
  color: #d6d6d6;
}
.section {
  padding: 111px 0;
}
.section-intro {
  display: grid;
  grid-template-columns: 1fr 1.3fr auto;
  align-items: end;
  margin-bottom: 50px;
}
.section-intro h2 {
  font-size: 50px;
  line-height: 0.91;
  letter-spacing: -1px;
  margin: 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.service-grid a {
  min-height: 220px;
  border-right: 1px solid var(--line);
  padding: 21px 23px;
  text-decoration: none;
  color: var(--deep);
  position: relative;
  transition: 0.2s;
}
.service-grid a:first-child {
  border-left: 1px solid var(--line);
}
.service-grid a:hover {
  background: #fff;
}
.service-grid span {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
}
.service-grid h3 {
  font-size: 25px;
  margin: 34px 0 8px;
}
.service-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}
.service-grid b {
  position: absolute;
  bottom: 20px;
  font-size: 21px;
  color: var(--red);
}
.paco-section {
  background: var(--soft);
  padding: 84px 0;
}
.paco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 105px;
  align-items: center;
}
.paco-photo {
  height: 410px;
}
.paco-photo {
  overflow: hidden;
}
.paco-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.photo-placeholder {
  background: linear-gradient(145deg, #242424, #515151);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.photo-placeholder:before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border: 30px solid var(--red);
  border-radius: 50%;
  opacity: 0.85;
  top: -95px;
  left: -65px;
}
.photo-initials {
  width: 95px;
  height: 95px;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff80;
  border-radius: 50%;
  font: 800 70px "Barlow Condensed";
  color: #fff;
  z-index: 1;
}
.photo-placeholder p {
  z-index: 1;
  text-align: center;
  font-size: 12px;
  color: #eee;
  line-height: 1.5;
}
.paco-grid h2 {
  font-size: 54px;
  line-height: 0.9;
  margin: 0 0 20px;
}
.body-copy {
  color: #5e5e5e;
  line-height: 1.7;
  font-size: 15px;
  max-width: 440px;
}
.signature {
  font: 700 14px "Barlow Condensed";
  letter-spacing: 0.4px;
  margin: 23px 0;
}
.button-outline {
  background: transparent;
  color: var(--deep);
  border-color: var(--deep);
}
.button-outline:hover {
  color: #fff;
  background: var(--deep);
}
.appointment-banner {
  margin: 88px auto;
  padding: 66px 50px;
  background: var(--red);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.appointment-banner:after {
  content: "TP";
  position: absolute;
  right: -8px;
  bottom: -54px;
  color: #fff;
  opacity: 0.1;
  font: 800 250px "Barlow Condensed";
}
.appointment-banner .kicker {
  color: #fff;
}
.appointment-banner h2 {
  font-size: 55px;
  line-height: 0.9;
  margin: 0 0 12px;
}
.appointment-banner > p:not(.kicker) {
  font-size: 14px;
  margin-bottom: 25px;
}
.button-light {
  background: #fff;
  border-color: #fff;
  color: var(--red);
}
.button-light:hover {
  color: var(--red);
  background: #eee;
}
footer {
  background: var(--deep);
  color: #fff;
  padding: 55px 0 20px;
}
footer .brand {
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 35px;
}
.footer-grid p {
  font-size: 12px;
  color: #bbb;
  line-height: 1.7;
}
.footer-grid b {
  font: 700 11px "DM Sans";
  letter-spacing: 1px;
  color: #fff;
}
.copyright {
  border-top: 1px solid #444;
  margin-top: 43px;
  padding-top: 17px;
  color: #999;
  font-size: 10px;
}
.page-hero {
  background: var(--deep);
  color: #fff;
  padding: 75px 0;
}
.page-hero h1 {
  font-size: 70px;
  margin: 0;
}
.page-hero p {
  max-width: 520px;
  color: #c7c7c7;
  line-height: 1.6;
}
.breadcrumb {
  font-size: 11px;
  color: #bbb;
  margin-bottom: 25px;
}
.breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.content-section {
  padding: 85px 0;
}
.content-heading {
  max-width: 650px;
  margin-bottom: 45px;
}
.content-heading h2 {
  font-size: 48px;
  line-height: 0.93;
  margin: 0;
}
.content-heading p {
  color: var(--muted);
  line-height: 1.6;
}
.service-list {
  border-top: 1px solid var(--line);
}
.service-item {
  display: grid;
  grid-template-columns: 70px 1fr 1.2fr auto;
  gap: 20px;
  align-items: center;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}
.service-item > span {
  font: 700 14px "Barlow Condensed";
  color: var(--red);
}
.service-item h3 {
  font-size: 27px;
  margin: 0;
}
.service-item p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 25px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.product-card .product-icon {
  font: 800 54px "Barlow Condensed";
  color: var(--red);
  line-height: 1;
}
.product-card h3 {
  font-size: 28px;
  margin: auto 0 8px;
}
.product-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.product-card a {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.booking {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 75px;
}
.booking-copy h2 {
  font-size: 50px;
  line-height: 0.9;
  margin: 0 0 17px;
}
.booking-copy p {
  color: var(--muted);
  line-height: 1.65;
}
.booking-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 35px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 11px;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  font: 13px "DM Sans";
  padding: 13px;
  border: 1px solid #ccc;
  background: #fff;
  width: 100%;
}
.field textarea {
  min-height: 85px;
  resize: vertical;
}
.form-message {
  display: none;
  margin-top: 15px;
  color: #13834a;
  font-weight: 700;
  font-size: 13px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
  min-height: 190px;
}
.contact-card h3 {
  font-size: 27px;
  margin: 0 0 12px;
}
.contact-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.map-card {
  grid-column: 1/-1;
  background: linear-gradient(135deg, #eee, #dedad5);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.map-pin {
  font-size: 38px;
  color: var(--red);
}
@media (max-width: 800px) {
  .shell {
    width: min(100% - 34px, 1160px);
  }
  .nav {
    height: 67px;
  }
  .nav .button {
    display: none;
  }
  .menu-button {
    display: block;
    margin-left: auto;
    border: 0;
    background: none;
    font-size: 23px;
  }
  .nav nav {
    display: none;
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 17px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 16px;
  }
  .nav nav.open {
    display: flex;
  }
  nav a.active:after {
    display: none;
  }
  .hero-grid,
  .paco-grid,
  .booking {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero {
    padding-top: 45px;
  }
  .hero-image {
    height: 300px;
  }
  .trust-bar .shell {
    overflow: hidden;
    justify-content: flex-start;
  }
  .trust-bar div:nth-of-type(n + 3),
  .trust-bar span {
    display: none;
  }
  .section {
    padding: 70px 0;
  }
  .section-intro {
    display: block;
  }
  .section-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
  }
  .service-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid a:nth-child(3) {
    border-left: 1px solid var(--line);
  }
  .paco-section {
    padding: 65px 0;
  }
  .paco-grid {
    gap: 35px;
  }
  .paco-photo {
    height: 285px;
  }
  .paco-grid h2,
  .booking-copy h2 {
    font-size: 45px;
  }
  .appointment-banner {
    margin: 58px auto;
    padding: 48px 28px;
  }
  .appointment-banner h2 {
    font-size: 44px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .page-hero {
    padding: 55px 0;
  }
  .page-hero h1 {
    font-size: 55px;
  }
  .content-section {
    padding: 65px 0;
  }
  .service-item {
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }
  .service-item p {
    grid-column: 2;
  }
  .service-item .button {
    display: none;
  }
  .form-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .map-card {
    grid-column: auto;
  }
  .booking-form {
    padding: 22px;
  }
  .actions {
    gap: 17px;
  }
  .hero-points {
    flex-direction: column;
    gap: 9px;
  }
}
