/* ===================================================
   FIRST TACTICAL PROJECTS — WEBSITE STYLESHEET
   Aesthetic: Refined editorial / institutional
   Fonts: DM Serif Display + DM Sans
   =================================================== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  background: #faf9f7;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.2;
  color: #0d0d0d;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 500; letter-spacing: 0.02em; }

em { font-style: italic; color: #1a5c3a; }

p { margin-bottom: 1rem; color: #3a3a3a; }
p:last-child { margin-bottom: 0; }

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

/* --- CSS VARIABLES --- */
:root {
  --green: #1a5c3a;
  --green-light: #e8f2ec;
  --green-mid: #2e7d52;
  --amber: #c17f24;
  --slate: #2c3e50;
  --off-white: #faf9f7;
  --light-gray: #f2f0ec;
  --mid-gray: #888;
  --border: #e0ddd8;
  --nav-h: 68px;
  --max-w: 1160px;
}

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

.section { padding: 5rem 0; }
.section.alt-bg { background: var(--light-gray); }

.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.2rem;
}

.section-title { margin-bottom: 1rem; }
.section-intro { font-size: 1.05rem; color: #555; max-width: 640px; margin-bottom: 3rem; }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-ghost:hover { background: var(--green-light); }

.btn-full { width: 100%; text-align: center; }

.text-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--green);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.text-link:hover { border-color: var(--green); }

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--green);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
}

.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.01em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: #555;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  border-color: var(--green);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #1a1a1a;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: #faf9f7;
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
}

.nav-mobile a {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: #3a3a3a;
  border-bottom: 1px solid var(--border);
}

.nav-mobile.open { display: flex; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .logo-text { display: none; }
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,92,58,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,92,58,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 820px;
}

