/* ─── TGDC — Section Styles ─── */

/* Force all block sections to be full viewport width regardless of WP injected styles */
/* section[class^="tgdc-"],
section[class*=" tgdc-"] {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
} */

/* ══════════════════ HERO ══════════════════ */
.tgdc-hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--deep);
  overflow: hidden;
}

.tgdc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(8, 18, 12, .35) 0%, rgba(8, 18, 12, .88) 100%), linear-gradient(180deg, rgba(8, 18, 12, .65) 0%, rgba(8, 18, 12, .3) 45%, rgba(8, 18, 12, .75) 100%);
}

.tgdc-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  filter: saturate(1.1) contrast(1.04);
}

.tgdc-hero-botanical-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.tgdc-hero-inner {
  position: relative;
  z-index: 4;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 24px;
}

.tgdc-hero-emblem {
  margin-bottom: 0px;
}

.tgdc-hero-emblem-svg {
  width: 100px;
  height: auto;
}

.tgdc-hero-eyebrow {
  white-space: nowrap;
}

.tgdc-hero .tgdc-eyebrow {
  color: var(--gold) !important;
  margin-bottom: 24px;
}

.tgdc-hero h1 {
  font-size: clamp(42px, 7vw, 100px);
  color: var(--cream);
  margin-bottom: 24px;
}

.tgdc-hero p {
  font-weight: 300;
}

.tgdc-hero h1 {
  max-width: 914px;
  font-weight: 400;
  line-height: 1.03;
}

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

.tgdc-hero>.tgdc-hero-inner>p {
  font-size: clamp(16px, 2vw, 17px);
  color: rgba(242, 237, 227, .75);
  max-width: 544px;
  margin-bottom: 40px;
}

.tgdc-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.tgdc-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.tgdc-hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(196, 160, 90, 0), rgba(196, 160, 90, .55));
  opacity: .55;
  animation: tgdc-scroll-line 1.8s ease-in-out infinite;
  transform-origin: top;
}

@keyframes tgdc-scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ══════════════════ TRUST BAR ══════════════════════ */
.tgdc-trust {
  background: var(--forest);
  border-top: 1px solid rgba(196, 160, 90, .15);
  padding: 18px 0;
}

.tgdc-trust .tgdc-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.tgdc-trust span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, .55);
}

.tgdc-trust .tgdc-trust-accent {
  color: var(--gold);
  opacity: .8;
}

/* ══════════════════ INNER BANNER ══════════════════ */
.tgdc-inner-banner {
  position: relative;
  padding: 160px 0 80px;
  background: var(--forest);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.tgdc-inner-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 24, 16, .82) 0%, rgba(26, 51, 40, .7) 100%);
}

.tgdc-inner-banner-content {
  position: relative;
  z-index: 2;
}

.tgdc-inner-banner-content h1 {
  font-size: clamp(36px, 5.5vw, 66px);
  color: var(--cream);
  margin-bottom: 12px;
}

.tgdc-inner-banner-sub {
  color: rgba(242, 237, 227, .7);
  font-size: 17px;
  max-width: 540px;
}

.tgdc-career-banner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.tgdc-career-banner-meta span {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, .65);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 4px 12px;
  border-radius: 2px;
}

/* ══════════════════ INTRO / PHILOSOPHY ══════════════════ */
.tgdc-intro {
  padding-bottom: var(--sec-py);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.tgdc-intro-top-padding{
  padding-top: var(--sec-py);
}

.tgdc-mm-links ul {
  list-style: none !important;
}

.intro-botanical {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 520px;
  pointer-events: none;
  animation: leafFloat 14s ease-in-out infinite;
}

.tgdc-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.tgdc-intro--img-left .tgdc-intro-figure {
  order: -1;
}

.tgdc-intro h2 {
  font-size: clamp(30px, 4vw, 50px);
  margin-bottom: 24px;
  max-width: 16ch;
}

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

.tgdc-intro-body {
  color: var(--ink-soft);
  line-height: 1.8;
}

.tgdc-intro-body p {
  margin-bottom: 16px;
}

.tgdc-intro-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  align-items: flex-end;
}

.tgdc-intro-sig {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tgdc-intro-sig-name {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--forest);
}

.tgdc-intro-sig-role {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
  font-weight: 500;
}

.tgdc-intro-stat {
  display: flex;
  flex-direction: column;
}

.tgdc-stat-number {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}

.tgdc-intro-stat span {
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 160px;
}

.tgdc-intro-figure img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top left;
  border-radius: 2px;
  filter: brightness(.82) saturate(1.12) contrast(1.04);
}



.tgdc-intro-figure {
  position: relative;
}

.tgdc-intro-figure figcaption {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--paper);
  padding: 26px 32px;
  border: 1px solid rgba(28, 29, 25, .11);
  border-top: 2px solid var(--gold);
  max-width: 230px;
}

.tgdc-intro-figure figcaption b {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--gold);
  font-weight: 500;
  display: block;
  line-height: 1;
}

