/* Ira Landscaping and Gardening — brochure dark green + gold accent theme */
:root {
  /* Brochure border dark green ~ #0C3B2A */
  --forest: #0c3b2a;
  --forest-deep: #08261c;
  --green: #0c3b2a;
  --green-mid: #145c40;
  --green-soft: #114a36;
  --gold: #c4a35a;
  --gold-soft: #d4b978;
  --cream: #f6f1e6;
  --ivory: #0c3b2a;
  --charcoal: #e8efe9;
  --muted: #b7c7bc;
  --soft: #2a5644;
  --light: #0f4433;
  --white: #ffffff;
  --card: #0f4433;
  --max: 1180px;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.18);
  --nav-h: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", "Segoe UI", system-ui, serif;
  color: var(--cream);
  background: var(--green);
  line-height: 1.6;
  min-height: 100vh;
}

/* Bold / strong emphasis → gold (brochure accent) instead of white */
strong,
b,
.hero h1,
.section-green h2,
.cta-band h2,
.stat strong,
.contact-card h2,
.process-num,
.founder-list-title,
.founder-card-head h3 {
  color: var(--gold);
}

h1,
h2,
h3,
h4,
.sans,
.nav,
.btn,
.pill,
.label,
.sector,
.stat,
.footer,
.form-label {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--green);
  color: var(--cream);
  font-size: 0.82rem;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
}

.topbar a:hover {
  color: var(--gold-soft);
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 59, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 163, 90, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
  padding: 0.55rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 0;
  background: transparent;
  border-radius: 6px;
  padding: 0;
}

.nav-logo {
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  /* Half white plate — keeps dark green letters readable */
  background-color: #ffffff;
  background: #ffffff;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  box-shadow: none;
  box-sizing: content-box;
  /* avoid browser filters washing dark green logo art */
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  -webkit-font-smoothing: antialiased;
}

/* Homepage: slightly larger, clearer brand mark */
body.page-home .nav-logo {
  height: 84px;
  max-width: 260px;
  background-color: #ffffff;
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--cream);
}

.nav-links a {
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
  color: var(--cream);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.55rem;
  color: var(--gold);
  cursor: pointer;
  line-height: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--green);
  color: var(--cream) !important;
  padding: 0.78rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--forest-deep) !important;
}

.btn-gold:hover {
  background: var(--gold-soft);
}

.btn-outline {
  background: transparent;
  color: var(--cream) !important;
  border: 1.5px solid rgba(246, 241, 230, 0.55);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-dark {
  background: transparent;
  color: var(--gold) !important;
  border: 1.5px solid rgba(196, 163, 90, 0.55);
  box-shadow: none;
}

.btn-outline-dark:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft) !important;
  background: rgba(196, 163, 90, 0.1);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(13, 59, 42, 0.45) 0%, rgba(10, 31, 22, 0.35) 35%, rgba(10, 31, 22, 0.9) 100%),
    var(--hero-img) center/cover no-repeat;
  padding: 0 0 3.5rem;
}

.hero-compact {
  min-height: 42vh;
  align-items: center;
  padding: 4rem 0;
  background:
    linear-gradient(120deg, rgba(10, 31, 22, 0.88) 0%, rgba(13, 59, 42, 0.72) 55%, rgba(10, 31, 22, 0.55) 100%),
    var(--hero-img) center/cover no-repeat;
}

.hero-kicker {
  display: inline-block;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  max-width: 16ch;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--gold);
}

.hero-compact h1 {
  max-width: 22ch;
}

.hero-lead {
  margin-top: 1rem;
  max-width: 48ch;
  font-size: 1.08rem;
  color: rgba(246, 241, 230, 0.92);
}

.hero-tag {
  margin-top: 1.15rem;
  font-style: italic;
  color: var(--gold-soft);
  font-size: 1.05rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--light);
  border-block: 1px solid rgba(196, 163, 90, 0.18);
}

.section-green {
  background: var(--forest-deep);
  color: var(--cream);
  border-block: 1px solid rgba(196, 163, 90, 0.28);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

.label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.section-green .label {
  color: var(--gold-soft);
}

.section-head h2,
.section h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  color: var(--gold);
  line-height: 1.2;
}

.section-green h2 {
  color: var(--gold);
}

.section-head p,
.lead {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-green .lead {
  color: rgba(246, 241, 230, 0.85);
}

.gold-rule {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 0.9rem auto 0;
  border-radius: 2px;
}

.section-head.left .gold-rule {
  margin-left: 0;
}

/* ---------- Process (Design / Install / Maintain) ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.process-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  border: 1px solid rgba(196, 163, 90, 0.28);
  text-align: center;
}

.process-num {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.process-card h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.process-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Cards / grids ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.25rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 163, 90, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  width: 100%;
}

.card-body {
  padding: 1.25rem 1.3rem 1.45rem;
}

.card-body h3 {
  color: var(--gold);
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}

.card-body p {
  color: var(--muted);
  font-size: 0.94rem;
}

.card-meta {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  font-family: "Segoe UI", system-ui, sans-serif;
}

/* ---------- Why choose ---------- */
.why-list {
  display: grid;
  gap: 1rem;
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: var(--card);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 163, 90, 0.22);
}

