/* ═══════════════════════════════════════════════════════
   Architecture Portfolio WP — Complete Theme Styles
   Faithfully ported from globals.css + Tailwind utilities
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Variables ── */
:root {
  --font-outfit: 'Outfit', system-ui, sans-serif;
  --obsidian: #ffffff;
  --ivory: #000000;
  --ash: #555555;
  --bone: #cccccc;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  font-family: var(--font-outfit);
  background: var(--obsidian);
  color: var(--ivory);
  overflow-x: hidden;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--ivory);
  z-index: 1000;
  transform-origin: left;
  will-change: transform;
  transform: scaleX(0);
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.arch-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  transition: all 0.7s ease;
  opacity: 0;
  transform: translateY(-80px);
}

.arch-navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.arch-navbar.loaded {
  opacity: 1;
  transform: translateY(0);
}

.arch-navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arch-navbar__logo img {
  height: 1.8rem;
  width: auto;
}

.arch-navbar__desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.arch-navbar__link {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  transition: color 0.3s;
}

.arch-navbar__link:hover,
.arch-navbar__link.active {
  color: #000;
}

/* Hamburger */
.arch-navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 70;
  position: relative;
}

.arch-navbar__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: #000;
  transition: all 0.3s;
}

.arch-navbar__hamburger.open span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.arch-navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.arch-navbar__hamburger.open span:last-child {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
.arch-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.arch-mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.arch-mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.arch-mobile-menu__link {
  font-size: 3rem;
  font-weight: 300;
  color: var(--ivory);
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.arch-mobile-menu.open .arch-mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.arch-mobile-menu__link:hover {
  color: rgba(0,0,0,0.6);
}

@media (min-width: 768px) {
  .arch-navbar { padding: 1.5rem 4rem; }
  .arch-navbar.scrolled { padding: 0.75rem 4rem; }
  .arch-navbar__desktop { display: flex; }
  .arch-navbar__hamburger { display: none; }
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.arch-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--obsidian);
}

.arch-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.arch-hero__slide.active {
  opacity: 1;
}

.arch-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.arch-hero__slide.active .arch-hero__img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.3) 0%,
    rgba(255,255,255,0.1) 40%,
    rgba(255,255,255,0.4) 100%);
}

.arch-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 2rem 6rem;
}

.arch-hero__text {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  position: absolute;
  bottom: 6rem;
  left: 2rem;
  right: 2rem;
}

.arch-hero__text.active {
  opacity: 1;
  transform: translateY(0);
}

.arch-hero__counter {
  font-size: 1.125rem;
  color: rgba(0,0,0,0.8);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.arch-hero__title {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 1.5rem;
  max-width: 64rem;
}

.arch-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(0,0,0,0.8);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Dots */
.arch-hero__dots {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.75rem;
}

.arch-hero__dot {
  width: 1.5rem;
  height: 1px;
  background: rgba(0,0,0,0.2);
  transition: all 0.5s;
}

.arch-hero__dot.active {
  width: 3rem;
  background: #000;
}

/* Scroll Indicator */
.arch-hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 1s ease;
}

.arch-hero__scroll-indicator.visible {
  opacity: 1;
}

.arch-hero__scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}

.arch-hero__scroll-line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.scroll-bounce {
  animation: scrollBounce 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .arch-hero__content { padding: 0 4rem 6rem; }
  .arch-hero__text { left: 4rem; right: 4rem; }
  .arch-hero__dots { right: 4rem; }
}

/* ═══════════════════════════════════════════════════════
   MARQUEE BANNER
   ═══════════════════════════════════════════════════════ */
