:root {
  --bg: #0b0b0d;
  --bg-soft: #141417;
  --panel: #19191d;
  --text: #f5f4f0;
  --muted: #b8b6b0;
  --red: #e32b2b;
  --red-dark: #b91f24;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  background: white;
  color: black;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 13, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  position: relative;
  min-width: 82px;
  color: var(--text);
}

.brand-hcw {
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.12em;
}

.brand-mark svg {
  width: 23px;
  height: 38px;
  margin-left: -1px;
  color: var(--text);
}

.brand-name {
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: white;
}

.nav .nav-call {
  padding: 10px 16px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 14% 22%, rgba(227, 43, 43, 0.23), transparent 34%),
    linear-gradient(145deg, #0b0b0d 10%, #141418 58%, #09090a);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-shade {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -180px;
  top: -160px;
  border: 110px solid rgba(227, 43, 43, 0.12);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  padding-block: 90px 100px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ff5c5c;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.5rem);
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 14px 30px rgba(227, 43, 43, 0.28);
}

.button-primary:hover {
  background: #f03737;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.23);
  color: white;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.05);
}

.phone-note {
  color: #d4d1ca;
  font-size: 0.95rem;
}

.hero-card {
  margin: 0;
  position: relative;
  transform: rotate(2deg);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  transform: rotate(-3deg);
}

.hero-card img {
  width: 100%;
  max-height: 575px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section {
  padding-block: 110px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.services {
  background: #f1f0eb;
  color: #151517;
}

.services .eyebrow {
  color: var(--red-dark);
}

.services .section-heading > p:last-child {
  color: #66635e;
}

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

.service-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -40px;
  bottom: -40px;
  border: 15px solid rgba(227, 43, 43, 0.1);
  border-radius: 50%;
}

.service-number {
  display: inline-block;
  margin-bottom: 72px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-card p {
  margin-bottom: 0;
  color: #66635e;
}

.about {
  background: var(--bg-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 2px solid var(--red);
  border-radius: var(--radius);
}

.about-image img {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: #ece9e1;
  font-weight: 750;
}

.feature-list span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-size: 0.78rem;
}

.contact-strip {
  padding-block: 74px;
  background: var(--red);
  color: white;
}

.contact-strip .eyebrow {
  color: white;
  opacity: 0.72;
}

.contact-strip h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.7vw, 4.1rem);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.button-light {
  flex: 0 0 auto;
  background: white;
  color: #141417;
}

.site-footer {
  padding: 56px 0 28px;
  background: #080809;
  color: var(--muted);
}

.footer-inner,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 38px;
}

.footer-inner strong {
  display: block;
  color: white;
  font-size: 1.12rem;
}

.footer-inner p {
  max-width: 560px;
  margin: 7px 0 0;
}

.footer-contact {
  display: grid;
  gap: 6px;
  text-align: right;
}

.footer-contact a {
  color: white;
  font-size: 1.2rem;
  font-weight: 900;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.mobile-call {
  display: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-card {
    width: min(100%, 620px);
  }

  .hero-card img {
    max-height: 470px;
  }

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

  .about-image {
    width: min(100%, 760px);
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .site-header {
    position: relative;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand-name {
    display: none;
  }

  .nav a:not(.nav-call) {
    display: none;
  }

  .nav .nav-call {
    padding: 9px 13px;
    font-size: 0.86rem;
  }

  .hero-grid {
    padding-block: 62px 78px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .hero-card {
    transform: none;
  }

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

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

  .service-number {
    margin-bottom: 45px;
  }

  .section {
    padding-block: 78px;
  }

  .about-grid {
    gap: 48px;
  }

  .about-image::before {
    inset: 12px -9px -12px 9px;
  }

  .contact-inner,
  .footer-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact {
    text-align: left;
  }

  .mobile-call {
    position: fixed;
    z-index: 60;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 12px 18px;
    background: var(--red);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.4);
  }

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

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

  .button {
    transition: none;
  }
}

/* PHP navigation and contact page */
.nav a.active {
  color: white;
}

.contact-strip-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 20px;
}

.contact-strip-phone {
  color: white;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.footer-contact a {
  text-decoration: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 105px 92px;
  background:
    radial-gradient(circle at 80% 20%, rgba(227, 43, 43, 0.24), transparent 32%),
    linear-gradient(145deg, #0b0b0d, #17171b);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 54px 54px;
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.52fr;
  gap: 70px;
  align-items: end;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.contact-direct {
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(12px);
}

.contact-direct span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct a {
  display: inline-block;
  margin-block: 6px 10px;
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.contact-direct p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  background: #f1f0eb;
  color: #151517;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 115px;
}

.contact-intro .eyebrow {
  color: var(--red-dark);
}

.contact-intro h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.3rem);
}

.contact-intro > p:not(.eyebrow) {
  color: #66635e;
  font-size: 1.05rem;
}

.contact-points {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.contact-points div {
  display: grid;
  padding-block: 18px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.contact-points strong {
  font-size: 1.04rem;
}

.contact-points span {
  color: #6c6962;
  font-size: 0.92rem;
}

.form-panel {
  padding: clamp(25px, 4vw, 48px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 24px 70px rgba(0,0,0,0.09);
}

.contact-form {
  display: grid;
  gap: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-weight: 850;
}

.form-field label span {
  color: var(--red);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid #cbc8c0;
  border-radius: 12px;
  background: #fbfaf7;
  color: #171719;
  font: inherit;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(227, 43, 43, 0.17);
  border-color: var(--red);
}

.form-field small,
.form-privacy {
  color: #6e6b64;
  font-size: 0.86rem;
}

.form-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-privacy {
  margin: -10px 0 0;
}

.form-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.form-notice {
  margin-bottom: 24px;
  padding: 18px 20px;
  border-radius: 14px;
}

.form-notice strong {
  display: block;
  margin-bottom: 5px;
}

.form-notice p,
.form-notice ul {
  margin-bottom: 0;
}

.success-notice {
  border: 1px solid #86b889;
  background: #edf8ee;
  color: #244e27;
}

.error-notice {
  border: 1px solid #db9696;
  background: #fff0f0;
  color: #762222;
}

.error-notice ul {
  padding-left: 20px;
}

@media (max-width: 980px) {
  .page-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }

  .contact-direct {
    max-width: 560px;
  }
}

@media (max-width: 720px) {
  .nav a[href="contact.php"] {
    display: none;
  }

  .page-hero {
    padding-block: 70px;
  }

  .page-hero-grid {
    gap: 38px;
  }

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

  .contact-strip-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Facebook links */
.nav-facebook,
.hero-facebook,
.footer-facebook,
.social-card {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.nav-facebook svg,
.hero-facebook svg,
.footer-facebook svg,
.social-card svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.nav-facebook {
  text-decoration: none;
}

.nav-facebook svg {
  color: #ffffff;
}

.hero-facebook {
  width: fit-content;
  margin-top: 12px;
  color: #d7d4cd;
  font-weight: 800;
  text-decoration: none;
}

.hero-facebook:hover,
.hero-facebook:focus-visible {
  color: white;
}

.footer-facebook {
  justify-content: flex-end;
}

.footer-facebook svg {
  color: white;
}

.social-card {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 16px;
  background: white;
  color: #171719;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

.social-card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #171719;
  color: white;
}

.social-card-icon svg {
  width: 26px;
  height: 26px;
}

.social-card strong,
.social-card small {
  display: block;
}

.social-card small {
  margin-top: 2px;
  color: #6c6962;
}

@media (max-width: 720px) {
  .nav-facebook span {
    display: none;
  }

  .footer-facebook {
    justify-content: flex-start;
  }
}
