:root {
  --gad-bg: #f3efea;
  --gad-surface: #ffffff;
  --gad-surface-muted: #f7f4ef;
  --gad-text: #1b1b1b;
  --gad-text-soft: #414141;
  --gad-text-body: #243248;
  --gad-border: #e0d8cf;
  --gad-border-soft: #ddd3c8;
  --gad-primary: #8f0e07;
  --gad-primary-strong: #a60f08;
  --gad-accent: #b98179;
  --gad-shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.05);
  --gad-shadow-md: 0 10px 26px rgba(0, 0, 0, 0.08);
  --gad-shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.05);
  --gad-shadow-xl: 0 14px 34px rgba(0, 0, 0, 0.14);
  --gad-radius-sm: 10px;
  --gad-radius-md: 14px;
  --gad-radius-lg: 22px;
  --gad-radius-xl: 28px;
  --gad-container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--gad-bg);
  color: var(--gad-text);
  padding-top: 88px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.gad-page {
  width: 100%;
}

.gad-container {
  width: min(var(--gad-container), calc(100% - 64px));
  margin: 0 auto;
}

.gad-section {
  padding: 90px 0;
}

.gad-section--light {
  background: var(--gad-surface);
}

.gad-section--tint {
  background: var(--gad-bg);
}

.gad-section-head {
  margin-bottom: 38px;
}

.gad-head-center {
  text-align: center;
}

.gad-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gad-primary);
}

.gad-title {
  margin: 0 0 24px;
  font-size: 43px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--gad-text-soft);
}

.gad-title--dark {
  color: var(--gad-text);
}

.gad-text {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gad-text-body);
}

.gad-text:last-child {
  margin-bottom: 0;
}

.gad-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gad-primary);
}

.gad-link:hover {
  text-decoration: underline;
}

.gad-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  padding: 14px 28px;
  border: 0;
  border-radius: var(--gad-radius-sm);
  background: var(--gad-primary-strong);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.gad-button:hover {
  background: var(--gad-primary);
  transform: translateY(-2px);
}

.gad-card {
  background: var(--gad-surface);
  border: 1px solid var(--gad-border);
  box-shadow: var(--gad-shadow-sm);
}

.gad-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.gad-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.gad-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* Header + Nav */
.gad-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gad-header__inner {
  width: min(var(--gad-container), calc(100% - 64px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gad-header__brand {
  display: flex;
  align-items: center;
  min-width: 180px;
}

.gad-header__brand img {
  width: auto;
  height: 48px;
}

.gad-header__toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid #ddd3c8;
  border-radius: 10px;
  background: #ffffff;
  color: #1f1f1f;
  cursor: pointer;
}

.gad-header__toggle i {
  font-size: 18px;
}

.gad-header__cta {
  display: inline-flex;
}

.gad-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 34px;
}

.gad-nav__link,
.gad-nav__dropdown-toggle {
  font-size: 16px;
  font-weight: 500;
  color: #1f1f1f;
}

.gad-nav__link:hover,
.gad-nav__dropdown-toggle:hover {
  color: var(--gad-primary);
}

.gad-nav__button {
  display: none;
}

.gad-nav__item--dropdown {
  position: relative;
}

.gad-nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gad-nav__dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.gad-nav__item--dropdown.is-open .gad-nav__dropdown-toggle i {
  transform: rotate(180deg);
}

.gad-nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  padding: 10px;
  display: none;
  background: #ffffff;
  border: 1px solid #e5ddd4;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  z-index: 60;
}

.gad-nav__item--dropdown.is-open .gad-nav__dropdown {
  display: block;
}

.gad-nav__dropdown-link {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: #1f1f1f;
}

.gad-nav__dropdown-link:hover {
  background: #f7f4ef;
  color: var(--gad-primary);
}

/* Hero */
.gad-hero {
  padding: 42px 0 34px;
}

