:root {
  --c-bg: #0d0d0d;
  --c-surface: #161616;
  --c-surface-2: #1e1e1e;
  --c-accent: #d4420a;
  --c-accent-hover: #b83608;
  --c-accent-light: #f5623a;
  --c-gold: #c9a227;
  --c-text: #e8e4df;
  --c-text-muted: #9a9490;
  --c-text-inv: #0d0d0d;
  --c-border: #2a2a2a;
  --c-header-bg: rgba(13,13,13,0.96);

  --ff-display: 'Barlow Condensed', sans-serif;
  --ff-body: 'Barlow', sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;

  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 7rem;

  --container: 1200px;
  --header-h: 68px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-body);
  font-size: clamp(0.95rem, 1vw + 0.6rem, 1.05rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--c-accent-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--c-accent); }
a:focus-visible { outline: 2px solid var(--c-accent-light); outline-offset: 3px; border-radius: var(--r-sm); }

ul { list-style: none; }

.container {
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--r-sm);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--c-accent-light); outline-offset: 3px; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--c-accent);
  color: #fff;
  border: 2px solid var(--c-accent);
}
.btn-primary:hover { background: var(--c-accent-hover); border-color: var(--c-accent-hover); color: #fff; }

.btn-secondary {
  background: transparent;
  color: var(--c-accent-light);
  border: 2px solid var(--c-accent-light);
}
.btn-secondary:hover { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

.btn-ghost-dark {
  background: transparent;
  color: var(--c-bg);
  border: 2px solid var(--c-bg);
}
.btn-ghost-dark:hover { background: var(--c-bg); color: var(--c-text); }

.btn-cta {
  background: var(--c-accent);
  color: #fff !important;
  border: 2px solid var(--c-accent);
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
}
.btn-cta:hover { background: var(--c-accent-hover); border-color: var(--c-accent-hover); color: #fff !important; }

.eyebrow, .hero-eyebrow {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent-light);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-lg);
}
.section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
  color: var(--c-text);
}
.section-header--light h2 { color: #fff; }
.section-header--light .section-sub { color: rgba(255,255,255,0.75); }
.section-sub {
  color: var(--c-text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--c-text) !important;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--c-text);
}
.logo-text strong { color: #fff; font-weight: 800; }
.logo:hover .logo-text { color: var(--c-text-muted); }

nav[aria-label="Primary navigation"] ul[data-pn-nav="primary"] {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
nav[aria-label="Primary navigation"] ul[data-pn-nav="primary"] > li > a {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
nav[aria-label="Primary navigation"] ul[data-pn-nav="primary"] > li > a:hover { color: #fff; background: var(--c-surface-2); }
nav[aria-label="Primary navigation"] ul[data-pn-nav="primary"] > li > a[aria-current="page"] { color: #fff; }
nav[aria-label="Primary navigation"] ul[data-pn-nav="primary"] > li[data-pn-cta] { margin-left: 0.5rem; }

.hero {
  position: relative;
  min-height: clamp(540px, 88vh, 900px);
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-xl);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,0.97) 0%,
    rgba(13,13,13,0.65) 45%,
    rgba(13,13,13,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-eyebrow { color: var(--c-accent-light); }
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw + 1.5rem, 7rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: var(--sp-md);
}
.hero-sub {
  color: rgba(232,228,223,0.82);
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.15rem);
  max-width: 560px;
  margin-bottom: var(--sp-lg);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--sp-lg);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  backdrop-filter: blur(6px);
  width: fit-content;
}
.badge {
  display: flex;
  flex-direction: column;
  padding: 0 1.2rem;
}
.badge:first-child { padding-left: 0; }
.badge-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-accent-light);
  line-height: 1;
}
.badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-top: 0.15rem;
}
.badge-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

.intro {
  padding: var(--sp-2xl) auto;
  padding-block: var(--sp-2xl);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: center;
}
@media (min-width: 768px) {
  .intro-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
}
.intro-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 2.5vw + 1rem, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--sp-sm);
}
.intro-text p {
  color: var(--c-text-muted);
  margin-bottom: var(--sp-sm);
}
.intro-text a { color: var(--c-accent-light); }
.intro-text a:hover { color: var(--c-accent); }
.intro-text .btn { margin-top: var(--sp-xs); }
.intro-image {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  position: relative;
}
.intro-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(212,66,10,0.2);
}

