/* ===========================
   QIGONG CLASSES MELBOURNE
   style.css
   =========================== */

:root {
  --sage: #5a7a5a;
  --sage-light: #7a9e7a;
  --sage-pale: #e8f0e8;
  --sage-deep: #3d5c3d;
  --warm: #c8a96e;
  --warm-light: #e8d4a8;
  --cream: #faf8f3;
  --charcoal: #2a2a2a;
  --mid: #5c5c5c;
  --light: #8c8c8c;
  --white: #ffffff;
  --border: #ddd8cc;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max: 1140px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
}

img { display: block; max-width: 100%; }

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

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--warm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--mid);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage);
  transition: width 0.3s;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s;
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(90,122,90,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(200,169,110,0.1) 0%, transparent 50%),
    linear-gradient(160deg, #faf8f3 0%, #f0eee6 100%);
  z-index: 0;
}

.hero { background: var(--cream); color: var(--charcoal); }

.hero-bg::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(90,122,90,0.15);
  animation: breathe 6s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.2);
  margin: 70px;
  animation: breathe 6s ease-in-out infinite 1s;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding-top: 4rem;
  animation: fadeUp 0.9s ease both;
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--warm);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--sage);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  font-size: 0.8rem;
  color: var(--light);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-dot { color: var(--warm); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--light);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--sage-light), transparent);
  animation: scrollFade 2s ease-in-out infinite;
}

@keyframes scrollFade {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(61,92,61,0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--sage-deep);
  border: 1.5px solid var(--sage);
}

.btn-ghost:hover {
  background: var(--sage-pale);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.12);
}

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

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

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-header.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--charcoal);
}

.section-header p {
  color: var(--mid);
  margin-top: 0.5rem;
}

/* ===========================
   INTRO SECTION
   =========================== */
.intro {
  padding: 7rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--mid);
  margin-bottom: 1rem;
  font-weight: 300;
}

.link-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sage);
  letter-spacing: 0.03em;
  transition: gap 0.2s;
}

.link-arrow:hover { color: var(--sage-deep); }

.intro-stats {
  display: grid;
  gap: 2rem;
  padding-top: 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.stat:last-child { border-bottom: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--sage);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===========================
   CLIENTS STRIP
   =========================== */
.clients-strip {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.5);
}

.strip-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--light);
  margin-bottom: 1.5rem;
  text-align: center;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  justify-content: center;
  align-items: center;
}

.clients-logos span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.clients-logos span:hover { opacity: 1; }

/* ===========================
   TESTIMONIAL FEATURE
   =========================== */
.testimonial-feature {
  padding: 6rem 0;
  background: var(--sage-deep);
}

.testimonial-feature blockquote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-feature blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.testimonial-feature cite {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--warm-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===========================
   SERVICES PREVIEW
   =========================== */
.services-preview {
  padding: 7rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.service-icon {
  font-size: 1.5rem;
  color: var(--sage-light);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--mid);
  font-size: 0.9rem;
  font-weight: 300;
}

/* ===========================
   CTA BAND
   =========================== */
.cta-band {
  padding: 6rem 0;
  background: var(--sage);
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.footer h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--warm);
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.footer ul li a:hover { color: var(--white); }

.footer a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  border-bottom: 1px solid var(--border);
}

.page-hero .container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
}

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

/* ===========================
   ABOUT PAGE
   =========================== */
.about-main {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 2.5rem 0 0.75rem;
}

.about-text p {
  color: var(--mid);
  margin-bottom: 1rem;
  font-weight: 300;
}

.about-text strong { color: var(--charcoal); font-weight: 500; }

.inline-quote {
  margin: 2.5rem 0;
  padding: 2rem;
  border-left: 3px solid var(--sage-light);
  background: var(--sage-pale);
  border-radius: 0 4px 4px 0;
}

.inline-quote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--sage-deep);
  margin-bottom: 0.75rem;
}

.inline-quote cite {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--sage);
  letter-spacing: 0.05em;
}