.gad-hero__inner {
  width: min(var(--gad-container), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  min-height: 525px;
}

.gad-hero__content {
  max-width: 560px;
  padding-top: 12px;
}

.gad-hero__title {
  max-width: 520px;
  font-size: 44px;
  color: var(--gad-text-soft);
}

.gad-hero__text {
  max-width: 470px;
}

.gad-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.gad-hero__ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  padding: 14px 28px;
  border: 1px solid #cfc3b8;
  border-radius: var(--gad-radius-sm);
  background: transparent;
  color: var(--gad-text);
  font-size: 16px;
  font-weight: 600;
}

.gad-hero__ghost:hover {
  border-color: var(--gad-primary);
  color: var(--gad-primary);
}

.gad-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 18px 28px;
  margin-top: 26px;
  max-width: 460px;
}

.gad-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 12px 16px;
  border: 1px solid #d2d2d2;
  border-radius: 999px;
  background: #f5f1ec;
  color: #6a6a6a;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: all 0.25s ease;
}

.gad-tag:hover {
  background: #8f0e07;
  color: #ffffff;
  border-color: #8f0e07;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(143, 14, 7, 0.2);
}

.gad-hero__media {
  position: relative;
  min-height: 440px;
}

.gad-hero__shape {
  position: absolute;
  border-radius: 50%;
}

.gad-hero__shape--solid {
  top: 0;
  right: 58px;
  z-index: 1;
  width: 126px;
  height: 126px;
  background: var(--gad-accent);
}

.gad-hero__shape--ring {
  right: 120px;
  bottom: 18px;
  z-index: 1;
  width: 138px;
  height: 138px;
  border: 10px solid #bb6661;
}

.gad-hero__image {
  position: absolute;
  top: 78px;
  left: 32px;
  z-index: 3;
  width: 440px;
  height: 290px;
  overflow: hidden;
  border-radius: var(--gad-radius-lg);
  box-shadow: var(--gad-shadow-md);
}

.gad-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gad-hero__stat {
  position: absolute;
  right: 24px;
  bottom: 32px;
  z-index: 4;
  width: 220px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--gad-shadow-lg);
}

.gad-hero__stat-number {
  margin: 0 0 6px;
  font-size: 34px;
  font-weight: 800;
  color: var(--gad-primary);
}

.gad-hero__stat-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gad-text-body);
}

/* Focus */
.gad-focus__grid {
  gap: 24px;
}

.gad-focus-card {
  margin-top: 20px;
  padding: 30px 28px;
  border-radius: var(--gad-radius-xl);
  background: var(--gad-bg);
  border: 1px solid #e7ded4;
  box-shadow: var(--gad-shadow-lg);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.gad-focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.gad-focus-card__top {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}

.gad-focus-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.gad-focus-card__icon--agri {
  background: rgba(166, 18, 8, 0.08);
  color: #a61208;
}

.gad-focus-card__icon--infra {
  background: rgba(27, 27, 27, 0.08);
  color: #1b1b1b;
}

.gad-focus-card__icon--retail {
  background: rgba(140, 110, 80, 0.14);
  color: #6f4a2f;
}

.gad-focus-card__title {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--gad-text);
}

.gad-focus-card__text {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #666666;
}

.gad-focus-card__link {
  margin-top: 24px;
}

/* Impact + Future */
.gad-impact__title span,
.gad-journey__title span {
  color: #750101;
}

.gad-impact__title strong {
  color: var(--gad-primary);
  font-weight: 800;
}

.gad-impact__subtitle,
.gad-future__subtitle,
.gad-partners__intro {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}

.gad-impact__grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 32px;
}

.gad-impact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 24px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.gad-impact-card:hover,
.gad-future-card:hover {
  transform: translateY(-4px);
}

.gad-impact-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.gad-impact-card__icon {
  margin-bottom: 18px;
  font-size: 32px;
  line-height: 1;
  color: var(--gad-primary);
}