.tgdc-intro-figure figcaption small {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.tgdc-intro-figure::after {
  content: '';
  position: absolute;
  inset: auto auto -10px -10px;
  width: 60px;
  height: 60px;
  border-bottom: 1px solid rgba(196, 160, 90, .22);
  border-left: 1px solid rgba(196, 160, 90, .22);
  z-index: 1;
  pointer-events: none;
  z-index: 1;
}

.tgdc-intro-figure::before {
  content: '';
  position: absolute;
  inset: -10px -10px auto auto;
  width: 60px;
  height: 60px;
  border-top: 1px solid rgba(196, 160, 90, .22);
  border-right: 1px solid rgba(196, 160, 90, .22);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 991px){
	.tgdc-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tgdc-intro-sig-name{
    margin-top: 0;
  }
}

@media (max-width: 768px) {


  .tgdc-intro--img-left .tgdc-intro-figure {
    order: 0;
  }

  .tgdc-intro-figure img {
    height: auto;
  }
}

/* ══════════════════ SERVICES ══════════════════ */
.tgdc-services {
  padding: var(--sec-py) 0;
  background: var(--forest);
  position: relative;
}

.svc-botanical {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  pointer-events: none;
  opacity: .7;
  z-index: 3;
}

.tgdc-services .tgdc-sec-head p,
.tgdc-services .tgdc-sec-head h2 {
  color: #fff;
}

.tgdc-services .tgdc-sec-head p {
  max-width: 34ch;
  text-align: left;
}

.tgdc-services .tgdc-sec-head h2 {
  max-width: 14ch;
  text-align: left;
  margin-bottom: 0;
}

.tgdc-services .tgdc-sec-head {
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.tgdc-svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.tgdc-svc-card {
  background: var(--forest);
  border: 1px solid rgba(196, 160, 90, .2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  transition: border-color .45s;
}

.tgdc-svc-card .tgdc-svc-card-body h3 {
  color: var(--cream);
}

.tgdc-svc-card .tgdc-svc-card-body p {
  color: var(--cream);
}

.tgdc-svc-card .more {
  margin-top: 32px;
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.tgdc-svc-card .more::after {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
  transition: width .4s;
}

.tgdc-svc-card:hover .more::after {
  width: 50px;
}

.tgdc-svc-card:hover {
  box-shadow: 0 12px 48px rgba(11, 24, 16, .12);
  border-color: rgba(196, 160, 90, .45);
}

.tgdc-svc-card-link {
  display: block;
}

.tgdc-svc-ph {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.tgdc-svc-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72) saturate(1.18) contrast(1.04);
  transition: transform .6s var(--ease);
}

.tgdc-svc-card:hover .tgdc-svc-ph img {
  transform: scale(1.04);
}

.tgdc-svc-card-body {
  padding: 28px 28px 32px;
}

.tgdc-svc-num {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.tgdc-svc-card-body h3 {
  font-size: 26px;
  margin: 8px 0 12px;
}

.tgdc-svc-card-body p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 18px;
}

.tgdc-svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.tgdc-svc-tags li {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196, 160, 90, .35);
  padding: 7px 15px;
  border-radius: 30px;
}



.tgdc-svc-more {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ══════════════════ PROCESS ══════════════════ */
.tgdc-process {
  padding: var(--sec-py) 0;
}

.tgdc-process .tgdc-sec-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 100%;
}

.tgdc-process .tgdc-sec-head h2 {
  max-width: 14ch;
  text-align: left;
  margin-bottom: 0;
}

.tgdc-process .tgdc-sec-head p {
  max-width: 34ch;
  text-align: left;
}

.tgdc-process .tgdc-sec-head h2 {
  color: var(--ink);
}

.tgdc-process .tgdc-sec-head p {
  color: var(--ink-soft);
}

.tgdc-proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.tgdc-proc {
  padding: 28px 24px;
  border-top: 1px solid rgba(26, 51, 40, .15);
  position: relative;
}

.tgdc-proc b {
  font-family: var(--serif);
  font-size: 52px;
  color: var(--gold);
  font-weight: 400;
  display: block;
  line-height: 1;
}

.tgdc-proc-icon {
  margin: 22px 0 8px;
  display: block;
}

.tgdc-proc-icon svg {
  width: 54px;
  height: 54px;
  overflow: visible;
}

.tgdc-proc h3 {
  font-size: 22px;
  color: var(--ink);
  margin: 4px 0 12px;
}

.tgdc-proc p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .tgdc-proc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .tgdc-proc-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════ SHOWCASE ══════════════════ */
.tgdc-showcase {
  position: relative;
  height: 80vh;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.showcase-corners {
  position: absolute;
  inset: 28px;
  z-index: 3;
  pointer-events: none;
  width: calc(100% - 56px);
  height: calc(100% - 56px);
}

.tgdc-showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.7) saturate(1.15) contrast(1.05);
}

.tgdc-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(11, 24, 16, .78) 0%, rgba(11, 24, 16, .42) 100%);
}

.tgdc-showcase-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-block: var(--sec-py);
}

.tgdc-showcase-content .tgdc-eyebrow {
  color: var(--gold);
}

.tgdc-showcase-content h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--cream);
  margin-bottom: 20px;
}

.tgdc-showcase-content p {
  color: rgba(242, 237, 227, .75);
  font-size: 17px;
  margin-bottom: 36px;
}

/* ══════════════════ FOUNDER ══════════════════ */
.tgdc-founder {
  padding: var(--sec-py) 0;
}

.tgdc-founder-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.tgdc-founder-figure img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top left;
  border-radius: 2px;
}

.tgdc-founder-text .tgdc-eyebrow {
  color: var(--sage);
}

