
:root {
  --navy: #081522;
  --navy-2: #102b46;
  --red: #c8102e;
  --red-dark: #920b20;
  --white: #f7f9fc;
  --silver: #d7dee7;
  --text: #14202c;
  --muted: #66717d;
  --line: #e4e8ed;
  --shadow: 0 24px 70px rgba(8, 21, 34, .16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff;
}
body.locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
.hidden { display: none !important; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
}
h1, h2, h3, .brand-mark {
  font-family: "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h2 { font-size: clamp(2.3rem, 5vw, 4.6rem); line-height: .98; margin-bottom: 20px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
  transition: .2s ease;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-secondary { background: #fff; color: var(--navy); }
.btn-secondary:hover { background: var(--silver); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-outline:hover { border-color: #fff; }

.lock-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(8,21,34,.92), rgba(8,21,34,.96)),
    radial-gradient(circle at 20% 20%, #244c70 0, transparent 34%),
    radial-gradient(circle at 80% 80%, #5d0a1b 0, transparent 35%);
}
.lock-card {
  width: min(460px, 100%);
  padding: 42px;
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.lock-card h1 { font-size: 3rem; margin-bottom: 12px; }
.lock-card form { display: grid; gap: 12px; margin-top: 24px; }
.lock-card input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
}
.lock-card input::placeholder { color: rgba(255,255,255,.55); }
.form-note { font-size: .82rem; color: rgba(255,255,255,.65); }
.error { color: #ff8093; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 5vw;
  color: #fff;
  background: rgba(8,21,34,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.brand-mark { font-size: 1.65rem; font-weight: 800; letter-spacing: .04em; }
.brand-mark span { color: var(--red); }
.brand-mark.small { font-size: 1.35rem; }
.desktop-nav { display: flex; gap: 28px; margin-left: auto; }
.desktop-nav a { font-size: .84rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.header-btn { margin-left: 6px; min-height: 42px; }
.menu-toggle { display: none; margin-left: auto; color: #fff; border: 0; background: transparent; font-size: 1.7rem; }

.hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(8,21,34,.97) 0%, rgba(8,21,34,.78) 54%, rgba(8,21,34,.3) 100%),
    radial-gradient(circle at 82% 50%, rgba(200,16,46,.35), transparent 28%),
    linear-gradient(135deg, #193a59, #081522 60%);
}
.hero:after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -100px;
  width: 60vw;
  height: 420px;
  transform: skewX(-18deg);
  background: linear-gradient(135deg, rgba(200,16,46,.92), rgba(200,16,46,.12));
  filter: blur(.2px);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 70px 70px;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(960px, 90vw);
  margin: 90px auto 0;
}
.hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 9vw, 8.5rem);
  line-height: .84;
}
.hero h1 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.8); }
.hero-lead { max-width: 760px; font-size: 1.2rem; line-height: 1.7; color: rgba(255,255,255,.78); }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.hero-points { display: flex; gap: 30px; margin-top: 50px; font-size: .74rem; font-weight: 800; letter-spacing: .14em; color: rgba(255,255,255,.55); }

.section { padding: 110px 6vw; }
.section-heading { max-width: 790px; margin-bottom: 50px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  min-height: 290px;
  padding: 34px;
  background: #fff;
  transition: .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); z-index: 2; }
.service-card.featured { color: #fff; background: var(--red); }
.service-number { color: var(--red); font-weight: 800; font-size: .82rem; }
.featured .service-number { color: #fff; }
.service-card h3 { margin: 42px 0 14px; font-size: 1.8rem; }
.service-card p { color: var(--muted); line-height: 1.65; }
.featured p { color: rgba(255,255,255,.78); }

.split-section {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 680px;
  background: var(--white);
}
.split-section.reverse { grid-template-columns: 1fr 1.15fr; background: #fff; }
.split-section.reverse .split-visual { order: 2; }
.split-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}
.import-visual {
  background:
    linear-gradient(rgba(8,21,34,.18), rgba(8,21,34,.52)),
    linear-gradient(135deg, #415f77, #0b1c2b 62%);
}
.import-visual:before, .service-visual:before {
  content: "";
  position: absolute;
  width: 70%;
  height: 36%;
  left: 14%;
  bottom: 20%;
  border-radius: 80px 140px 18px 18px;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.22);
  transform: skewX(-8deg);
}
.import-visual:after, .service-visual:after {
  content: "";
  position: absolute;
  width: 78%;
  height: 3px;
  left: 11%;
  bottom: 18%;
  background: var(--red);
  box-shadow: 0 30px 60px rgba(200,16,46,.7);
}
.service-visual {
  background:
    linear-gradient(rgba(8,21,34,.1), rgba(8,21,34,.55)),
    linear-gradient(135deg, #751227, #101f30 64%);
}
.visual-badge {
  position: absolute;
  left: 6%;
  bottom: 7%;
  z-index: 2;
  padding: 12px 16px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  font-weight: 800;
  letter-spacing: .14em;
  font-size: .78rem;
}
.split-content { display: flex; flex-direction: column; justify-content: center; padding: 80px 7vw; }
.split-content > p:not(.eyebrow) { color: var(--muted); line-height: 1.8; font-size: 1.04rem; }
.check-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 13px; }
.check-list li:before { content: "✓"; margin-right: 12px; color: var(--red); font-weight: 900; }
.text-link { color: var(--red); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }

.process-section { padding: 110px 6vw; color: #fff; background: var(--navy); }
.section-heading.light > p:last-child { color: rgba(255,255,255,.65); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.process-grid > div { padding: 30px 24px; border-top: 1px solid rgba(255,255,255,.18); }
.process-grid strong { font-family: "Barlow Condensed"; font-size: 3rem; color: var(--red); }
.process-grid h3 { font-size: 1.45rem; margin: 22px 0 10px; }
.process-grid p { color: rgba(255,255,255,.62); line-height: 1.6; }

.booking-section { background: var(--white); }
.booking-form { max-width: 1100px; padding: 36px; background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.booking-form label { display: grid; gap: 8px; color: #2c3945; font-size: .86rem; font-weight: 700; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #cfd6dd;
  background: #fff;
  font: inherit;
}
.booking-form textarea { resize: vertical; margin-top: 8px; }
.form-footer { display: flex; gap: 20px; align-items: center; justify-content: space-between; margin-top: 22px; }
.consent { display: flex !important; grid-template-columns: auto 1fr; align-items: center; font-weight: 500 !important; color: var(--muted) !important; }
.consent input { width: auto; }
.form-status { margin: 16px 0 0; font-weight: 700; color: var(--red); }

.contact-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  padding: 100px 6vw;
  color: #fff;
  background: linear-gradient(135deg, #07131f, #102a43);
}
.contact-copy h2 { margin-bottom: 18px; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.66); }
.contact-copy > a { color: #fff; font-weight: 700; }
.contact-copy small { color: rgba(255,255,255,.48); font-weight: 400; }
.contact-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.contact-cards article { padding: 30px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); }
.contact-cards .phone { display: inline-block; margin: 14px 0 16px; font-family: "Barlow Condensed"; font-size: 2.2rem; font-weight: 800; }
.contact-cards article > p:last-child { color: rgba(255,255,255,.64); line-height: 1.6; }

footer {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 6vw;
  color: rgba(255,255,255,.62);
  background: #030b12;
  font-size: .82rem;
}
footer p:last-child { margin-left: auto; }
footer p { margin-bottom: 0; }

@media (max-width: 980px) {
  .desktop-nav, .header-btn { display: none; }
  .menu-toggle { display: block; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .split-section, .split-section.reverse { grid-template-columns: 1fr; }
  .split-section.reverse .split-visual { order: 0; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .contact-section { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 650px) {
  .site-header { min-height: 68px; }
  .hero { min-height: 760px; }
  .hero-content { margin-top: 70px; }
  .hero h1 { font-size: 4rem; }
  .hero-actions, .hero-points, .form-footer { flex-direction: column; align-items: stretch; }
  .hero-points { gap: 12px; }
  .section { padding: 80px 22px; }
  .service-grid, .process-grid, .form-grid, .contact-cards { grid-template-columns: 1fr; }
  .split-content { padding: 70px 24px; }
  .split-visual { min-height: 420px; }
  .booking-form { padding: 24px; }
  .contact-section { padding: 80px 24px; }
  footer { align-items: flex-start; flex-direction: column; padding: 28px 24px; }
  footer p:last-child { margin-left: 0; }
  .lock-card { padding: 30px 24px; }
}


.inventory-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 90px 6vw;
  background: #fff;
  border-top: 1px solid var(--line);
}
.inventory-teaser > div { max-width: 760px; }
.inventory-teaser h2 { margin-bottom: 16px; }
.inventory-teaser p:last-child { color: var(--muted); line-height: 1.7; }

.inventory-page { min-height: 100vh; background: var(--white); }
.inventory-hero {
  padding: 150px 6vw 70px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(8,21,34,.97), rgba(8,21,34,.82)),
    linear-gradient(135deg, #1e4263, #081522);
}
.inventory-hero h1 {
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: .9;
  margin-bottom: 18px;
}
.inventory-hero p:last-child {
  max-width: 720px;
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  line-height: 1.7;
}
.inventory-content { padding: 80px 6vw 110px; }
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vehicle-card {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(8,21,34,.08);
  transition: .25s ease;
}
.vehicle-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.vehicle-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background:
    linear-gradient(rgba(8,21,34,.08), rgba(8,21,34,.4)),
    linear-gradient(135deg, #8fa2b3, #24384b 70%);
}
.vehicle-image::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 34%;
  left: 14%;
  bottom: 22%;
  border-radius: 80px 120px 18px 18px;
  background: rgba(255,255,255,.13);
  border: 2px solid rgba(255,255,255,.26);
  transform: skewX(-8deg);
}
.vehicle-image::after {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: 18%;
  height: 3px;
  background: var(--red);
  box-shadow: 0 22px 40px rgba(200,16,46,.55);
}
.vehicle-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 11px;
  color: #fff;
  background: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vehicle-body { padding: 26px; }
.vehicle-body h2 { font-size: 2rem; margin-bottom: 8px; }
.vehicle-price {
  margin-bottom: 18px;
  color: var(--red);
  font-family: "Barlow Condensed";
  font-size: 2rem;
  font-weight: 800;
}
.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  margin: 18px 0 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
}
.vehicle-link {
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.inventory-note {
  margin-top: 40px;
  padding: 20px 24px;
  color: var(--muted);
  background: #fff;
  border-left: 4px solid var(--red);
}
@media (max-width: 980px) {
  .inventory-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
  .inventory-teaser { flex-direction: column; align-items: flex-start; padding: 70px 24px; }
  .inventory-hero { padding: 125px 24px 60px; }
  .inventory-content { padding: 60px 24px 80px; }
  .inventory-grid { grid-template-columns: 1fr; }
}


.thankyou-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(rgba(8,21,34,.94), rgba(8,21,34,.97)),
    linear-gradient(135deg, #274a68, #081522 65%);
}
.thankyou-card {
  width: min(720px, 100%);
  padding: 56px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.thankyou-card h1 {
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: .9;
  margin: 18px 0;
}
.thankyou-card > p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  line-height: 1.7;
}
@media (max-width: 650px) {
  .thankyou-card { padding: 36px 24px; }
}

.site-header .brand-mark{font-size:2.05rem;letter-spacing:.055em}.service-card{color:inherit;text-decoration:none;position:relative}.service-more{position:absolute;left:34px;bottom:28px;color:var(--red);font-size:.78rem;font-weight:800;letter-spacing:.05em;text-transform:uppercase}.service-card.featured .service-more{color:#fff}.service-detail-page{background:var(--white)}.service-detail-hero{min-height:720px;display:grid;grid-template-columns:1fr 1fr;color:#fff;background:var(--navy)}.service-detail-copy{display:flex;flex-direction:column;justify-content:center;padding:130px 7vw 80px}.service-detail-copy h1{max-width:720px;margin-bottom:24px;font-size:clamp(4rem,7vw,7rem);line-height:.88}.service-detail-copy>p:not(.eyebrow){max-width:720px;color:rgba(255,255,255,.72);font-size:1.08rem;line-height:1.8}.service-illustration{position:relative;min-height:560px;overflow:hidden;display:flex;align-items:flex-end;padding:46px;background:radial-gradient(circle at 70% 30%,rgba(255,255,255,.14),transparent 25%),linear-gradient(135deg,#274d6e,#091725 68%)}.service-illustration:before{content:"";position:absolute;width:70%;height:33%;left:14%;top:34%;border-radius:100px 150px 20px 20px;border:3px solid rgba(255,255,255,.24);background:rgba(255,255,255,.08);transform:skewX(-8deg)}.service-illustration:after{content:"";position:absolute;left:10%;right:10%;top:70%;height:4px;background:var(--red);box-shadow:0 25px 70px rgba(200,16,46,.8)}.service-illustration span{position:relative;z-index:2;font-family:"Barlow Condensed";font-size:1rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase}.illustration-inspection{background:linear-gradient(135deg,#465a69,#0a1722 70%)}.illustration-transport{background:linear-gradient(135deg,#7a172a,#0b1926 72%)}.illustration-registration{background:linear-gradient(135deg,#1b4964,#071522 72%)}.illustration-service{background:linear-gradient(135deg,#343c45,#071522 72%)}.illustration-tuning{background:linear-gradient(135deg,#8b1129,#111d2a 70%)}.illustration-dpf{background:linear-gradient(135deg,#4a6070,#0b1722 70%)}.illustration-sales{background:linear-gradient(135deg,#294d6b,#711329 100%)}.detail-section{padding:105px 6vw}.detail-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;border:1px solid var(--line);background:var(--line)}.detail-step{min-height:270px;padding:32px;background:#fff}.detail-step span{color:var(--red);font-weight:800;font-size:.8rem}.detail-step h3{margin:44px 0 14px;font-size:1.65rem}.detail-step p{color:var(--muted);line-height:1.7}.price-section{display:flex;align-items:center;justify-content:space-between;gap:40px;padding:90px 6vw;color:#fff;background:var(--navy)}.price-section>div{max-width:820px}.price-section h2{margin-bottom:18px;font-size:clamp(2.8rem,5vw,5rem)}.price-section>div>p:last-child{color:rgba(255,255,255,.66);line-height:1.7}.service-disclaimer{padding:24px 6vw;color:var(--muted);background:#fff;border-bottom:1px solid var(--line);font-size:.88rem}.service-disclaimer strong{color:var(--text)}@media(max-width:980px){.service-detail-hero{grid-template-columns:1fr}.service-illustration{min-height:420px}.detail-steps{grid-template-columns:repeat(2,1fr)}}@media(max-width:650px){.site-header .brand-mark{font-size:1.7rem}.service-detail-copy{padding:120px 24px 65px}.service-detail-copy h1{font-size:4rem}.service-illustration{min-height:340px;padding:28px}.detail-section{padding:75px 24px}.detail-steps{grid-template-columns:1fr}.price-section{flex-direction:column;align-items:flex-start;padding:75px 24px}.service-disclaimer{padding:22px 24px}}


/* Oprava klikání karet služeb */
.service-grid > .service-card {
  display: block;
  position: relative;
  width: 100%;
  min-width: 0;
  cursor: pointer;
  pointer-events: auto;
  z-index: 1;
}
.service-grid > .service-card:hover {
  z-index: 5;
}
.service-grid > .service-card * {
  pointer-events: none;
}


/* Verze 7 – obsah služeb */
.included-section {
  padding: 95px 6vw;
  background: #fff;
}
.included-list {
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.included-list li {
  position: relative;
  padding: 16px 18px 16px 42px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  line-height: 1.55;
}
.included-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--red);
  font-weight: 900;
}
.price-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.service-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 980px) {
  .included-list { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .included-section { padding: 75px 24px; }
  .price-actions { width: 100%; flex-direction: column; align-items: stretch; }
}


/* Verze 7.1 – O nás */
.about-home {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 1px;
  padding: 1px;
  background: var(--line);
}
.about-home-copy,
.about-home-philosophy {
  padding: 90px 6vw;
  background: #fff;
}
.about-home-copy h2 {
  max-width: 850px;
  margin-bottom: 24px;
}
.about-home-copy p,
.about-home-philosophy p {
  color: var(--muted);
  line-height: 1.8;
}
.about-home-copy .btn { margin-top: 16px; }
.about-home-philosophy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: var(--navy);
}
.about-home-philosophy h3 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: .95;
}
.about-home-philosophy p { color: rgba(255,255,255,.68); }

.about-page { background: var(--white); }
.about-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  color: #fff;
  background: var(--navy);
}
.about-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 135px 7vw 80px;
}
.about-hero-copy h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: .87;
}
.about-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  line-height: 1.8;
}
.about-photo-placeholder,
.person-photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 420px;
  color: rgba(255,255,255,.7);
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.16), transparent 25%),
    linear-gradient(135deg, #2b506f, #711329);
  border-left: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-story { padding: 105px 6vw; background: #fff; }
.about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.about-story-grid p {
  color: var(--muted);
  line-height: 1.9;
}
.about-values {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  padding: 105px 6vw;
  color: #fff;
  background: var(--navy);
}
.about-values-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.68);
  line-height: 1.85;
}
.about-values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.13);
}
.about-values-list article {
  min-height: 230px;
  padding: 30px;
  background: rgba(255,255,255,.04);
}
.about-values-list span {
  color: var(--red);
  font-weight: 800;
}
.about-values-list h3 {
  margin: 38px 0 12px;
  font-size: 1.55rem;
}
.about-values-list p {
  color: rgba(255,255,255,.62);
  line-height: 1.65;
}
.about-people { padding: 105px 6vw; background: var(--white); }
.people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.people-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.person-photo-placeholder {
  min-height: 360px;
  border-left: 0;
}
.people-grid h3,
.people-grid p,
.people-grid a {
  margin-left: 30px;
  margin-right: 30px;
}
.people-grid h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 2rem;
}
.people-grid p {
  color: var(--muted);
  line-height: 1.7;
}
.people-grid a {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--red);
  font-family: "Barlow Condensed";
  font-size: 1.6rem;
  font-weight: 800;
}
.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 90px 6vw;
  color: #fff;
  background: linear-gradient(135deg, #0a1825, #183954);
}
.about-cta > div { max-width: 800px; }
.about-cta h2 { margin-bottom: 16px; }
.about-cta p:last-child {
  color: rgba(255,255,255,.66);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .about-home,
  .about-hero,
  .about-values {
    grid-template-columns: 1fr;
  }
  .about-story-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-photo-placeholder { min-height: 420px; }
}
@media (max-width: 650px) {
  .about-home-copy,
  .about-home-philosophy {
    padding: 72px 24px;
  }
  .about-hero-copy { padding: 120px 24px 65px; }
  .about-hero-copy h1 { font-size: 4rem; }
  .about-story,
  .about-values,
  .about-people {
    padding: 75px 24px;
  }
  .about-values-list,
  .people-grid {
    grid-template-columns: 1fr;
  }
  .about-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 75px 24px;
  }
}