.gad-impact-card__value {
  margin: 0 0 10px;
  font-size: 31px;
  line-height: 1;
  font-weight: 800;
  color: var(--gad-primary);
}

.gad-impact-card__label {
  margin: 0;
  font-size: 14px;
  text-align: center;
  color: #374151;
}

.gad-future__head {
  margin-bottom: 50px;
  text-align: center;
}

.gad-future-card {
  min-height: 150px;
  padding: 28px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.gad-future-card:hover {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.07);
}

.gad-future-card__value {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 800;
  color: var(--gad-primary);
}

.gad-future-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Journey */
.gad-journey__grid {
  align-items: start;
  gap: 64px;
}

.gad-journey__content {
  max-width: 620px;
}

.gad-journey__quote {
  margin: 26px 0;
  padding-left: 18px;
  border-left: 3px solid var(--gad-primary);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
  color: var(--gad-text-body);
}

.gad-journey__media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 54px;
}

.gad-journey__image {
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  border-radius: var(--gad-radius-lg);
  background: #dddddd;
}

.gad-journey__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gad-founder-card {
  margin-top: 28px;
  margin-left: 16px;
  min-width: 146px;
  padding: 16px 20px;
  border-radius: 18px;
  background: var(--gad-surface-muted);
  border: 1px solid var(--gad-border-soft);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.gad-founder-card__name {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  color: #1d1d1d;
}

.gad-founder-card__role {
  margin: 0;
  font-size: 14px;
  color: var(--gad-primary);
}

/* Media */
.gad-media {
  padding-top: 80px;
  padding-bottom: 80px;
}

.gad-media__head {
  max-width: 760px;
  margin: 0 auto 30px;
}

.gad-media__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 340px;
  gap: 28px;
  align-items: start;
}

.gad-media__viewer {
  min-width: 0;
}

.gad-media__frame {
  background: #d9d9d9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--gad-shadow-sm);
}

.gad-media__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.gad-media__embed #gad-video-player,
.gad-media__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gad-media__caption {
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: #1b1b1b;
}

.gad-media__playlist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 540px;
  overflow-y: auto;
  padding-right: 6px;
}

.gad-media__playlist::-webkit-scrollbar {
  width: 8px;
}

.gad-media__playlist::-webkit-scrollbar-thumb {
  background: #c7c0b8;
  border-radius: 999px;
}

.gad-media__playlist::-webkit-scrollbar-track {
  background: #e8e2db;
  border-radius: 999px;
}

.gad-media__item {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: 1px solid #ddd3c8;
  border-radius: 12px;
  background: #f7f4ef;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.gad-media__item:hover {
  transform: translateY(-2px);
  border-color: #b9a99b;
}

.gad-media__item.is-active {
  background: #efe6de;
  border-color: var(--gad-primary);
}

.gad-media__item-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1b1b1b;
}

.gad-media__item-meta {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #6b6b6b;
}

/* Partners */
.gad-partners__split {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 32px;
  align-items: start;
  margin-top: 40px;
}

.gad-partners__panel {
  padding: 30px;
  border: 1px solid var(--gad-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--gad-shadow-sm);
}

.gad-partners__panel-head {
  margin-bottom: 24px;
}

.gad-partners__panel-head .gad-eyebrow {
  margin-bottom: 10px;
}

.gad-partners__panel-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--gad-text);
}

.gad-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gad-client-logo {
  min-height: 150px;
  padding: 18px 16px;
  border: 1px solid #e6ded4;
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.gad-client-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.gad-client-logo img {
  width: 100%;
  max-width: 120px;
  max-height: 56px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: grayscale(100%);
  opacity: 0.9;
  transition:
    filter 0.2s ease,
    opacity 0.2s ease;
}

.gad-client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.gad-client-logo p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: #374151;
}

.gad-strategic-grid {
  display: grid;
  gap: 18px;
}

