/* ============================================
   DESIGN SYSTEM
============================================ */
:root {
  --c-charcoal:   #1C1F26;
  --c-charcoal-2: #252839;
  --c-stone:      #C8B89A;
  --c-ochre:      #C8860A;
  --c-parchment:  #F4F0E8;
  --c-ink:        #313131;
  --c-mid:        #6B6B6B;
  --c-muted:      #a3a4a9;
  --c-rule:       #ccc;
  --c-surface:    #f3f3f3;
  --c-white:      #ffffff;
  --c-green:      #1a7a3c;

  --f-sans:     'Barlow', Helvetica, Arial, sans-serif;
  --f-cond:     'Barlow Condensed', Helvetica, Arial, sans-serif;
  --f-serif:    'EB Garamond', Georgia, serif;

  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  6.5rem;

  --max:    1260px;
  --radius: 0;
  --border: 1px solid var(--c-rule);
  --shadow-btn: 0 0 0 1px var(--c-charcoal) inset;
  --transition: 0.2s ease;
}

/* ============================================
   RESET
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 16px;
  color: var(--c-ink);
  background: var(--c-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ============================================
   UTILITY
============================================ */
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--sp-md); }
.section { padding-block: var(--sp-xl); }
.section--sm { padding-block: var(--sp-lg); }
.section--dark { background: var(--c-charcoal); color: var(--c-parchment); }
.section--parchment { background: var(--c-parchment); }
.section--surface { background: var(--c-surface); }
.section--stone { background: #EDE7DC; }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ochre);
  display: block;
  margin-bottom: 0.75rem;
}
.eyebrow--light { color: var(--c-stone); }

.rule {
  display: block; width: 36px; height: 2px;
  background: var(--c-ochre); margin-bottom: var(--sp-md);
}
.rule--center { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-sans);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--c-charcoal); color: var(--c-parchment);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover { background: var(--c-ochre); box-shadow: 0 0 0 1px var(--c-ochre) inset; }

.btn--outline {
  background: transparent; color: var(--c-charcoal);
  box-shadow: var(--shadow-btn);
}
.btn--outline:hover { background: var(--c-charcoal); color: var(--c-parchment); }

.btn--outline-light {
  background: transparent; color: var(--c-parchment);
  box-shadow: 0 0 0 1px rgba(244,240,232,0.45) inset;
}
.btn--outline-light:hover { background: var(--c-parchment); color: var(--c-charcoal); }

.btn--whatsapp {
  background: var(--c-green); color: var(--c-white);
  box-shadow: 0 0 0 1px var(--c-green) inset;
}
.btn--whatsapp:hover { background: #155c2d; box-shadow: 0 0 0 1px #155c2d inset; }

/* ============================================
   ANNOUNCEMENT BAR
============================================ */
.ann-bar {
  background: var(--c-charcoal-2);
  color: var(--c-stone);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.6rem var(--sp-md);
  line-height: 1.4;
}
.ann-bar strong { color: var(--c-parchment); font-weight: 600; }
.ann-bar a { color: var(--c-stone); text-decoration: underline; text-underline-offset: 3px; transition: color var(--transition); }
.ann-bar a:hover { color: var(--c-parchment); }

/* ============================================
   HEADER
============================================ */
.site-header { background: var(--c-parchment); position: sticky; top: 0; z-index: 100; }
.site-header__top {
  border-bottom: var(--border);
  padding: 1.1rem 0;
}
.site-header__top-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-md);
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 40px; width: auto; display: block; }

.header-utils { display: flex; align-items: center; gap: var(--sp-sm); }
.header-tel {
  font-family: var(--f-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-charcoal);
  transition: color var(--transition);
}
.header-tel:hover { color: var(--c-ochre); }

