/* ================================================================
   ABOUT PAGE — about.html
================================================================ */
/* ============================================================
       DESIGN TOKENS — match index.html exactly
       WordPress: theme.json
    ============================================================ */
:root {
  --border: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 70px rgba(0, 0, 0, 0.13);
  /* --nav-h: 76px; */
  --max-w: 1360px;
}

.italic {
  font-style: italic;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow-left::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.eyebrow-light::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
}

.h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.01em;
}

.h2-white {
  color: var(--white);
}

.h3 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wood);
}

.lead {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.88;
  color: var(--text-muted);
}

.lead-light {
  color: rgba(255, 255, 255, 0.58);
}

.body-p {
  font-size: 0.92rem;
  line-height: 1.92;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.sub-inner-content p {
  font-size: 0.92rem;
  line-height: 1.92;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.story-img-wrap-sec-btn {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(184, 145, 42, 0.3);
}



.btn-outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section {
  padding: 6rem 0;
}

.section-sm {
  padding: 4rem 0;
}

.about-hero-sec-btn {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}


.page-hero {
  position: relative;
  padding-top: var(--nav-h);
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* .page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(20, 12, 5, 0.84) 0%, rgba(40, 25, 10, 0.72) 50%, rgba(15, 10, 4, 0.88) 100%),
    url('https://images.unsplash.com/photo-1581539250439-c96689b516dd?w=1800&auto=format&fit=crop&q=80') center/cover no-repeat;
} */

/* diagonal lines texture */
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 1px,
      transparent 1px, transparent 48px);
  pointer-events: none;
}

/* bottom fade into page bg */
.page-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

/* Breadcrumb */

.breadcrumb-sep {
  opacity: 0.4;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-light);
}

.page-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.page-hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.88;
  color: rgba(255, 255, 255, 0.58);
  max-width: 520px;
  margin-bottom: 2rem;
}

/* Floating stat card on hero right */
.hero-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 2rem;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stat-item {
  background: rgba(0, 0, 0, 0.15);
  padding: 1.5rem 1.2rem;
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 5px;
}

.hero-stat-card-cta {
  margin-top: 1px;
  background: rgba(0, 0, 0, 0.15);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-stat-card-cta-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-stat-card-cta-btn {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 0.55rem 1rem;
  border: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.hero-stat-card-cta-btn:hover {
  background: var(--gold-light);
}



/* ============================================================
       STATS COUNTER BAR
    ============================================================ */
.stats-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.stats-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-num-suffix {
  font-size: 2rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
}

/* ============================================================
       OUR STORY SECTION
    ============================================================ */
.story-section {
  background: var(--bg);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

/* Image column */
.story-img-wrap {
  position: relative;
}

.story-img-wrap-content {
  position: relative;
  padding: 0 2rem 3rem 1rem;
}



/* vertical gold accent line */
.story-img-main::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 10%;
  bottom: 10%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}



.story-img-badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--gold);
  padding: 1.5rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.story-img-badge-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.story-img-badge-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
  display: block;
}

/* Text column */
.story-blockquote {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--wood);
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
  margin-bottom: 1.8rem;
}

.story-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border-gold);
  color: var(--wood-light);
  background: var(--gold-pale);
}

/* ============================================================
       FOUNDER SPOTLIGHT
    ============================================================ */
.founder-section {
  background: var(--wood);
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.012) 0px, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 52px);
}

/* large ghost text watermark */


.founder-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 6rem;
  align-items: center;
}

/* Founder card */
.founder-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid rgba(184, 145, 42, 0.2);
  pointer-events: none;
}

.founder-avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.8rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* WP note: replace .founder-avatar with <img> tag when photo is available */
.founder-name {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.founder-designation {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

.founder-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.founder-mini-stat {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.2rem 1rem;
}

.founder-mini-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.founder-mini-label {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}

.founder-contacts {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.founder-contact-btn {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(184, 145, 42, 0.4);
  color: var(--gold-light);
  background: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.founder-contact-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Founder message */

.founder-big-quote {
  font-family: var(--font-head);
  font-size: 5rem;
  color: rgba(184, 145, 42, 0.18);
  line-height: 0.8;
  margin-bottom: 0.5rem;
}

.founder-quote-text {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
  margin-bottom: 2rem;
}

.founder-body {
  font-size: 0.92rem;
  line-height: 1.92;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 1.2rem;
}

.f-sub-content p {
  font-size: 0.92rem;
  line-height: 1.92;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 1.2rem;
}

.founder-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-top: 2.5rem;
}

.founder-principle {
  background: rgba(0, 0, 0, 0.15);
  padding: 1.5rem 1rem;
  text-align: center;
}

.founder-principle-val {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.founder-principle-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

/* ============================================================
       JOURNEY / TIMELINE
    ============================================================ */
.journey-section {
  background: var(--bg-white);
}

.journey-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

/* connecting line */
.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), var(--gold), var(--gold-line), transparent);
}

.timeline-item {
  padding: 0 1rem;
  position: relative;
}

.timeline-dot-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  background: var(--bg-white);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  flex-direction: column;
  gap: 2px;
}

