/* ============================================
   TWELVE FLOORING - Design System & Base Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Official Brand Palette */
  --ink:        #141312;
  --paper:      #f3ede3;
  --brass:      #b28747;
  --brass-dk:   #8a652e;
  --bone:       #e8e1d4;
  --slate:      #6b6460;
  --white:      #ffffff;

  /* Mapped aliases (backwards compatibility) */
  --black:      #141312;
  --warm-dark:  #1c1a18;
  --accent:     #b28747;
  --wood:       #8a652e;
  --wood-light: #b28747;
  --cream:      #f3ede3;
  --cream-dark: #e8e1d4;
  --text-muted: #6b6460;

  --font-heading: 'Inter Tight', sans-serif;
  --font-body: 'Inter Tight', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --nav-height: 80px;
  --max-width: 1200px;
  --section-padding: 120px 0;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--slate);
}

.text-muted {
  color: var(--slate);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding);
}

.section--cream {
  background-color: var(--paper);
}

.section--dark {
  background-color: var(--ink);
  color: var(--paper);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--paper);
}

.section--dark p {
  color: var(--bone);
}

/* --- Grid System --- */
.grid {
  display: grid;
  gap: 24px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

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

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

@media (max-width: 992px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn--primary {
  background-color: var(--brass);
  color: var(--ink);
}

.btn--primary:hover {
  background-color: var(--brass-dk);
  color: var(--paper);
}

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

.btn--outline:hover {
  background-color: var(--brass);
  color: var(--ink);
}

.btn--dark {
  background-color: var(--ink);
  color: var(--paper);
}

.btn--dark:hover {
  background-color: var(--warm-dark);
  color: var(--paper);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* --- Utilities --- */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* --- Page Content Offset (for fixed nav) --- */
main {
  padding-top: var(--nav-height);
}

/* --- Section Header --- */
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass);
  margin-bottom: 12px;
}

.section-subtext {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--slate);
  font-size: 1.05rem;
}

.section-link {
  font-weight: 500;
  color: var(--brass);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
}

.section-link:hover {
  color: var(--brass-dk);
  border-bottom-color: var(--brass-dk);
}

/* --- Scroll Fade-In Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- SVG Icons --- */
.icon {
  width: 22px;
  height: 22px;
  color: var(--brass);
  vertical-align: middle;
  flex-shrink: 0;
}

.icon--lg {
  width: 32px;
  height: 32px;
}

.icon--xl {
  width: 40px;
  height: 40px;
}

/* ============================================
   HOMEPAGE — MINIMAL REDESIGN
   ============================================ */

/* --- Hero Minimal --- */
.hero-minimal {
  position: relative;
  min-height: 100vh;
  background-color: var(--ink);
  display: flex;
  align-items: center;
  padding: 0 80px;
  margin-top: calc(-1 * var(--nav-height));
  padding-top: var(--nav-height);
}

.hero-minimal__brass-rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--brass);
  z-index: 1001;
}

.hero-minimal__content {
  max-width: 700px;
}

.hero-minimal__headline {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  color: var(--paper);
}

.hero-minimal__light {
  font-weight: 300;
  color: var(--paper);
}

.hero-minimal__bold {
  font-weight: 700;
  color: var(--paper);
}

.hero-minimal__accent {
  font-weight: 300;
  color: var(--brass);
}

.hero-minimal__sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--slate);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-minimal__cta {
  display: inline-block;
  font-weight: 500;
  font-size: 1rem;
  color: var(--brass);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.hero-minimal__cta:hover {
  color: var(--paper);
  border-color: var(--paper);
}

.hero-minimal__corner {
  position: absolute;
  bottom: 40px;
  right: 80px;
}

.hero-minimal__corner span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .hero-minimal {
    padding: 0 24px;
    padding-top: var(--nav-height);
  }

  .hero-minimal__corner {
    bottom: 24px;
    right: 24px;
  }

  .hero-minimal__headline {
    font-size: clamp(36px, 10vw, 56px);
  }
}

/* --- Trust Bar Minimal --- */
.trust-minimal {
  background-color: var(--ink);
  border-top: 1px solid var(--brass);
  padding: 16px 0;
}

.trust-minimal__text {
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate);
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

/* --- Services Minimal --- */
.services-minimal {
  background-color: var(--paper);
}