.site-header__nav { border-bottom: var(--border); }
.nav-inner {
  display: flex; align-items: stretch;
  height: 46px;
}
.nav-inner a, .nav-dropdown__trigger {
  font-family: var(--f-sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-charcoal);
  padding: 0 1.1rem;
  display: flex; align-items: center;
  border-right: var(--border);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-inner a:hover { background: var(--c-charcoal); color: var(--c-parchment); }
.nav-inner a.active, .nav-dropdown__trigger.active { background: var(--c-charcoal); color: var(--c-parchment); }

.nav-dropdown { position: relative; display: flex; align-items: stretch; }
.nav-dropdown__trigger {
  cursor: pointer; gap: 0.4rem;
}
.nav-dropdown__trigger svg { width: 9px; height: 9px; stroke: currentColor; fill: none; flex-shrink: 0; transition: transform var(--transition); }
.nav-dropdown:hover .nav-dropdown__trigger { background: var(--c-charcoal); color: var(--c-parchment); }
.nav-dropdown:hover .nav-dropdown__trigger svg { transform: rotate(180deg); }

.nav-dropdown__menu {
  position: absolute; top: 100%; left: -1px;
  background: var(--c-charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  min-width: 230px;
  opacity: 0; pointer-events: none;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown__menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown__menu a {
  display: block; padding: 0.6rem 1.1rem;
  font-size: 0.74rem; letter-spacing: 0.08em;
  color: var(--c-stone); font-weight: 400;
  border-right: none; border-left: none;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown__menu a:hover { background: rgba(255,255,255,0.06); color: var(--c-parchment); }
.nav-dropdown__menu a:first-child { border-left: none; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--c-charcoal); transition: all var(--transition); }

/* ============================================
   MOBILE NAV OVERLAY
============================================ */
.mobile-nav {
  position: fixed; inset: 0; z-index: 300;
  background: var(--c-charcoal);
  display: flex; flex-direction: column;
  padding: var(--sp-md);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__close {
  align-self: flex-end;
  background: none; border: 1px solid rgba(255,255,255,0.2);
  color: var(--c-parchment); width: 40px; height: 40px;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-lg);
}
.mobile-nav__links { display: flex; flex-direction: column; gap: 0; }
.mobile-nav__links a {
  font-family: var(--f-cond); font-size: 1.75rem; font-weight: 400;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--c-stone); padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-nav__links a:hover { color: var(--c-parchment); }
.mobile-nav__foot {
  margin-top: auto; padding-top: var(--sp-md);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav__foot p { font-size: 0.78rem; color: rgba(200,184,154,0.45); margin-bottom: 0.5rem; }
.mobile-nav__foot a { display: block; font-size: 1rem; color: var(--c-parchment); margin-bottom: 0.3rem; }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative; min-height: 87vh;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--c-charcoal);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  animation: zoomOut 1.6s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
@keyframes zoomOut {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(200,184,154,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,184,154,0.03) 1px, transparent 1px);
  background-size: 90px 90px;
}

.hero__body {
  position: relative; z-index: 2; width: 100%;
  padding-bottom: 5.5rem;
}
.hero__inner { padding-block-end: var(--sp-lg); }

.hero__tag {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0; animation: up 0.65s 0.3s ease forwards;
}
.hero__tag-line { width: 28px; height: 1px; background: var(--c-ochre); }
.hero__tag-text {
  font-family: var(--f-sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-stone);
}

.hero h1 {
  font-family: var(--f-serif);
  font-size: clamp(2.6rem, 5.8vw, 4.8rem);
  font-weight: 400; line-height: 1.08;
  color: var(--c-parchment);
  max-width: 15ch;
  margin-bottom: 1.5rem;
  opacity: 0; animation: up 0.65s 0.45s ease forwards;
}
.hero h1 em { font-style: italic; color: var(--c-stone); }

.hero__sub {
  font-family: var(--f-sans); font-size: 1rem; font-weight: 300;
  color: var(--c-stone); max-width: 50ch; line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0; animation: up 0.65s 0.6s ease forwards;
}

.hero__cta {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  opacity: 0; animation: up 0.65s 0.75s ease forwards;
}

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

.hero__strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--c-ochre); z-index: 3;
  padding: 0.85rem var(--sp-md);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(0.75rem, 3vw, 2.5rem); flex-wrap: wrap;
}
.hero__strip-item {
  font-family: var(--f-sans); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-charcoal);
  white-space: nowrap;
}
.hero__strip-sep { width: 1px; height: 14px; background: rgba(28,31,38,0.22); }

/* ============================================
   PAGE HERO (inner pages)
============================================ */
.page-hero {
  background: var(--c-charcoal);
  padding-block: var(--sp-xl);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.25;
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c-stone);
  margin-bottom: var(--sp-md);
}
.page-hero__breadcrumb a { color: var(--c-stone); transition: color var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--c-parchment); }
.page-hero__breadcrumb span { color: rgba(200,184,154,0.35); }
.page-hero h1 {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400; line-height: 1.1;
  color: var(--c-parchment);
  max-width: 20ch;
  margin-bottom: 1rem;
}
.page-hero__lead {
  font-size: 1rem; font-weight: 300;
  color: var(--c-stone); max-width: 52ch; line-height: 1.75;
}