.timeline-dot:hover {
  background: var(--gold);
}

.timeline-dot:hover .timeline-dot-num {
  color: var(--white);
}

.timeline-dot-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.3s;
}

.timeline-era {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wood);
  margin-bottom: 0.4rem;
}

.timeline-body {
  font-size: 0.78rem;
  line-height: 1.68;
  color: var(--text-muted);
}

/* ============================================================
       VALUES / WHAT SETS US APART
    ============================================================ */
.values-section {
  background: var(--bg);
}

.value-sec-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 0;
}

.value-sec-title .lead {
  margin: 0.75rem auto 0;
  font-size: 0.95rem;
}

.value-sec-btn {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-sec-btn button,
.value-sec-btn a {
  justify-content: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
}

.custom-grid .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
}

.custom-grid .value-card-dark {
  display: none;
}

.bg-dark-counter {
  background: #000 !important;
}

.value-card {
  background: var(--bg-white);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.value-card:hover {
  background: var(--white);
}

.value-card-ghost {
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  pointer-events: none;
}

.value-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.value-h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wood);
  margin-bottom: 0.6rem;
}

.value-p {
  font-size: 0.84rem;
  line-height: 1.78;
  color: var(--text-muted);
}

/* special dark CTA card */
.value-card-dark {
  background: var(--wood);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.value-card-dark-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.value-card-dark-p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2rem;
}

/* ============================================================
       B2B ARCHITECTS SECTION
    ============================================================ */
.b2b-section {
  background: var(--bg-white);
}

.b2b-sec-title {
  margin-bottom: 1.2rem;
}

.b2b-panel-btn button {
  width: 100%;
  justify-content: center;
}

.b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.b2b-points {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2rem;
}

.b2b-point {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.b2b-point-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.b2b-point-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wood);
  margin-bottom: 3px;
}

.b2b-point-body {
  font-size: 0.83rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Right panel */
.b2b-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 3rem;
  position: relative;
}

.b2b-panel::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid var(--gold-line);
  pointer-events: none;
}

.b2b-panel-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wood);
  margin-bottom: 0.4rem;
}

.b2b-panel-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.b2b-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}

.b2b-contact-item:hover {
  border-color: var(--gold);
}

.b2b-contact-icon {
  color: var(--gold);
  font-size: 1rem;
  /* flex-shrink: 0; */
}

.b2b-contact-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.b2b-contact-val {
  font-size: 0.9rem;
  color: var(--text);
  margin-top: 1px;
}

.b2b-contact-val a {
  color: var(--text);
  transition: color 0.2s;
}

.b2b-contact-val a:hover {
  color: var(--gold);
}

/* ============================================================
       BRANDS SECTION
    ============================================================ */
.brands-section {
  background: var(--bg);
}

.brands-section-title {
  text-align: center;
  margin-bottom: 0;
}

.brands-section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 0.4rem;
}

.brands-section-title p {
  margin: 0 auto;
  font-size: 0.88rem;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.brand-card {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}

.brand-card:hover {
  background: var(--gold-pale);
}

.brand-icon {
  font-size: 1.8rem;
}

.brand-name {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wood);
}

.brand-type {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* ============================================================
       TESTIMONIALS
    ============================================================ */
.testi-section {
  background: var(--bg-white);
}

.testi-section-title {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin-top: 3rem;
}

.testi-card {
  background: var(--bg-white);
  padding: 2.5rem;
}

.stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.testi-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.72;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.t-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.t-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.t-role {
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
       CTA BANNER
    ============================================================ */
/* .cta-section {
  background:
    linear-gradient(108deg, rgba(20, 12, 5, 0.9) 0%, rgba(40, 24, 10, 0.85) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
} */

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(184, 145, 42, 0.04) 60px);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}






/* ================================================================
   RESIDENTIAL PAGE — residential.html
================================================================ */
/* ============================================================
       DESIGN TOKENS — same as index.html & about.html
       WordPress: theme.json
    ============================================================ */