.gad-strategic-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #f8f4ef 100%);
  border: 1px solid #e6ded4;
  box-shadow: var(--gad-shadow-sm);
}

.gad-strategic-card__logo {
  height: 96px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.gad-strategic-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gad-strategic-card__name {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--gad-text);
}

.gad-strategic-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gad-text-body);
}

/* Testimonials */
.gad-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 56px;
  align-items: start;
}

.gad-testimonial-card {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.gad-testimonial-card__person {
  text-align: center;
}

.gad-testimonial-card__avatar {
  width: 124px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8f0e07, #c0392b);
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
}

.gad-testimonial-card__name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1b1b1b;
}

.gad-testimonial-card__content {
  min-height: 116px;
  padding: 24px 22px;
  border-radius: 14px;
  background: #f1efec;
  display: flex;
  align-items: center;
}

.gad-testimonial-card__quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #444444;
}

/* Why */
.gad-why__content {
  max-width: 980px;
  margin: 0 auto;
}

.gad-why__lead {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.gad-why__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.gad-why__item {
  padding: 26px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e6ded4;
  box-shadow: var(--gad-shadow-sm);
}

.gad-why__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(143, 14, 7, 0.08);
  color: var(--gad-primary);
  font-size: 20px;
}

.gad-why__item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--gad-text);
}

.gad-why__item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gad-text-body);
}

.gad-why__closing {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  font-weight: 700;
  color: var(--gad-text);
}

/* Subscribe */
.gad-subscribe__box {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 40px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f4ef 100%);
  border: 1px solid #e5ddd4;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.gad-subscribe__text {
  max-width: 560px;
  margin: 0 auto 24px;
}

.gad-subscribe__form {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.gad-subscribe__input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #d8cdc3;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  background: #ffffff;
}

.gad-subscribe__input:focus {
  border-color: #8f0e07;
}

.gad-subscribe__button {
  height: 48px;
  padding: 0 22px;
  min-width: auto;
}

/* Contact */
.gad-contact-info__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.gad-contact-info__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 360px;
}

.gad-contact-info__block {
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid #e5ddd4;
}

.gad-contact-info__title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: #1b1b1b;
}

.gad-contact-info__text {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gad-text-body);
}

.gad-contact-info__text:last-child {
  margin-bottom: 0;
}

.gad-contact-info__block a {
  color: var(--gad-primary);
}

.gad-contact-info__map {
  background-color: white;
  width: 100%;
  min-height: 160px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.gad-contact-info__map::after {
  display: flex;
  justify-content: center;
  color: var(--gad-text-soft);
  content: "Erf166 Bellevue Farm Edenburg Free State, South Africa";
  padding: 40px;
}

.gad-contact-info__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA */
.gad-cta__box {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 40px;
  text-align: center;
  background: linear-gradient(180deg, #f7f4ef 0%, #fff 100%);
  border: 1px solid var(--gad-border-soft);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.gad-cta__title {
  margin-bottom: 18px;
}

.gad-cta__text {
  max-width: 680px;
  margin: 0 auto;
}

.gad-cta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Footer */
.gad-footer {
  padding: 30px 0 18px;
  background: #ece8e3;
}

.gad-footer__nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 16px;
  background: #ffffff;
  border-radius: 8px;
}

.gad-footer__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.gad-footer__nav a {
  font-size: 15px;
  color: #1f1f1f;
}

.gad-footer__nav a:hover {
  color: var(--gad-primary);
}

.gad-footer__button {
  min-width: 124px;
  padding: 12px 24px;
}

.gad-footer__body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
  padding: 26px 0 18px;
}

.gad-footer__about {
  max-width: 470px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--gad-text-body);
}

.gad-footer__social-wrap {
  justify-self: end;
}