/* ============================================
   TRUST BAR
============================================ */
.trust-bar {
  background: var(--c-white);
  border-bottom: var(--border);
  padding: var(--sp-md) 0;
}
.trust-bar__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; border: var(--border); border-right: none;
}
.trust-item {
  padding: 1.25rem 1.25rem;
  border-right: var(--border);
  display: flex; flex-direction: column; gap: 0.3rem;
}
.trust-item__label {
  font-family: var(--f-sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-ochre);
}
.trust-item__value { font-size: 0.88rem; font-weight: 400; color: var(--c-ink); line-height: 1.4; }

/* ============================================
   ABOUT STATEMENT
============================================ */
.about { background: var(--c-parchment); padding-block: var(--sp-xl); }
.about__grid {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: var(--sp-xl); align-items: start;
}
.about__left { position: sticky; top: 100px; }
.about__left h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; line-height: 1.15;
  color: var(--c-charcoal); margin-bottom: var(--sp-md);
}
.about__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--sp-md); }
.pill {
  font-size: 0.67rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-charcoal);
  box-shadow: 0 0 0 1px var(--c-rule) inset;
  padding: 0.35rem 0.85rem; background: var(--c-white);
}
.about__right p {
  font-size: 1rem; line-height: 1.8; color: var(--c-ink);
  max-width: 62ch; margin-bottom: 1.25rem;
}
.about__right p:last-of-type { margin-bottom: var(--sp-md); }
.about__img { margin-top: var(--sp-md); overflow: hidden; }
.about__img img { width: 100%; height: 260px; object-fit: cover; object-position: center 30%; }

/* ============================================
   SERVICES
============================================ */
.services { background: var(--c-charcoal); padding-block: var(--sp-xl); }
.services__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: var(--sp-lg); flex-wrap: wrap; gap: var(--sp-md);
}
.services__head h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; color: var(--c-parchment);
}
.services__head p { font-size: 0.88rem; color: var(--c-stone); max-width: 38ch; text-align: right; }
.services-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid rgba(255,255,255,0.08);
}
.svc {
  padding: 1.75rem 1.5rem 2.25rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
  transition: background var(--transition);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.svc:hover { background: rgba(255,255,255,0.03); }
.svc::after {
  content:''; position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0; background: var(--c-ochre);
  transition: width 0.3s ease;
}
.svc:hover::after { width: 100%; }
.svc__num {
  font-family: var(--f-cond); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--c-ochre);
  display: block; margin-bottom: 1.25rem;
}
.svc__title {
  font-family: var(--f-serif); font-size: 1.2rem; font-weight: 400;
  color: var(--c-parchment); margin-bottom: 0.65rem; line-height: 1.25;
}
.svc__desc { font-size: 0.82rem; color: var(--c-stone); line-height: 1.65; max-width: 26ch; }
.svc__link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 1.25rem; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-ochre);
  transition: gap var(--transition);
}
.svc:hover .svc__link { gap: 9px; }
.svc__link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; }

/* ============================================
   PROJECTS
============================================ */
.projects { background: var(--c-white); padding-block: var(--sp-xl); }
.projects__head { margin-bottom: var(--sp-lg); }
.projects__head h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; color: var(--c-charcoal);
}
.projects__head p { font-size: 0.88rem; color: var(--c-muted); font-style: italic; margin-top: 0.5rem; }
.projects__foot { margin-top: var(--sp-md); }

