﻿:root {
	--ink: #17191c;
	--muted: #636971;
	--surface: #ffffff;
	--soft: #f2f4f6;
	--line: #dfe4e8;
	--red: #d9251d;
	--red-dark: #99170f;
	--gold: #ffb321;
	--teal: #087f8c;
	--charcoal: #202327;
	--shadow: 0 18px 48px rgba(16, 18, 20, 0.18);
  }
  
  * {
	box-sizing: border-box;
  }
  
  html {
	scroll-behavior: smooth;
  }
  
  body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: var(--ink);
	background: var(--surface);
	line-height: 1.55;
	overflow-x: hidden;
  }
  
  a {
	color: inherit;
	text-decoration: none;
  }
  
  button,
  input,
  select,
  textarea {
	font: inherit;
  }
  
  .site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
	padding: 0 5vw;
	color: #fff;
	background: rgba(23, 25, 28, 0.94);
	backdrop-filter: blur(14px);
  }
  
  .brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
  }
  
  .brand-logo {
	width: 128px;
	height: 42px;
	object-fit: contain;
	border-radius: 8px;
	background: #17191c;
  }
  
  .brand strong,
  .brand small {
	display: block;
  }
  
  .brand small {
	color: rgba(255, 255, 255, 0.72);
  }
  
  .main-nav {
	display: flex;
	gap: 22px;
	font-size: 0.95rem;
  }
  
  .main-nav a {
	color: rgba(255, 255, 255, 0.78);
  }
  
  .main-nav a:hover {
	color: #fff;
  }
  
  .menu-button {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
  }
  
  .menu-button span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	background: #fff;
  }
  
  .hero {
	position: relative;
	min-height: calc(100vh - 72px);
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	align-items: end;
	gap: 32px;
	padding: 9vh 5vw 7vh;
	overflow: hidden;
	color: #fff;
  }
  
  .hero-bg,
  .hero-overlay {
	position: absolute;
	inset: 0;
  }
  
  .hero-bg {
	background-size: cover;
	background-position: center;
	transform: scale(1.02);
  }
  
  .hero-bg-home {
	background-image: url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1800&q=82");
  }
  
  .hero-overlay {
	background:
	  linear-gradient(90deg, rgba(14, 15, 18, 0.88) 0%, rgba(14, 15, 18, 0.58) 52%, rgba(14, 15, 18, 0.28) 100%),
	  linear-gradient(0deg, rgba(14, 15, 18, 0.62), rgba(14, 15, 18, 0.14));
  }
  
  .hero-content,
  .hero-panel {
	position: relative;
	z-index: 1;
  }
  
  .eyebrow {
	margin: 0 0 12px;
	color: var(--gold);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
  }
  
  .eyebrow.dark {
	color: var(--red);
  }
  
  .hero h1 {
	max-width: 900px;
	margin: 0;
	font-size: clamp(3rem, 8vw, 7.25rem);
	line-height: 0.92;
	letter-spacing: 0;
  }
  
  .hero-copy {
	max-width: 660px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.2rem;
  }
  
  .hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
  }
  
  .primary-action,
  .secondary-action,
  .quick-strip a,
  .quick-strip button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 20px;
	border-radius: 8px;
	border: 0;
	cursor: pointer;
	font-weight: 800;
  }
  
  .primary-action {
	color: #fff;
	background: var(--red);
  }
  
  .primary-action:hover {
	background: var(--red-dark);
  }
  
  .secondary-action {
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.36);
	background: rgba(255, 255, 255, 0.08);
  }
  
  .hero-panel {
	display: grid;
	gap: 12px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(23, 25, 28, 0.68);
	box-shadow: var(--shadow);
  }
  
  .hero-panel div {
	padding: 16px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
  }
  
  .hero-panel strong,
  .hero-panel span {
	display: block;
  }
  
  .hero-panel span {
	color: rgba(255, 255, 255, 0.72);
  }
  
  .quick-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--line);
  }
  
  .quick-strip a,
  .quick-strip button {
	min-height: 68px;
	border-radius: 0;
	color: var(--ink);
	background: #fff;
  }
  
  .quick-strip a:hover,
  .quick-strip button:hover {
	background: var(--gold);
  }
  
  .section {
	padding: 82px 5vw;
  }
  
  .intro-section {
	display: grid;
	grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
	gap: 48px;
	align-items: start;
  }
  
  h2 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 4rem);
	line-height: 1;
  }
  
  h3 {
	margin: 0 0 10px;
	font-size: 1.25rem;
  }
  
  .section-heading {
	max-width: 760px;
	margin-bottom: 34px;
  }
  
  .page-hero {
	position: relative;
	min-height: 430px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 110px 5vw 70px;
	color: #fff;
	background: #17191c;
	overflow: hidden;
  }
  
  .page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
	  linear-gradient(90deg, rgba(14, 15, 18, 0.88), rgba(14, 15, 18, 0.42)),
	  var(--page-bg);
	background-size: cover;
	background-position: center;
	transform: scale(1.02);
  }
  
  .page-hero > * {
	position: relative;
	z-index: 1;
	max-width: 860px;
  }
  
  .page-hero h1 {
	margin: 0;
	font-size: clamp(3rem, 7vw, 6.5rem);
	line-height: 0.94;
  }
  
  .page-hero p:not(.eyebrow) {
	font-size: 1.16rem;
	color: rgba(255, 255, 255, 0.82);
  }
  
  .owner-page-hero {
	--page-bg: url("https://images.unsplash.com/photo-1632823469850-1b7b1e8b7e1e?auto=format&fit=crop&w=1600&q=82");
  }
  
  .services-page-hero {
	--page-bg: url("https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&w=1600&q=82");
  }
  
  .gallery-page-hero {
	--page-bg: url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1600&q=82");
  }
  
  .hours-page-hero {
	--page-bg: url("https://images.unsplash.com/photo-1625047509168-a7026f36de04?auto=format&fit=crop&w=1600&q=82");
  }
  
  .booking-page-hero {
	--page-bg: url("https://images.unsplash.com/photo-1599256872237-5dcc0fbe9668?auto=format&fit=crop&w=1600&q=82");
  }
  
  .faq-page-hero {
	--page-bg: url("https://images.unsplash.com/photo-1606577924006-27d39b132ae2?auto=format&fit=crop&w=1600&q=82");
  }
  
  .photo-band {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: #111214;
  }
  
  .photo-band img {
	width: 100%;
	height: 320px;
	object-fit: cover;
  }
  
  .owner-section {
	display: grid;
	grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
	gap: 56px;
	align-items: center;
	padding: 86px 5vw;
	background: #fff;
  }
  
  .owner-portrait {
	position: relative;
	min-height: 620px;
	border-radius: 8px;
	overflow: hidden;
	background: #151719;
	box-shadow: var(--shadow);
  }
  
  .workshop-backdrop {
	position: absolute;
	inset: 0;
	background:
	  linear-gradient(110deg, rgba(10, 12, 14, 0.55), rgba(10, 12, 14, 0.05)),
	  url("https://images.unsplash.com/photo-1632823469850-1b7b1e8b7e1e?auto=format&fit=crop&w=1200&q=82") center/cover;
	filter: saturate(0.95) contrast(1.08);
  }
  
  .owner-portrait img {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: min(72%, 380px);
	height: 88%;
	transform: translateX(-50%);
	object-fit: cover;
	object-position: center top;
	border: 8px solid rgba(255, 255, 255, 0.9);
	border-bottom: 0;
	border-radius: 8px 8px 0 0;
	box-shadow: 0 28px 54px rgba(0, 0, 0, 0.42);
	filter: contrast(1.05) saturate(0.92);
  }
  
  .owner-portrait::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
	  radial-gradient(circle at 50% 18%, rgba(255, 179, 33, 0.26), transparent 34%),
	  linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 45%);
	pointer-events: none;
  }
  
  .owner-badge {
	position: absolute;
	left: 22px;
	bottom: 22px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 16px;
	border-radius: 8px;
	color: #17191c;
	background: #ffb321;
	font-weight: 900;
  }
  
  .owner-copy p {
	max-width: 720px;
	color: var(--muted);
	font-size: 1.08rem;
  }
  
  .owner-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 28px;
  }
  
  .owner-stats span {
	display: grid;
	gap: 4px;
	min-height: 96px;
	padding: 16px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--soft);
	color: var(--muted);
  }
  
  .owner-stats strong {
	color: var(--ink);
  }
  
  .service-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
  }
  
  .detailed-services {
	grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .service-card {
	min-height: 260px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	transition: transform 180ms ease, box-shadow 180ms ease;
  }
  
  .service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
  }
  
  .photo-card {
	overflow: hidden;
	padding: 0;
  }
  
  .photo-card img {
	display: block;
	width: 100%;
	height: 210px;
	object-fit: cover;
  }
  
  .photo-card .service-icon,
  .photo-card h3,
  .photo-card p {
	margin-left: 24px;
	margin-right: 24px;
  }
  
  .photo-card .service-icon {
	margin-top: 24px;
	margin-bottom: 20px;
  }
  
  .photo-card p {
	padding-bottom: 24px;
  }
  
  .service-icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 52px;
	border-radius: 8px;
	color: #fff;
	background: var(--teal);
	font-weight: 900;
  }
  
  .service-card:nth-child(2) .service-icon {
	background: var(--red);
  }
  
  .service-card:nth-child(3) .service-icon {
	color: var(--ink);
	background: var(--gold);
  }
  
  .service-card:nth-child(4) .service-icon {
	background: var(--charcoal);
  }
  
  .service-card p,
  .intro-section p,
  .estimator-copy p {
	color: var(--muted);
	font-size: 1.06rem;
  }
  
  .feature-band {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
	min-height: 620px;
	color: #fff;
	background: var(--charcoal);
  }
  
  .feature-image {
	min-height: 420px;
	background-image: url("https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&w=1500&q=82");
	background-size: cover;
	background-position: center;
  }
  
  .feature-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 70px 5vw;
  }
  
  .check-list {
	display: grid;
	gap: 14px;
	padding: 0;
	margin: 32px 0 0;
	list-style: none;
  }
  
  .check-list li {
	position: relative;
	padding-left: 30px;
	color: rgba(255, 255, 255, 0.82);
  }
  
  .check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--gold);
  }
  
  .estimator-section {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
	gap: 40px;
	align-items: center;
	background: var(--soft);
  }
  
  .estimator {
	padding: 28px;
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--shadow);
  }
  
  label {
	display: grid;
	gap: 8px;
	color: var(--ink);
	font-weight: 800;
  }
  
  input,
  select,
  textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 13px 14px;
	color: var(--ink);
	background: #fff;
  }
  
  .recommendation {
	margin-top: 18px;
	padding: 18px;
	border-left: 5px solid var(--red);
	border-radius: 8px;
	background: #fff7ed;
	color: #47311a;
  }
  
  .hours-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 1px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--line);
  }
  
  .hours-grid div {
	display: grid;
	gap: 10px;
	min-height: 120px;
	padding: 18px;
	background: #fff;
  }
  
  .hours-grid span {
	color: var(--muted);
  }
  
  .gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	background: #fff;
  }
  
  .gallery-grid figure {
	margin: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #111214;
	box-shadow: var(--shadow);
  }
  
  .gallery-grid img {
	display: block;
	width: 100%;
	height: 310px;
	object-fit: cover;
  }
  
  .gallery-grid figcaption {
	padding: 16px 18px;
	color: #fff;
	font-weight: 800;
  }
  
  .faq-section {
	background: var(--soft);
  }
  
  .faq-list {
	display: grid;
	gap: 12px;
  }
  
  details {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
  }
  
  summary {
	cursor: pointer;
	padding: 20px;
	font-weight: 900;
  }
  
  details p {
	margin: 0;
	padding: 0 20px 20px;
	color: var(--muted);
  }
  
  .contact-section {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.9fr);
	gap: 54px;
	padding: 86px 5vw;
	color: #fff;
	background:
	  linear-gradient(rgba(18, 19, 21, 0.88), rgba(18, 19, 21, 0.88)),
	  url("https://images.unsplash.com/photo-1580273916550-e323be2ae537?auto=format&fit=crop&w=1600&q=82") center/cover;
  }
  
  .booking-section {
	background:
	  linear-gradient(rgba(18, 19, 21, 0.86), rgba(18, 19, 21, 0.86)),
	  url("https://images.unsplash.com/photo-1580273916550-e323be2ae537?auto=format&fit=crop&w=1600&q=82") center/cover;
  }
  
  .contact-copy {
	align-self: center;
  }
  
  .contact-copy p {
	color: rgba(255, 255, 255, 0.76);
  }
  
  .contact-form {
	display: grid;
	gap: 16px;
	padding: 28px;
	border-radius: 8px;
	color: var(--ink);
	background: #fff;
  }
  
  .form-note {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
  }
  
  .floating-book {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 15;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border: 0;
	border-radius: 50%;
	color: #fff;
	background: var(--red);
	box-shadow: var(--shadow);
	cursor: pointer;
	font-weight: 900;
  }
  
  .site-footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px;
	padding: 28px 5vw;
	color: #fff;
	background: #111214;
  }
  
  .site-footer span {
	color: rgba(255, 255, 255, 0.68);
  }
  
  .footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
  }
  
  .footer-brand img {
	width: 118px;
	height: 38px;
	object-fit: contain;
	border-radius: 6px;
  }
  
  @media (max-width: 980px) {
	.main-nav {
	  position: absolute;
	  top: 72px;
	  left: 0;
	  right: 0;
	  display: none;
	  flex-direction: column;
	  gap: 0;
	  padding: 12px 5vw 20px;
	  background: rgba(23, 25, 28, 0.98);
	}
  
	.main-nav.is-open {
	  display: flex;
	}
  
	.main-nav a {
	  padding: 14px 0;
	}
  
	.menu-button {
	  display: block;
	}
  
	.hero,
	.intro-section,
	.owner-section,
	.feature-band,
	.estimator-section,
	.contact-section {
	  grid-template-columns: 1fr;
	}
  
	.hero {
	  min-height: auto;
	  padding-top: 90px;
	}
  
	.hero-panel {
	  max-width: 520px;
	}
  
	.owner-portrait {
	  min-height: 560px;
	}
  
	.owner-stats {
	  grid-template-columns: 1fr;
	}
  
	.service-grid,
	.hours-grid {
	  grid-template-columns: repeat(2, minmax(0, 1fr));
	}
  
	.detailed-services,
	.gallery-grid,
	.photo-band {
	  grid-template-columns: repeat(2, minmax(0, 1fr));
	}
  
	.page-hero {
	  min-height: 360px;
	}
  
	.feature-copy {
	  padding: 56px 5vw;
	}
  }
  
  @media (max-width: 640px) {
	.site-header {
	  min-height: 66px;
	  padding: 0 16px;
	}
  
	.brand {
	  max-width: 78%;
	}
  
	.brand-logo {
	  width: 86px;
	  height: 34px;
	}
  
	.brand strong {
	  max-width: 160px;
	  font-size: 0.9rem;
	  line-height: 1.1;
	}
  
	.brand small {
	  font-size: 0.78rem;
	}
  
	.hero {
	  min-height: auto;
	  padding: 72px 18px 44px;
	}
  
	.hero h1 {
	  font-size: 3rem;
	  line-height: 0.95;
	}
  
	.hero-copy {
	  font-size: 1rem;
	}
  
	.hero-actions,
	.quick-strip,
	.service-grid,
	.hours-grid,
	.detailed-services,
	.gallery-grid,
	.photo-band,
	.owner-stats {
	  grid-template-columns: 1fr;
	}
  
	.hero-actions {
	  display: grid;
	}
  
	.hero-panel {
	  width: 100%;
	}
  
	.section,
	.owner-section,
	.contact-section {
	  padding: 52px 18px;
	}
  
	.owner-section {
	  gap: 34px;
	}
  
	.owner-portrait {
	  min-height: 480px;
	}
  
	.owner-portrait img {
	  width: 86%;
	  height: 84%;
	}
  
	.photo-band img,
	.gallery-grid img {
	  height: 260px;
	}
  
	.page-hero {
	  min-height: 330px;
	  padding: 92px 18px 52px;
	}
  
	.page-hero h1 {
	  font-size: 3rem;
	}
  
	.contact-form {
	  padding: 20px;
	}
  
	.service-card {
	  min-height: 210px;
	}
  
	.service-icon {
	  margin-bottom: 26px;
	}
  
	.floating-book {
	  width: 58px;
	  height: 58px;
	  right: 16px;
	  bottom: 16px;
	}
  }
  .contact-section {
	background:
	  linear-gradient(rgba(18, 19, 21, 0.86), rgba(18, 19, 21, 0.86)),
	  url("assets/auto-bg.jpg") center/cover;
  }
  