/* ============================================
   HEDGE MANAGEMENT — MAIN STYLESHEET
   Colors: Black #111, Gold #9a7f3c, Red #c0392b, White #fff
   Fonts: Cormorant Garamond (display), Barlow (body), Barlow Condensed (labels)
   ============================================ */

:root {
  --black:    #111111;
  --dark:     #1a1a1a;
  --gold:     #9a7f3c;
  --gold-lt:  #c4a44e;
  --red:      #c0392b;
  --white:    #ffffff;
  --off-white:#f5f3ef;
  --gray:     #888;
  --light-gray:#e8e4dc;
  --section-pad: 6rem;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; }
p { color: #444; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--gold-lt); }

.section-title { margin-bottom: 1.5rem; }
.section-title.light { color: var(--white); }

.gold { color: var(--gold); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: var(--section-pad) 0;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-desc { color: #aaa; }
.section-desc.light { color: #bbb; }

.section-divider {
  height: 1px;
  background: var(--light-gray);
  margin: 0 2rem;
}

.dark-section {
  background: var(--dark);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(154,127,60,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}
.btn.large { padding: 1.1rem 2.8rem; font-size: 0.9rem; }
.btn.full-width { width: 100%; text-align: center; }

.link-arrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-top: 1.5rem;
  transition: gap 0.2s;
}
.link-arrow:hover { color: var(--gold-lt); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.35s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(17,17,17,0.97);
  padding: 0.8rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-circle {
  width: 46px;
  height: 46px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.logo-circle.small {
  width: 36px;
  height: 36px;
}
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-red { color: var(--red); }
.logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}
.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: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-stripe {
  position: absolute;
  border-radius: 2px;
  transform-origin: bottom left;
}
.hero-stripe.s1 {
  width: 8px;
  height: 70%;
  background: var(--gold);
  bottom: 0; right: 15%;
  transform: rotate(-15deg);
  opacity: 0.7;
  animation: stripeSlide 1.2s ease-out both;
}
.hero-stripe.s2 {
  width: 22px;
  height: 55%;
  background: var(--red);
  bottom: 0; right: 18%;
  transform: rotate(-15deg);
  opacity: 0.9;
  animation: stripeSlide 1.1s ease-out 0.1s both;
}
.hero-stripe.s3 {
  width: 12px;
  height: 45%;
  background: var(--black);
  bottom: 0; right: 22%;
  transform: rotate(-15deg);
  border: 1px solid rgba(255,255,255,0.1);
  animation: stripeSlide 1s ease-out 0.2s both;
}
@keyframes stripeSlide {
  from { transform: rotate(-15deg) scaleY(0); opacity: 0; }
  to   { transform: rotate(-15deg) scaleY(1); opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  max-width: 700px;
  padding-left: max(2rem, calc((100vw - 1200px)/2 + 2rem));
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease-out 0.3s both;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease-out 0.5s both;
}
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease-out 0.7s both;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease-out 0.9s both;
}
.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: max(2rem, calc((100vw - 1200px)/2 + 2rem));
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 1s ease-out 1.2s both;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { width: 40px; opacity: 0.5; }
  50% { width: 60px; opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== INTRO ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-text p { margin-bottom: 1.2rem; }
.intro-visual {
  position: relative;
}
.stat-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.stat {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.3rem;
}
.accent-block {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(154,127,60,0.08), rgba(192,57,43,0.05));
  border: 1px solid rgba(154,127,60,0.15);
  z-index: 1;
}

/* ===== SECTORS ===== */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 3rem;
}
.sector-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.sector-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.sector-card:hover { background: #222; transform: translateY(-4px); }
.sector-card:hover::before { width: 100%; }
.sector-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
}
.sector-icon svg { width: 100%; height: 100%; }
.sector-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.sector-card p { font-size: 0.875rem; color: #999; margin: 0; }
.card-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: auto;
  transition: transform 0.2s;
}
.sector-card:hover .card-arrow { transform: translateX(6px); }
.sectors-cta { text-align: center; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--off-white); }
.cta-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}
.cta-stripes {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 8px;
  display: flex;
  flex-direction: column;
}
.cs { flex: 1; }
.cs.cs1 { background: var(--gold); }
.cs.cs2 { background: var(--red); }
.cs.cs3 { background: var(--black); }
.cta-text { flex: 1; min-width: 250px; }
.cta-text h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.cta-text p { color: var(--gray); margin: 0; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--dark);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-stripes {
  position: absolute;
  inset: 0;
}
.ph-stripe {
  position: absolute;
  border-radius: 2px;
}
.ph-stripe.s1 { width: 6px; height: 100%; background: var(--gold); right: 12%; top: 0; transform: rotate(-20deg); opacity: 0.5; }
.ph-stripe.s2 { width: 18px; height: 120%; background: var(--red); right: 15%; top: -10%; transform: rotate(-20deg); opacity: 0.7; }
.ph-stripe.s3 { width: 10px; height: 80%; background: rgba(255,255,255,0.05); right: 20%; top: 10%; transform: rotate(-20deg); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero-title {
  color: var(--white);
  margin-top: 0.5rem;
}
.page-hero-sub {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin-top: 1rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-quote-block {
  position: relative;
  padding: 2rem;
  background: var(--off-white);
  border-top: 4px solid var(--gold);
}
.about-quote-block blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--dark);
  font-style: italic;
}
.blockquote-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--red));
  opacity: 0.15;
  z-index: 0;
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.value-card {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.25s, transform 0.25s;
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.value-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.value-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.value-card p { color: #888; font-size: 0.9rem; margin: 0; }

/* TEAM */
.team-card {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: var(--off-white);
  border-left: 4px solid var(--gold);
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--gold);
}
.avatar-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 600;
}
.team-info h3 { font-size: 1.8rem; margin-bottom: 0.25rem; }
.team-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}
.team-credentials {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1rem;
}
.team-contact {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.team-contact a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: color 0.2s;
}
.team-contact a:hover { color: var(--red); }