.tgdc-founder-text blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 36px);
  color: var(--forest);
  line-height: 1.55;
  margin: 20px 0 28px;
}

.tgdc-founder-text blockquote em {
  color: var(--gold);
}

.tgdc-founder-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tgdc-founder-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--forest);
}

.tgdc-founder-role {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 991px){
  .tgdc-founder-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {


  .tgdc-founder-figure img {
    height: 360px;
  }
}

/* ══════════════════ STATS ══════════════════ */
.tgdc-stats {
  padding: 64px 0;
  background: var(--deep);
}

.tgdc-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}

.tgdc-stat-item {}

.tgdc-stat-number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.tgdc-stat-item span {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, .65);
}

/* ══════════════════ TESTIMONIALS ══════════════════ */
.tgdc-testimonials {
  padding: var(--sec-py) 0;
  background: var(--paper);
}

.tgdc-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.tgdc-testi-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: 2px;
  border: 1px solid rgba(28, 29, 25, .07);
}

.tgdc-testi-text {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 28px;
}

.tgdc-testi-attr {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tgdc-testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.tgdc-testi-name {
  display: block;
  font-weight: 500;
  font-size: 15px;
}

.tgdc-testi-role {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .08em;
}

/* ══════════════════ CTA ══════════════════ */
.tgdc-cta {
  padding: var(--sec-py) 0;
  background: var(--deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.tgdc-cta svg {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
}

.tgdc-cta-botanical {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tgdc-cta-inner {
  position: relative;
  z-index: 2;
}

.tgdc-cta-inner .tgdc-eyebrow {
  color: rgba(196, 160, 90, .75);
}

.tgdc-cta-inner h2 {
  font-size: clamp(40px, 6vw, 92px);
  max-width: 16ch;
  margin: 22px auto 30px;
  color: var(--cream);
}

.tgdc-cta-inner h2 em {
  color: var(--gold);
}

.custom-color {
  color: rgba(242, 237, 227, 1);
}

.tgdc-cta-inner p {
  color: rgba(242, 237, 227, .7);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 36px;
}

.tgdc-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════ PORTFOLIO ══════════════════ */
.tgdc-portfolio {
  padding: var(--sec-py) 0;
  background: var(--paper);
}

.tgdc-portfolio-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.tgdc-filter-btn {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(26, 51, 40, .2);
  color: var(--ink-soft);
  border-radius: 2px;
  transition: background .3s, color .3s, border-color .3s;
}

.tgdc-filter-btn.active,
.tgdc-filter-btn:hover {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}

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

.tgdc-portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
}

.tgdc-portfolio-link {
  display: block;
  width: 100%;
  height: 100%;
}

.tgdc-portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

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

.tgdc-portfolio-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 24, 16, .82) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .35s;
}

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

.tgdc-port-caption {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--cream);
}

.tgdc-port-loc {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 860px) {
  .tgdc-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ══════════════════ TEAM ══════════════════ */
.tgdc-team {
  padding: var(--sec-py) 0;
  background: var(--paper);
}

.tgdc-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.tgdc-team-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  margin-bottom: 16px;
  filter: brightness(.9) saturate(1.08);
}

.tgdc-team-card h3 {
  font-size: 22px;
}

.tgdc-team-role {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 4px 0 10px;
}

.tgdc-team-card>.tgdc-team-info>p {
  font-size: 14px;
  color: var(--ink-soft);
}

/* ══════════════════ FAQ ══════════════════ */
.tgdc-faq {
  padding: var(--sec-py) 0;
  background: var(--cream);
}

.tgdc-faq-inner {
  max-width: 780px;
}

.tgdc-faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tgdc-faq-item {
  border-top: 1px solid rgba(26, 51, 40, .12);
}

.tgdc-faq-item:last-child {
  border-bottom: 1px solid rgba(26, 51, 40, .12);
}

.tgdc-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  padding: 20px 4px;
  transition: color .25s;
}

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

.tgdc-faq-q[aria-expanded="true"] .tgdc-faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.tgdc-faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-soft);
  transition: transform .25s, color .25s;
}

.tgdc-faq-a {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  padding: 0 4px 24px;
}

.tgdc-faq-a p {
  margin-bottom: 10px;
}

/* ══════════════════ CONTACT ══════════════════ */
.tgdc-contact {
  padding: var(--sec-py) 0;
  background: var(--paper);
}

.tgdc-contact-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.tgdc-contact-left .tgdc-eyebrow {
  color: var(--gold);
}

.tgdc-contact-left h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 16px;
}

.tgdc-contact-left>p {
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.tgdc-contact-form {
  margin-top: 8px;
}

.tgdc-contact-info-block {
  background: var(--forest);
  color: var(--cream);
  padding: 40px 36px;
  border-radius: 2px;
}

.tgdc-contact-info-block h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--cream);
}

.tgdc-contact-info-block p {
  font-size: 15px;
  margin-bottom: 10px;
}

.tgdc-contact-info-block a {
  color: rgba(242, 237, 227, .8);
  transition: color .25s;
}

.tgdc-contact-info-block a:hover {
  color: var(--gold);
}

.tgdc-contact-appt {
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 16px;
  border-top: 1px solid rgba(196, 160, 90, .25);
}