:root {
  --bg: #F2F2F0;
  --bg-white: #FFFFFF;
  --bg-section: #EBEBEA;
  --gold: #B8912A;
  --gold-light: #D4A843;
  --gold-pale: #F5EDD8;
  --gold-line: rgba(184, 145, 42, 0.22);
  --wood: #3B2A1A;
  --wood-mid: #5C3D22;
  --wood-light: #8B6040;
  --text: #1C1612;
  --text-mid: #4A3D32;
  --text-muted: #7A6E65;
  --border: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(184, 145, 42, 0.25);
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 70px rgba(0, 0, 0, 0.13);
  --nav-h: 76px;
  --max-w: 1360px;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

/* ---- Reset ---- */




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

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

button {
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ---- Utilities ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gold {
  color: var(--gold);
}

.italic {
  font-style: italic;
}

.section {
  padding: 6rem 0;
}

.section-sm {
  padding: 4rem 0;
}

.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.eyebrow-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow-left::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.eyebrow-light::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
}

.h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.01em;
}

.h2-white {
  color: var(--white);
}

.h3 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wood);
}



.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px;
  border: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(184, 145, 42, 0.3);
}


.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}


/* ============================================================
       NAVBAR — WordPress: header.php
    ============================================================ */


/* ============================================================
       PAGE HERO
       WordPress: ACF hero block / page-residential.php
    ============================================================ */
.page-hero {
  position: relative;
  padding-top: var(--nav-h);
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* .page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(15, 9, 4, 0.88) 0%, rgba(35, 20, 8, 0.70) 50%, rgba(12, 8, 3, 0.90) 100%),
    url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1800&auto=format&fit=crop&q=80') center/cover no-repeat;
} */

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.012) 0, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 52px);
  pointer-events: none;
}

.page-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb span {
  color: var(--gold-light);
}

.page-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.5vw, 5.8rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.page-hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.88;
  color: rgba(255, 255, 255, 0.58);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Right quick-info card */
.hero-info-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 0;
  overflow: hidden;
}

.hero-info-card-head {
  background: var(--gold);
  padding: 1.2rem 1.8rem;
}

.hero-info-card-head-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.hero-info-card-head-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.hero-info-card-body {
  padding: 1.5rem 1.8rem;
}

.hero-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.9rem;
}

.hero-info-item:last-child {
  margin-bottom: 0;
}

.hero-info-bullet {
  width: 20px;
  height: 20px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.65rem;
  color: var(--gold);
}

.hero-info-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.hero-info-card-foot {
  padding: 1.2rem 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-info-card-foot-btn {
  width: 100%;
  background: var(--wood);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.8rem;
  border: none;
  transition: background 0.2s;
}

.hero-info-card-foot-btn:hover {
  background: var(--wood-mid);
}



/* ============================================================
       WHAT WE PROVIDE
       WordPress: ACF repeater / services CPT
    ============================================================ */
.provide-section {
  background: var(--bg-white);
}

.provide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3.5rem;
}

.provide-card {
  background: var(--bg-white);
  padding: 2.8rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.25s;
}

.provide-card:hover {
  background: var(--gold-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.provide-card-ghost {
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-family: var(--font-head);
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  pointer-events: none;
}

.provide-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.provide-h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wood);
  margin-bottom: 0.5rem;
}

.provide-p {
  font-size: 0.83rem;
  line-height: 1.78;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.provide-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.provide-feature {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.provide-feature::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}

/* ============================================================
       COUNTERS BAR
    ============================================================ */
.counters-bar {
  background: var(--wood);
}

.counters-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.counter-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.counter-item:last-child {
  border-right: none;
}

.counter-num {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.counter-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  display: block;
  margin-top: 6px;
}

/* ============================================================
       WHY BUY OUR CUSTOM FURNITURE
       WordPress: ACF flexible content block
    ============================================================ */
.why-section {
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Left — image stack */
.why-img-wrap {
  position: relative;
}



.why-img-main::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 8%;
  bottom: 8%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}



.why-badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--gold);
  padding: 1.4rem 1.6rem;
  text-align: center;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.why-badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.why-badge-label {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3px;
  display: block;
}

/* Right — reasons */
.why-reasons {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-reason {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.why-reason:first-child {
  padding-top: 0;
}

.why-reason:last-child {
  border-bottom: none;
}

.why-reason-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(184, 145, 42, 0.18);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}

.why-reason-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wood);
  margin-bottom: 0.3rem;
}