/* ===== SERVICES ===== */
.service-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 4rem;
  align-items: start;
}
.service-layout.alt { }
.service-tag-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0.5rem;
}
.service-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
.service-stripe-deco {
  width: 3px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), var(--red));
  margin-top: 1rem;
  margin-left: 1rem;
}
.service-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.service-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 540px;
}
.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem 2rem;
  margin-bottom: 2.5rem;
}
.service-list li {
  font-size: 0.95rem;
  color: var(--dark);
  padding-left: 1.2rem;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.contact-card:first-of-type { border-top: 1px solid var(--light-gray); }
.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-card div { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-card strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}
.contact-card a, .contact-card span {
  font-size: 0.95rem;
  color: var(--dark);
  transition: color 0.2s;
}
.contact-card a:hover { color: var(--gold); }
.contact-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
}
.person-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}
.contact-person div { display: flex; flex-direction: column; }
.contact-person strong { font-size: 1rem; }
.contact-person span { font-size: 0.8rem; color: var(--gray); }

/* FORM */
.contact-form-wrap {
  background: var(--off-white);
  padding: 3rem;
  border-top: 4px solid var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--light-gray);
  background: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.2s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 1rem;
}
.form-success {
  text-align: center;
  padding: 4rem 2rem;
}
.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success h3 { margin-bottom: 0.5rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 4rem 0 0;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-brand .logo-sub { display: block; }
.footer-tagline {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.5rem;
  font-style: italic;
}
.footer-tagline, .footer p { margin: 0; }
.footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: #888;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.footer-contact strong { color: #bbb; }
.footer-contact a {
  color: #888;
  display: block;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: #555; margin: 0; }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  :root { --section-pad: 4rem; }

  .intro-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .accent-block { display: none; }

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

  .service-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-tag-col { flex-direction: row; align-items: center; gap: 1rem; }
  .service-stripe-deco { width: 40px; height: 3px; margin: 0; }

  .team-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .team-contact { justify-content: center; }

  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17,17,17,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; color: var(--white); }
  .nav-toggle { display: flex; z-index: 1000; }

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

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

  .hero-cta { flex-direction: column; align-items: flex-start; }

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