@media (max-width: 768px) {
  .tgdc-contact-inner {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════ BLOG ══════════════════ */
.tgdc-blog {
  padding: var(--sec-py) 0;
  background: var(--paper);
}

.tgdc-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  /* margin-top: 48px; */
}

.tgdc-blog-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(28, 29, 25, .06);
  transition: box-shadow .35s, transform .35s;
}

.tgdc-blog-card:hover {
  box-shadow: 0 8px 40px rgba(11, 24, 16, .1);
  transform: translateY(-3px);
}

.tgdc-blog-thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.tgdc-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.tgdc-blog-card:hover .tgdc-blog-thumb img {
  transform: scale(1.04);
}

.tgdc-blog-card-body {
  padding: 24px 24px 28px;
}

.tgdc-blog-cats {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.tgdc-blog-cats a {
  color: inherit;
}

.tgdc-blog-card-body h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.tgdc-blog-card-body h3 a {
  color: var(--ink);
}

.tgdc-blog-card-body h3 a:hover {
  color: var(--forest);
}

.tgdc-blog-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.tgdc-blog-card-body p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.tgdc-blog-link {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest);
}

.tgdc-blog-more {
  text-align: center;
  margin-top: 48px;
}

.tgdc-no-posts {
  text-align: center;
  color: var(--ink-soft);
  padding: 48px 0;
}

/* ══════════════════ CAREERS ══════════════════ */
.tgdc-careers {
  padding: var(--sec-py) 0;
  background: var(--paper);
}

.tgdc-careers-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tgdc-career-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 12px;
  border-top: 1px solid rgba(26, 51, 40, .1);
  transition: background .25s, padding .25s;
}

.tgdc-career-row:last-child {
  border-bottom: 1px solid rgba(26, 51, 40, .1);
}

.tgdc-career-row:hover {
  background: rgba(26, 51, 40, .04);
  padding-inline: 20px;
}

.tgdc-career-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--ink);
}

.tgdc-career-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tgdc-career-dept,
.tgdc-career-type,
.tgdc-career-loc {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.tgdc-career-dept {
  color: var(--gold);
}

.tgdc-career-arrow {
  font-size: 20px;
  color: var(--gold);
  transition: transform .25s;
}

.tgdc-career-row:hover .tgdc-career-arrow {
  transform: translateX(4px);
}

.tgdc-no-careers {
  text-align: center;
  color: var(--ink-soft);
  padding: 48px 0;
  font-size: 17px;
}

/* ══════════════════ SERVICE SINGLE ══════════════════ */
.tgdc-svc-body {
  padding: var(--sec-py) 0;
}

.tgdc-svc-intro {
  /* font-size: 19px; */
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 100%;
  margin-bottom: 48px;
}

.tgdc-svc-img2 {
  margin-bottom: 48px;
}

.tgdc-svc-img2 img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 2px;
}

.tgdc-svc-content {
  max-width: 100%;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 40px;
}

.tgdc-svc-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 48px;
}

.tgdc-svc-features li {
  padding: 12px 16px;
  background: var(--cream);
  border-left: 2px solid var(--gold);
  font-size: 14px;
  color: var(--ink);
}

.tgdc-svc-faqs {
  margin-bottom: 48px;
}

.tgdc-svc-cta {
  /* padding-top: 48px; */
  text-align: center;
}

/* ══════════════════ CAREER SINGLE ══════════════════ */
.tgdc-career-body {
  padding: var(--sec-py) 0;
  max-width: 780px;
}

.tgdc-career-desc {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 48px;
}

.tgdc-career-section {
  margin-bottom: 40px;
}

.tgdc-career-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.tgdc-career-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tgdc-career-section li {
  padding: 10px 16px;
  background: var(--cream);
  border-left: 2px solid var(--gold);
  font-size: 15px;
  color: var(--ink);
}

.tgdc-career-apply {
  padding-top: 40px;
  border-top: 1px solid rgba(26, 51, 40, .12);
}

.tgdc-career-apply h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.tgdc-career-apply p {
  color: var(--ink-soft);
  margin-bottom: 24px;
}

/* ══════════════════ SINGLE POST ══════════════════ */
.tgdc-single-banner {
  position: relative;
  background: var(--forest);
  padding: 140px 0 60px;
}

.tgdc-single-thumb {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.tgdc-single-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: .3; */
  filter: saturate(1.1);
}

.tgdc-single-banner-text {
  position: relative;
  z-index: 2;
}

.tgdc-single-banner-text h1 {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--cream);
  margin: 16px 0 20px;
}

.tgdc-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(242, 237, 227, .6);
}

.tgdc-single-body {
  padding: var(--sec-py) 0;
}

.tgdc-f-img{
  margin-bottom: 20px;
}

.tgdc-f-img,
.tgdc-post-content {
  max-width: 780px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-left: auto;
  margin-right: auto;
}

.tgdc-post-content h2,
h3,
h4 {
  color: var(--ink);
  margin: 32px 0 16px;
}

.tgdc-post-content p {
  margin-bottom: 20px;
}

.tgdc-post-content a{
  color: #d4b878;
  font-weight: 500;
}

.tgdc-post-content table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
}

.tgdc-post-content table th,
.tgdc-post-content table td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: left;
}


@media screen and (max-width: 575px) {
  .tgdc-post-content table tbody{
    font-size: 14px;
    line-height: 20px;
  }
}

