:root {
  color-scheme: dark;
  --bg: #090909;
  --ink: #f3f3f0;
  --muted: #a3a3a3;
  --line: #2c2c2c;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
a,
button,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid white;
  outline-offset: 5px;
}
header {
  height: 106px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
  background: #090909;
}
.brand {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.15;
}
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 1.65px;
  font-weight: 400;
  margin-top: 8px;
  color: #bbb;
}
.monogram {
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -7px;
  padding-right: 12px;
  border-right: 1px solid #555;
}
nav {
  display: flex;
  gap: 29px;
  align-items: center;
  font-size: 14px;
}
nav > a:not(.button) {
  color: #aaa;
}
nav > a:hover,
nav > a.active {
  color: #fff;
}
.button {
  background: var(--ink);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 17px 24px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.button:hover {
  background: #bdbdbd;
  border-color: #bdbdbd;
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.button.small {
  padding: 12px 17px;
  gap: 22px;
}
.button.outline {
  background: transparent;
  color: white;
  border-color: #666;
}
.button.outline:hover {
  background: #242424;
}
.menu {
  display: none;
}
.hero {
  min-height: 690px;
  height: calc(100svh - 106px);
  max-height: 1000px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) brightness(0.65);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, #090909, transparent 40%);
}
.hero-copy {
  position: relative;
  padding: 60px 5% 110px;
  width: 100%;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2.4px;
  font-weight: 600;
  margin: 0 0 26px;
  color: #aaa;
}
h1 {
  font-size: clamp(54px, 7.6vw, 118px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.96;
  margin: 0 0 32px;
}
h2 {
  font-size: clamp(38px, 4.5vw, 68px);
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin: 0 0 24px;
}
h3 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -1px;
}
p {
  color: var(--muted);
}
.intro {
  font-size: 18px;
  line-height: 1.7;
  color: #bdbdbd;
  margin: 0 0 34px;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-bottom {
  position: absolute;
  bottom: 24px;
  left: 5%;
  right: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 2px;
  border-top: 1px solid #ffffff30;
  padding-top: 25px;
  color: #aaa;
}
.hero-bottom span:first-child {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1px;
  color: white;
}
.section {
  padding: 110px 5%;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}
.section-heading p:last-child {
  max-width: 310px;
  margin: 0;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service {
  padding: 44px 7% 44px 0;
  transition: background 0.2s;
}
.service:nth-child(2) {
  padding-left: 9%;
  border-left: 1px solid var(--line);
}
.service:hover {
  background: #101010;
}
.number {
  color: #888;
  font-size: 12px;
  letter-spacing: 2px;
}
.service p {
  max-width: 400px;
  margin: 20px 0 32px;
}
.text-link {
  display: inline-block;
  border-bottom: 1px solid #777;
  padding-bottom: 7px;
  font-size: 14px;
  font-weight: bold;
}
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10%;
  padding: 85px 10%;
  background: #111;
  border-block: 1px solid #222;
}
.giant-ts {
  font-size: clamp(140px, 28vw, 430px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.14em;
  line-height: 1;
  color: #e5e5e5;
  padding-right: 15%;
  transform: skew(-4deg);
}
.about-strip p {
  max-width: 480px;
}
.about-strip .text-link {
  margin-top: 20px;
}
.closing {
  padding: 110px 5%;
  text-align: center;
}
.closing h2 {
  font-size: clamp(46px, 7vw, 100px);
  margin-bottom: 35px;
}
footer {
  border-top: 1px solid var(--line);
  padding: 55px 5% 25px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: start;
}
footer p {
  margin: 0;
  font-size: 14px;
}
footer > a:last-of-type {
  font-size: 14px;
}
.footer-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #222;
  margin-top: 30px;
  padding-top: 22px;
  font-size: 12px;
  color: #888;
}
.page-top {
  padding: 95px 5% 55px;
  border-bottom: 1px solid var(--line);
}
.page-top p:last-child {
  font-size: 19px;
  max-width: 580px;
}
.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  padding-top: 80px;
}
.details p {
  max-width: 530px;
}
.gallery-feature {
  margin: 0;
}
.gallery-feature img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  filter: grayscale(1);
  display: block;
}
.gallery-feature figcaption {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  font-size: 12px;
  color: #999;
  padding-top: 20px;
}
.about-page {
  border-top: 0;
}
.compact {
  padding-bottom: 45px;
}
.contact-layout {
  padding: 80px 5% 100px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 10%;
}
.contact-copy {
  max-width: 360px;
}
.contact-note {
  border-top: 1px solid #333;
  padding-top: 28px;
  margin-top: 40px;
}
.contact-note .eyebrow {
  margin: 0;
}
.notice {
  font-size: 14px;
  border-left: 2px solid #888;
  padding-left: 18px;
  margin-top: 36px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 20px;
}
label {
  font-size: 14px;
  font-weight: 600;
  display: block;
}
.wide {
  grid-column: 1/-1;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  background: #141414;
  color: white;
  border: 1px solid #383838;
  border-radius: 0;
  padding: 15px;
  margin-top: 10px;
  min-height: 53px;
  font-size: 16px;
}
textarea {
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: #7d7d7d;
}
.optional {
  font-weight: 400;
  color: #aaa;
}
form > .button {
  margin-top: 28px;
  width: 100%;
}
.form-foot {
  font-size: 12px;
}
#form-result {
  border: 1px solid #555;
  margin-top: 28px;
  padding: 24px;
}
#summary {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font: 14px/1.7 Arial;
  color: #bbb;
}
.skip {
  position: absolute;
  top: -100px;
  background: white;
  color: black;
  padding: 10px;
  z-index: 50;
}
.skip:focus {
  top: 5px;
}
@media (min-width: 1700px) {
  header,
  .section,
  .page-top,
  .hero-copy,
  footer,
  .contact-layout {
    padding-left: max(5%, calc((100vw - 1550px) / 2));
    padding-right: max(5%, calc((100vw - 1550px) / 2));
  }
}
@media (max-width: 1000px) {
  header {
    height: 88px;
  }
  nav {
    gap: 16px;
  }
  .brand {
    font-size: 17px;
  }
  .brand small {
    font-size: 8px;
  }
  .monogram {
    font-size: 36px;
  }
  .hero {
    height: calc(100svh - 88px);
  }
  .section-heading {
    grid-template-columns: 1fr 1fr;
  }
  .section-heading > .eyebrow {
    grid-column: 1/-1;
    margin: 0;
  }
  .about-strip {
    gap: 8%;
    padding: 75px 6%;
  }
  .contact-layout {
    gap: 6%;
  }
}
@media (max-width: 720px) {
  header {
    height: 82px;
  }
  .brand small {
    font-size: 9px;
  }
  .menu {
    display: block;
    background: none;
    border: 1px solid #555;
    color: white;
    padding: 8px 13px;
    font-size: 14px;
  }
  nav {
    display: none;
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    padding: 25px 5%;
    background: #101010;
    border-bottom: 1px solid #444;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  nav.open {
    display: flex;
  }
  .hero {
    min-height: 650px;
    height: calc(100svh - 82px);
  }
  .hero-copy {
    padding: 60px 6% 100px;
  }
  .hero h1 {
    font-size: clamp(51px, 11.6vw, 83px);
  }
  .hero-image {
    object-position: 62% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #000b, #0004),
      linear-gradient(0deg, #090909, transparent 70%);
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 1.7px;
  }
  .hero-bottom span:nth-child(2) {
    display: none;
  }
  .hero-bottom {
    font-size: 10px;
  }
  .intro {
    font-size: 17px;
  }
  .actions .button {
    padding: 14px 18px;
    gap: 22px;
  }
  .section {
    padding: 65px 6%;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-heading > .eyebrow {
    margin-bottom: 25px;
  }
  .section-heading p:last-child {
    max-width: 100%;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service,
  .service:nth-child(2) {
    padding: 30px 0;
    border-left: 0;
  }
  .service:nth-child(2) {
    border-top: 1px solid #333;
  }
  .about-strip {
    grid-template-columns: 1fr;
    padding: 50px 6%;
    gap: 45px;
  }
  .giant-ts {
    font-size: 190px;
    padding-right: 30px;
    justify-self: start;
  }
  .closing {
    padding: 80px 6%;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 40px 6% 22px;
    gap: 27px;
  }
  .footer-bottom {
    margin-top: 5px;
  }
  .page-top {
    padding: 65px 6% 35px;
  }
  .page-top h1 {
    font-size: clamp(46px, 11vw, 75px);
  }
  .details {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-top: 50px;
  }
  .gallery-feature img {
    height: 330px;
  }
  .gallery-feature figcaption {
    flex-direction: column;
    gap: 6px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    padding: 50px 6% 65px;
    gap: 40px;
  }
  .contact-copy {
    max-width: 100%;
  }
  .contact-note {
    margin-top: 20px;
  }
  .notice {
    margin-top: 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .wide {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.gallery-pair figure {
  margin: 0;
}
.gallery-pair img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: grayscale(1);
}
.gallery-pair figcaption,
.photo-credit {
  font-size: 12px;
  color: #999;
}
.photo-credit {
  margin-top: 25px;
}
.proof {
  padding-top: 40px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.proof-grid article {
  padding: 38px 7% 38px 0;
}
.proof-grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 10%;
}
.proof-grid span,
.process > li > span {
  color: #888;
  font-size: 12px;
  letter-spacing: 2px;
}
.proof-grid h3,
.process h3 {
  margin: 20px 0 10px;
}
.proof-grid p,
.process p {
  margin: 0;
}
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 25px 45px 25px 0;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  font-size: 26px;
  font-weight: 400;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  max-width: 720px;
  margin: -5px 0 28px;
}
.process-block {
  padding-top: 100px;
}
.process {
  list-style: none;
  margin: 45px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.process li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 25px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.process h3 {
  margin-top: 0;
}
.mobile-cta {
  display: none;
}
@media (max-width: 720px) {
  .gallery-pair {
    grid-template-columns: 1fr;
  }
  .gallery-pair img {
    height: 290px;
  }
  .proof {
    padding-top: 20px;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid article,
  .proof-grid article + article {
    padding: 28px 0;
    border-left: 0;
  }
  .proof-grid article + article {
    border-top: 1px solid var(--line);
  }
  .process-block {
    padding-top: 65px;
  }
  .process li {
    grid-template-columns: 48px 1fr;
  }
  .mobile-cta {
    display: flex;
    position: fixed;
    z-index: 20;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    min-height: 54px;
    padding: 14px 20px;
    justify-content: space-between;
    align-items: center;
    background: #f3f3f0;
    color: #111;
    border: 1px solid #fff;
    font-weight: 800;
    box-shadow: 0 8px 35px #000b;
  }
  footer {
    padding-bottom: 95px;
  }
}

/* Tint Sector: photo-led, black-and-white automotive layout. */
header{height:96px} .brand small{font-size:12px;letter-spacing:1px} .eyebrow,.number{font-size:14px;letter-spacing:1.6px} nav a.active:not(.button){border-bottom:1px solid #fff;padding-bottom:5px}
.hero{min-height:600px;height:78svh;max-height:850px}.hero-copy{padding-bottom:85px}.hero h1{font-size:clamp(64px,8vw,120px);letter-spacing:-.055em}.hero-image{filter:grayscale(1) brightness(.7)}
.about-strip{padding:90px 6%;gap:7%;background:#101010}.about-photo{width:100%;height:460px;object-fit:cover;display:block}.about-strip h2{font-size:clamp(38px,4.4vw,66px)}
.service-grid{gap:24px;border:0}.service,.service:nth-child(2){padding:42px;border:1px solid #343434;background:#121212}.service:hover{background:#1b1b1b}.service h3{font-size:clamp(28px,3vw,42px)}
.gallery-heading{padding-bottom:50px}.gallery-section{padding:45px 5% 80px}.vehicle-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.vehicle-row figure{margin:0;min-width:0}.vehicle-row a{display:block;background:#191919}.vehicle-row img{display:block;width:100%;height:360px;object-fit:cover;object-position:center;transition:filter .2s}.vehicle-row a:hover img{filter:brightness(1.08)}.vehicle-row figure:first-child img{object-position:center 48%}.vehicle-row figcaption{padding:16px 0;border-bottom:1px solid #333;color:#bdbdbd;font-size:14px;text-transform:uppercase;letter-spacing:1px}
@media(max-width:1000px){header{height:88px}.brand small{font-size:10px}.vehicle-row img{height:280px}.about-photo{height:380px}}
@media(max-width:720px){header{height:82px}.hero{height:auto;min-height:620px}.hero h1{font-size:clamp(52px,12vw,83px)}.hero-copy{padding:70px 6% 110px}.eyebrow{font-size:12px}.about-strip{padding:55px 6%;gap:30px}.about-photo{height:300px}.service,.service:nth-child(2){padding:28px;border:1px solid #343434}.gallery-section{padding:25px 4% 45px}.vehicle-row{gap:7px}.vehicle-row img{height:clamp(145px,38vw,270px)}.vehicle-row figcaption{font-size:12px;letter-spacing:0;padding:10px 0}.gallery-heading h1{font-size:clamp(44px,11vw,75px)}}

@media(max-width:720px){.hero h1.premium-heading{font-size:clamp(36px,9vw,64px);line-height:1.02}}

.service-content{max-width:1100px;margin:0 auto}.service-content article+article{margin-top:60px}.service-content h2{font-size:clamp(30px,4vw,48px)}.service-content p{max-width:760px}.service-page-top h1{font-size:clamp(42px,7.6vw,108px);overflow-wrap:break-word}.service h2{font-size:clamp(28px,3vw,42px);line-height:1.2;letter-spacing:-1px;margin:28px 0}.service-page-top .button{margin-top:12px}

@media(max-width:720px){.about-strip > .about-photo{width:80%;height:240px;justify-self:center}}