.services-minimal__layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
}

.services-minimal__label {
  padding-top: 4px;
}

.services-minimal__label span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass);
}

.services-minimal__list {
  border-top: 1px solid var(--bone);
}

.services-minimal__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--bone);
  transition: padding-left 0.3s ease;
}

.services-minimal__item:hover {
  padding-left: 12px;
}

.services-minimal__item:hover .services-minimal__name {
  color: var(--brass);
}

.services-minimal__num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--brass);
  flex-shrink: 0;
  width: 32px;
}

.services-minimal__name {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--ink);
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .services-minimal__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* --- Stats Minimal --- */
.stats-minimal {
  background-color: var(--bone);
  padding: 80px 0;
}

.stats-minimal__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats-minimal__number {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.stats-minimal__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  .stats-minimal__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* --- Who We Serve Minimal --- */
.serve-minimal {
  background-color: var(--paper);
}

.serve-minimal__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.serve-minimal__list {
  border-top: 1px solid var(--bone);
}

.serve-minimal__item {
  padding: 18px 0;
  border-bottom: 1px solid var(--bone);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: default;
}

.serve-minimal__item:hover {
  transform: translateX(8px);
  color: var(--brass);
}

@media (max-width: 768px) {
  .serve-minimal__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- Before & After Section --- */
.ba-section {
  background-color: var(--ink);
}

.ba-section__title {
  color: var(--paper);
  margin-bottom: 3rem;
}

.ba-pair {
  margin-bottom: 3rem;
}

.ba-pair__label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.ba-pair__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ba-pair__box {
  position: relative;
  overflow: hidden;
}

.ba-pair__box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.ba-pair__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--paper);
  background-color: rgba(20, 19, 18, 0.7);
  padding: 6px 12px;
}

.ba-section__link {
  display: inline-block;
  font-weight: 500;
  color: var(--brass);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.ba-section__link:hover {
  color: var(--paper);
  border-color: var(--paper);
}

@media (max-width: 600px) {
  .ba-pair__grid {
    grid-template-columns: 1fr;
  }

  .ba-pair__box img {
    height: 220px;
  }
}

/* --- Reviews Minimal --- */
.reviews-minimal {
  background-color: var(--paper);
}

.reviews-minimal__list {
  max-width: 700px;
  margin: 0 auto;
}

.reviews-minimal__item {
  padding: 48px 0;
  border-bottom: 1px solid var(--bone);
  position: relative;
}

.reviews-minimal__item:first-child {
  border-top: 1px solid var(--bone);
}

.reviews-minimal__quote {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--brass);
  line-height: 0;
  display: block;
  margin-bottom: 24px;
  padding-top: 32px;
}

.reviews-minimal__text {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 20px;
}

.reviews-minimal__author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.reviews-minimal__name {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
}

.reviews-minimal__role {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--slate);
}

/* --- Locations Minimal --- */
.locations-minimal {
  background-color: var(--bone);
}

.locations-minimal__title {
  margin-bottom: 2.5rem;
}

.locations-minimal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.locations-minimal__item {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid rgba(20, 19, 18, 0.1);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  transition: color 0.3s ease;
}

.locations-minimal__item:hover {
  color: var(--brass);
}

@media (max-width: 600px) {
  .locations-minimal__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Quote Section Minimal --- */
.quote-minimal {
  background-color: var(--ink);
}

.quote-minimal__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.quote-minimal__title {
  color: var(--paper);
  margin-bottom: 12px;
}

.quote-minimal__sub {
  color: var(--slate);
  margin-bottom: 3rem;
}


/* ============================================
   SHARED PAGE HERO (service / location / about / contact / projects)
   ============================================ */

.page-hero {
  background-color: var(--ink);
  padding: 60px 0 80px;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--brass);
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.page-hero .breadcrumb a {
  color: var(--bone);
}

.page-hero .breadcrumb a:hover {
  color: var(--brass);
}

.page-hero .breadcrumb span {
  color: var(--slate);
}

.page-hero .breadcrumb .separator {
  color: var(--slate);
}

.page-hero h1 {
  color: var(--paper);
  max-width: 700px;
  margin-bottom: 16px;
}

.page-hero__sub {
  color: var(--bone);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 0;
}


/* ============================================
   SERVICE PAGE STYLES
   ============================================ */

/* --- Service Hero (legacy compat) --- */
.service-hero {
  background-color: var(--ink);
  padding: 60px 0 80px;
  position: relative;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--brass);
}