.gad-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gad-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #d3d3d3;
  color: #1b1b1b;
  font-size: 16px;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.gad-footer__social-link:hover {
  background: var(--gad-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.gad-footer__bottom {
  text-align: center;
  padding-top: 8px;
}

.gad-footer__copyright {
  margin: 0;
  font-size: 14px;
  color: #1b1b1b;
}

/* Responsive */
@media (max-width: 1100px) {
  .gad-nav {
    gap: 20px;
  }

  .gad-hero__inner,
  .gad-journey__grid,
  .gad-grid-2,
  .gad-partners__split {
    grid-template-columns: 1fr;
  }

  .gad-hero__media {
    min-height: 360px;
  }

  .gad-hero__image {
    left: 20px;
  }

  .gad-grid-3,
  .gad-focus__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .gad-impact__grid,
  .gad-grid-3,
  .gad-clients-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 32px;
  }

  .gad-journey__media {
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  .gad-media__layout,
  .gad-contact-info__layout,
  .gad-footer__body,
  .gad-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .gad-media__playlist {
    max-height: 320px;
  }

  .gad-footer__social-wrap {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .gad-header__inner {
    position: relative;
    width: min(var(--gad-container), calc(100% - 40px));
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .gad-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .gad-header__cta {
    display: none;
  }

  .gad-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #e5ddd4;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  }

  .gad-header.is-open .gad-nav {
    display: flex;
  }

  .gad-nav__link,
  .gad-nav__dropdown-toggle {
    width: 100%;
    padding: 12px 10px;
    border-radius: 10px;
    text-align: left;
  }

  .gad-nav__link:hover,
  .gad-nav__dropdown-toggle:hover {
    background: #f7f4ef;
  }

  .gad-nav__item--dropdown {
    width: 100%;
  }

  .gad-nav__dropdown {
    position: static;
    min-width: 100%;
    margin-top: 6px;
    padding: 8px 0 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .gad-nav__dropdown-link {
    padding: 10px 14px 10px 22px;
  }

  .gad-nav__button {
    display: inline-flex;
    width: 100%;
    margin-top: 14px;
  }

  .gad-hero {
    padding-top: 28px;
  }

  .gad-title {
    font-size: 36px;
  }

  .gad-hero__title {
    font-size: 38px;
  }

  .gad-hero__image {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 360px;
    height: 240px;
    margin: 90px auto 20px;
  }

  .gad-hero__stat {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 auto;
  }

  .gad-hero__shape--solid {
    right: 20px;
    width: 110px;
    height: 110px;
  }

  .gad-hero__shape--ring {
    right: 60px;
    bottom: 0;
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 640px) {
  .gad-container,
  .gad-hero__inner {
    width: min(var(--gad-container), calc(100% - 40px));
  }

  .gad-section {
    padding: 70px 0;
  }

  .gad-nav__link,
  .gad-footer__nav a {
    font-size: 14px;
  }

  .gad-button,
  .gad-footer__button {
    width: 100%;
    min-width: auto;
  }

  .gad-title {
    font-size: 30px;
  }

  .gad-hero__title {
    font-size: 32px;
  }

  .gad-text,
  .gad-journey__quote {
    font-size: 15px;
  }

  .gad-tags,
  .gad-impact__grid,
  .gad-grid-3,
  .gad-clients-grid,
  .gad-why__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gad-founder-card {
    margin-left: 0;
  }

  .gad-strategic-card,
  .gad-testimonial-card {
    grid-template-columns: 1fr;
  }

  .gad-subscribe__form {
    flex-direction: column;
  }

  .gad-subscribe__button {
    width: 100%;
  }

  .gad-cta__box {
    padding: 40px 20px;
  }

  .gad-cta__actions,
  .gad-footer__nav-wrap {
    flex-direction: column;
  }

  .gad-footer__nav {
    gap: 16px;
    justify-content: center;
  }
}

/* add hero */
.gad-hero {
  padding: 56px 0 46px;
  overflow: hidden;
}

.gad-hero__inner {
  width: min(var(--gad-container), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
  min-height: 560px;
}

.gad-hero__content {
  max-width: 620px;
  padding-top: 8px;
}

.gad-hero__title {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.gad-hero__text {
  max-width: 540px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.8;
}

.gad-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.gad-hero__ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  padding: 14px 28px;
  border: 1px solid #cfc3b8;
  border-radius: var(--gad-radius-sm);
  background: transparent;
  color: var(--gad-text);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.gad-hero__ghost:hover {
  border-color: var(--gad-primary);
  color: var(--gad-primary);
  transform: translateY(-2px);
}

.gad-hero__mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin-top: 28px;
}

.gad-hero__mini-stat {
  padding: 16px 16px 14px;
  border: 1px solid #e4dbd2;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--gad-shadow-sm);
}

.gad-hero__mini-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  color: var(--gad-primary);
}

.gad-hero__mini-stat span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gad-text-body);
}

.gad-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 16px 18px;
  margin-top: 26px;
  max-width: 520px;
}

.gad-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid #ddd3c8;
  border-radius: 999px;
  background: #f8f4ef;
  color: #6a6a6a;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: all 0.25s ease;
}

.gad-tag:hover {
  background: var(--gad-primary);
  color: #ffffff;
  border-color: var(--gad-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(143, 14, 7, 0.2);
}

.gad-hero__media {
  position: relative;
  min-height: 500px;
}

.gad-hero__shape--solid {
  top: 8px;
  right: 46px;
  z-index: 1;
  width: 132px;
  height: 132px;
  background: #c6928c;
}

.gad-hero__shape--ring {
  right: 98px;
  bottom: 22px;
  z-index: 1;
  width: 150px;
  height: 150px;
  border: 12px solid #bb6661;
}

.gad-hero__image {
  position: absolute;
  top: 72px;
  left: 28px;
  z-index: 3;
  width: 470px;
  height: 320px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.gad-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gad-hero__floating-card {
  position: absolute;
  z-index: 4;
  max-width: 210px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--gad-shadow-lg);
}

.gad-hero__floating-card--top {
  top: 26px;
  left: 0;
}

.gad-hero__floating-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gad-primary);
}

.gad-hero__floating-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.45;
  color: var(--gad-text);
}