.project-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: var(--border); margin-bottom: var(--sp-md);
}
.pcard {
  display: flex; flex-direction: column;
  border-right: var(--border);
  cursor: pointer; overflow: hidden;
  text-decoration: none; color: inherit;
}
.pcard:last-child { border-right: none; }
.pcard__img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
}
.pcard__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.pcard:hover .pcard__img img { transform: scale(1.05); }
.pcard__body {
  padding: 1.5rem 1.5rem 2rem;
  flex: 1; display: flex; flex-direction: column;
  border-top: var(--border);
}
.pcard__loc {
  font-family: var(--f-cond); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-ochre);
  display: block; margin-bottom: 0.4rem;
}
.pcard__title {
  font-family: var(--f-serif); font-size: 1.35rem; font-weight: 400;
  color: var(--c-charcoal); line-height: 1.2; margin-bottom: 0.75rem;
}
.pcard__desc {
  font-size: 0.83rem; color: var(--c-mid);
  line-height: 1.65; flex: 1; margin-bottom: 1rem;
}
.pcard__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1.25rem; }
.tag {
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-charcoal); padding: 0.2rem 0.6rem;
  box-shadow: 0 0 0 1px var(--c-rule) inset;
  background: var(--c-white);
}
.pcard__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 1rem; border-top: var(--border);
}
.pcard__link {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-charcoal);
  display: inline-flex; align-items: center; gap: 5px;
  transition: color var(--transition), gap var(--transition);
}
.pcard:hover .pcard__link { color: var(--c-ochre); gap: 9px; }
.pcard__link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; }
.pcard__arr {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1px var(--c-rule) inset;
  flex-shrink: 0;
  transition: all var(--transition);
}
.pcard:hover .pcard__arr { background: var(--c-charcoal); box-shadow: 0 0 0 1px var(--c-charcoal) inset; }
.pcard__arr svg { width: 15px; height: 15px; stroke: var(--c-charcoal); fill: none; transition: stroke var(--transition); }
.pcard:hover .pcard__arr svg { stroke: var(--c-parchment); }

/* ============================================
   CLIENTS / LOGO STRIPS
============================================ */
.logo-strip { background: var(--c-parchment); border-top: var(--border); }
.logo-strip:last-of-type { border-bottom: var(--border); }
.logo-strip__inner {
  display: flex; align-items: stretch; flex-wrap: wrap;
}
.logo-strip__label {
  display: flex; align-items: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--c-ochre);
  border-right: var(--border); white-space: nowrap; flex-shrink: 0;
  min-width: 120px;
}
.logo-strip__logos { display: flex; align-items: stretch; flex-wrap: wrap; flex: 1; }

.clients__logos { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.accred-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 0 0 1px var(--c-rule) inset;
  margin-right: -1px;
  transition: background var(--transition);
}
.accred-logo:hover { background: var(--c-white); }
.accred-logo img {
  height: 38px; width: auto; max-width: 90px;
  object-fit: contain;
  filter: grayscale(100%); opacity: 0.65;
  transition: filter var(--transition), opacity var(--transition);
}
.accred-logo:hover img { filter: grayscale(0%); opacity: 1; }

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials { background: var(--c-charcoal); padding-block: var(--sp-xl); }
.testimonials__head { margin-bottom: var(--sp-lg); }
.testimonials__head h2 {
  font-family: var(--f-serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; color: var(--c-parchment);
}
.testimonials__rating {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 0.5rem;
}
.stars { display: flex; gap: 2px; }
.star { color: #fbbf24; font-size: 0.9rem; }
.rating-text { font-size: 0.8rem; color: var(--c-stone); letter-spacing: 0.04em; }

.t-strip-wrap {
  overflow-x: auto; scrollbar-width: none;
  margin-inline: calc(-1 * var(--sp-md));
  padding-inline: var(--sp-md);
}
.t-strip-wrap::-webkit-scrollbar { display: none; }
.t-strip {
  display: flex; gap: 0;
  width: max-content;
  border: 1px solid rgba(255,255,255,0.1);
}
.t-card {
  width: 360px; flex-shrink: 0;
  padding: 2rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column;
  background: transparent;
  transition: background var(--transition);
}
.t-card:hover { background: rgba(255,255,255,0.03); }
.t-card__stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.t-card__text {
  font-family: var(--f-serif); font-style: italic;
  font-size: 0.97rem; line-height: 1.7;
  color: var(--c-stone); flex: 1; margin-bottom: 1.5rem;
}
.t-card__author { display: flex; align-items: center; gap: 0.6rem; }
.t-card__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: var(--c-charcoal-2);
  display: flex; align-items: center; justify-content: center;
}
.t-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-card__avatar-init {
  font-family: var(--f-cond); font-size: 0.9rem; font-weight: 600;
  color: var(--c-stone); letter-spacing: 0.05em;
}
.t-card__name { font-size: 0.8rem; font-weight: 600; color: var(--c-parchment); letter-spacing: 0.04em; }
.t-card__role { font-size: 0.7rem; color: var(--c-muted); margin-top: 1px; }

.t-controls {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: var(--sp-md); flex-wrap: wrap; gap: var(--sp-sm);
}
.t-nav { display: flex; gap: 0; }
.t-nav button {
  width: 42px; height: 42px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18) inset;
  background: transparent;
  border: none; color: var(--c-stone);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  margin-right: -1px;
}
.t-nav button:hover { background: var(--c-ochre); box-shadow: 0 0 0 1px var(--c-ochre) inset; color: var(--c-white); }
.t-nav button svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.t-google-link { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-stone); font-weight: 500; transition: color var(--transition); }
.t-google-link:hover { color: var(--c-parchment); }