.service-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.service-hero .breadcrumb a {
  color: var(--bone);
}

.service-hero .breadcrumb a:hover {
  color: var(--brass);
}

.service-hero .breadcrumb span {
  color: var(--slate);
}

.service-hero .breadcrumb .separator {
  color: var(--slate);
}

.service-hero h1 {
  color: var(--paper);
  max-width: 700px;
  margin-bottom: 16px;
}

.service-hero__sub {
  color: var(--bone);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.service-hero__pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(243, 237, 227, 0.6);
  letter-spacing: 0.05em;
}

.hero__pills .pill:not(:last-child)::after,
.service-hero__pills .pill:not(:last-child)::after {
  content: '|';
  margin-left: 12px;
  margin-right: 4px;
  color: rgba(243, 237, 227, 0.25);
}


/* --- Service Intro --- */
.service-intro {
  background-color: var(--paper);
  padding: var(--section-padding);
}

.service-intro__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.service-intro__text h2 {
  margin-bottom: 16px;
}

.service-intro__text p {
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-intro__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-intro__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--ink);
}

.service-intro__benefits li::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--brass);
  flex-shrink: 0;
}

.service-intro__pattern {
  width: 100%;
  height: 4px;
  background-color: var(--brass);
}

.service-intro__image {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  max-height: 480px;
  display: block;
}

/* --- Photo Strip --- */
.photo-strip {
  width: 100%;
  overflow: hidden;
  max-height: 360px;
}

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

/* --- Recent Work Grid --- */
.recent-work {
  background-color: var(--ink);
}

.recent-work__title {
  color: var(--paper);
  margin-bottom: 2rem;
}

.recent-work__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.recent-work__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.recent-work__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.recent-work__item:hover img {
  transform: scale(1.03);
}

.recent-work__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--paper);
  letter-spacing: 0.03em;
}

.recent-work__link {
  display: inline-block;
  margin-top: 2rem;
  font-weight: 500;
  color: var(--brass);
  border-bottom: 1px solid var(--brass);
  transition: color 0.3s ease;
}

.recent-work__link:hover {
  color: var(--paper);
  border-color: var(--paper);
}

@media (max-width: 768px) {
  .recent-work__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recent-work__item img {
    height: 220px;
  }

  .photo-strip,
  .photo-strip img {
    max-height: 240px;
    height: 240px;
  }
}

@media (max-width: 480px) {
  .recent-work__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Process Steps --- */
.process-section {
  padding: var(--section-padding);
  background-color: var(--paper);
}

.process-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-step {
  text-align: center;
  padding: 24px 16px;
}

.process-step__number {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brass);
  margin-bottom: 16px;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.process-step__desc {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 0;
}

/* --- Who This Is For --- */
.who-for-section {
  background-color: var(--bone);
  padding: var(--section-padding);
}

.who-for-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.who-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.who-for-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--bone);
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.who-for-card:hover {
  transform: translateX(4px);
  color: var(--brass);
}

.who-for-card__icon {
  font-size: 1.4rem;
}

/* --- FAQ Section --- */
.faq-section {
  padding: var(--section-padding);
  background-color: var(--paper);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--bone);
}

.faq-item:first-child {
  border-top: 1px solid var(--bone);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  gap: 16px;
}

.faq-question:hover {
  color: var(--brass);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--brass);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question__icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--slate);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* --- Related Services --- */
.related-section {
  background-color: var(--bone);
  padding: var(--section-padding);
}

.related-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  display: block;
  padding: 32px;
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.related-card:hover {
  border-bottom-color: var(--brass);
  color: inherit;
}

.related-card__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.related-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.related-card__desc {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 0;
}

/* --- Service Quote Section --- */
.service-quote-section {
  padding: var(--section-padding);
  background-color: var(--paper);
}