.arch-marquee {
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 1.25rem 0;
  overflow: hidden;
  background: #D87441;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.arch-marquee__item {
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.arch-marquee__sep {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════════════════
   ABOUT PREVIEW
   ═══════════════════════════════════════════════════════ */
.arch-about {
  background: var(--obsidian);
  overflow: hidden;
}

.arch-about__intro {
  padding: 7rem 2rem 3rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.arch-about__label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 3rem;
}

.arch-about__heading {
  font-size: clamp(1.875rem, 4vw, 3.75rem);
  font-weight: 300;
  line-height: 1.2;
  max-width: 64rem;
  margin-bottom: 4rem;
  color: #000;
}

.arch-about__desc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.arch-about__desc {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.7;
}

.arch-footer__brand {
  margin-bottom: 2rem;
}

.arch-footer__brand img,
.arch-footer__brand .custom-logo {
  filter: brightness(0) invert(1);
}

.arch-about__cta {
  margin-top: 3rem;
}

.arch-about__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #000;
}

.arch-about__cta-line {
  display: block;
  width: 2rem;
  height: 1px;
  background: #000;
  transition: width 0.5s;
}

.arch-about__cta-link:hover .arch-about__cta-line {
  width: 3.5rem;
}

.arch-about__vision-block {
  margin-bottom: 3rem;
  max-width: 48rem;
}

.arch-about__vision-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .arch-about__intro { padding: 10rem 4rem 4rem; }
  .arch-about__desc-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

/* ═══════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════ */
.arch-services {
  background: var(--obsidian);
  padding-top: 3rem;
  padding-bottom: 8rem;
  min-height: 100vh;
}

.arch-services__header {
  padding: 0 2rem;
  margin-bottom: 4rem;
  max-width: 64rem;
}

.arch-services__label {
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 1.5rem;
}

.arch-services__heading {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
}

.arch-services__hr {
  margin: 0 2rem;
}

.arch-services__row {
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(212,207,198,0.2);
  transition: background 0.5s;
}

.arch-services__row:hover {
  background: rgba(0,0,0,0.03);
}

.arch-services__row-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

.arch-services__row-id span {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
}

.arch-services__row-title h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  color: var(--ivory);
  transition: padding-left 0.5s;
}

.arch-services__row:hover .arch-services__row-title h3 {
  padding-left: 1rem;
}

.arch-services__row-desc p {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.7;
  font-weight: 300;
}