.gad-hero__stat {
  position: absolute;
  right: 10px;
  bottom: 34px;
  z-index: 4;
  width: 240px;
  padding: 22px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--gad-shadow-lg);
}

.gad-hero__stat-number {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 800;
  color: var(--gad-primary);
}

.gad-hero__stat-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gad-text-body);
}

@media (max-width: 1100px) {
  .gad-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
  }

  .gad-hero__content {
    max-width: 100%;
  }

  .gad-hero__media {
    min-height: 440px;
  }

  .gad-hero__image {
    width: 100%;
    max-width: 460px;
  }
}

@media (max-width: 820px) {
  .gad-hero {
    padding-top: 28px;
  }

  .gad-hero__title {
    font-size: 40px;
  }

  .gad-hero__mini-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .gad-hero__image {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 380px;
    height: 250px;
    margin: 70px auto 18px;
  }

  .gad-hero__floating-card,
  .gad-hero__stat {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 380px;
    margin: 14px auto 0;
  }

  .gad-hero__shape--solid {
    right: 10px;
    width: 108px;
    height: 108px;
  }

  .gad-hero__shape--ring {
    right: 52px;
    bottom: 8px;
    width: 118px;
    height: 118px;
  }
}

@media (max-width: 640px) {
  .gad-hero__title {
    font-size: 34px;
  }

  .gad-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gad-hero__ghost,
  .gad-button {
    width: 100%;
  }

  .gad-tags {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

.title_accent {
  color: var(--gad-primary);
  font-style: italic;
  font-weight: 500;
  font-family: Georgia, "Times New Roman", serif;
}

.hero_text {
  margin: 0;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--gad-text-body);
}

.title_accent_logo {
  color: var(--gad-primary);
  font-style: italic;
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;

  font-size: 23px;
}

.gad-header__brand {
  font-size: 20px;
  font-family: Georgia, "Times New Roman", serif;
  gap: 8px;
  font-style: italic;
  color: var(--gad-text-soft);
}

/* footer */
/* Footer */

/* Footer */
.gad-footer {
  padding: 42px 0 20px;
  background: #ece8e3;
  border-top: 1px solid #e2d9cf;
}

.gad-footer__top {
  margin-bottom: 26px;
}

.gad-footer__nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  background: #ffffff;
  border: 1px solid #e5ddd4;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.gad-footer__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  flex: 1;
}