.why-num {
  font-weight: 800;
  color: var(--gold);
  font-size: 0.95rem;
  font-family: "Segoe UI", system-ui, sans-serif;
  padding-top: 0.15rem;
}

.why-item h3 {
  color: var(--forest);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.why-item p {
  color: var(--muted);
  font-size: 0.93rem;
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid rgba(196, 163, 90, 0.35);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

/* ---------- Sectors ---------- */
.sector {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: 12px;
  padding: 1.4rem 1rem;
  text-align: center;
  font-weight: 750;
  letter-spacing: 0.04em;
  color: var(--cream);
  min-height: 110px;
  display: grid;
  place-items: center;
}

.sector span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1.2rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(196, 163, 90, 0.22);
}

.stat strong {
  display: block;
  font-size: 1.85rem;
  color: var(--gold-soft);
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: rgba(246, 241, 230, 0.85);
}

/* ---------- Service detail blocks ---------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 163, 90, 0.3);
}

.service-block.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.service-block.reverse .service-copy {
  order: -1;
}

.service-block img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 360px;
  object-fit: cover;
  aspect-ratio: 16 / 11;
}

/* Collage + single service images share identical frame size */
.service-block .service-photo {
  width: 100%;
  min-height: 280px;
  max-height: 360px;
  object-fit: cover;
  aspect-ratio: 16 / 11;
  display: block;
}

.service-copy {
  padding: 1.6rem 1.7rem;
}

.service-copy .pill {
  display: inline-block;
  background: rgba(196, 163, 90, 0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.service-copy h3 {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.service-copy p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.service-copy ul {
  display: grid;
  gap: 0.4rem;
}

.service-copy li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.service-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Founders ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.founder-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 163, 90, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.founder-card-head {
  background: linear-gradient(135deg, var(--green) 0%, var(--forest) 100%);
  color: var(--cream);
  padding: 1.35rem 1.5rem 1.2rem;
  border-bottom: 3px solid var(--gold);
}

.founder-card-head h3 {
  color: var(--gold);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  margin: 0;
}

.founder-role {
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 0.88rem;
  margin: 0.35rem 0 0;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.founder-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.founder-card-body > p {
  color: var(--muted);
  font-size: 0.96rem;
}

.founder-intro {
  color: var(--charcoal) !important;
  font-size: 0.98rem !important;
  margin-bottom: 0.95rem;
}

.founder-list-title {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.2rem 0 0.55rem;
}

.founder-career {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1rem;
}

.founder-career li {
  position: relative;
  padding: 0.55rem 0.7rem 0.55rem 0.85rem;
  background: var(--light);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.45;
}

.founder-career li strong {
  display: block;
  color: var(--forest);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
}

.founder-highlight {
  background: rgba(13, 59, 42, 0.06);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin: 0.2rem 0 0.9rem;
  color: var(--forest) !important;
  font-size: 0.94rem !important;
  border: 1px solid rgba(196, 163, 90, 0.28);
}

.founder-quote {
  font-style: italic;
  color: var(--forest);
  border-left: 3px solid var(--gold);
  padding: 0.55rem 0 0.55rem 0.95rem;
  margin: 0.35rem 0 1.1rem;
  font-size: 0.98rem;
  line-height: 1.5;
}

.founder-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ---------- India map / region ---------- */
.region-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.75rem;
  align-items: center;
}

.india-map-wrap {
  width: min(280px, 100%);
  margin: 0 auto;
  padding: 0.9rem;
  background: var(--cream);
  border-radius: 18px;
  border: 2px solid rgba(196, 163, 90, 0.55);
  box-shadow: var(--shadow-sm);
}

.india-map-wrap img,
.india-map-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

.india-map-inline {
  width: min(200px, 48vw);
  flex-shrink: 0;
}

.contact-region {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  flex-wrap: wrap;
}

.contact-region .india-map-inline {
  width: 180px;
  padding: 0.55rem;
  background: #f6f1e6;
  border-radius: 14px;
  border: 2px solid rgba(196, 163, 90, 0.55);
  box-shadow: 0 6px 18px rgba(10, 31, 22, 0.12);
}

.contact-map-panel {
  margin-top: 1.25rem;
  padding: 1rem;
  background: rgba(246, 241, 230, 0.1);
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: 16px;
  text-align: center;
}

.contact-map-panel img {
  width: min(260px, 100%);
  margin: 0 auto 0.75rem;
  border-radius: 14px;
  border: 2px solid rgba(196, 163, 90, 0.5);
  background: #f6f1e6;
}

.contact-map-panel p {
  font-size: 0.9rem;
  color: inherit;
  opacity: 0.95;
}

.footer-map {
  width: 110px;
  margin-top: 0.75rem;
  opacity: 1;
  border-radius: 10px;
  border: 1px solid rgba(196, 163, 90, 0.4);
  overflow: hidden;
  background: #f6f1e6;
}
}

.footer-map img {
  width: 100%;
  height: auto;
  filter: brightness(1.15);
}

.capability {
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  margin-top: 1.5rem;
}

.capability h3 {
  color: var(--gold-soft);
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
}

.capability ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
}

.capability li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
}

.capability li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(transparent, rgba(10, 31, 22, 0.88));
  color: var(--cream);
  font-size: 0.85rem;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-weight: 600;
}

