/* ProAutoLuxe — brand tokens */
:root {
  --color-bg: #000000;
  --color-surface: #0c0c0c;
  --color-elevated: #141414;
  --color-border: #242424;
  --color-muted: #9a9a9a;
  --color-silver: #c8c8c8;
  --color-white: #ffffff;
  --color-red: #e31837;
  --color-red-hover: #ff2d4d;
  --font-display: "Orbitron", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --container: min(1200px, 92vw);
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-silver);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-white);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--color-red-hover);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-red);
  color: var(--color-white);
  padding: 0.75rem 1rem;
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header — toolbar sticky; nav is sibling so fixed drawer is not trapped inside sticky */
.site-header-group {
  position: relative;
}

.site-top-toolbar {
  position: sticky;
  top: 0;
  z-index: 1002;
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid var(--color-border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-pro {
  font-style: italic;
  background: linear-gradient(180deg, #fff 0%, #a8a8a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.brand-luxe {
  display: block;
  color: var(--color-red);
  font-style: normal;
  font-size: 0.82em;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  cursor: pointer;
  position: relative;
  z-index: 1006;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--color-white);
  border-radius: 1px;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.site-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  background: var(--color-bg);
  padding: 1.25rem;
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 1001;
  pointer-events: none;
}

.site-nav.is-open {
  transform: translateX(0);
  pointer-events: auto;
  z-index: 1005;
}

@media (min-width: 1024px) {
  .site-header-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid var(--color-border);
    min-height: var(--header-h);
    padding: 0 max(4vw, calc((100vw - min(1200px, 92vw)) / 2));
  }

  .site-top-toolbar {
    position: static;
    flex: 1 1 auto;
    background: transparent;
    border: none;
    z-index: auto;
    min-height: 0;
  }

  .site-top-toolbar .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .site-top-inner {
    min-height: 0;
    justify-content: flex-start;
  }

  .site-header-group > .site-nav {
    flex: 0 0 auto;
  }

  .site-nav {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    max-width: none;
    padding: 0;
    overflow: visible;
    transform: none;
    background: transparent;
    z-index: auto;
    pointer-events: auto;
  }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
  }
}

.nav-link {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--color-silver);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-white);
  background: rgba(227, 24, 55, 0.12);
}

.nav-caret::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.4rem;
  vertical-align: middle;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
}

@media (min-width: 1024px) {
  .nav-caret::after {
    margin-left: 0.35rem;
  }
}

button.nav-link {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

@media (min-width: 1024px) {
  button.nav-link.nav-caret {
    width: auto;
  }
}

.nav-item-has-sub {
  position: relative;
}

.nav-sub {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0.35rem 0.75rem;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-item-has-sub.is-sub-open .nav-sub {
  display: flex;
}

@media (min-width: 1024px) {
  .nav-sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    padding: 0.5rem;
    background: var(--color-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: none;
    z-index: 50;
  }

  .nav-item-has-sub:hover .nav-sub,
  .nav-item-has-sub:focus-within .nav-sub {
    display: flex;
  }

  .nav-item-has-sub.is-sub-open .nav-sub {
    display: flex;
  }

  .nav-sub a {
    display: block;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--color-silver);
    font-weight: 600;
    font-size: 0.88rem;
  }

  .nav-sub a:hover {
    background: rgba(227, 24, 55, 0.15);
    color: var(--color-white);
  }
}

.nav-phone {
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .nav-phone {
    margin-top: 0;
    margin-left: 0.35rem;
  }
}

.nav-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-red), #9a0f24);
  color: var(--color-white) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-tel:hover {
  filter: brightness(1.08);
  color: var(--color-white) !important;
}

.nav-tel-icon {
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--color-border);
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(227, 24, 55, 0.18), transparent);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  color: var(--color-white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-style: italic;
}

.page-hero p {
  margin: 0;
  max-width: 52ch;
  color: var(--color-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-red), #9a0f24);
  color: var(--color-white);
}

.btn-primary:hover {
  filter: brightness(1.1);
  color: var(--color-white);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-red);
  color: var(--color-red-hover);
}