/* ══════════════════ TWO COL ══════════════════ */
.tgdc-two-col {
  padding: var(--sec-py) 0;
}

.tgdc-two-col-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

@media (max-width: 700px) {
  .tgdc-two-col-inner {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════ 404 ══════════════════ */
.tgdc-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--paper);
}

.tgdc-404-inner {
  text-align: center;
}

.tgdc-404-inner .tgdc-eyebrow {
  font-size: 64px;
  letter-spacing: 0;
  display: block;
  margin-bottom: 16px;
}

.tgdc-404-inner h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
}

.tgdc-404-inner p {
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ══════════════════ PAGINATION ══════════════════ */
.tgdc-pagination {
  /* margin-top: 48px; */
  text-align: center;
}

.tgdc-blog-archive{
  padding-top: 110px;
  padding-bottom: 110px;
}

.tgdc-pagination .nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.tgdc-pagination .page-numbers {
  padding: 10px 16px;
  border: 1px solid rgba(26, 51, 40, .2);
  font-size: 14px;
  color: var(--ink);
  border-radius: 2px;
  transition: background .25s, color .25s;
}

.tgdc-pagination .page-numbers.current,
.tgdc-pagination .page-numbers:hover {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}

.tgdc-contact-form .wpcf7-form {
  max-width: 500px;
}

.tgdc-contact-form .wpcf7-form label {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
}

.tgdc-contact-form .wpcf7-form textarea,
.tgdc-contact-form .wpcf7-form input {
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 13px 16px;
  width: 100%;
  transition: border-color .3s;
  margin-bottom: 10px;
	font-family: var(--sans);
}

.tgdc-contact-form .wpcf7-form textarea:focus-visible,
.tgdc-contact-form .wpcf7-form input:focus-visible{
  outline: none;
} 

.tgdc-contact-form .wpcf7-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 44px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: all .4s;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  background: var(--gold);
  color: var(--deep);
  border: 0;
}



/* =========================================================
   REQUEST A CONSULTATION — MULTI-STEP MODAL
   Uses design tokens from styles.css
   ========================================================= */

/* ---------------------------------------------------------
   OVERLAY
   --------------------------------------------------------- */
.consult-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(8, 18, 12, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.consult-overlay.open {
  opacity: 1;
  visibility: visible
}

.consult-overlay.open .consult-modal {
  transform: none;
  opacity: 1
}

body.consult-lock {
  overflow: hidden
}

/* ---------------------------------------------------------
   MODAL BOX
   --------------------------------------------------------- */
.consult-modal {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(8, 18, 12, .45);
  padding: 52px 56px 44px;
  transform: translateY(24px) scale(.98);
  opacity: 0;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .45s;
}

.consult-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  font-size: 28px;
  line-height: 1;
  font-weight: 200;
  cursor: pointer;
  border-radius: 50%;
  transition: background .3s, color .3s;
}

.consult-close:hover {
  background: var(--paper-2);
  color: var(--forest)
}

/* ---------------------------------------------------------
   HEAD / PROGRESS
   --------------------------------------------------------- */
.consult-head {
  margin-bottom: 36px;
  padding-right: 20px
}

.consult-head .eyebrow {
  color: var(--gold);
  margin-bottom: 10px
}

.consult-head h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 28px;
}

.consult-progress {
  display: flex;
  align-items: center;
  gap: 0;
}

.cp-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  flex: 0 0 auto;
}

.cp-step span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-family: var(--sans);
  color: var(--ink-soft);
  transition: all .35s;
  flex: 0 0 auto;
}

.cp-step.active span,
.cp-step.done span {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.cp-step.active {
  color: var(--forest)
}

.cp-step.done {
  color: var(--ink)
}

.cp-step .cp-label {
  display: none
}

.cp-line {
  flex: 1 1 auto;
  height: 1px;
  background: var(--line);
  margin: 0 10px;
  position: relative;
  top: 0;
}

/* show step labels on wider screens */
@media (min-width: 481px) {
  .cp-step .cp-label {
    display: inline
  }
}

/* ---------------------------------------------------------
   FORM PANELS
   --------------------------------------------------------- */
.consult-form {
  position: relative
}

.consult-panel {
  display: none;
  animation: consultFadeIn .4s ease both;
}

.consult-panel.active {
  display: block
}

@keyframes consultFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.consult-q {
  font-size: 18px;
  font-family: var(--serif);
  color: var(--ink);
  margin-bottom: 22px;
}

/* Step 1 — option cards */
.consult-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.consult-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  transition: all .3s;
}

.consult-option:hover {
  border-color: var(--gold)
}

.consult-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.consult-option input:checked~.co-label,
.consult-option input:focus-visible~.co-label {
  color: var(--forest);
}

.consult-option:has(input:checked) {
  border-color: var(--forest);
  background: rgba(45, 90, 64, .05);
}

.co-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--paper-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: 0 0 auto;
}

.co-icon svg {
  width: 18px;
  height: 18px
}

.co-label {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 400;
}

.consult-option:has(input:checked) .co-label {
  color: var(--forest);
  font-weight: 500
}

.consult-options.consult-options-wide {
  grid-template-columns: 1fr
}

/* Step 2 / 3 — field groups */
.consult-fields {
  display: flex;
  flex-direction: column;
  gap: 22px
}

