:root {
  --orange: #f84a15;
  --orange-dark: #d93c0c;
  --black: #111111;
  --grey-900: #303030;
  --grey-700: #5f5f5f;
  --grey-500: #858180;
  --grey-200: #e5e5e5;
  --grey-100: #f7f7f7;
  --white: #ffffff;
  --font: "Mulish", "Muli", Arial, Tahoma, sans-serif;
  --container: 1180px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }

html { overflow: hidden; scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--grey-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 {
  font-family: var(--font);
  font-weight: 300;
  color: var(--black);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.6rem; font-weight: 400; }
h1 strong, h2 strong { font-weight: 700; }

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  vertical-align: middle;
  margin-right: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); }
.btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.7); }
.btn-ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--grey-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: var(--header-h);
}
.brand img { width: 212px; height: auto; }
.site-nav { display: flex; gap: 2rem; }
.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #717171;
  position: relative;
  padding: 0.25rem 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.site-nav a:hover { color: var(--black); }
.site-nav a:hover::after { transform: scaleX(1); }
.header-contact { display: flex; align-items: center; gap: 1.25rem; }
.header-phone { font-weight: 700; color: var(--black); white-space: nowrap; }
.header-phone:hover { color: var(--orange); }

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.15) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 40%);
}
.hero-content { padding: 6rem 0; }
.hero-content > * { max-width: 640px; }
.hero .eyebrow { color: var(--white); }
.hero .eyebrow::before { background: var(--orange); }
.hero h1 { color: var(--white); text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25); }
.hero h1 strong { color: var(--orange); }
.hero .lead { font-size: 1.25rem; font-weight: 300; max-width: 520px; opacity: 0.95; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

/* Sections */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-grey { background: var(--grey-100); }
.section-heading { max-width: 680px; margin-bottom: 3rem; }
.section-heading h2 { margin-bottom: 0; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split-text p:last-child { margin-bottom: 0; }
.split-media { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.card-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.card-body { padding: 2rem 2.25rem 2.5rem; }
.card-body h3 { position: relative; padding-bottom: 0.75rem; margin-bottom: 1rem; }
.card-body h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 44px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.ticks li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--grey-900);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

/* Quote */
.quote { background: var(--black); color: var(--white); padding: clamp(3.5rem, 6vw, 5.5rem) 0; text-align: center; }
.quote blockquote { margin: 0 auto; max-width: 760px; }
.quote p { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 300; font-style: italic; line-height: 1.4; margin-bottom: 1rem; }
.quote cite { font-style: normal; color: var(--orange); font-weight: 600; letter-spacing: 0.05em; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.contact-item {
  display: block;
  padding: 1.75rem 2rem;
  background: var(--grey-100);
  border-radius: var(--radius);
  color: var(--black);
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
a.contact-item:hover { border-color: var(--orange); background: var(--white); color: var(--black); }
.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.contact-value { display: block; font-size: 1.15rem; font-weight: 600; line-height: 1.5; word-break: break-word; }
.contact-note { margin: 2rem 0 0; font-style: italic; color: var(--grey-500); }

/* Footer */
.site-footer { background: var(--black); color: rgba(255, 255, 255, 0.7); padding: 2.5rem 0; font-size: 0.9rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer-logo { width: 160px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-inner p { margin: 0; }

/* Responsive */
@media (max-width: 960px) {
  .site-nav { display: none; }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --header-h: 72px; }
  body { font-size: 16px; }
  .brand img { width: 170px; }
  .header-phone { display: none; }
  .hero { min-height: min(78vh, 640px); }
  .hero-content { padding: 4rem 0; }
  .card-body { padding: 1.5rem 1.5rem 2rem; }
  .footer-inner { justify-content: center; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .site-nav a::after { transition: none; }
}
