* {
  box-sizing: border-box;
}

:root {
  --page-bg: #0e0e0e;
  --header-bg: #141414;
  --card-bg: #1a1a1a;
  --card-border: rgba(245, 209, 0, 0.18);
  --text-main: #f0f0f0;
  --text-soft: #a0a0a0;
  --yellow: #F5D100;
  --yellow-bright: #FFE033;
  --yellow-dark: #c9a900;
  --shadow-yellow: 0 0 28px rgba(245, 209, 0, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--text-main);
  font-family: "Inter", "Poppins", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 0 40px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 36px;
  height: 92px;
  background: var(--header-bg);
  border-bottom: 2px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: clamp(56px, 10vw, 76px);
  width: auto;
  display: block;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.brand:hover .brand-logo {
  filter: brightness(1.15) drop-shadow(0 0 10px rgba(240, 165, 0, 0.5));
  transform: scale(1.03);
}

.brand-mark {
  display: none;
}

.brand-text {
  display: none;
}

/* Hamburger + backdrop: desktop only hides them */
.nav-toggle {
  display: none;
  box-sizing: border-box;
}

.nav-backdrop {
  display: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 20px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.site-nav > a {
  position: relative;
  padding: 4px 0 6px;
  color: #c8c8c8;
  transition: color 0.2s;
}

.site-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.25s ease;
}

.site-nav > a:hover,
.site-nav > a.is-active {
  color: var(--yellow);
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding: 4px 0 6px;
  color: #c8c8c8;
  transition: color 0.2s;
}

.nav-dropdown > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.25s ease;
}

.nav-dropdown > a:hover,
.nav-dropdown > a.is-active {
  color: var(--yellow);
}

.nav-dropdown > a:hover::after,
.nav-dropdown > a.is-active::after {
  width: 100%;
}

.nav-caret {
  font-size: 0.65em;
  opacity: 0.6;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 240px;
  padding: 10px 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  background: #1c1c1c;
  border: 1px solid rgba(245,209,0,0.25);
  border-top: 2px solid var(--yellow);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  transform: translateX(-50%);
  z-index: 200;
  border-radius: 0 0 8px 8px;
}

.dropdown-menu a {
  padding: 9px 14px;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #c8c8c8;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a.is-active {
  color: var(--yellow);
  background: rgba(245,209,0,0.08);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: flex;
}


/* CONTENT CARD */
.content-card {
  background: var(--card-bg);
  border: 1px solid rgba(245,209,0,0.1);
  border-top: none;
  padding: 40px 48px 48px;
  min-height: 78vh;
  margin: 0 24px 24px;
  border-radius: 0 0 12px 12px;
}

.content-card.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.content-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(290px, 1fr);
  gap: 48px;
  align-items: start;
}

.about-copy {
  max-width: 840px;
}

.page-title {
  margin: 0 0 20px;
  font-size: 2.4rem;
  font-weight: 800;
  font-family: "Oswald", "Inter", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-main);
  position: relative;
  padding-bottom: 16px;
}

.page-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.about-copy p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.contact-callout {
  margin-top: 34px;
  background: rgba(245, 209, 0, 0.07);
  border: 1px solid rgba(245, 209, 0, 0.3);
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  padding: 20px 24px;
}

.callout-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--yellow);
  margin-bottom: 8px;
  font-family: "Oswald", "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.callout-hours {
  margin-top: 10px;
  font-style: italic;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.about-visual {
  padding-top: 10px;
  position: sticky;
  top: 108px;
}

/* Replaced decorative interior with electrical-themed card */
.visual-card {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(245,209,0,0.25);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #1c1c1c 0%, #111111 100%);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,209,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  gap: 1.5rem;
  text-align: center;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 40px,
      rgba(245,209,0,0.02) 40px,
      rgba(245,209,0,0.02) 41px
    );
}

/* lightning bolt decorative element */
.visual-card::after {
  content: "\26A1";
  position: absolute;
  font-size: 9rem;
  opacity: 0.04;
  color: var(--yellow);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.visual-window {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 30px rgba(245,209,0,0.4);
  animation: pulseYellow 3s ease-in-out infinite;
}

.visual-window::before,
.visual-window::after {
  display: none;
}

.visual-light {
  display: none;
}

.visual-light-1,
.visual-light-2,
.visual-light-3 {
  display: none;
}

.visual-counter {
  position: absolute;
  right: 32px;
  bottom: 82px;
  width: 150px;
  height: 96px;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(to bottom, #58463b 0 14%, #2f2723 14% 100%);
  box-shadow: -10px 8px 0 rgba(0, 0, 0, 0.12);
}

.visual-counter::before {
  content: "";
  position: absolute;
  left: -26px;
  bottom: 22px;
  width: 46px;
  height: 28px;
  border-radius: 6px;
  background: #1f1b1a;
}

.visual-sofa {
  display: none;
}

.visual-sofa::before,
.visual-sofa::after {
  display: none;
}

/* VISUAL CARD STATS (inside .visual-card) */
.visual-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.visual-stat {
  background: rgba(245,209,0,0.06);
  border: 1px solid rgba(245,209,0,0.15);
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
}

.visual-stat .vs-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--yellow);
  font-family: "Oswald", sans-serif;
  line-height: 1;
}