.consult-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.field-group label {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage);
}

.field-group input,
.field-group select,
.field-group textarea {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 13px 16px;
  width: 100%;
  transition: border-color .3s;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field-group textarea {
  resize: vertical;
  min-height: 96px
}

.field-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23525650'%3E%3Cpath d='M5.5 7.5l4.5 4.5 4.5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px
}

/* ---------------------------------------------------------
   SUCCESS PANEL
   --------------------------------------------------------- */
.consult-success {
  text-align: center;
  padding: 30px 0 10px;
}

.consult-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.consult-success-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold)
}

.consult-success h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 400;
}

.consult-success p {
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0 auto;
}

.consult-success .btn {
  margin-top: 32px
}

/* ---------------------------------------------------------
   ACTIONS
   --------------------------------------------------------- */
.consult-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.consult-actions.no-border {
  border-top: none;
  padding-top: 0;
  justify-content: center
}

.btn-ghost-dark {
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: transparent;
}

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

.consult-step-count {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone);
}

.consult-err {
  font-size: 12.5px;
  color: #a34a3a;
  margin-top: 14px;
  display: none;
}

.consult-err.show {
  display: block
}

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 600px) {
  .consult-modal {
    padding: 40px 26px 34px;
    max-height: 92vh
  }

  .consult-options {
    grid-template-columns: 1fr
  }

  .consult-row {
    grid-template-columns: 1fr
  }

  .consult-head h3 {
    font-size: 24px
  }

  .cp-line {
    margin: 0 6px
  }
}








/* =========================================================
   PORTFOLIO — LISTING & DETAILS
   Uses design tokens / base rules from styles.css
   (variables, .wrap, .eyebrow, .btn, header, footer, etc.)
   ========================================================= */

/* ---------------------------------------------------------
   PAGE HERO (shared banner style for both pages)
   --------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: var(--deep);
  overflow: hidden;
  padding: 160px 24px 90px;
}

.page-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .22;
  z-index: 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 100% 100% at 50% 40%, rgba(8, 18, 12, .35) 0%, rgba(8, 18, 12, .9) 100%),
    linear-gradient(180deg, rgba(8, 18, 12, .7) 0%, rgba(8, 18, 12, .35) 45%, rgba(8, 18, 12, .8) 100%);
}

.page-hero-bot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-hero .eyebrow {
  color: var(--gold);
  justify-content: center;
  display: flex;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 84px);
  margin: 18px 0 20px;
  font-weight: 400;
  line-height: 1.05;
}

.page-hero h1 em {
  font-style: italic;
  color: rgba(232, 213, 163, .92)
}

.page-hero p {
  max-width: 56ch;
  margin: 0 auto;
  font-size: 16px;
  color: rgba(242, 237, 227, .78);
  font-weight: 300;
}

/* Breadcrumb */
.crumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, .55);
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.crumb a {
  color: rgba(242, 237, 227, .8);
  transition: color .3s
}

.crumb a:hover {
  color: var(--gold)
}

.crumb span {
  color: var(--gold)
}

/* ---------------------------------------------------------
   PORTFOLIO FILTERS
   --------------------------------------------------------- */
.pf-filters-wrap {
  padding: 70px 0 10px;
  background: var(--paper);
}

.pf-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.pf-filter {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 12px 26px;
  border: 1px solid var(--line);
  border-radius: 44px;
  background: transparent;
  cursor: pointer;
  transition: all .35s;
}

.pf-filter:hover {
  border-color: var(--gold);
  color: var(--forest)
}

.pf-filter.active {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff
}

/* ---------------------------------------------------------
   PORTFOLIO GRID
   --------------------------------------------------------- */
.pf-grid-wrap {
  padding: 64px 0 130px;
  background: var(--paper)
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 34px;
}

.pf-card {
  display: block;
  position: relative;
  cursor: pointer;
}

.pf-card-ph {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/4;
  background: var(--paper-2);
}

.pf-card-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1), filter .6s;
}

.pf-card:hover .pf-card-ph img {
  transform: scale(1.06)
}

.pf-card-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 12, 0) 45%, rgba(8, 18, 12, .78) 100%);
  opacity: 0;
  transition: opacity .5s;
}

.pf-card:hover .pf-card-ph::after {
  opacity: 1
}

.pf-card-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  background: rgba(11, 24, 16, .55);
  border: 1px solid rgba(196, 160, 90, .4);
  padding: 7px 14px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
}

.pf-card-view {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 1;
  transform: translateY(10px);
  transition: opacity .4s, transform .4s;
}

.pf-card:hover .pf-card-view {
  opacity: 1;
  transform: none
}

.pf-card-view span {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
}

.pf-card-view i {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-style: normal;
  font-size: 15px;
}

.pf-card-body {
  padding: 22px 2px 0
}

.pf-card-body .loc {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
  display: block;
}

.pf-card-body h3 {
  font-size: 25px;
  color: var(--ink);
  margin-bottom: 6px;
  margin-top: 0;
}

.pf-card-body p {
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------
   PAGINATION
   --------------------------------------------------------- */
.pf-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 80px;
}

.pf-page {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ink-soft);
  transition: all .3s;
}

.pf-page:hover {
  border-color: var(--gold);
  color: var(--forest)
}

.pf-page.active {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff
}