.services {
  background: var(--c-surface);
  padding-block: var(--sp-2xl);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.services .section-header h2 { color: #fff; }
.services .section-sub { color: var(--c-text-muted); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 540px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--c-surface-2);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  transition: background 0.2s;
}
.service-card:hover { background: #222; }
.service-card--wide {
  grid-column: 1 / -1;
}
.service-icon {
  width: 40px;
  height: 40px;
  color: var(--c-accent);
  margin-bottom: 0.85rem;
  flex-shrink: 0;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.4rem;
}
.service-card p { color: var(--c-text-muted); font-size: 0.93rem; line-height: 1.6; }

.custom-fab {
  padding-block: 0;
  overflow: hidden;
}
.custom-fab-inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
}
@media (min-width: 768px) {
  .custom-fab-inner { grid-template-columns: 1fr 1fr; }
}
.custom-fab-image {
  position: relative;
  min-height: 340px;
}
.custom-fab-image img {
  height: 100%;
  min-height: 340px;
}
.custom-fab-content {
  background: var(--c-accent);
  padding: clamp(2rem, 6vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-sm);
}
.custom-fab-content .eyebrow { color: rgba(255,255,255,0.7); }
.custom-fab-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
}
.custom-fab-content p { color: rgba(255,255,255,0.88); font-size: 0.97rem; }
.fab-list {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.fab-list li {
  color: rgba(255,255,255,0.9);
  font-size: 0.93rem;
  padding-left: 1.25rem;
  position: relative;
}
.fab-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
}
.custom-fab-content .btn-primary {
  background: #fff;
  border-color: #fff;
  color: var(--c-accent);
  width: fit-content;
  margin-top: 0.5rem;
}
.custom-fab-content .btn-primary:hover {
  background: var(--c-bg);
  border-color: var(--c-bg);
  color: #fff;
}

.performance {
  background: var(--c-surface);
  padding-block: var(--sp-2xl);
  border-top: 1px solid var(--c-border);
}
.perf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-sm);
}
@media (min-width: 600px) { .perf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .perf-grid { grid-template-columns: repeat(3, 1fr); } }
.perf-card {
  background: var(--c-surface-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.perf-card:hover { border-color: var(--c-accent); transform: translateY(-3px); }
.perf-card > img {
  aspect-ratio: 16/10;
  width: 100%;
  flex-shrink: 0;
}
.perf-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}
.perf-card-body h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 0.4rem;
}
.perf-card-body p { color: var(--c-text-muted); font-size: 0.93rem; line-height: 1.6; }

.cta-strip {
  background: var(--c-gold);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.cta-strip-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  align-items: flex-start;
}
@media (min-width: 720px) {
  .cta-strip-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-strip-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw + 0.8rem, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-bg);
  line-height: 1.05;
  margin-bottom: 0.35rem;
}
.cta-strip-text p { color: rgba(13,13,13,0.75); font-size: 0.97rem; max-width: 500px; }
.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cta-strip .btn-primary {
  background: var(--c-bg);
  border-color: var(--c-bg);
  color: #fff;
}
.cta-strip .btn-primary:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
}

.visit {
  padding-block: var(--sp-2xl);
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
@media (min-width: 768px) {
  .visit-grid { grid-template-columns: 1fr 1fr; }
}
.visit-info h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 2.5vw + 1rem, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--sp-md);
  line-height: 1.1;
}
.visit-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}
.visit-detail-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.75rem;
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid var(--c-border);
  font-size: 0.95rem;
}
.visit-label {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--c-accent-light);
  padding-top: 0.1rem;
}
.visit-detail-row span { color: var(--c-text-muted); }
.visit-detail-row a { color: var(--c-text-muted); }
.visit-detail-row a:hover { color: var(--c-accent-light); }
.visit-image {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
}

.site-footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding-top: var(--sp-xl);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--c-border);
}
@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .footer-inner { grid-template-columns: 1.8fr 1fr 1.5fr; }
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.logo--footer .logo-text { font-size: 1.05rem; }
.footer-tagline { font-size: 0.85rem; color: var(--c-text-muted); margin-top: 0.25rem; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-nav a {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.footer-nav a:hover { color: var(--c-accent-light); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a, .footer-contact span {
  font-size: 0.88rem;
  color: var(--c-text-muted);
}
.footer-contact a:hover { color: var(--c-accent-light); }
.footer-base {
  padding-block: var(--sp-sm);
}
.footer-base p { font-size: 0.8rem; color: var(--c-text-muted); }

@media (max-width: 680px) {
  nav[aria-label="Primary navigation"] ul[data-pn-nav="primary"] li:not([data-pn-cta]) {
    display: none;
  }
  nav[aria-label="Primary navigation"] ul[data-pn-nav="primary"] {
    justify-content: flex-end;
  }
}



.about-hero {
  position: relative;
  min-height: clamp(380px, 55vh, 600px);
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-xl);
  overflow: hidden;
}
.about-hero-media {
  position: absolute;
  inset: 0;
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,0.97) 0%,
    rgba(13,13,13,0.6) 50%,
    rgba(13,13,13,0.3) 100%
  );
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.about-hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw + 1rem, 4.5rem);
  font-weight: 800;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: var(--sp-sm);
}
.about-hero-sub {
  color: rgba(232,228,223,0.8);
  font-size: clamp(0.97rem, 1.2vw + 0.5rem, 1.1rem);
  max-width: 580px;
}