/* ============================================
   FAQ
============================================ */
.faq { background: var(--c-parchment); padding-block: var(--sp-xl); }
.faq__grid { display: grid; grid-template-columns: 5fr 7fr; gap: var(--sp-xl); align-items: start; }
.faq__left { position: sticky; top: 120px; }
.faq__left h2 {
  font-family: var(--f-serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; color: var(--c-charcoal); margin-bottom: 0.75rem;
}
.faq__left p { font-size: 0.88rem; color: var(--c-mid); max-width: 32ch; line-height: 1.65; margin-bottom: var(--sp-md); }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: var(--border); }
.faq-item:first-child { border-top: var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--sp-sm); padding: 1.25rem 0;
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--f-serif); font-size: 1.05rem; font-weight: 400;
  color: var(--c-charcoal); cursor: pointer;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--c-ochre); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--c-rule) inset;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.faq-icon svg { width: 11px; height: 11px; stroke: var(--c-charcoal); fill: none; transition: transform var(--transition), stroke var(--transition); }
.faq-item.open .faq-icon { background: var(--c-charcoal); box-shadow: 0 0 0 1px var(--c-charcoal) inset; }
.faq-item.open .faq-icon svg { stroke: var(--c-parchment); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.25rem; }
.faq-a p { font-size: 0.9rem; color: var(--c-mid); line-height: 1.75; max-width: 58ch; }

/* ============================================
   CONTACT CTA
============================================ */
.contact { background: var(--c-charcoal-2); padding-block: var(--sp-xl); }
.contact__grid { display: grid; grid-template-columns: 6fr 5fr; gap: var(--sp-xl); align-items: start; }
.contact__left h2 {
  font-family: var(--f-serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; color: var(--c-parchment); margin-bottom: var(--sp-sm);
}
.contact__left p { font-size: 0.95rem; color: var(--c-stone); max-width: 46ch; line-height: 1.75; margin-bottom: var(--sp-md); }
.contact__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.contact__panel {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1) inset;
  padding: var(--sp-md);
}
.contact-row { display: flex; flex-direction: column; gap: 3px; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.contact-row:first-child { padding-top: 0; }
.contact-row:last-child { border-bottom: none; }
.c-label { font-size: 0.63rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-ochre); }
.c-val { font-size: 0.9rem; color: var(--c-parchment); font-weight: 300; }
.c-val a { color: var(--c-stone); transition: color var(--transition); }
.c-val a:hover { color: var(--c-parchment); }
.contact__legal {
  margin-top: var(--sp-xl);
  padding-top: var(--sp-md);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.contact__legal p { font-size: 0.7rem; color: rgba(200,184,154,0.35); letter-spacing: 0.04em; }

/* ============================================
   CONTACT FORM (contact page)
============================================ */
.contact-form { background: var(--c-parchment); padding-block: var(--sp-xl); }
.contact-form__grid { display: grid; grid-template-columns: 5fr 7fr; gap: var(--sp-xl); align-items: start; }
.contact-form__left { position: sticky; top: 120px; }
.contact-form__left h2 {
  font-family: var(--f-serif); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400; color: var(--c-charcoal); margin-bottom: 0.75rem;
}
.contact-form__left p { font-size: 0.9rem; color: var(--c-mid); line-height: 1.7; margin-bottom: var(--sp-md); max-width: 34ch; }
.contact-form__details { display: flex; flex-direction: column; gap: 1rem; }
.cfd-row { display: flex; flex-direction: column; gap: 2px; }
.cfd-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-ochre); }
.cfd-val { font-size: 0.9rem; color: var(--c-charcoal); }
.cfd-val a { color: var(--c-charcoal); transition: color var(--transition); }
.cfd-val a:hover { color: var(--c-ochre); }

.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-charcoal); }
.field input,
.field select,
.field textarea {
  font-family: var(--f-sans); font-size: 0.9rem; font-weight: 300;
  color: var(--c-ink); background: var(--c-white);
  border: none; box-shadow: 0 0 0 1px var(--c-rule) inset;
  padding: 0.75rem 1rem; border-radius: 0;
  transition: box-shadow var(--transition);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--c-charcoal) inset;
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.75rem; color: var(--c-muted); line-height: 1.5; }

