:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #111111;
  --muted: #5c5c5c;
  --line: #ececec;
  --red: #e10600;
  --red-dark: #b80500;
  --max: 1120px;
  --header-h: 72px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.55;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  font-weight: 800;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.logo span { color: var(--red); }

.nav-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-contact {
  padding: 0.55rem 0.9rem;
  background: var(--red);
  color: #fff !important;
  border: 1px solid var(--red);
}
.nav-contact:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff !important;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(1.5rem, 4vh, 3.5rem) 0;
}

.hero-shape {
  position: absolute;
  right: -8%;
  top: -10%;
  width: 58%;
  height: 130%;
  background: var(--red);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  width: 100%;
}

.hero-copy {
  min-width: 0;
}

.hero-kicker {
  margin: 0 0 0.75rem;
  font-size: clamp(0.65rem, 1.5vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.hero h1 {
  margin: 0;
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.hero-outline {
  display: block;
  font-size: clamp(2.2rem, 7.5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 2px #111;
}

.hero-solid {
  display: block;
  margin-top: 0.2rem;
  font-size: clamp(1.2rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-rule {
  display: inline-block;
  width: 56px;
  height: 4px;
  margin: 1rem 0 0.85rem;
  background: var(--red);
}

.hero-lede {
  max-width: 28rem;
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 500;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  background: var(--red);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-primary.on-dark {
  background: #fff;
  color: var(--red) !important;
}
.btn-primary.on-dark:hover {
  background: #ffe8e7;
}

.hero-media {
  position: relative;
  justify-self: end;
  width: min(100%, 42vw, 460px);
  min-width: 0;
}
.hero-media img {
  width: 100%;
  max-height: min(68svh, 560px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 20px 44px rgba(0,0,0,.18);
}

.services, .about, .lifestyle {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}
.services { background: #fff; }
.about { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lifestyle { background: #fff; }

.section-kicker {
  margin: 0 0 0.55rem;
  text-align: center;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-kicker.light { color: #fff; text-align: left; opacity: 0.9; }

.section-title {
  margin: 0 0 2rem;
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.section-title.left { text-align: left; }
.section-title.light { color: #fff; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card h3 {
  margin: 1rem 0 0.65rem;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-card li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--red);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 2rem;
  align-items: start;
}
.about p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
}

.about-panel {
  background: var(--red);
  color: #fff;
  padding: 1.6rem 1.5rem;
}
.about-stat-label {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}
.about-stat {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1rem;
}
.life-card {
  margin: 0;
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--line);
  min-width: 0;
}
.life-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform .35s ease;
}
.life-card:hover img { transform: scale(1.04); }
.life-wide {
  grid-row: span 2;
}
.life-wide img { aspect-ratio: 3 / 4; min-height: 100%; }
.life-card figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #fff;
  border-top: 3px solid var(--red);
}

.contact {
  background: var(--red);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.contact p {
  max-width: 34rem;
  color: #ffe8e7;
  font-weight: 500;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  background: #fff;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.page {
  padding: 3rem 0 4rem;
  background: #fff;
}
.page h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.page h2 {
  margin: 2rem 0 0.6rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page p, .page li {
  color: var(--muted);
  font-weight: 500;
}
.muted { color: var(--muted); font-size: 0.9rem; }

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 2rem 0 2.5rem;
  }
  .hero-grid,
  .service-grid,
  .about-grid,
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }
  .contact-box {
    display: grid;
  }
  .hero-shape {
    width: 100%;
    height: 38%;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    clip-path: none;
    opacity: 0.1;
  }
  .hero-media {
    justify-self: stretch;
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
  }
  .hero-media img {
    max-height: 48svh;
    aspect-ratio: 16 / 10;
  }
  .hero-outline {
    font-size: clamp(2rem, 12vw, 3.4rem);
    -webkit-text-stroke: 1.5px #111;
  }
  .hero-solid {
    font-size: clamp(1.15rem, 5.5vw, 1.8rem);
  }
  .life-wide { grid-row: auto; }
  .life-wide img { aspect-ratio: 16 / 10; }
  .nav-main { display: none; }
}

@media (max-width: 480px) {
  .wrap {
    width: calc(100% - 1.25rem);
  }
  .hero-media img {
    border-width: 4px;
  }
}