.credential-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.credential-icon {
  width: 28px;
  height: 28px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.credential-card h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.credential-card p {
  font-size: 0.8rem;
  color: var(--mid);
  font-weight: 300;
}

.about-cta {
  background: var(--sage-pale);
  border: 1px solid rgba(90,122,90,0.2);
  border-radius: 4px;
  padding: 1.75rem;
  margin-top: 1.5rem;
  text-align: center;
}

.about-cta p {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 1rem;
}

.about-cta .btn { width: 100%; margin-bottom: 0.75rem; }

/* ===========================
   VIDEO SECTION
   =========================== */
.video-section {
  padding: 5rem 0;
  background: var(--sage-pale);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  margin-top: 2.5rem;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-intro p {
  font-size: 1.1rem;
  color: var(--mid);
  font-weight: 300;
}

/* ===========================
   SERVICES DETAIL
   =========================== */
.services-detail {
  padding: 5rem 0;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 3rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.service-detail-card:first-child { padding-top: 0; }
.service-detail-card:last-child { border-bottom: none; }

.sdc-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  padding-top: 0.25rem;
}

.sdc-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.sdc-tagline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--sage);
  margin-bottom: 1.25rem;
}

.sdc-content p {
  color: var(--mid);
  margin-bottom: 1rem;
  font-weight: 300;
}

.sdc-content h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin: 1.5rem 0 0.75rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  font-size: 0.9rem;
  color: var(--mid);
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage-light);
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works {
  padding: 5rem 0;
  background: var(--sage-pale);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 2rem;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 auto 1.25rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.875rem;
  color: var(--mid);
  font-weight: 300;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--sage-light);
  padding-top: 3rem;
}

/* ===========================
   CLIENTS PAGE
   =========================== */
.clients-main {
  padding: 5rem 0;
}

.clients-sectors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.sector h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.client-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.client-list li {
  font-size: 0.95rem;
  color: var(--mid);
  font-weight: 400;
  padding-left: 1.25rem;
  position: relative;
}

.client-list li::before {
  content: '◦';
  position: absolute;
  left: 0;
  color: var(--warm);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  padding: 5rem 0;
  background: var(--charcoal);
}

.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255,255,255,0.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2rem;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.testimonial-card cite {
  font-size: 0.75rem;
  font-style: normal;
  color: var(--warm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===========================
   SECTOR TILES
   =========================== */
.sectors-served {
  padding: 5rem 0;
}

.sector-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.sector-tile {
  padding: 0.6rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.85rem;
  color: var(--mid);
  font-weight: 400;
  transition: all 0.2s;
}

.sector-tile:hover {
  background: var(--sage-pale);
  border-color: var(--sage-light);
  color: var(--sage-deep);
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-main {
  padding: 5rem 0;
}

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

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.contact-info > p {
  color: var(--mid);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cm-icon {
  width: 36px;
  height: 36px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-method h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.contact-method p {
  font-size: 0.875rem;
  color: var(--mid);
  font-weight: 300;
}

.contact-link {
  font-size: 1.25rem;
  color: var(--sage-deep);
  font-weight: 500;
  display: block;
  margin-bottom: 0.15rem;
}

.contact-note {
  padding: 1.5rem;
  background: var(--sage-pale);
  border-radius: 4px;
  border: 1px solid rgba(90,122,90,0.2);
}

.contact-note p {
  font-size: 0.875rem;
  color: var(--mid);
  font-weight: 300;
}

.contact-note strong { color: var(--sage-deep); font-weight: 500; }

/* ===========================
   CONTACT FORM
   =========================== */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  background: var(--white);
}

.form-group textarea { resize: vertical; }

.form-success {
  text-align: center;
  padding: 1.5rem;
  background: var(--sage-pale);
  border-radius: 4px;
  color: var(--sage-deep);
  font-weight: 500;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .intro-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .clients-sectors {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sdc-number {
    font-size: 2rem;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }

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

  .nav-toggle { display: flex; }

  .hero-title { font-size: 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-scroll-hint { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .cta-actions { flex-direction: column; align-items: center; }
}
