:root {
  --bg: #faf8f6;
  --surface: #ffffff;
  --surface-alt: #f4ede8;
  --text: #1f1f1f;
  --muted: #645d57;
  --border: #e8ddd5;
  --primary: #c95a3a;
  --primary-dark: #a63d2f;
  --accent: #355c7d;
  --shadow: 0 16px 40px rgba(31, 31, 31, 0.08);
  --radius: 22px;
  --nav-height: 78px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
iframe {
  max-width: 100%;
  display: block;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary-dark);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(201, 90, 58, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-wrap {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
  font-family: "League Spartan", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: #fff;
}

.brand-text strong {
  font-family: "League Spartan", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.brand-text small {
  margin-top: 0.3rem;
  font-size: 0.78rem;
  opacity: 0.9;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  margin-inline: auto;
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a:not(.btn),
.lang-toggle {
  color: var(--text);
  font-weight: 600;
}

.site-nav a:not(.btn):hover,
.lang-toggle:hover {
  color: var(--primary-dark);
}

.lang-toggle {
  border: 1px solid var(--border);
  background: var(--surface-alt);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.28);
}

.btn-call {
  background: #fff;
  color: var(--primary-dark);
}

.btn-call:hover {
  background: #fff6f2;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(to right, rgba(28, 28, 28, 0.58), rgba(28, 28, 28, 0.22)),
    url("https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=1600&q=80")
    center center / cover no-repeat;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 90, 58, 0.26), transparent 28%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.26));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4.5rem 0 4rem;
  display: flex;
  justify-content: center;
}

.hero-copy {
  width: min(100%, 760px);
  max-width: 760px;
  color: #fff;
  margin-left: clamp(1rem, 6vw, 5rem);
}

.hero-copy {
  max-width: 680px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: "League Spartan", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  color: var(--primary);
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd7ca;
}

.hero h1,
.section-heading h2,
.about-copy h2 {
  margin: 0;
  font-family: "League Spartan", sans-serif;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  max-width: 9ch;
}

.hero-sub {
  margin: 1rem 0 1.35rem;
  font-size: 1.05rem;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.92);
}

.hero-phone {
  display: inline-block;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-list li {
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.92rem;
  color: #fff;
}

.quick-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.quick-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem 0;
}

.quick-strip-grid div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.quick-strip-grid strong {
  color: var(--primary-dark);
}

.quick-strip-grid span {
  color: var(--muted);
}

.section {
  padding: 4.8rem 0;
}

.alt-section {
  background: linear-gradient(to bottom, #fff, #f8f2ed);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.about-copy h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

.section-heading p:last-child,
.about-copy p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.55rem;
  font-family: "League Spartan", sans-serif;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff4ef;
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.about-image {
  min-height: 340px;
}

.about-photo-card {
  height: 100%;
  min-height: 340px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(to top, rgba(24, 24, 24, 0.36), rgba(24, 24, 24, 0.04)),
    url("https://images.unsplash.com/photo-1585704032915-c3400ca199e7?auto=format&fit=crop&w=1200&q=80")
    center center / cover no-repeat;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-family: "League Spartan", sans-serif;
  color: var(--primary-dark);
  letter-spacing: 0.08em;
}

.review-card p {
  font-size: 1.02rem;
}

.review-card footer {
  margin-top: 1rem;
  font-family: "League Spartan", sans-serif;
  color: var(--primary-dark);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.areas-list span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 600;
}

.contact-copy {
  align-self: start;
}

.contact-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.contact-points strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.contact-points a,
.contact-points span {
  color: var(--text);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 1.1rem;
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.contact-form span {
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 16px;
  padding: 0.9rem 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(201, 90, 58, 0.2);
  border-color: var(--primary);
}

.form-submit {
  width: 100%;
}

.map-section {
  padding: 0 0 5rem;
}

.map-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-height: 380px;
}

.map-frame iframe {
  width: 100%;
  min-height: 380px;
}

.site-footer {
  background: #231f1d;
  color: rgba(255, 255, 255, 0.88);
  padding: 2rem 0 6rem;
}

.footer-wrap {
  display: grid;
  gap: 1.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-call {
  justify-self: start;
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--primary-dark);
  color: #fff;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 700;
}

@media (min-width: 760px) {
  .quick-strip-grid,
  .services-grid,
  .why-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  .contact-grid {
    align-items: start;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    gap: 1rem;
  }

  .site-nav a:not(.btn),
  .lang-toggle {
    color: #fff;
  }

  .lang-toggle {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
  }

  .quick-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid,
  .review-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-wrap {
    grid-template-columns: 1.3fr auto auto;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .section {
    padding: 6rem 0;
  }
}