* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0b0b0d;
  --panel: #111216;
  --panel-2: #16181d;
  --gold: #c6a66a;
  --gold-2: #e0c38c;
  --text: #f3f0e8;
  --muted: #b5aca0;
  --line: rgba(198, 166, 106, 0.18);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

body {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
  color: var(--text);
  background:
	radial-gradient(circle at top right, rgba(198,166,106,0.08), transparent 30%),
	radial-gradient(circle at bottom left, rgba(198,166,106,0.04), transparent 28%),
	var(--bg);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 92%;
  max-width: 1160px;
  margin: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 11, 13, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow:
	0 8px 24px rgba(198, 166, 106, 0.16),
	0 2px 10px rgba(224, 195, 140, 0.10);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold-2);
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}

.logo img {
  height: 56px;           
  width: 56px;            
  object-fit: contain;    
  display: block;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .logo {
    font-size: 0.85rem;
    gap: 8px;
  }
  .logo img {
    height: 40px;
    width: 40px;
  }
}

.menu {
  display: flex;
  align-items: center;
}

.menu a {
  margin-left: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  transition: 0.25s ease;
}

.menu a:hover {
  color: var(--gold-2);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 6px 18px rgba(198, 166, 106, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold-2);
  border-radius: 999px;
  transition: 0.25s ease;
}

.hero {
  padding: 100px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: rgba(198, 166, 106, 0.05);
}

.hero h1 {
  font-size: 3.3rem;
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--text);
  max-width: 700px;
}

h1 {
  font-size: 3.3rem;
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--text);
}

.hero p {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #17130c;
  margin-right: 12px;
  box-shadow: 0 12px 28px rgba(198, 166, 106, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--gold-2);
  background: rgba(255,255,255,0.01);
}

.btn-secondary:hover {
  background: rgba(198, 166, 106, 0.06);
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  padding: 34px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-weight: 600;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}

.section {
  padding: 75px 0;
}

.heading {
  text-align: center;
  margin-bottom: 42px;
}

.heading h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 600;
}

.heading p {
  color: var(--muted);
  max-width: 720px;
  margin: auto;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.service:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 166, 106, 0.28);
}

.service h2 {
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 1.2rem;
  font-weight: 600;
}

.service p {
  color: var(--muted);
  font-size: 0.96rem;
}

.signature-band {
  margin-top: 10px;
  background: linear-gradient(135deg, #121317, #0e0f12);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 46px 36px;
  box-shadow: var(--shadow);
  text-align: center;
}

.signature-band h2 {
  font-size: 2.1rem;
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 600;
}

.signature-band p {
  color: var(--muted);
  max-width: 780px;
  margin: auto;
}

.contact-strip {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-box {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-box h3 {
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-box p {
  color: var(--muted);
  font-size: 0.94rem;
}

footer {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding: 24px 0;
  text-align: center;
  color: #8e877d;
  font-size: 0.9rem;
}

@media (max-width: 950px) {
  .menu {
	display: none;
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	width: 220px;
	background: linear-gradient(180deg, var(--panel), var(--panel-2));
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: var(--shadow);
	padding: 12px;
	flex-direction: column;
	gap: 6px;
  }

  .menu a {
	display: block;
	margin-left: 0;
	padding: 12px 14px;
	border-radius: 10px;
	color: var(--muted);
  }

  .menu a:hover {
	background: rgba(198, 166, 106, 0.06);
	color: var(--gold-2);
  }

  .menu.show {
	display: flex;
  }

  .menu-toggle {
	display: inline-flex;
  }

  .hero-grid,
  .services,
  .contact-strip {
	grid-template-columns: 1fr;
  }

  .hero h1 {
	font-size: 2.4rem;
  }

  .hero {
	padding-top: 75px;
  }
}

.footer-links-band {
  padding: 26px 0 12px;
}

.footer-links-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: start;
}

.footer-col {
  padding: 0 24px;
}

.footer-col:not(:last-child) {
  border-right: 1px solid rgba(212, 175, 55, 0.35);
}

.footer-col h3 {
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-col p,
.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--gold-2);
}

@media (max-width: 950px) {
  .footer-links-row {
    grid-template-columns: 1fr;
  }

  .footer-col {
    padding: 0 0 22px;
  }

  .footer-col:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    margin-bottom: 22px;
  }
}

.menu a {
  margin-left: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  transition: 0.25s ease;
  padding: 4px 4px;
  border: 1px solid transparent;
  border-radius: 9px;
}

.menu a.active {
  color:gold;
  border-color: rgba(224, 195, 140, 0.55);
  background: rgba(198, 166, 106, 0.06);
  box-shadow: 0 0 0 1px rgba(224, 195, 140, 0.06);
}

.page-hero {
  padding-bottom: 60px;
}

.service-detail-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.service-detail {
  min-height: 100%;
}

.service-detail p {
  margin-bottom: 0;
}

.cta-band .btn-primary {
  margin-top: 22px;
}

@media (max-width: 950px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}

.page-hero .hero-card {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}

.page-hero .hero-card::before {
  content: none;
}

.hero-list {
  list-style: none;
  padding: 0;
}

.hero-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.team-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.team-image {
  height: 350px;
  overflow: hidden;
  background: #1a1b20;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: 0.5s ease;
}

.team-card:hover .team-image img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-info h3 {
  color: var(--gold-2);
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.designation {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.team-info p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-image {
    height: 300px;
  }
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.resource-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s ease;
}

.resource-card:hover {
  background: var(--panel-2);
  border-color: var(--gold);
}

.resource-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}

.resource-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--text);
  line-height: 1.4;
}