.about-story {
  padding-block: var(--sp-2xl);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: center;
}
@media (min-width: 768px) {
  .about-story-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
}
.about-story-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 2.5vw + 1rem, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--sp-sm);
}
.about-story-text p {
  color: var(--c-text-muted);
  margin-bottom: var(--sp-sm);
}
.about-story-image {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  position: relative;
}
.about-story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(212,66,10,0.2);
}

.about-pillars {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding-block: var(--sp-2xl);
}
.about-pillars .section-header h2 { color: #fff; }
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 640px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
.pillar-card {
  background: var(--c-surface-2);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: background 0.2s;
}
.pillar-card:hover { background: #222; }
.pillar-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--c-accent);
  opacity: 0.35;
  margin-bottom: 0.5rem;
}
.pillar-card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}
.pillar-card p { color: var(--c-text-muted); font-size: 0.93rem; line-height: 1.65; }

.about-split {
  padding-block: 0;
  overflow: hidden;
}
.about-split-inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
}
@media (min-width: 768px) {
  .about-split-inner { grid-template-columns: 1fr 1fr; }
}
.about-split-image {
  position: relative;
  min-height: 340px;
}
.about-split-image img {
  height: 100%;
  min-height: 340px;
}
.about-split-content {
  background: var(--c-surface);
  padding: clamp(2rem, 6vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-sm);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.about-split-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
}
.about-split-content p { color: var(--c-text-muted); font-size: 0.97rem; }

.about-classic {
  background: var(--c-bg);
  padding-block: var(--sp-2xl);
  border-top: 1px solid var(--c-border);
}
.about-classic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
@media (min-width: 768px) {
  .about-classic-grid { grid-template-columns: 1fr 1fr; }
}
.about-classic-image {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  order: -1;
}
@media (min-width: 768px) {
  .about-classic-image { order: 0; }
}
.about-classic-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 2.5vw + 1rem, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--sp-sm);
}
.about-classic-text p {
  color: var(--c-text-muted);
  margin-bottom: var(--sp-sm);
  font-size: 0.97rem;
}
.about-classic-text .btn { margin-top: 0.5rem; }

.about-services {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding-block: var(--sp-2xl);
}
.about-services .section-header h2 { color: #fff; }
.services-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.services-list-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: 1.1rem 1.4rem;
  background: var(--c-surface-2);
  border-bottom: 1px solid var(--c-border);
  transition: background 0.2s;
}
.services-list-item:last-child { border-bottom: none; }
.services-list-item:hover { background: #222; }
@media (min-width: 640px) {
  .services-list-item {
    grid-template-columns: 240px 1fr;
    gap: 1rem;
    align-items: baseline;
  }
}
.services-list-label {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  flex-shrink: 0;
}
.services-list-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--c-accent);
  border-radius: 50%;
  margin-right: 0.6rem;
  vertical-align: middle;
  margin-bottom: 2px;
}
.services-list-desc {
  color: var(--c-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}



.contact-hero {
  position: relative;
  min-height: clamp(320px, 48vh, 520px);
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-xl);
  overflow: hidden;
}
.contact-hero-media {
  position: absolute;
  inset: 0;
}
.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,0.97) 0%,
    rgba(13,13,13,0.6) 50%,
    rgba(13,13,13,0.25) 100%
  );
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.contact-hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw + 1rem, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: var(--sp-sm);
}
.contact-hero-sub {
  color: rgba(232,228,223,0.8);
  font-size: clamp(0.97rem, 1.2vw + 0.5rem, 1.1rem);
  max-width: 520px;
}