/* ============================================
   FOOTER
============================================ */
.site-footer { background: #13151b; padding-block: var(--sp-lg); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-lg); }
.footer-brand { max-width: 26ch; }
.footer-logo {
  font-family: var(--f-cond); font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-parchment); margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.78rem; color: rgba(200,184,154,0.72); line-height: 1.65; }
.footer-col h4 {
  font-family: var(--f-sans); font-size: 0.63rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #be8930; margin-bottom: 0.85rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col ul a { font-size: 0.78rem; color: rgba(200,184,154,0.78); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--c-parchment); }
.footer-bottom {
  margin-top: var(--sp-lg); padding-top: var(--sp-sm);
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.7rem; color: rgba(200,184,154,0.55); }
.footer-logo-img {
  height: 28px; width: auto; display: block;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(0.88) sepia(0.15);
}

/* ============================================
   SCROLL REVEAL
============================================ */
.sr { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.sr.vis { opacity: 1; transform: translateY(0); }
.sr-d1 { transition-delay: 0.1s; }
.sr-d2 { transition-delay: 0.2s; }
.sr-d3 { transition-delay: 0.3s; }

/* ============================================
   IMAGE SPLIT
============================================ */
.img-split { background: var(--c-charcoal); overflow: hidden; }
.img-split__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.img-split__photo { overflow: hidden; }
.img-split__photo img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; display: block; }
.img-split__content {
  padding: var(--sp-xl) var(--sp-lg);
  display: flex; flex-direction: column; justify-content: center;
}
.img-split__stat {
  font-family: var(--f-serif);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 400; color: var(--c-parchment);
  line-height: 1; margin-bottom: 0.4rem;
}
.img-split__stat-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-ochre); margin-bottom: var(--sp-lg);
  display: block;
}
.img-split__quote {
  font-family: var(--f-serif); font-style: italic;
  font-size: 1.15rem; line-height: 1.75;
  color: var(--c-stone); max-width: 40ch;
  border-left: 2px solid var(--c-ochre);
  padding-left: 1.5rem; margin-bottom: var(--sp-md);
}

/* ============================================
   GUIDES — Savills Insight & Opinion style
============================================ */
.guides { background: var(--c-white); padding-block: var(--sp-xl); }
.guides__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: var(--sp-lg); flex-wrap: wrap; gap: var(--sp-md);
}
.guides__head h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; color: var(--c-charcoal);
}
.guides__all-link {
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-charcoal);
  display: inline-flex; align-items: center; gap: 5px;
  transition: color var(--transition), gap var(--transition);
}
.guides__all-link:hover { color: var(--c-ochre); gap: 9px; }
.guides__all-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; }

.guides-featured-grid {
  display: grid; grid-template-columns: 7fr 5fr;
  border: var(--border); margin-bottom: 1px;
}
.guide-card {
  display: flex; flex-direction: column;
  transition: background var(--transition);
  cursor: pointer;
  text-decoration: none; color: inherit;
}
.guide-card:hover { background: var(--c-surface); }
.guide-card__img { overflow: hidden; flex-shrink: 0; }
.guide-card--featured .guide-card__img { aspect-ratio: 3/2; }
.guide-card--small .guide-card__img { height: 200px; flex-shrink: 0; }
.guide-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.guide-card:hover .guide-card__img img { transform: scale(1.03); }
.guide-card__body {
  padding: 1.5rem 1.75rem 2rem;
  flex: 1; display: flex; flex-direction: column;
}
.guide-card__cat {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--c-ochre);
  display: block; margin-bottom: 0.6rem;
}
.guide-card__title {
  font-family: var(--f-serif); font-weight: 400;
  color: var(--c-charcoal); line-height: 1.25;
  margin-bottom: 0.75rem;
}
.guide-card--featured .guide-card__title { font-size: 1.7rem; }
.guide-card--small .guide-card__title { font-size: 1.15rem; }
.guide-card__summary {
  font-size: 0.85rem; color: var(--c-mid);
  line-height: 1.7; flex: 1; margin-bottom: 1.25rem;
}
.guide-card__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-charcoal);
  margin-top: auto; transition: color var(--transition), gap var(--transition);
}
.guide-card:hover .guide-card__link { color: var(--c-ochre); gap: 9px; }
.guide-card__link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; }