.resource-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 22px;
  flex-grow: 1;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.2s;
}

.btn-download:hover {
  color: var(--gold);
  text-decoration: underline;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.contact-form-container {
  background: var(--panel);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--gold-2);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-2);
  background: rgba(255, 255, 255, 0.06);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #17130c;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(198, 166, 106, 0.2);
}

@media (max-width: 850px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.footer-links-band {
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer-links-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--gold-2);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-col p, .footer-col a {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 8px;
  color: var(--muted);
}

.footer-col a:hover {
  color: var(--gold-2);
}

footer {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.2);
}

/* ── Team Bio Layout ─────────────────────────────── */
.team-page-intro {
  padding-bottom: 0;
}

.team-page-intro .heading {
  max-width: 760px;
  margin: 0 auto 10px;
}

.team-bios {
  padding-top: 40px;
}

.team-bio-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}

.team-bio-row:last-child {
  border-bottom: none;
}

.team-bio-image {
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
}

.team-bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.4s ease;
}

.team-bio-row:hover .team-bio-image img {
  filter: grayscale(0%);
}

.team-bio-text .designation {
  margin-bottom: 8px;
}

.team-bio-text h2 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.team-bio-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.75;
}

.bio-specialisms {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bio-specialisms li {
  font-size: 0.88rem;
  color: var(--gold-2);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(198, 166, 106, 0.04);
}

@media (max-width: 850px) {
  .team-bio-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .team-bio-image {
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
  }
  .team-bio-text h2 {
    font-size: 1.6rem;
  }
  .bio-specialisms {
    grid-template-columns: 1fr;
  }
}

/* ── Stats / Figures ─────────────────────────────── */
.stats-band {
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 36px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

@media (max-width: 700px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Testimonials ────────────────────────────────── */
.testimonials-section {
  padding: 75px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
  font-family: Georgia, serif;
}

.testimonial-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-top: 28px;
}

.testimonial-author {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.testimonial-author strong {
  display: block;
  color: var(--gold-2);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Footer uniform spacing ──────────────────────── */
.footer-col p {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ── Footer social links ─────────────────────────── */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: 0.2s ease;
  margin-bottom: 0;
}

.footer-social a:hover {
  color: var(--gold-2);
  border-color: var(--gold);
  background: rgba(198, 166, 106, 0.06);
}

@media (max-width: 950px) {
  .footer-links-row {
    grid-template-columns: 1fr;
  }
  .footer-col {
    padding: 0 0 22px;
  }
  .footer-col:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    margin-bottom: 22px;
  }
}

/* ── Why Us Grid ─────────────────────────────────── */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-us-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.why-us-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.why-us-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(198, 166, 106, 0.08);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  margin-bottom: 20px;
}

.why-us-card h3 {
  font-size: 1.1rem;
  color: var(--gold-2);
  margin-bottom: 12px;
  font-weight: 700;
}

.why-us-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.why-us-card p em {
  color: var(--gold-2);
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 900px) {
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Resource section headings ───────────────────────────────── */
.resource-section-heading {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.resource-section-heading h2 {
  font-size: 1.4rem;
  color: var(--gold-2);
  margin-bottom: 6px;
}

.resource-section-heading p {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-social a.whatsapp:hover {
  color: #25d366;
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.06);
}

    /* ── Contact page layout ───────────────────────── */
    .contact-hero {
      padding: 90px 0 80px;
    }

    .contact-hero-heading {
      margin-bottom: 48px;
    }

    .contact-hero-heading h1 {
      font-size: 3.3rem;
      line-height: 1.15;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 16px;
      max-width: 760px;
    }

    .contact-hero-heading p {
      color: var(--muted);
      font-size: 1rem;
      max-width: 640px;
      line-height: 1.7;
    }

    /* Tighter split — left info panel, right form */
    .contact-body {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 40px;
      align-items: start;
    }

    /* ── Info card ─────────────────────────────────── */
    .contact-details-card {
      background: linear-gradient(180deg, var(--panel), var(--panel-2));
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 30px 28px;
      box-shadow: var(--shadow);
    }

    /* Shared email row sits above the office blocks */
    .contact-details-card > .card-section-label {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 1.1px;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 6px;
      display: block;
    }

    .card-email-row {
      display: flex;
      gap: 10px;
      align-items: center;
      margin-bottom: 22px;
      padding-bottom: 22px;
      border-bottom: 1px solid var(--line);
    }

    .card-email-row .cd-icon {
      flex-shrink: 0;
    }

    .card-email-row .cd-value {
      font-size: 0.95rem;
    }

    /* Office blocks */
    .office-block {
      padding: 16px 0;
      border-bottom: 1px solid var(--line);
    }

    .office-block:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .office-block-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
    }

    .office-block-badge {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      font-weight: 700;
      color: var(--gold);
      border: 1px solid rgba(198, 166, 106, 0.28);
      border-radius: 999px;
      padding: 3px 10px;
      background: rgba(198, 166, 106, 0.05);
      white-space: nowrap;
    }

    .office-block-city {
      font-size: 1rem;
      font-weight: 700;
      color: var(--gold-2);
    }

    .office-block-detail {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-bottom: 8px;
    }

    .office-block-detail:last-child {
      margin-bottom: 0;
    }

    .cd-icon {
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      border-radius: 8px;
      background: rgba(198, 166, 106, 0.07);
      border: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
    }

    .cd-text {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

    .cd-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--gold);
      font-weight: 700;
    }

    .cd-value {
      color: var(--muted);
      font-size: 0.91rem;
      line-height: 1.5;
    }

    .cd-value a {
      color: var(--muted);
      transition: color 0.2s ease;
    }

    .cd-value a:hover {
      color: var(--gold-2);
    }

    /* Hours strip at the bottom of the card */
    .card-hours {
      margin-top: 22px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
    }

    .card-hours-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 1.1px;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 10px;
      display: block;
    }

    .hours-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 12px;
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      padding: 4px 0;
      border-bottom: 1px solid rgba(198, 166, 106, 0.07);
    }

    .hours-row span:first-child {
      color: var(--text);
      font-weight: 600;
      font-size: 0.83rem;
    }

    .hours-row span:last-child {
      color: var(--muted);
    }

    .hours-row.closed span:last-child {
      color: rgba(181, 172, 160, 0.38);
    }

    /* ── Responsive ────────────────────────────────── */
    @media (max-width: 950px) {
      .contact-hero {
        padding: 60px 0 60px;
      }

      .contact-hero-heading h1 {
        font-size: 2.4rem;
      }

      .contact-body {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    .office-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.office-branches .office-block-city {
  display: block;
  margin-bottom: 4px;
}

.office-branches p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.55;
  margin-bottom: 4px;
}

.office-branches p a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.office-branches p a:hover {
  color: var(--gold-2);
}