.why-reason-body {
  font-size: 0.83rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ============================================================
       OUR SOLUTIONS — detailed product sections
       WordPress: ACF repeater with alternating layout
    ============================================================ */
.solutions-section {
  background: var(--bg-white);
  padding: 100px 0;
}

.solution-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.solution-row:last-child {
  border-bottom: none;
}

.solution-row.reverse .solution-img {
  order: 2;
}

.solution-row.reverse .solution-content {
  order: 1;
}

.solution-img {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: var(--bg-section);
}

.solution-img .solution-img-inner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}

.solution-img-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  padding: 0.35rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.dark-hidden .value-card-dark {
  display: none;
}

.dark-hidden .value-icon {
  background: transparent;
}

.solution-content {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--border);
}

.solution-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.solution-h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wood);
  margin-bottom: 0.8rem;
}

.solution-p {
  font-size: 0.88rem;
  line-height: 1.88;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.solution-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.solution-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border-gold);
  color: var(--wood-light);
  background: var(--gold-pale);
}

.solution-link {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  border: none;
  background: none;
}

.solution-link:hover {
  gap: 10px;
}

/* ============================================================
       SPECIALITIES
       WordPress: ACF repeater
    ============================================================ */
.specialities-section {
  background: var(--bg);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3.5rem;
}

.spec-card {
  background: var(--bg-white);
  padding: 2.8rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.spec-card:hover {
  background: var(--gold-pale);
}

.spec-card-ghost {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  pointer-events: none;
}

.spec-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.spec-h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wood);
  margin-bottom: 0.5rem;
}

.spec-p {
  font-size: 0.83rem;
  line-height: 1.78;
  color: var(--text-muted);
}

/* ============================================================
       PROCESS (mini — horizontal)
    ============================================================ */
.process-section {
  background: var(--bg-white);
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  /* background: var(--border); */
  margin-top: 3.5rem;
}

.process-step-card {
  padding: 2.5rem 1.8rem;
  background: var(--bg-white);
  border-right: 1px solid var(--border);
  position: relative;
}

.process-step-card:last-child {
  border-right: none;
}

.process-step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(184, 145, 42, 0.15);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.process-step-icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.process-step-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wood);
  margin-bottom: 0.4rem;
}

.process-step-body {
  font-size: 0.78rem;
  line-height: 1.68;
  color: var(--text-muted);
}

/* gold line connecting steps */
.process-step-card::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -0.85rem;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1rem;
  z-index: 1;
  background: var(--bg-white);
  padding: 2px;
}

.process-step-card:last-child::after {
  display: none;
}

/* ============================================================
       PORTFOLIO PREVIEW (filtered)
       WordPress: portfolio CPT query loop
    ============================================================ */
.portfolio-section {
  background: var(--bg);
}

.portfolio-filter {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-section);
}

.portfolio-item.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.04);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 17, 8, 0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-cat {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 3px;
}

.portfolio-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* ============================================================
       FAQ
       WordPress: ACF repeater
    ============================================================ */
.faq-section {
  background: var(--bg-white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

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

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 0.86rem;
  line-height: 1.82;
  color: var(--text-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 220px;
  padding-bottom: 1.2rem;
}

/* ============================================================
       BRANDS
    ============================================================ */
.brands-section {
  background: var(--bg);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.brand-card {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}

.brand-card:hover {
  background: var(--gold-pale);
}

.brand-icon {
  font-size: 1.8rem;
}

.brand-name {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wood);
}

.brand-type {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* ============================================================
       TESTIMONIALS
    ============================================================ */
.testi-section {
  background: var(--bg-white);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin-top: 3rem;
}

.testi-card {
  background: var(--bg-white);
  padding: 2.5rem;
}

.stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.testi-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.72;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.t-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.t-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.t-role {
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
       CTA BANNER
    ============================================================ */
/* .cta-section {
  background: linear-gradient(108deg, rgba(20, 12, 5, 0.9) 0%, rgba(40, 24, 10, 0.85) 100%), url('https://images.unsplash.com/photo-1600210492493-0946911123ea?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
} */

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(184, 145, 42, 0.04) 60px);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.cta-h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.82;
  margin-bottom: 2.5rem;
}

.cta-btns {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.what-we-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 0;
}

.why-img-wrap-inner {
  position: relative;
  padding: 0 2.5rem 3rem 1rem;
}

.why-img-wrap-inner-btn {
  margin-top: 20px;
}


.section-title {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 2rem;
}

.section-title span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}


.section-title span::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.01em;
}