.contact-main {
  padding-block: var(--sp-2xl);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.contact-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.contact-card:hover {
  border-color: var(--c-accent);
}
.contact-card-icon {
  width: 42px;
  height: 42px;
  color: var(--c-accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.contact-card-icon svg {
  width: 100%;
  height: 100%;
}
.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-card-body h2 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.contact-card-body p {
  color: var(--c-text-muted);
  font-size: 0.91rem;
  line-height: 1.6;
  margin: 0;
}
.contact-card-link {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-accent-light);
  letter-spacing: 0.02em;
  margin-top: 0.2rem;
  transition: color 0.2s;
  display: inline-block;
}
.contact-card-link:hover {
  color: var(--c-accent);
}
.contact-card-link--plain {
  color: var(--c-text-muted);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0;
  cursor: default;
}
.contact-card-link--plain:hover {
  color: var(--c-text-muted);
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.25rem;
}
.hours-row {
  display: flex;
  gap: 1.5rem;
  font-size: 0.92rem;
}
.hours-day {
  color: var(--c-text-muted);
  min-width: 80px;
}
.hours-time {
  color: var(--c-text);
  font-weight: 600;
}
.hours-closed {
  color: var(--c-text-muted);
  font-weight: 400;
}

.contact-quote-panel {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.contact-quote-header {
  margin-bottom: var(--sp-md);
}
.contact-quote-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw + 0.8rem, 2.1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.contact-quote-header p {
  color: var(--c-text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.quote-checklist {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--sp-md);
  list-style: none;
  border-top: 1px solid var(--c-border);
}
.quote-checklist li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-border);
}
.qc-num {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 0.15rem;
  min-width: 2rem;
}
.quote-checklist li div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.quote-checklist li strong {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.quote-checklist li span {
  color: var(--c-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.quote-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-map-section {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding-block: var(--sp-2xl);
}
.contact-map-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
@media (min-width: 768px) {
  .contact-map-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-map-image {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.contact-map-info h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 2.5vw + 1rem, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.contact-map-info > p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: var(--sp-md);
}
.map-detail-rows {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.services-summary {
  background: var(--c-bg);
  padding-block: var(--sp-2xl);
}
.services-summary .section-header h2 {
  color: #fff;
}
.services-summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  list-style: none;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-border);
}
@media (min-width: 540px) {
  .services-summary-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .services-summary-grid { grid-template-columns: repeat(3, 1fr); }
}
.services-summary-grid li {
  background: var(--c-surface);
  padding: 1rem 1.25rem 1rem 1.75rem;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.services-summary-grid li::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--c-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.services-summary-grid li:hover {
  background: var(--c-surface-2);
  color: #fff;
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}

/* pn-article-styles:begin */
.pn-article *,
.pn-article *::before,
.pn-article *::after {
  box-sizing: border-box;
}

.pn-article {
  width: min(720px, 100% - 2rem);
  margin-inline: auto;
  padding-top: calc(var(--header-h, 5rem) + var(--sp-lg));
  padding-bottom: var(--sp-2xl);
  font-family: var(--ff-body);
  color: var(--c-text);
  overflow-wrap: break-word;
}

.pn-article__head {
  margin-bottom: var(--sp-lg);
}

.pn-article__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw + 1rem, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: var(--sp-sm);
}

.pn-article__byline {
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  align-items: center;
}

.pn-article__byline a {
  color: var(--c-accent-light);
}

.pn-article__byline a:hover {
  color: var(--c-accent);
}

.pn-article__hero {
  margin-bottom: var(--sp-lg);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  position: relative;
  background: var(--c-surface);
}

.pn-article__hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.pn-article__hero .photo-credit {
  display: block;
  padding: 0.4rem 0.75rem;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: var(--c-text-muted);
  background: var(--c-surface);
  letter-spacing: 0.03em;
}

.pn-article__body {
  font-family: var(--ff-body);
  font-size: clamp(0.97rem, 1vw + 0.6rem, 1.05rem);
  line-height: 1.75;
  color: var(--c-text);
}

.pn-article__body h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw + 0.8rem, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: #fff;
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
}

.pn-article__body h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2vw + 0.6rem, 1.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: #fff;
  margin-top: var(--sp-lg);
  margin-bottom: var(--sp-xs);
}

.pn-article__body p {
  color: var(--c-text);
  margin-bottom: var(--sp-sm);
  overflow-wrap: break-word;
}

.pn-article__body a {
  color: var(--c-accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.pn-article__body a:hover {
  color: var(--c-accent);
}

.pn-article__body ul,
.pn-article__body ol {
  margin-bottom: var(--sp-sm);
  padding-left: 1.5rem;
}

.pn-article__body ul {
  list-style: none;
  padding-left: 0;
}

.pn-article__body ol {
  list-style: decimal;
}

.pn-article__body ul li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--c-text);
  margin-bottom: 0.4rem;
}

.pn-article__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  background: var(--c-accent);
  border-radius: 50%;
}

.pn-article__body ol li {
  color: var(--c-text);
  margin-bottom: 0.4rem;
  padding-left: 0.3rem;
}

.pn-article__body figure {
  margin: var(--sp-lg) 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
}

.pn-article__body figure figcaption {
  padding: 0.5rem 0.85rem;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  font-family: var(--ff-body);
  letter-spacing: 0.02em;
}

.pn-article__body img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: initial;
  border-radius: var(--r-md);
}

.pn-article__body blockquote {
  margin: var(--sp-lg) 0;
  padding: var(--sp-sm) var(--sp-md);
  border-left: 4px solid var(--c-accent);
  background: var(--c-surface);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--c-text-muted);
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.5vw + 0.6rem, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pn-article__body blockquote p {
  margin-bottom: 0;
  color: inherit;
}

.pn-article__body svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  color: var(--c-accent);
}
/* pn-article-styles:end */