.guide-card-stack {
  display: flex; flex-direction: column;
}
.guide-card-stack .guide-card { flex: 1; }
.guide-card-stack .guide-card:first-child { border-bottom: var(--border); }
.guide-card--featured { border-right: var(--border); }

.guides-secondary {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: var(--border); border-top: none;
}
.guides-secondary .guide-card { border-right: var(--border); }
.guides-secondary .guide-card:last-child { border-right: none; }
.guides-secondary .guide-card__img { aspect-ratio: 5/3; }

/* ============================================
   GUIDE ARTICLE (inner page)
============================================ */
.article-layout { display: grid; grid-template-columns: 7fr 3fr; gap: var(--sp-xl); align-items: start; padding-block: var(--sp-xl); }
.article-body h2 {
  font-family: var(--f-serif); font-size: 1.65rem; font-weight: 400;
  color: var(--c-charcoal); margin-bottom: 0.75rem; margin-top: var(--sp-lg); line-height: 1.2;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p { font-size: 0.97rem; line-height: 1.85; color: var(--c-ink); margin-bottom: 1.25rem; max-width: 68ch; }
.article-body ul, .article-body ol { margin-bottom: 1.25rem; padding-left: 1.25rem; }
.article-body li { font-size: 0.95rem; line-height: 1.8; color: var(--c-ink); margin-bottom: 0.4rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body blockquote {
  font-family: var(--f-serif); font-style: italic;
  font-size: 1.15rem; line-height: 1.75;
  color: var(--c-mid); max-width: 52ch;
  border-left: 2px solid var(--c-ochre);
  padding-left: 1.5rem; margin: var(--sp-lg) 0;
}
.article-sidebar { position: sticky; top: 120px; }
.sidebar-cta {
  background: var(--c-charcoal);
  padding: 1.75rem;
  margin-bottom: var(--sp-md);
}
.sidebar-cta h3 {
  font-family: var(--f-serif); font-size: 1.25rem; font-weight: 400;
  color: var(--c-parchment); margin-bottom: 0.5rem;
}
.sidebar-cta p { font-size: 0.83rem; color: var(--c-stone); line-height: 1.65; margin-bottom: var(--sp-sm); }
.sidebar-related h4 {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--c-ochre); margin-bottom: 0.75rem;
}
.sidebar-related ul { display: flex; flex-direction: column; gap: 0; }
.sidebar-related ul li { border-bottom: var(--border); }
.sidebar-related ul li:first-child { border-top: var(--border); }
.sidebar-related ul li a {
  display: block; padding: 0.75rem 0;
  font-size: 0.85rem; font-family: var(--f-serif);
  color: var(--c-charcoal); transition: color var(--transition), padding-left var(--transition);
}
.sidebar-related ul li a:hover { color: var(--c-ochre); padding-left: 0.5rem; }

/* ============================================
   ACCREDITATIONS PAGE
============================================ */
.accred-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  border: var(--border); border-right: none; border-bottom: none;
}
.accred-card {
  display: grid; grid-template-columns: 140px 1fr;
  border-right: var(--border); border-bottom: var(--border);
  align-items: stretch;
}
.accred-card__logo {
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-md);
  border-right: var(--border);
  background: var(--c-surface);
}
.accred-card__logo img { height: 64px; width: auto; max-width: 100px; object-fit: contain; }
.accred-card__body { padding: 1.5rem; }
.accred-card__body h3 {
  font-family: var(--f-serif); font-size: 1.1rem; font-weight: 400;
  color: var(--c-charcoal); margin-bottom: 0.4rem;
}
.accred-card__body p { font-size: 0.83rem; color: var(--c-mid); line-height: 1.65; }