/* ---------- Values ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.value-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
  border: 1px solid rgba(196, 163, 90, 0.25);
}

.value-card h3 {
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.75rem;
  align-items: start;
}

.contact-card {
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.contact-card .lead {
  color: rgba(246, 241, 230, 0.85);
  margin-bottom: 1.4rem;
}

.contact-row {
  margin-bottom: 1.05rem;
}

.contact-row .label {
  color: var(--gold-soft);
  margin-bottom: 0.2rem;
}

.contact-row a,
.contact-row p {
  color: var(--cream);
  font-size: 1.02rem;
  font-weight: 600;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.contact-row a:hover {
  color: var(--gold-soft);
}

.form-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.7rem 1.55rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 163, 90, 0.35);
}

.form-card h3 {
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.form-card > p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-group {
  display: grid;
  gap: 0.35rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: 10px;
  padding: 0.72rem 0.85rem;
  font: inherit;
  background: var(--forest-deep);
  color: var(--cream);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(196, 163, 90, 0.55);
  border-color: var(--gold);
  background: #0a2f22;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.map-note {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(196, 163, 90, 0.25);
  font-size: 0.92rem;
  color: rgba(246, 241, 230, 0.9);
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: 3.5rem 0;
  background:
    linear-gradient(110deg, rgba(10, 31, 22, 0.92), rgba(13, 59, 42, 0.85)),
    url("../assets/images/corporate-campus.jpg") center/cover no-repeat;
  color: var(--cream);
  text-align: center;
}

.cta-band h2 {
  color: var(--gold);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.cta-band p {
  margin: 0.7rem auto 1.4rem;
  max-width: 48ch;
  color: rgba(246, 241, 230, 0.9);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--forest-deep);
  color: rgba(246, 241, 230, 0.85);
  padding: 3rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 56px;
  width: auto;
  background-color: #ffffff;
  background: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 0.9rem;
  box-shadow: none;
  box-sizing: content-box;
}

.footer h4 {
  color: var(--gold-soft);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.footer p,
.footer a {
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer a:hover {
  color: var(--gold-soft);
}

.footer ul {
  display: grid;
  gap: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(196, 163, 90, 0.2);
  padding-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(246, 241, 230, 0.65);
}

/* ---------- Misc ---------- */
.quote {
  font-style: italic;
  color: var(--forest);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.1rem 0;
  font-size: 1.05rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  display: inline-block;
  background: rgba(196, 163, 90, 0.15);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-family: "Segoe UI", system-ui, sans-serif;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .process-grid,
  .grid-3,
  .gallery,
  .value-grid,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2,
  .grid-4,
  .service-block,
  .service-block.reverse,
  .founder-grid,
  .contact-grid,
  .footer-grid,
  .region-block {
    grid-template-columns: 1fr;
  }

  .service-block.reverse .service-copy {
    order: 0;
  }

  .capability ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--ivory);
    border-bottom: 1px solid rgba(196, 163, 90, 0.28);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.2rem 1rem;
    gap: 0.15rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.65rem 0.2rem;
  }

  .process-grid,
  .grid-3,
  .gallery,
  .value-grid,
  .stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }
}

/* A11y + breadcrumbs */
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--green); color: var(--cream); padding: 0.65rem 1rem;
  border-radius: 8px; font-weight: 700; font-family: "Segoe UI", system-ui, sans-serif;
}
.skip-link:focus { top: 1rem; outline: 2px solid var(--gold); }
.breadcrumbs {
  font-size: 0.82rem; font-family: "Segoe UI", system-ui, sans-serif;
  color: rgba(246,241,230,0.8); margin-bottom: 0.75rem;
}
.breadcrumbs a { color: var(--gold-soft); }
.breadcrumbs a:hover { text-decoration: underline; }


/* Contact page: separated panels */
.contact-split {
  display: grid;
  gap: 2rem;
}
.contact-panel {
  background: var(--card);
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.contact-panel + .contact-panel {
  margin-top: 0.25rem;
  border-top: 3px solid var(--gold);
}
.contact-panel h2 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.contact-panel .lead {
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.contact-panel .contact-row p,
.contact-panel .contact-row a {
  color: var(--cream);
}
.contact-panel .label {
  color: var(--gold-soft);
}
.why-item h3,
.card-meta {
  color: var(--gold) !important;
}
.why-num {
  color: var(--gold);
}
.founder-role {
  color: var(--gold-soft) !important;
}
.footer-logo {
  background-color: #ffffff;
  background: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  box-shadow: none;
}
.capability {
  background: var(--card) !important;
  border-color: rgba(196, 163, 90, 0.3) !important;
}
.capability h3 {
  color: var(--gold) !important;
}