.pf-page.next {
  width: auto;
  padding: 0 22px;
  border-radius: 30px;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase
}

/* ---------------------------------------------------------
   DETAILS — INTRO / META
   --------------------------------------------------------- */
.pd-intro {
  padding: 110px 0;
  background: var(--paper)
}

.pd-intro-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 90px;
  align-items: start;
}

.pd-intro h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 22ch;
}

.pd-intro .lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 56ch
}

.pd-meta {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.pd-meta a {
  margin-top: 15px;
}

.pd-meta-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.pd-meta-row span:first-child {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage);
}

.pd-meta-row span:last-child {
  font-size: 14.5px;
  color: var(--ink);
  text-align: right;
  max-width: 60%;
}

.pd-meta .btn {
  margin-top: 34px;
  width: 100%;
  justify-content: center
}

/* ---------------------------------------------------------
   DETAILS — HERO IMAGE
   --------------------------------------------------------- */
.pd-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--deep);
}

.pd-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.pd-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 18, 12, .15) 0%, rgba(8, 18, 12, .15) 40%, rgba(8, 18, 12, .92) 100%);
}

.pd-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 64px;
}

.pd-hero .crumb {
  justify-content: flex-start;
  margin-bottom: 18px
}

.pd-hero .eyebrow {
  color: var(--gold);
  display: block;
  margin-bottom: 16px
}

.pd-hero h1 {
  font-size: clamp(38px, 5.5vw, 76px);
  max-width: 22ch;
  font-weight: 400;
  line-height: 1.05
}

.pd-hero h1 em {
  font-style: italic;
  color: rgba(232, 213, 163, .92)
}

/* ---------------------------------------------------------
   DETAILS — GALLERY
   --------------------------------------------------------- */
.pd-gallery {
  padding: 0 0 110px;
  background: var(--paper)
}

.pd-gal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.pd-gal-grid figure {
  overflow: hidden;
  border-radius: 2px;
}

.pd-gal-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.pd-gal-grid figure:hover img {
  transform: scale(1.05)
}

.pd-gal-grid .wide {
  grid-column: 1 / -1
}

.pd-gal-grid .wide img {
  aspect-ratio: 16/8
}

/* ---------------------------------------------------------
   DETAILS — APPROACH / NOTES
   --------------------------------------------------------- */
.pd-approach {
  padding: 0 0 120px;
  background: var(--paper)
}

.pd-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}

.pd-approach .num {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.pd-approach h3 {
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 12px;
}

.pd-approach p {
  font-size: 14.5px;
  color: var(--ink-soft)
}

/* ---------------------------------------------------------
   DETAILS — QUOTE
   --------------------------------------------------------- */
.pd-quote {
  background: var(--forest);
  color: #fff;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pd-quote .wrap {
  max-width: 880px;
  position: relative;
  z-index: 1
}

.pd-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--cream);
}

.pd-quote blockquote em {
  font-style: italic;
  color: var(--gold)
}

.pd-quote .who {
  margin-top: 30px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, .6);
}

/* ---------------------------------------------------------
   DETAILS — NEXT PROJECT NAV
   --------------------------------------------------------- */
.pd-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pd-next a {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 44px;
  color: #fff;
  overflow: hidden;
}

.pd-next img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.pd-next a:hover img {
  transform: scale(1.06)
}

.pd-next a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 18, 12, .1) 0%, rgba(8, 18, 12, .82) 100%);
}

.pd-next-body {
  position: relative;
  z-index: 2
}

.pd-next-body small {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  display: block;
  margin-bottom: 10px;
}

.pd-next-body h3 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400
}

.pd-next .prev {
  border-right: 1px solid rgba(196, 160, 90, .18)
}

.pd-next .next-proj {
  text-align: right
}

.pd-next .next-proj .pd-next-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end
}

/* ---------------------------------------------------------
   FOOTER TWEAK (replaces inline style on appointment line)
   --------------------------------------------------------- */
.foot-appt {
  margin-top: 14px;
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* ---------------------------------------------------------
   MISC UTILITY CLASSES (replace inline styles)
   --------------------------------------------------------- */
.pd-intro-title {
  margin-top: 18px
}

.pd-lead-spaced {
  margin-top: 18px
}

.pd-sec-head-tight {
  margin-bottom: 0
}

.pd-eyebrow-sage {
  color: var(--sage)
}

.pd-approach-title {
  color: var(--ink)
}

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 1024px) {
  .pf-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .pd-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px
  }

  .pd-approach-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }
}

@media (max-width: 900px) {
  .page-hero {
    padding: 140px 24px 70px;
    min-height: 46vh
  }

  .pf-filters-wrap {
    padding: 56px 0 10px
  }

  .pf-grid-wrap {
    padding: 50px 0 90px
  }

  .pd-intro {
    padding: 80px 0
  }

  .pd-gallery {
    padding: 0 0 80px
  }

  .pd-approach {
    padding: 0 0 90px
  }

  .pd-quote {
    padding: 90px 0
  }

  .pd-hero {
    min-height: 56vh
  }
}