.service-quote-section .quote-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* --- Service Page Responsive --- */
@media (max-width: 992px) {
  .service-intro__layout {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-quote-section .quote-section__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .who-for-grid {
    grid-template-columns: 1fr;
  }

  .service-hero__pills {
    gap: 8px;
  }
}

/* --- Location Cards --- */
.location-card {
  display: block;
  padding: 32px;
  border-bottom: 2px solid transparent;
  border-left: 3px solid var(--brass);
  transition: border-bottom-color 0.3s ease;
}

.location-card:hover {
  border-bottom-color: var(--brass);
  color: inherit;
}

.location-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.location-card__desc {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 0;
}

.locations-grid {
  gap: 24px;
}


/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* --- About Story Section --- */
.about-story {
  background-color: var(--paper);
  padding: var(--section-padding);
}

.about-story__layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
}

.about-story__text h2 {
  margin-bottom: 16px;
}

.about-story__text p {
  color: var(--slate);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-story__visual {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.about-story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- About Values --- */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--bone);
}

.about-value {
  text-align: center;
}

.about-value__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--brass);
}

.about-value h4 {
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.about-value p {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 0;
}

/* --- Why Section --- */
.why-section {
  background-color: var(--bone);
  padding: var(--section-padding);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.why-card:hover {
  border-bottom-color: var(--brass);
}

.why-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.why-card__desc {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 0;
}

/* --- Owner Bio --- */
.owner-bio {
  padding: 80px 0;
  background-color: var(--paper);
}

.owner-bio__layout {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.owner-bio h2 {
  margin-bottom: 20px;
}

.owner-bio p {
  color: var(--slate);
  line-height: 1.9;
  font-size: 1.05rem;
}

/* --- About Page Responsive --- */
@media (max-width: 992px) {
  .about-story__layout {
    grid-template-columns: 1fr;
  }

  .about-story__visual {
    height: 200px;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* --- Contact Info --- */
.contact-info {
  background-color: var(--paper);
  padding: var(--section-padding);
}

.contact-info__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-info__links {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 3rem;
}

.contact-info__link {
  text-align: center;
}

.contact-info__link-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass);
  margin-bottom: 8px;
}

.contact-info__link a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
}

.contact-info__link a:hover {
  color: var(--brass);
}

/* --- Legacy contact cards (compat) --- */
.contact-methods {
  background-color: var(--paper);
  padding: var(--section-padding);
}

.contact-methods__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  padding: 40px 32px;
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.contact-card:hover {
  border-bottom-color: var(--brass);
}

.contact-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.contact-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.contact-card__value {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brass);
  margin-bottom: 8px;
}

a.contact-card__value:hover {
  color: var(--brass-dk);
}

.contact-card__note {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 0;
}

/* --- Contact Form Section --- */
.contact-form-section {
  padding: var(--section-padding);
  background-color: var(--paper);
}

.contact-form-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

/* --- Contact Page Responsive --- */
@media (max-width: 992px) {
  .contact-methods__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .contact-info__links {
    flex-direction: column;
    gap: 24px;
  }
}


/* ============================================
   PROJECTS PAGE STYLES
   ============================================ */

/* --- Filter Bar --- */
.projects-portfolio {
  padding: var(--section-padding);
  background-color: var(--paper);
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--bone);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.filter-btn.active {
  background-color: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
}

/* --- Portfolio Grid --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  background: var(--bone);
  background-size: cover;
  background-position: center;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease, opacity 0.4s ease;
}

.portfolio-card.hidden {
  display: none;
}

.portfolio-card:hover {
  transform: scale(1.02);
}

.portfolio-card__content {
  padding: 24px;
  width: 100%;
  background: linear-gradient(to top, rgba(20, 19, 18, 0.8) 0%, transparent 100%);
  z-index: 1;
}

.portfolio-card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: 10px;
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--paper);
  margin-bottom: 4px;
}

.portfolio-card__location {
  font-size: 0.85rem;
  color: var(--bone);
  margin-bottom: 0;
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(20, 19, 18, 0.85);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
}

.portfolio-card__overlay span {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--paper);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* --- Projects CTA --- */
.projects-cta {
  background-color: var(--ink);
  padding: 80px 0;
}

.projects-cta__content {
  text-align: center;
}

.projects-cta__content h2 {
  color: var(--paper);
  margin-bottom: 12px;
}

.projects-cta__content p {
  color: var(--bone);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* --- Projects Page Responsive --- */
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    gap: 6px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

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


/* ============================================
   GLOBAL RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
    --nav-height: 70px;
  }

  .container {
    padding: 0 20px;
  }
}

/* --- Hidden Utility --- */
.hidden {
  display: none !important;
}