@media (min-width: 768px) {
  .arch-services__header { padding: 0 4rem; }
  .arch-services__hr { margin: 0 4rem; }
  .arch-services__row { padding: 6rem 4rem; }
  .arch-services__row-grid { grid-template-columns: 2fr 5fr 5fr; gap: 0; }
  .arch-services__row-desc p { font-size: 1rem; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT STUDIO (gray section)
   ═══════════════════════════════════════════════════════ */
.arch-studio {
  background: #686767;
  padding: 4rem 1rem;
  margin-top: 5rem;
}

.arch-studio__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.arch-studio__label {
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.arch-studio__heading {
  font-size: clamp(1.5rem, 4vw, 3.75rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 3rem;
}

.arch-studio__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.arch-studio__text {
  font-size: 1rem;
  color: #fff;
  line-height: 1.7;
}

.arch-studio__mv {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid #d1d5db;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.arch-studio__mv-label {
  font-size: 0.875rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.arch-studio__mv-text {
  font-size: 1rem;
  color: #e5e7eb;
  line-height: 1.7;
}

.arch-studio__stats {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid #d1d5db;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: center;
}

.arch-studio__stat-num {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  font-weight: 600;
}

.arch-studio__stat-label {
  font-size: 0.75rem;
  color: #e5e7eb;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .arch-studio { padding: 8rem 2rem; }
  .arch-studio__inner { padding: 0 2rem; }
  .arch-studio__content { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .arch-studio__mv { grid-template-columns: 1fr 1fr; }
  .arch-studio__stats { grid-template-columns: repeat(4, 1fr); text-align: left; }
}

/* ═══════════════════════════════════════════════════════
   PROJECT SHOWCASE
   ═══════════════════════════════════════════════════════ */
.arch-projects {
  background: var(--obsidian);
  padding: 6rem 0;
}

.arch-projects__header {
  padding: 0 2rem;
  margin-bottom: 4rem;
}

.arch-projects__label {
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 1rem;
}

.arch-projects__heading {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 300;
  color: var(--ivory);
}

.arch-projects__hr {
  margin: 0 2rem;
}

.arch-project-card {
  border-bottom: 1px solid rgba(212,207,198,0.1);
}

.arch-project-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.arch-project-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 50vh;
}

.arch-project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arch-project-card__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
}

.arch-project-card__text {
  padding: 2.5rem;
}

.arch-project-card__meta {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 1.5rem;
}

.arch-project-card__title {
  font-size: clamp(1.5rem, 4vw, 3.75rem);
  font-weight: 300;
  color: #000;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.arch-project-card__location {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.6);
  margin-bottom: 1.5rem;
}

.arch-project-card__hr {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}

.arch-project-card__excerpt {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.arch-project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #000;
}

.arch-project-card__link-line {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: #000;
  transition: width 0.5s;
}

.arch-project-card__link:hover .arch-project-card__link-line {
  width: 3.5rem;
}

/* Non-clickable "View Project" hover label */
.arch-project-card__view-hover {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #000;
  margin-top: 2rem;
  pointer-events: none;
  cursor: default;
}

.arch-project-card:hover .arch-project-card__view-hover .arch-project-card__link-line {
  width: 3.5rem;
}

@media (min-width: 768px) {
  .arch-projects__header { padding: 0 4rem; }
  .arch-projects__hr { margin: 0 4rem; }
  .arch-project-card__grid { grid-template-columns: 1fr 1fr; }
  .arch-project-card__grid--reverse .arch-project-card__img-wrap { order: 2; }
  .arch-project-card__grid--reverse .arch-project-card__text { order: 1; }
  .arch-project-card__text { padding: 2.5rem 4rem; }
  .arch-project-card__img-wrap { height: 70vh; }
  .arch-project-card__excerpt { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════
   STATS BANNER
   ═══════════════════════════════════════════════════════ */
.arch-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  background: #7f7f7f;
}

.arch-stats__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(0,0,0,0.1);
}

.arch-stats__item:last-child { border-right: none; }

.arch-stats__value {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.5rem;
}

.arch-stats__label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
}

@media (min-width: 768px) {
  .arch-stats { grid-template-columns: repeat(4, 1fr); }
  .arch-stats__item { padding: 3rem 3.5rem; }
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.arch-testimonials {
  background: var(--obsidian);
  padding: 7rem 2rem 10rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.arch-testimonials__label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 3rem;
}

.arch-testimonials__heading {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  max-width: 48rem;
  margin-bottom: 5rem;
  color: #000;
}

.arch-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(0,0,0,0.1);
}

.arch-testimonials__card {
  background: var(--obsidian);
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.arch-testimonials__review {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 300;
  color: #000;
  line-height: 1.6;
  flex: 1;
}

.arch-testimonials__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 2rem;
}

.arch-testimonials__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.arch-testimonials__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.arch-testimonials__avatar--placeholder {
  background: rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.arch-testimonials__avatar--placeholder span {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(0,0,0,0.6);
}

.arch-testimonials__name {
  font-weight: 300;
  color: #000;
}

.arch-testimonials__role {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-top: 2px;
}

@media (min-width: 768px) {
  .arch-testimonials { padding: 7rem 4rem 10rem; }
  .arch-testimonials__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .arch-testimonials__grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════
   IMAGE GRID
   ═══════════════════════════════════════════════════════ */
.arch-imagegrid {
  background: #fff;
  padding: 6rem 2rem;
}

.arch-imagegrid__header { margin-bottom: 3.5rem; }

.arch-imagegrid__label {
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 0.75rem;
}

.arch-imagegrid__heading {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 300;
  color: #000;
}

.arch-imagegrid__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.arch-imagegrid__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.arch-imagegrid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.6s ease, transform 0.8s ease;
  filter: grayscale(100%);
}

.arch-imagegrid__item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.arch-imagegrid__caption {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: background 0.5s;
}

.arch-imagegrid__item:hover .arch-imagegrid__caption {
  background: rgba(255,255,255,0.4);
}

.arch-imagegrid__caption p {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
}

.arch-imagegrid__item:hover .arch-imagegrid__caption p {
  opacity: 1;
  transform: translateY(0);
}

.row-span-2 { grid-row: span 2; }

@media (min-width: 768px) {
  .arch-imagegrid { padding: 6rem 4rem; }
  .arch-imagegrid__grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.arch-footer {
  background: #7f7f7f;
}

.arch-footer__cta {
  background: #D87441;
  padding: 6rem 2rem 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.arch-footer__cta-label {
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}

.arch-footer__cta-heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 3rem;
  max-width: 64rem;
}

.arch-footer__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
}

.arch-footer__cta-line {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: #fff;
  transition: width 0.5s;
}

.arch-footer__cta-link:hover .arch-footer__cta-line {
  width: 4rem;
}

.arch-footer__grid {
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.arch-footer__brand-info {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 20rem;
}

.arch-footer__brand-info a {
  transition: color 0.3s;
}

.arch-footer__brand-info a:hover { color: #fff; }

.arch-footer__col-heading {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.arch-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.arch-footer__links a {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  transition: color 0.3s;
}

.arch-footer__links a:hover { color: #fff; }

.arch-footer__bottom {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.arch-footer__bottom p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .arch-footer__cta { padding: 5rem 4rem; }
  .arch-footer__grid { padding: 4rem 4rem; grid-template-columns: 1fr 1fr 1fr 1fr; }
  .arch-footer__brand { grid-column: span 1; }
  .arch-footer__bottom {
    padding: 1.5rem 4rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ═══════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════ */

/* Nav underline */
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-link:hover::after { width: 100%; }

/* Horizontal line */
.hr-thin {
  border: none;
  border-top: 1px solid rgba(212, 207, 198, 0.2);
}

/* Reveal animation */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Image effects */
.img-grayscale img {
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.8s ease;
}

.img-grayscale:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════ */
.arch-about-page-main,
.arch-services-page-main {
  background: var(--obsidian);
  padding-top: 6rem;
}

@media (min-width: 768px) {
  .arch-about-page-main,
  .arch-services-page-main {
    padding-top: 8rem;
  }
}

.arch-about-intro {
  padding: 4rem 2rem;
}

.arch-about-intro__label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 2rem;
  display: block;
}

.arch-about-intro__heading {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: #000;
  max-width: 64rem;
}

.arch-about-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 64rem;
}

.arch-about-intro__desc {
  font-size: 1.25rem;
  color: #555;
  line-height: 1.75;
  font-weight: 300;
}

@media (min-width: 768px) {
  .arch-about-intro {
    padding: 6rem 4rem;
  }
  .arch-about-intro__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .arch-about-intro {
    padding: 6rem 8rem;
  }
}

/* Design Services list */
.arch-about-services {
  margin-top: 4rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 4rem;
}

.arch-about-services__label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 2.5rem;
  display: block;
}

.arch-about-services__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.arch-about-services__item {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.arch-about-services__sep {
  color: rgba(0,0,0,0.3);
  font-weight: 300;
}

.arch-about-services__text {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.5;
  font-weight: 300;
}

@media (min-width: 768px) {
  .arch-about-services__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 4rem;
  }
}

/* How We Work Section */
.arch-about-how {
  padding: 4rem 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.arch-about-how__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.arch-about-how__image-col {
  position: relative;
  min-height: 50vh;
  display: flex;
}

.arch-about-how__img-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
}

.arch-about-how__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.8s ease;
}

.arch-about-how__img-container:hover .arch-about-how__img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.arch-about-how__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  pointer-events: none;
}

.arch-about-how__img-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 10;
}

.arch-about-how__img-caption p {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}

.arch-about-how__steps-col {
  padding: 3rem 2rem;
  background: #ffffff;
}

.arch-about-how__label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}

.arch-about-how__steps-list {
  display: flex;
  flex-direction: column;
}

.arch-about-how__step-row {
  display: flex;
  align-items: start;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.arch-about-how__step-row:first-child {
  padding-top: 1rem;
}

.arch-about-how__step-row:last-child {
  border-bottom: none;
}

.arch-about-how__step-number span {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.4);
  font-weight: 600;
  display: block;
  padding-top: 0.25rem;
}

.arch-about-how__step-content h3 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}

.arch-about-how__step-row:hover .arch-about-how__step-content h3 {
  transform: translateX(6px);
}

.arch-about-how__step-content p {
  font-size: 1.125rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.6;
  font-weight: 300;
}

@media (min-width: 768px) {
  .arch-about-how {
    padding: 6rem 0;
  }
  .arch-about-how__grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .arch-about-how__image-col {
    grid-column: span 2;
    min-height: 70vh;
  }
  .arch-about-how__steps-col {
    grid-column: span 3;
    padding: 4rem 4rem;
  }
}

@media (min-width: 1024px) {
  .arch-about-how__steps-col {
    padding: 6rem 6rem;
  }
}


/* ───────────────────────────────────────────────────────
   PROJECTS ARCHIVE PAGE & FILTERS
   ─────────────────────────────────────────────────────── */
.projects-filter-wrapper {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background-color: #ffffff;
}

.filter-tab-btn {
  font-family: 'Outfit', sans-serif !important;
  position: relative;
  transition: color 0.3s ease;
}

.filter-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.filter-tab-btn.active::after {
  transform: scaleX(1);
}

.filter-tab-btn:hover {
  color: #000000 !important;
}

/* ───────────────────────────────────────────────────────
   SINGLE PROJECT LAYOUTS
   ─────────────────────────────────────────────────────── */
.project-single-main {
  font-family: 'Outfit', sans-serif !important;
  background-color: #ffffff !important;
  color: #000000 !important;
}

.project-single-main h1, 
.project-single-main h2, 
.project-single-main h3, 
.project-single-main h4 {
  font-family: 'Outfit', sans-serif !important;
}

.project-single-main img {
  filter: grayscale(100%);
  transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-single-main img:hover {
  filter: grayscale(0%);
}

.project-single-main .grid {
  display: grid;
}

@media (min-width: 1024px) {
  .project-single-main .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .project-single-main .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .project-single-main .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 768px) {
  .project-single-main .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .project-single-main .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
}

/* ───────────────────────────────────────────────────────
   TAILWIND UTILITY FALLBACKS FOR PROJECT TEMPLATES
   ─────────────────────────────────────────────────────── */
.max-w-7xl {
  max-width: 80rem !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.w-full {
  width: 100% !important;
}
.h-auto {
  height: auto !important;
}
.block {
  display: block !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.pt-32 {
  padding-top: 8rem !important;
}
.pb-24 {
  padding-bottom: 6rem !important;
}
.pt-24 {
  padding-top: 6rem !important;
}
.pt-16 {
  padding-top: 4rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.py-24 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}
.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.mb-4 {
  margin-bottom: 1rem !important;
}
.mb-6 {
  margin-bottom: 1.5rem !important;
}
.mb-8 {
  margin-bottom: 2rem !important;
}
.mb-10 {
  margin-bottom: 2.5rem !important;
}
.mb-12 {
  margin-bottom: 3rem !important;
}
.mb-16 {
  margin-bottom: 4rem !important;
}
.mt-16 {
  margin-top: 4rem !important;
}
.gap-8 {
  gap: 2rem !important;
}
.gap-12 {
  gap: 3rem !important;
}
.gap-16 {
  gap: 4rem !important;
}
.space-y-8 > * + * {
  margin-top: 2rem !important;
}
.font-serif {
  font-family: serif !important;
}
.font-sans {
  font-family: var(--font-outfit), sans-serif !important;
}
.text-xs {
  font-size: 0.75rem !important;
}
.text-sm {
  font-size: 0.875rem !important;
}
.text-base {
  font-size: 1rem !important;
}
.text-lg {
  font-size: 1.125rem !important;
}
.text-xl {
  font-size: 1.25rem !important;
}
.text-3xl {
  font-size: 1.875rem !important;
  line-height: 2.25rem !important;
}
.text-ivory {
  color: var(--ivory) !important;
}
.whitespace-nowrap {
  white-space: nowrap !important;
}
@media (min-width: 768px) {
  .md\:text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
}
.text-4xl {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
.text-5xl {
  font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
}
.text-6xl {
  font-size: clamp(3rem, 6vw, 4.5rem) !important;
}
.text-8xl {
  font-size: clamp(4rem, 8vw, 6.5rem) !important;
}
.font-light {
  font-weight: 300 !important;
}
.leading-tight {
  line-height: 1.25 !important;
}
.leading-relaxed {
  line-height: 1.625 !important;
}
.tracking-ultra {
  letter-spacing: 0.25em !important;
}
.uppercase {
  text-transform: uppercase !important;
}
.hover\:scale-102:hover {
  transform: scale(1.02) !important;
}
.transition-transform {
  transition-property: transform !important;
}
.duration-700 {
  transition-duration: 700ms !important;
}
.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 640px) {
  .sm\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .md\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
}

/* ───────────────────────────────────────────────────────
   TEAM SECTION & EXPERT PROFILE CUSTOM STYLES
   ─────────────────────────────────────────────────────── */
.arch-team-section-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
}
@media (min-width: 768px) {
  .arch-team-section-container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 1024px) {
  .arch-team-section-container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.arch-team-cat-heading {
  font-family: var(--font-outfit), sans-serif !important;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 300;
  color: var(--ivory);
  white-space: nowrap;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .arch-team-cat-heading {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.arch-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px) {
  .arch-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .arch-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .arch-team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.arch-team-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.5s ease;
  overflow: hidden;
}
.arch-team-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.arch-team-card__inner {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.arch-team-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.arch-team-card__img-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: #f3f4f6;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arch-team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.arch-team-card:hover .arch-team-card__img {
  filter: grayscale(0%);
}

.arch-team-card__initial {
  font-family: var(--font-outfit), sans-serif;
  color: rgba(0, 0, 0, 0.3);
  font-size: 1.5rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arch-team-card__meta {
  min-width: 0;
  padding-top: 0.25rem;
  display: flex;
  flex-direction: column;
}

.arch-team-card__name {
  font-family: var(--font-outfit), sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 300 !important;
  color: #000000 !important;
  line-height: 1.25 !important;
  margin-bottom: 0.25rem !important;
}

.arch-team-card__role {
  font-family: var(--font-outfit), sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #D87441 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.025em !important;
  line-height: 1.375 !important;
}

.arch-team-card__desc {
  font-family: var(--font-outfit), sans-serif !important;
  font-size: 0.75rem !important;
  line-height: 1.625 !important;
  color: rgba(0, 0, 0, 0.5) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1rem;
  margin-top: auto;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.arch-team-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #D87441;
  color: #ffffff !important;
  font-family: var(--font-outfit), sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  padding: 1rem 0 !important;
  margin-top: auto;
  border-radius: 0;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.arch-team-card__btn:hover {
  background: #c2632e !important;
  color: #ffffff !important;
}

/* ─── EXPERT PROFILE VIEW (COLLIERS LAYOUT) ─── */
.profile-main-wrap {
  background-color: #ffffff;
  color: #000000;
  min-height: 100vh;
  padding-top: 0;

  padding-bottom: 0;
}
@media (min-width: 1024px) {
  .profile-main-wrap {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.profile-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .profile-layout-grid {
    grid-template-columns: 45vw 55vw;
    gap: 0;
    align-items: stretch;
  }
}

.profile-left-col {
  position: relative;
  width: 100%;
}
@media (min-width: 1024px) {
  .profile-left-col {
    height: 100%; /* Stretches left col to match right content block dynamically */
    min-height: 650px;
  }
}

.profile-banner-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fafafa;
}
@media (max-width: 1023px) {
  .profile-banner-container {
    aspect-ratio: 16 / 9;
  }
}

.profile-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.25;
}

.profile-avatar-overlay-wrap {
  position: absolute;
  border-radius: 50%;
  border: 6px solid #ffffff;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 200px;
  height: 200px;
}

/* Position overlay avatar */
@media (max-width: 767px) {
  .profile-avatar-overlay-wrap {
    width: 130px;
    height: 130px;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px;
  }
  .profile-left-col {
    margin-bottom: 4.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .profile-avatar-overlay-wrap {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
  }
  .profile-left-col {
    margin-bottom: 6rem;
  }
}
@media (min-width: 1024px) {
  .profile-avatar-overlay-wrap {
    width: 280px; /* Big profile picture */
    height: 280px;
    right: -140px; /* Centered on the dividing line between columns */
    top: 50%;
    transform: translateY(-50%);
  }
}

.profile-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar-placeholder {
  color: #999999;
  width: 90px;
  height: 90px;
}

.profile-right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .profile-right-col {
    padding: 2rem 4rem;
  }
}
@media (min-width: 1024px) {
  .profile-right-col {
    padding: 8rem 10% 6rem 12rem; /* Clears the larger 280px avatar and clears fixed header/footer spacing */
  }
}

.profile-name {
  font-family: serif;
  font-size: clamp(2.5rem, 5.5vw, 4rem); /* Enlarged name text */
  font-weight: 300;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 0.75rem;
}

.profile-designation {
  font-size: 1.05rem; /* Enlarged role designation */
  font-weight: 700;
  color: #D87441;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2.25rem;
  display: inline-block;
  border-bottom: 2px solid rgba(216, 116, 65, 0.15);
  padding-bottom: 0.5rem;
}

.profile-section-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666666;
  margin-bottom: 0.75rem;
}

.profile-bio {
  font-size: 1.1rem; /* Enlarged bio biography text */
  line-height: 1.8;
  color: #333333;
  margin-bottom: 2.5rem;
}

.profile-socials {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: center;
}

.profile-social-link {
  color: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, transform 0.2s;
  text-decoration: none;
}
.profile-social-link:hover {
  color: #D87441;
  transform: scale(1.1);
}
.profile-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.profile-contact-btn {
  align-self: flex-start;
  background-color: #D87441;
  color: #ffffff !important;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2.75rem;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(216, 116, 65, 0.2);
  text-decoration: none;
}
.profile-contact-btn:hover {
  background-color: #c56232;
  box-shadow: 0 6px 20px rgba(216, 116, 65, 0.35);
  transform: translateY(-2px);
  color: #ffffff !important;
}

/* --- TEAM HEADER BANNER STYLES --- */
.arch-team-header-banner {
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5rem 2rem 0; /* Add padding top to account for header spacing */
  box-sizing: border-box;
}
.arch-team-header-banner-content {
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .arch-team-header-banner {
    padding-left: 4rem;
    padding-right: 4rem;
    height: 420px;
  }
}
@media (min-width: 1024px) {
  .arch-team-header-banner {
    padding-left: 6rem;
    padding-right: 6rem;
    height: 480px;
  }
}
.arch-team-header-banner-tagline {
  color: #000000;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 0.75rem;
  font-family: sans-serif;
}
.arch-team-header-banner-title {
  font-family: serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #000000;
  margin: 0;
}
.arch-team-section-container--has-banner {
  padding-top: 4rem;
}

.profile-quote-container {
  padding: 3rem 2rem;
  font-size: 1.25rem;
  font-style: italic;
  color: #666;
  text-align: center;
  border-top: 3px solid rgba(216, 116, 65, 0.5);
  background: #ffffff;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .profile-quote-container {
    padding: 4rem 3rem 3rem 3rem;
    font-size: 1.4rem;
  }
}