.section-title h2 em {
  color: var(--gold);
}

.section-title p {
  font-size: 0.92rem;
  line-height: 1.92;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}


.title-center .section-title {
  text-align: center;
  align-items: center;
}

.cta-section .section-title h2 {
  color: var(--white);
}


.section-title .story-blockquote {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--wood);
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
  margin-bottom: 1.8rem;
}

#founder .section-title h2,
#founder .section-title blockquote {
  color: var(--white);
}


.contact-tag-inner {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
}

.contact-tag-inner .c-t-i-title {
  font-family: 'Barlow Condensed',
    sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-tag-inner .c-t-i-title-sub {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.contact-f-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.contact-i-sub-title {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}










.sdf2-overlay {
  min-height: 520px;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-family: 'Georgia', serif;
}

.sdf2-modal {
  width: 100%;
  max-width: 500px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.sdf2-header {
  background: #1a1610;
  padding: 1.4rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.sdf2-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  font-family: sans-serif;
}

.sdf2-tag::before {
  content: "✦ ";
}

.sdf2-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #f5f0e8;
  margin: 0;
  letter-spacing: 0.01em;
}

.sdf2-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f5f0e8;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.sdf2-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sdf2-body {
  background: #f5f0e4;
  padding: 2rem 1.8rem 1.8rem;
}

.sdf2-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2a1f0d;
  margin: 0 0 0.4rem;
}

.sdf2-step-sub {
  font-size: 0.82rem;
  color: #6b5c40;
  margin: 0 0 1.4rem;
  font-family: sans-serif;
  line-height: 1.5;
}

#sdf2FormView input {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #d8cdb8;
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #2a1f0d;
  margin-bottom: 0.85rem;
  font-family: sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

#sdf2FormView textarea {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #d8cdb8;
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #2a1f0d;
  margin-bottom: 0.85rem;
  font-family: sans-serif;
  outline: none;
  transition: border-color 0.2s;
  height: 100px;
}

#sdf2FormView .wpcf7-not-valid-tip {
  transform: translateY(-13px);
  font-size: 12px;
}

#sdf2FormView br {
  display: none !important;
}

#sdf2FormView input:focus {
  border-color: #c9a84c;
}

#sdf2FormView input::placeholder {
  color: #b0a080;
}

.sdf2-error {
  font-size: 0.75rem;
  color: #b33;
  font-family: sans-serif;
  margin-top: -0.5rem;
  margin-bottom: 0.6rem;
  display: none;
}

.sdf2-divider {
  border: none;
  border-top: 1px solid #ddd4bc;
  margin: 1.2rem 0 1.4rem;
}

#sdf2FormView input[type="submit"] {
  width: 100%;
  background: #c9a84c;
  color: #1a1610;
  border: none;
  padding: 0.85rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  font-family: sans-serif;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#sdf2FormView .wpcf7-response-output {
  margin: 0;
  font-size: 12px;
}

#sdf2FormView .wpcf7-spinner {
  position: absolute;
}

.sdf2-submit-btn:hover {
  background: #b8963e;
}

.sdf2-submit-btn:active {
  transform: scale(0.99);
}

.sdf2-note {
  text-align: center;
  font-size: 0.74rem;
  color: #8a7555;
  font-family: sans-serif;
  margin-top: 0.75rem;
}

.sdf2-thankyou {
  text-align: center;
  padding: 0.5rem 0 0.8rem;
}

.sdf2-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1a1610;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.sdf2-check svg {
  width: 26px;
  height: 26px;
  stroke: #c9a84c;
  stroke-width: 2.5;
  fill: none;
}

.sdf2-ty-h {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2a1f0d;
  margin: 0 0 0.5rem;
}

.sdf2-ty-p {
  font-size: 0.82rem;
  color: #6b5c40;
  line-height: 1.6;
  font-family: sans-serif;
  margin: 0 0 1.2rem;
}

.sdf2-ty-box {
  background: #eee8d8;
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  font-family: sans-serif;
  color: #4a3a1e;
  text-align: left;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.sdf2-ty-box span {
  color: #2a1f0d;
  font-weight: 600;
}

.sdf2-call-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #c9a84c;
  color: #1a1610;
  text-decoration: none;
  padding: 0.65rem 1.2rem;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: sans-serif;
  letter-spacing: 0.05em;
}

.sdf2-ty-view {
  display: none;
}


.map-wrapper{
  height: 400px;
  margin-top: 50px;
}

.map-wrapper iframe{
  width: 100%;
  height: 100%;
}