@media (max-width: 720px) {
  .pf-grid {
    grid-template-columns: 1fr;
    gap: 50px
  }

  .pf-filters {
    gap: 10px
  }

  .pf-filter {
    padding: 10px 20px;
    font-size: 10px
  }

  .pd-gal-grid {
    grid-template-columns: 1fr
  }

  .pd-gal-grid .wide img {
    aspect-ratio: 4/3
  }

  .pd-approach-grid {
    grid-template-columns: 1fr;
    padding-top: 44px;
    gap: 36px
  }

  .pd-next {
    grid-template-columns: 1fr
  }

  .pd-next .prev {
    border-right: none;
    border-bottom: 1px solid rgba(196, 160, 90, .18)
  }

  .pd-next .next-proj {
    text-align: left
  }

  .pd-next .next-proj .pd-next-body {
    align-items: flex-start
  }
}

@media (max-width: 560px) {
  .pf-pagination {
    gap: 8px
  }

  .pd-meta-row {
    flex-direction: column;
    gap: 6px
  }

  .pd-meta-row span:last-child {
    text-align: left;
    max-width: 100%
  }
}

.tgcd-sv-section {
  padding: var(--sec-py) 0;
}

.tgdc-career-section1 {
  padding: var(--sec-py) 0;
}

.tgdc-map-part {
  margin-top: 20px;
  height: 350px;
}

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

.tgdc-blog-meta,
.tgdc-blog-cats{
  display: none;
}

.tgdc-blog-card-body h3{
  margin-top: 0;
}


.tgdc-footer .tgdc-wrap{
  max-width: 1280px !important;
}

.error404 #tgdc-hdr {
    background-color: var(--forest) !important;
}


.tgdc-post-pagination {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    margin: 0 auto;
    margin-top: 50px;
    max-width: 780px;

    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1024px) {
  .tgdc-post-pagination{
    padding-left: 15px;
    padding-right: 15px;
  }
}

.tgdc-pagination-prev,
.tgdc-pagination-next {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-decoration: none;
    max-width: 45%;
}

.tgdc-pagination-next {
    text-align: right;
    margin-left: auto;
}

.tgdc-pagination-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tgdc-pagination-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.tgdc-pagination-prev:hover .tgdc-pagination-title,
.tgdc-pagination-next:hover .tgdc-pagination-title {
    color: var(--gold);
}

.tgdc-post-content ul{
  margin-left: 15px;
  padding-bottom: 15px;
}

.tgdc-to-top{
  position: fixed;
  bottom: 24px;
  right: 24px;
}

.tgdc-nav-right{
	display: none;
}

.comp-title{
	color: var(--gold) !important;
}

.tgdc-pp-content{
  padding: var(--sec-py) 0;
}

.tgdc-pp-content h2{
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 30px;
  margin-top: 22px;
}

.tgdc-pp-content h2:first-child{
  margin-top: 0 !important; 

}

.tgdc-pp-content p{
  margin-bottom: 8px;
}

.tgdc-pp-content ul{
  margin-left: 20px;
}


.grecaptcha-badge {
  visibility: hidden !important;
}

.grecaptcha-badge {
  bottom: 20px !important;
  right: 20px !important;
}



/* ----------------------------------------------------- */
.tgdc-service-main-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
}

.tgdc-svc-img2 {
  margin-bottom: 0;
}

.tgdc-service-img-content .tgdc-svc-intro p,
.tgdc-service-img-content .tgdc-svc-content p {
  margin-bottom: 14px;
}

.tgdc-service-img-content .tgdc-svc-intro,
.tgdc-service-img-content .tgdc-svc-content {
  margin-bottom: 20px;
}

.tgdc-why-choose-title h2 {
  font-size: 50px;
}

.tgdc-why-choose-title p {
  color: rgb(82, 86, 80);
}
.tgdc-why-choose-title ul {
    padding-left: 30px;
}
.tgdc-why-choose-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
}

.tgdc-why-choose-sec-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 20px;
  margin-top: 50px;
}

.tgdc-why-choose-single-card h3 {
  font-size: 30px;
  margin-top: 0;
}

.tgdc-why-choose-single-card p {
  color: rgb(82, 86, 80);
  margin-bottom: 12px;
}

.tgdc-why-choose-single-card {
  background: var(--cream);
  padding: 24px;
}

.tgdc-our-service-design-section{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}
.tgdc-our-service-content-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tgdc-our-service-content-text ul{
  padding-left: 30px;
}

.tgdc-our-service-content-text h3{
  margin-top: 0;
  margin-bottom: 0px;
  font-size: 30px;
}

.tgdc-our-service-detail-wrapper{
  margin-top: 50px;
}

.tgdc-our-service-detail-wrapper .tgdc-our-service-design-section:nth-child(even) .tgdc-our-cotent-img{
order: 1;
}


.tgdc-our-service-detail-wrapper .tgdc-our-service-design-section:last-child{
  margin-bottom: 0;
}


.tgdc-our-service-design,
.tgdc-our-service-process,
.tgdc-why-choose-service-sec,
.tgdc-outdoor-space-sec{
  padding-bottom: 100px;
}


.tgdc-service-process-cards{
    background: var(--cream);
  padding: 24px;
  border-left: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tgdc-service-process-cards h3{
  margin: 0;
  font-size: 24px;
}

.our-service-proces{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 24px;
  margin-top: 50px;
}

.service-outdoor-space-section-wrapper{
  margin-top: 50px;
}

.service-outdoor-space-section-wrapper p{
  margin-bottom: 12px;
  width: 100%;
}

.tgdc-long-content {
    display: flex;
}