.visual-stat .vs-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-soft);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.visual-tagline {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  color: var(--text-soft);
  font-style: italic;
  max-width: 200px;
}

.site-footer {
  padding: 24px 24px 20px;
  font-size: 0.78rem;
  color: var(--text-soft);
  font-family: "Inter", Arial, sans-serif;
  background: #0a0a0a;
  border-top: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: var(--yellow);
  transition: opacity 0.2s;
}

.site-footer a:hover {
  opacity: 0.8;
}

.stack-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-intro {
  max-width: 840px;
}

.page-intro p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 180px));
  gap: 14px;
  align-items: start;
  justify-content: center;
  margin-top: 8px;
}

.press-card {
  min-height: 212px;
  border: 1px solid rgba(245,209,0,0.15);
  background: var(--card-bg);
  box-shadow: 0 12px 22px rgba(0,0,0,0.3);
  overflow: hidden;
}

.press-card-tall {
  min-height: 238px;
}

.press-card-short {
  min-height: 196px;
}

.press-cover {
  height: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.press-cover h2,
.press-cover h3,
.press-cover p,
.press-cover span {
  margin: 0;
}

.gallery-cover {
  background:
    linear-gradient(to bottom, #fff 0 18%, #ece6dd 18% 100%);
}

.gallery-cover .masthead {
  text-align: center;
  color: #8d3640;
  font-size: 1.4rem;
  font-weight: 600;
}

.gallery-cover .room-preview {
  height: 92px;
  margin: 10px 0 12px;
  background:
    linear-gradient(to bottom, #764c32 0 26%, #ece7df 26% 100%);
  border: 1px solid #bea58a;
  position: relative;
}

.gallery-cover .room-preview::before {
  content: "";
  position: absolute;
  inset: 22px 18px 16px;
  background: linear-gradient(90deg, #2f3e69 0 38%, #c8b08f 38% 100%);
}

.gallery-cover .caption {
  text-align: center;
  font-size: 0.9rem;
  color: #574d45;
}

.newyork-cover {
  color: #f7f4ee;
  background:
    linear-gradient(to bottom, #1e1616 0 24%, #3d2c24 24% 48%, #2e2622 48% 100%);
}

.newyork-cover .small {
  font-size: 0.58rem;
  text-align: center;
}

.newyork-cover .brand-title {
  font-size: 2rem;
  text-align: center;
  font-style: italic;
}

.newyork-cover .room-mini {
  height: 96px;
  background:
    linear-gradient(to bottom, #c7beb1 0 35%, #866d5a 35% 40%, #49392d 40% 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.chapter-cover {
  background:
    linear-gradient(145deg, #f5f4f0 0 46%, #d6d7d3 46% 100%);
  color: #574e47;
}

.chapter-cover .title {
  font-size: 2rem;
  line-height: 0.9;
}

.chapter-cover .interior {
  height: 124px;
  background:
    linear-gradient(120deg, #e8e5df 0 40%, #fdfcf8 40% 58%, #bcc5bf 58% 100%);
  border: 1px solid #ddd4ca;
}

.veranda-cover {
  color: #b4252d;
  background:
    linear-gradient(to bottom, #f8f6ef 0 32%, #d84a4d 32% 34%, #f3d8b9 34% 100%);
}

.veranda-cover .brand-title {
  font-size: 2.2rem;
  line-height: 0.9;
}

.veranda-cover .dining-scene {
  flex: 1;
  margin-top: 12px;
  background:
    linear-gradient(135deg, #f6efdc 0 42%, #f1c95e 42% 50%, #ffffff 50% 62%, #d9444a 62% 100%);
  border: 1px solid rgba(180, 68, 75, 0.22);
}

.liss-cover {
  color: #f0f2f5;
  background: #4b6f9f;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.liss-cover .title {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.liss-cover .big {
  font-size: 3.8rem;
  line-height: 0.9;
}

.liss-cover .copy {
  max-width: 120px;
  font-size: 0.58rem;
}

.old-list-cover {
  background: #f8f6ef;
  color: #2f2b28;
}

.old-list-cover .title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
}

.old-list-cover .door-scene {
  height: 118px;
  margin-top: 10px;
  background:
    linear-gradient(to bottom, #efece7 0 20%, #ffffff 20% 100%);
  border: 1px solid #d9d1c4;
  position: relative;
}

.old-list-cover .door-scene::before {
  content: "";
  position: absolute;
  inset: 16px 48px;
  background: #c08178;
  box-shadow:
    -18px 0 0 #f2eee8,
    18px 0 0 #f2eee8;
}

.certificate-column {
  width: min(100%, 320px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.certificate-card {
  background: #fbfaf6;
  border: 1px solid rgba(69, 57, 44, 0.18);
  box-shadow: 0 10px 22px rgba(58, 49, 40, 0.08);
  overflow: hidden;
}

.license-card {
  padding: 10px;
}

.license-top {
  display: grid;
  grid-template-columns: 1fr 76px;
  gap: 10px;
  padding: 10px;
  background:
    linear-gradient(135deg, #97b2d0 0, #77a0c7 38%, #d7d6cd 38%, #bed0e3 100%);
  border: 1px solid #7e96af;
}

.license-photo {
  background:
    radial-gradient(circle at 45% 30%, #f6d6b6 0 12%, #8e5a40 13% 22%, #456789 23% 100%);
  border: 1px solid rgba(0, 0, 0, 0.16);
}

.license-lines p,
.license-bottom p,
.certificate-info p {
  margin: 0 0 6px;
  font-size: 0.78rem;
  line-height: 1.3;
  color: #3f3b35;
}

.license-lines strong,
.license-bottom strong {
  display: inline-block;
  min-width: 82px;
}

.license-bottom {
  margin-top: 10px;
  padding: 12px 10px 20px;
  border: 1px solid rgba(69, 57, 44, 0.2);
  position: relative;
}

.license-bottom::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 14px;
  background:
    repeating-linear-gradient(
      90deg,
      #111 0 2px,
      #fff 2px 4px,
      #111 4px 6px,
      #fff 6px 8px
    );
}

.training-card {
  padding: 14px 16px;
  background:
    linear-gradient(to bottom, #fcf5cf 0 28%, #fffef9 28% 100%);
}

.certificate-heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.certificate-subheading {
  text-align: center;
  font-size: 0.94rem;
  color: #5d584f;
}

.training-badges {
  display: flex;
  justify-content: space-between;
  margin: 14px 0;
}

.badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle, #f9ef92 0 35%, #d46c24 36% 100%);
}

.badge.right {
  background: radial-gradient(circle, #f7e6a3 0 35%, #4f4ea6 36% 100%);
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 340px;
}

.testimonial-header .eyebrow {
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: none;
}

.testimonial-header .mag-name {
  font-size: 3.2rem;
  line-height: 0.9;
  font-style: italic;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.testimonial-card {
  max-width: 980px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  box-shadow: 0 6px 14px rgba(57, 48, 40, 0.06);
}

.testimonial-card p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.42;
  color: #4d473f;
}

.testimonial-card .source {
  margin-top: 10px;
}

.testimonial-link {
  display: inline-block;
  margin-top: 8px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.82rem;
  color: #425d9c;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 54px;
  align-items: start;
}

.directory-wrap {
  max-width: 1100px;
}

.project-wrap {
  max-width: 1120px;
}

.project-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.project-subtitle {
  margin: 0;
  font-size: 1rem;
  font-style: italic;
  color: #4d473f;
}

.project-grid {
  display: grid;
  gap: 4px;
  align-items: start;
}

.project-grid.cols-5 {
  grid-template-columns: repeat(5, minmax(120px, 1fr));
}

.project-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(150px, 1fr));
}

.project-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.project-card figcaption {
  font-size: 0.9rem;
  line-height: 1.2;
  color: #6b4a2d;
}

.project-thumb {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(102, 92, 76, 0.2);
  box-shadow: 0 10px 18px rgba(57, 48, 40, 0.06);
  background: linear-gradient(135deg, #ddd7cb 0, #b7b8b3 100%);
  overflow: hidden;
}

.project-thumb.landscape {
  aspect-ratio: 1.45 / 1;
}

.project-thumb::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}

.scene-door::before {
  background:
    linear-gradient(to bottom, #f1eee8 0 20%, #ffffff 20% 100%),
    linear-gradient(90deg, transparent 0 34%, #b44c42 34% 62%, transparent 62% 100%);
}

.scene-dining::before {
  background:
    linear-gradient(135deg, #f6efdc 0 42%, #f1c95e 42% 50%, #ffffff 50% 62%, #d9444a 62% 100%);
}

.scene-living::before {
  background:
    linear-gradient(135deg, #ebe8e1 0 34%, #d1d7da 34% 60%, #9f9f99 60% 100%);
}

.scene-bedroom::before {
  background:
    linear-gradient(to bottom, #ece6dd 0 30%, #d8cab7 30% 62%, #c6b49f 62% 100%);
}

.scene-kitchen::before {
  background:
    linear-gradient(135deg, #f4f4ef 0 40%, #dce7e4 40% 66%, #a98c68 66% 100%);
}

.scene-retail::before {
  background:
    linear-gradient(135deg, #ebe4da 0 18%, #f7f4ef 18% 34%, #d3d0c9 34% 62%, #b68758 62% 100%);
}

.scene-coffee::before {
  background:
    linear-gradient(135deg, #3c3028 0 22%, #8d6b45 22% 38%, #d8d1c5 38% 62%, #5d4a39 62% 100%);
}

.scene-wood::before {
  background:
    linear-gradient(135deg, #5b3f2d 0 34%, #8f6f49 34% 52%, #d5c6ad 52% 100%);
}

.scene-industrial::before {
  background:
    linear-gradient(135deg, #8f8171 0 10%, #353638 10% 28%, #d1d4cf 28% 50%, #6d7f6e 50% 100%);
}

.scene-sidewalk::before {
  background:
    linear-gradient(135deg, #7e7b68 0 18%, #4c8f4d 18% 36%, #bda57d 36% 68%, #f2f0eb 68% 100%);
}

.starbucks-panel {
  max-width: 360px;
  margin: 0 auto 18px;
  text-align: center;
  color: #2b6642;
}

.starbucks-logo {
  margin: 0 0 10px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.starbucks-panel p {
  margin: 0 0 6px;
  font-size: 0.98rem;
  line-height: 1.35;
  color: #4d473f;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 10px 22px;
  max-width: 980px;
}

.video-card {
  position: relative;
  aspect-ratio: 1.4 / 1;
  border: 1px solid rgba(69, 57, 44, 0.18);
  overflow: hidden;
  box-shadow: 0 12px 20px rgba(57, 48, 40, 0.08);
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.16) 0 100%),
    linear-gradient(135deg, #807365 0 16%, #404347 16% 44%, #c3c4bd 44% 68%, #697763 68% 100%);
}

.video-card .video-label {
  position: absolute;
  left: 12px;
  top: 10px;
  right: 12px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.92);
}

.video-card .play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 38px;
  border-radius: 12px;
  background: #ff163d;
  transform: translate(-50%, -50%);
}

.video-card .play-button::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 10px;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.video-card .video-footer {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.92);
}

.directory-grid {
  display: grid;
  gap: 34px;
  align-items: start;
}

.directory-grid.two-columns {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.directory-grid.three-columns {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.name-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.name-list li {
  margin: 0 0 10px;
  font-size: 1.02rem;
  line-height: 1.25;
  color: #4d473f;
}

.contact-copy {
  max-width: 650px;
}

.contact-copy p {
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.45;
  color: var(--text-soft);
}

.contact-copy .spacer {
  margin-top: 22px;
}

.contact-visual {
  padding-top: 26px;
}

.van-card {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid rgba(245, 209, 0, 0.25);
  border-radius: 10px;
  background: var(--card-bg);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.van-photo {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: contain;
  background: #0a0a0a;
}

.van-card-caption {
  padding: 14px 16px 16px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  line-height: 1.55;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-align: center;
  border-top: 1px solid rgba(245, 209, 0, 0.2);
}

.van-card-caption a {
  color: var(--yellow);
  font-weight: 600;
}

.van-card-caption a:hover {
  opacity: 0.9;
}

.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CONTACT COPY LINKS ===== */
.contact-copy a {
  color: var(--yellow);
  transition: opacity 0.2s;
}
.contact-copy a:hover {
  opacity: 0.8;
}
.contact-copy .spacer {
  margin-top: 20px;
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes pulseYellow {
  0%, 100% { box-shadow: 0 0 20px rgba(245,209,0,0.4); }
  50%       { box-shadow: 0 0 40px rgba(245,209,0,0.8); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== CONTACT PAGE UPDATES ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-copy p,
.contact-copy li {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-copy h2 {
  font-family: "Oswald", "Inter", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 1rem;
}

/* ===== GALLERY / PROJECT PAGES ===== */
.project-card figcaption {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.project-grid {
  display: grid;
  gap: 16px;
}

.project-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.project-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.project-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }

.project-card {
  border: 1px solid rgba(245,209,0,0.12);
  border-radius: 8px;
  overflow: hidden;
  background: var(--card-bg);
  transition: transform 0.2s, border-color 0.2s;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,209,0,0.35);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid rgba(245,209,0,0.15);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
  font-style: italic;
}

/* ===== CERTIFICATE PAGE ===== */
.certificate-column {
  width: min(100%, 320px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.certificate-card {
  background: var(--card-bg);
  border: 1px solid rgba(245,209,0,0.18);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.license-lines p,
.license-bottom p,
.certificate-info p {
  margin: 0 0 6px;
  font-size: 0.78rem;
  line-height: 1.3;
  color: var(--text-soft);
}

/* ===== NAME / DIRECTORY LISTS ===== */
.name-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.name-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(245,209,0,0.08);
  color: var(--text-soft);
  font-size: 1rem;
}

.name-list li:last-child { border-bottom: none; }

.directory-grid {
  display: grid;
  gap: 0;
}

.directory-grid.two-columns   { grid-template-columns: 1fr 1fr; }
.directory-grid.three-columns { grid-template-columns: 1fr 1fr 1fr; }

/* ===== HEADINGS ACROSS ALL PAGES ===== */
h1, h2, h3 {
  color: var(--text-main);
}

h2 {
  font-family: "Oswald", "Inter", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

strong {
  color: var(--text-main);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .site-header {
    flex-wrap: wrap;
    height: auto;
    padding: 14px 20px;
    gap: 12px;
  }

  .site-nav {
    justify-content: flex-start;
    order: 3;
    width: 100%;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-visual {
    position: static;
    padding-top: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .press-grid {
    grid-template-columns: repeat(2, minmax(140px, 180px));
  }

  .directory-grid.two-columns,
  .directory-grid.three-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .project-grid.cols-5,
  .project-grid.cols-4,
  .project-grid.cols-3 {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Fixed top bar: logo left, menu button right */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: 72px;
    min-height: 72px;
    max-height: 72px;
    padding: 0 14px;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    overflow: visible;
  }

  .brand {
    flex-shrink: 0;
  }

  .brand-logo {
    height: 52px;
    max-height: 52px;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    margin-left: auto;
    background: transparent;
    border: 1px solid rgba(245, 209, 0, 0.4);
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1103;
    transition: border-color 0.2s, background 0.2s;
  }

  .nav-toggle:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
  }

  .nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--yellow);
    border-radius: 1px;
    transition: transform 0.28s ease, opacity 0.2s ease;
  }

  body.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.nav-open .nav-toggle {
    border-color: var(--yellow);
    background: rgba(245, 209, 0, 0.08);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    border: none;
    padding: 0;
    margin: 0;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  body.nav-open {
    overflow: hidden;
  }

  .page-shell {
    padding: 72px 0 24px;
  }

  /* Slide-in panel from the left */
  .site-nav {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    width: min(300px, 88vw);
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    margin: 0;
    padding: 8px 0 28px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: #101010;
    border-right: 2px solid var(--yellow);
    box-shadow: 12px 0 40px rgba(0, 0, 0, 0.45);
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1101;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    order: 0;
  }

  body.nav-open .site-nav {
    transform: translateX(0);
  }

  .site-nav > a {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav > a::after {
    display: none;
  }

  .nav-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown > a {
    padding: 14px 16px;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
  }

  .nav-dropdown > a::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    display: none;
    transform: none;
    min-width: 0;
    margin: 0 0 4px 0;
    padding: 4px 8px 12px 18px;
    border: none;
    border-left: 2px solid rgba(245, 209, 0, 0.25);
    margin-left: 16px;
    box-shadow: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.28);
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: flex;
  }

  .dropdown-menu a {
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .nav-dropdown > a .nav-caret {
    transition: transform 0.2s ease;
  }

  .nav-dropdown.is-open > a .nav-caret {
    transform: rotate(-180deg);
  }

  .content-card {
    padding: 20px 16px 28px;
    margin: 0 8px 12px;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .about-copy p {
    font-size: 0.95rem;
  }

  .visual-card {
    min-height: 260px;
  }

  .press-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .project-grid.cols-5,
  .project-grid.cols-4,
  .project-grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .certificate-column {
    width: 100%;
  }
}