.hero-sub {
  font-size: 1.1rem;
  color: #555;
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stat-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  background: var(--green);
  padding: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat {
  flex: 1;
  min-width: 160px;
  padding: 0 1.5rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 720px) {
  .stat-divider { display: none; }
  .stat { min-width: 45%; }
}

/* --- WHO WE ARE --- */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.who-text h2 { margin-bottom: 1.5rem; }
.who-text p { font-size: 1rem; line-height: 1.75; margin-bottom: 1.2rem; }

.who-pillars { display: flex; flex-direction: column; gap: 2rem; }

.pillar {
  padding: 1.5rem;
  border-left: 3px solid var(--green);
  background: #fff;
  border-radius: 0 4px 4px 0;
}

.pillar-icon {
  color: var(--green);
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
}

.pillar h3 {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pillar p { font-size: 0.9rem; color: #555; margin: 0; }

@media (max-width: 860px) {
  .who-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* --- PROJECT CARDS (home preview) --- */
.project-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.project-card {
  background: #fff;
  border-radius: 4px;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.project-card-top {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-card-top.data-centre { background: var(--green); }
.project-card-top.erf { background: var(--slate); }

.project-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.project-mw {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: #fff;
}

.project-card-body { padding: 1.5rem; }
.project-card-body h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.project-location { font-size: 0.82rem; color: var(--green); font-weight: 500; margin-bottom: 0.8rem; }
.project-card-body p { font-size: 0.88rem; color: #555; line-height: 1.6; margin-bottom: 1rem; }

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-meta span {
  font-size: 0.75rem;
  background: var(--light-gray);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  color: #555;
}

.projects-cta { text-align: center; }

@media (max-width: 900px) {
  .project-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .project-cards { grid-template-columns: 1fr; }
}

/* --- APPROACH --- */
.approach { background: var(--green); }

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.approach-quote blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 1rem;
}

.approach-quote cite {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-style: normal;
  letter-spacing: 0.05em;
}

.approach-steps { display: flex; flex-direction: column; gap: 1.5rem; }

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: rgba(255,255,255,0.25);
  min-width: 2.5rem;
  line-height: 1;
  padding-top: 0.1rem;
}

.step h4 {
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.step p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin: 0; }

@media (max-width: 860px) {
  .approach-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* --- PAGE HEADER --- */
.page-header {
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
}

.page-header h1 { margin-bottom: 1rem; }
.page-header-sub { font-size: 1.05rem; color: #555; max-width: 620px; margin: 0; }

/* --- PROJECT DETAIL (projects page) --- */
.project-detail { padding: 4rem 0; border-bottom: 1px solid var(--border); }
.project-detail.alt { background: var(--light-gray); }

.project-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 2.5rem;
}

.project-detail-header.data-centre { background: var(--green); }
.project-detail-header.erf { background: var(--slate); }

.project-detail-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.project-detail-mw {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: #fff;
  white-space: nowrap;
}

.project-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.project-detail-main h2 { margin-bottom: 0.5rem; }
.project-location-large { font-size: 0.85rem; font-weight: 500; color: var(--green); margin-bottom: 1.2rem; letter-spacing: 0.04em; text-transform: uppercase; }
.project-detail-main p { font-size: 0.97rem; line-height: 1.75; }

.project-detail-specs {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
}

.project-detail-specs h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
  margin-bottom: 1rem;
}

.spec-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table th {
  text-align: left;
  padding: 0.6rem 0.75rem 0.6rem 0;
  font-weight: 500;
  color: #555;
  width: 45%;
  vertical-align: top;
}
.spec-table td {
  padding: 0.6rem 0;
  color: #1a1a1a;
  font-weight: 400;
}

@media (max-width: 800px) {
  .project-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .project-detail-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* --- TEAM PAGE --- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-card.advisory { background: var(--light-gray); }

.team-photo-placeholder {
  height: 140px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo-placeholder.small { height: 100px; }

.team-photo-placeholder span {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}

.team-photo-placeholder.small span { font-size: 1.8rem; }

/* To add a real photo, replace the placeholder div with:
   <div class="team-photo" style="background-image: url('images/name.jpg')"></div>
   and use: .team-photo { height: 220px; background-size: cover; background-position: center top; }
*/

.team-card-body { padding: 1.5rem; flex: 1; }
.team-card-body h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.team-title { font-size: 0.82rem; font-weight: 500; color: var(--green); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.team-bio { font-size: 0.92rem; color: #555; line-height: 1.7; margin-bottom: 1rem; }

.team-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.team-tags span {
  font-size: 0.75rem;
  background: var(--green-light);
  color: var(--green);
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  font-weight: 500;
}

.team-card.advisory .team-tags span {
  background: #e8e6e0;
  color: #555;
}

/* --- CREDENTIALS BAR --- */
.credentials-bar { background: #0d0d0d; }

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.cred { text-align: center; }

.cred-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--green-light);
  margin-bottom: 0.4rem;
  line-height: 1;
}

.cred-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.cred-footnote {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .team-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
}

/* --- CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 2rem; font-size: 1.6rem; }

.contact-block { margin-bottom: 2rem; }
.contact-block h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
  margin-bottom: 0.6rem;
}
.contact-block p { font-size: 0.92rem; color: #555; line-height: 1.7; }

.topic-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.topic-tags span {
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: #555;
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}

.form-group { margin-bottom: 1.4rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.4rem;
}

.required { color: var(--green); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #1a1a1a;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: #fff;
}

.form-group textarea { resize: vertical; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-check input[type="checkbox"] {
  width: auto;
  min-width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--green);
  cursor: pointer;
}

.form-check label { font-size: 0.82rem; color: #666; margin: 0; font-weight: 400; cursor: pointer; }

.form-notice {
  margin-top: 1rem;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  border-radius: 3px;
  display: none;
}

.form-notice.success { background: var(--green-light); color: var(--green); display: block; }
.form-notice.error { background: #fdf0f0; color: #c0392b; display: block; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* --- FOOTER --- */
.footer {
  background: #0d0d0d;
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand .logo-mark {
  display: inline-block;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom { }
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.4rem;
}

.footer-disclaimer { font-style: italic; }

/* --- SCROLL ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE MISC --- */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .hero-content { padding: 3rem 1.25rem 2rem; }
  .btn { padding: 0.65rem 1.3rem; font-size: 0.85rem; }
}

/* ===================================================
   ARTICLE CARDS — News & Case Studies (projects.html)
   =================================================== */

.article-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.article-card-top {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-card-top.news-card { background: var(--ftp, #0e2d52); }
.article-card-top.case-card.erf { background: var(--slate); }
.article-card-top.case-card.data-centre { background: var(--green); }

.article-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.article-date {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.article-mw {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: #fff;
  white-space: nowrap;
}

.article-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-body h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.article-location {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.article-card-body p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.article-meta span {
  font-size: 0.73rem;
  background: var(--light-gray);
  padding: 0.22rem 0.55rem;
  border-radius: 2px;
  color: #555;
}

.read-more {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.02em;
  margin-top: auto;
}

@media (max-width: 680px) {
  .article-cards { grid-template-columns: 1fr; }
}

/* ===================================================
   CONTACT PAGE — simplified mailto layout
   =================================================== */

.contact-simple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-cta-box {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.contact-cta-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.contact-cta-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.contact-cta-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-cta-sub {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.contact-mailto-btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.contact-email-display {
  font-size: 0.85rem;
  color: var(--mid-gray);
  font-family: monospace;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.contact-cta-note {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.contact-cta-note p {
  font-size: 0.78rem;
  color: var(--mid-gray);
  font-style: italic;
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .contact-simple {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-cta-box { position: static; }
}