/* Home hero */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--color-bg);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 70% 20%, rgba(227, 24, 55, 0.12), transparent 55%),
    linear-gradient(105deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.65) 45%, rgba(0, 0, 0, 0.55) 100%),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2000&q=80")
      center / cover no-repeat;
  z-index: 0;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    from 0deg at 50% 120%,
    transparent 0deg 4deg,
    rgba(255, 255, 255, 0.02) 4deg 8deg
  );
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.home-hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr min(420px, 38vw);
    align-items: stretch;
  }
}

@media (min-width: 1440px) {
  :root {
    --container: min(1320px, 90vw);
  }

  .hero-grid {
    grid-template-columns: 1.1fr min(440px, 36vw);
    gap: 3.5rem;
  }
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-style: italic;
  color: var(--color-white);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.hero-copy .hero-accent {
  display: block;
  color: var(--color-red);
  font-style: normal;
  font-size: 0.42em;
  letter-spacing: 0.28em;
  margin-top: 0.35rem;
}

.hero-lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-silver);
  border: 1px solid var(--color-border);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
}

/* Card / form */
.card {
  background: rgba(12, 12, 12, 0.88);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-sub {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-row-2 {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 480px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-white);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--color-red);
  outline-offset: 1px;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-hint {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.form-hint a {
  color: var(--color-red-hover);
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-alt {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
}

.section-kicker a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.section-kicker a:hover {
  color: var(--color-red-hover);
}

.section-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  font-style: italic;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-desc {
  margin: 0;
  color: var(--color-muted);
}

/* About home */
.about-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
  }
}

.about-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  margin: 0;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-page-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 21/9;
  max-height: min(70vh, 520px);
  box-shadow: var(--shadow);
}

.about-page-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-photo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .service-photo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prose p {
  margin: 0 0 1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* Service cards */
.service-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1440px) {
  .service-grid {
    gap: 1.5rem;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--color-elevated);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: rgba(227, 24, 55, 0.45);
  transform: translateY(-3px);
  color: inherit;
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-card p {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.service-card .link-arrow {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red);
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
}

@media (min-width: 1440px) {
  .gallery-grid {
    gap: 1rem;
  }
}

.gallery-cell {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-cell:hover img {
  transform: scale(1.05);
}

/* Reviews */
.review-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--color-elevated);
  border: 1px solid var(--color-border);
}

.review-stars {
  color: var(--color-red);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.review-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--color-silver);
}

.review-author {
  margin: 0;
  font-weight: 700;
  color: var(--color-white);
  font-size: 0.88rem;
}

.review-meta {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* FAQ */
.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-elevated);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: transparent;
  border: none;
  color: var(--color-white);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-q::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-red);
  flex-shrink: 0;
}

.faq-item.is-open .faq-q::after {
  content: "−";
}

.faq-a {
  display: none;
  padding: 0 1.15rem 1rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.faq-item.is-open .faq-a {
  display: block;
}

.faq-a a {
  font-weight: 600;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  max-width: 36ch;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}

.footer-logo-link img {
  border-radius: 50%;
}

.footer-heading {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-red);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a {
  color: var(--color-silver);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 0;
  background: #080808;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-muted);
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-legal a {
  color: var(--color-muted);
  text-decoration: none;
  margin-right: 0.35rem;
}

.footer-legal a:hover {
  color: var(--color-red-hover);
}

/* Content pages */
.content-block {
  max-width: 720px;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block ul {
  padding-left: 1.2rem;
  color: var(--color-muted);
}

.content-block li {
  margin-bottom: 0.5rem;
}

.related-bar {
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-elevated);
}

.related-bar h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.related-links a {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-silver);
}

.related-links a:hover {
  border-color: var(--color-red);
  color: var(--color-white);
}

/* Portfolio page grid */
.portfolio-masonry {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .portfolio-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .portfolio-masonry {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 3/4;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact page */
.contact-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 280px;
  background: var(--color-elevated);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

@media (min-width: 900px) {
  .map-embed iframe {
    height: 100%;
    min-height: 420px;
  }
}

.hours-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--color-border);
}

.hours-list span:first-child {
  color: var(--color-silver);
  font-weight: 600;
}