.gad-footer__link,
.gad-footer__toggle {
  font-size: 15px;
  font-weight: 500;
  color: #1f1f1f;
}

.gad-footer__link {
  display: inline-flex;
  align-items: center;
}

.gad-footer__link:hover,
.gad-footer__toggle:hover {
  color: var(--gad-primary);
}

.gad-footer__item {
  position: relative;
}

.gad-footer__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gad-footer__icon {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--gad-primary);
  transition: transform 0.2s ease;
}

.gad-footer__item.footer-open .gad-footer__icon {
  transform: rotate(45deg);
}

.gad-footer__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 230px;
  padding: 10px;
  display: none;
  background: #ffffff;
  border: 1px solid #e5ddd4;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  z-index: 20;
}

.gad-footer__item.footer-open .gad-footer__dropdown {
  display: block;
}

.gad-footer__dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: #1f1f1f;
}

.gad-footer__dropdown a:hover {
  background: #f7f4ef;
  color: var(--gad-primary);
}

.gad-footer__button {
  min-width: 140px;
  padding: 12px 26px;
  flex-shrink: 0;
}

.gad-footer__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 0 18px;
}

.gad-footer__info {
  max-width: 620px;
}

.gad-footer__about {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--gad-text-body);
}

.gad-footer__social-wrap {
  flex-shrink: 0;
}

.gad-footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gad-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #d7d1ca;
  color: #1b1b1b;
  font-size: 16px;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.gad-footer__social-link:hover {
  background: var(--gad-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.gad-footer__bottom {
  text-align: center;
  padding-top: 10px;
}

.gad-footer__copyright {
  margin: 0;
  font-size: 14px;
  color: #1b1b1b;
}

/* Tablet */
@media (max-width: 900px) {
  .gad-footer__nav-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .gad-footer__nav {
    justify-content: flex-start;
  }

  .gad-footer__button {
    width: 100%;
    min-width: auto;
  }

  .gad-footer__body {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile - keep this style */
@media (max-width: 640px) {
  .gad-footer__nav-wrap {
    flex-direction: column;
    gap: 18px;
    padding: 18px;
  }

  .gad-footer__nav {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    width: 100%;
  }

  .gad-footer__link,
  .gad-footer__item {
    width: 100%;
    border-bottom: 1px solid #eee6dd;
  }

  .gad-footer__link {
    display: block;
    padding: 14px 0;
  }

  .gad-footer__toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    text-align: left;
  }

  .gad-footer__dropdown {
    position: static;
    min-width: 100%;
    margin-top: 0;
    padding: 0 0 10px 12px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .gad-footer__dropdown a {
    padding: 10px 0;
  }

  .gad-footer__button {
    width: 100%;
    min-width: auto;
    margin-top: 4px;
  }

  .gad-footer__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 12px;
  }

  .gad-footer__social-wrap {
    justify-self: start;
  }
}

section {
  scroll-margin-top: 100px; /* adjust based on your nav height */
}

.gad-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
  z-index: 9999;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.gad-toast--show {
  opacity: 1;
  transform: translateY(0);
}

.gad-toast--success {
  background: #9b1c0f;
}

.gad-toast--error {
  background: #b42318;
}