/* ============================================
   PROJECT DETAIL PAGE
============================================ */
.project-detail { padding-block: var(--sp-xl); }
.project-detail__grid { display: grid; grid-template-columns: 7fr 4fr; gap: var(--sp-xl); align-items: start; }
.project-detail__gallery { display: grid; gap: 1px; background: var(--c-rule); margin-bottom: var(--sp-md); }
.project-detail__gallery-main { aspect-ratio: 4/3; overflow: hidden; }
.project-detail__gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.project-detail__gallery-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; }
.project-detail__gallery-thumbs img { aspect-ratio: 4/3; object-fit: cover; width: 100%; cursor: pointer; transition: opacity var(--transition); }
.project-detail__gallery-thumbs img:hover { opacity: 0.8; }
.project-detail__body h2 {
  font-family: var(--f-serif); font-size: 1.5rem; font-weight: 400;
  color: var(--c-charcoal); margin-bottom: 0.75rem; margin-top: var(--sp-lg); line-height: 1.2;
}
.project-detail__body h2:first-child { margin-top: 0; }
.project-detail__body p { font-size: 0.93rem; line-height: 1.85; color: var(--c-ink); margin-bottom: 1.1rem; }
.project-meta {
  position: sticky; top: 120px;
  display: flex; flex-direction: column; gap: 0;
  border: var(--border);
}
.project-meta__item {
  padding: 1rem 1.25rem;
  border-bottom: var(--border);
  display: flex; flex-direction: column; gap: 3px;
}
.project-meta__item:last-child { border-bottom: none; }
.project-meta__label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-ochre); }
.project-meta__val { font-size: 0.88rem; color: var(--c-charcoal); font-weight: 400; line-height: 1.4; }

/* ============================================
   SERVICE PAGE
============================================ */
.service-intro { background: var(--c-parchment); padding-block: var(--sp-xl); }
.service-intro__grid { display: grid; grid-template-columns: 5fr 7fr; gap: var(--sp-xl); align-items: start; }
.service-intro__left { position: sticky; top: 120px; }
.service-intro__left h2 {
  font-family: var(--f-serif); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400; color: var(--c-charcoal); margin-bottom: 0.75rem; line-height: 1.15;
}
.service-intro__left p { font-size: 0.9rem; color: var(--c-mid); line-height: 1.7; margin-bottom: var(--sp-md); max-width: 36ch; }
.service-intro__right p { font-size: 0.97rem; line-height: 1.85; color: var(--c-ink); margin-bottom: 1.25rem; }
.service-intro__right ul { list-style: none; margin-bottom: var(--sp-md); display: flex; flex-direction: column; gap: 0.6rem; }
.service-intro__right ul li {
  font-size: 0.93rem; color: var(--c-ink); padding-left: 1.25rem; position: relative; line-height: 1.55;
}
.service-intro__right ul li::before {
  content: '—'; position: absolute; left: 0; color: var(--c-ochre); font-weight: 600;
}
.service-photo { overflow: hidden; margin-block: var(--sp-md); }
.service-photo img { width: 100%; height: 400px; object-fit: cover; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1060px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .project-cards { grid-template-columns: 1fr 1fr; }
  .pcard:nth-child(2) { border-right: none; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .project-detail__grid { grid-template-columns: 1fr; }
  .project-meta { position: static; }
  .accred-grid { grid-template-columns: 1fr; }
  .service-intro__grid { grid-template-columns: 1fr; }
  .service-intro__left { position: static; }
  .contact-form__grid { grid-template-columns: 1fr; }
  .contact-form__left { position: static; }
}
@media (max-width: 820px) {
  :root { --sp-xl: 4rem; --sp-lg: 2.5rem; }
  .site-header__nav { display: none; }
  .nav-toggle { display: flex; }
  .trust-bar__grid { grid-template-columns: 1fr 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .about__left { position: static; }
  .services-grid { grid-template-columns: 1fr; }
  .project-cards { grid-template-columns: 1fr; }
  .pcard { border-right: none; border-bottom: var(--border); }
  .pcard__img { aspect-ratio: 3/2; }
  .faq__grid { grid-template-columns: 1fr; gap: var(--sp-md); }
  .faq__left { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .img-split__grid { grid-template-columns: 1fr; }
  .img-split__photo { height: 320px; }
  .guides-featured-grid { grid-template-columns: 1fr; }
  .guide-card-stack { flex-direction: row; }
  .guide-card-stack .guide-card { flex: 1; border-bottom: none; border-right: var(--border); }
  .guide-card-stack .guide-card:last-child { border-right: none; }
  .guides-secondary { grid-template-columns: 1fr 1fr; }
  .accred-card { grid-template-columns: 1fr; }
  .accred-card__logo { border-right: none; border-bottom: var(--border); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .trust-bar__grid { grid-template-columns: 1fr; }
  .hero__strip-sep { display: none; }
  .t-card { width: 88vw; }
  .guide-card-stack { flex-direction: column; }
  .guide-card-stack .guide-card { border-right: none; border-bottom: var(--border); }
  .guides-secondary { grid-template-columns: 1fr; }
}
