:root {
  --ad-orange: #ff6b35;
  --ink: #0f172a;
}

/* ===== HERO (full-bleed) ===== */
.about-hero {
  background: transparent;
  padding: 0;
}

.about-hero .hero-container {
  max-width: 100%;
  padding: 0;
}

.hero-frame {
  position: relative;
  width: 100%;
  height: clamp(420px, 68vh, 780px);
  overflow: hidden;
  isolation: isolate;
}

.a-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .7s ease, transform .7s ease;
}

.a-slide.is-active {
  opacity: 1;
  transform: none;
}

.a-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: ken 12s ease-in-out infinite;
  filter: saturate(1.03) contrast(1.02);
}

@keyframes ken {
  0% {
    transform: scale(1.06) translateY(0);
  }

  50% {
    transform: scale(1.1) translateY(-1.5%);
  }

  100% {
    transform: scale(1.06) translateY(0);
  }
}

.a-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .5));
  z-index: 0;
}

.a-caption {
  position: absolute;
  inset: auto auto 28px 28px;
  color: #fff;
  z-index: 1;
  max-width: min(760px, 90%);
  text-shadow: 0 14px 36px rgba(0, 0, 0, .45);
}

.a-title {
  margin: 0 0 4px;
  font-size: clamp(28px, 4.8vw, 56px);
  line-height: 1.08;
}

.a-sub {
  margin: 0;
  font-size: clamp(14px, 2.2vw, 20px);
  opacity: .95;
}

.a-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(6px);
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.a-arrow:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-50%) scale(1.06);
}

.a-arrow.prev {
  left: 18px;
}

.a-arrow.next {
  right: 18px;
}

.a-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-auto-flow: column;
  gap: 10px;
  z-index: 2;
  background: rgba(0, 0, 0, .30);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}

.a-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, .75);
  transition: transform .15s, background .15s;
}

.a-dots button[aria-current="true"] {
  background: #fff;
  transform: scale(1.2);
}

@media (max-width: 760px) {
  .a-caption {
    inset: auto 16px 18px 16px;
    text-align: center;
  }

  .a-arrow {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .a-arrow.prev {
    left: 16px;
  }

  .a-arrow.next {
    right: 16px;
  }
}

/* ===== WHAT WE DO ===== */
.section-padding {
  padding: 64px 0;
}

.wwd-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 820px) {
  .wwd-grid {
    grid-template-columns: 1fr;
  }
}

.wwd-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(2, 8, 23, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.wwd-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(2, 8, 23, .12);
}

.wwd-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--ad-orange), #f7931e);
  box-shadow: 0 10px 22px rgba(255, 107, 53, .28);
}

.wwd-icon svg {
  width: 28px;
  height: 28px;
}

/* ===== TIMELINE ===== */
.story {
  background: #fff;
}

.timeline {
  position: relative;
  margin: 32px auto;
  max-width: 980px;
  padding: 0 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #e5ecf6, #ffd4c1);
  border-radius: 999px;
}

.t-item {
  position: relative;
  width: 50%;
  padding: 16px 24px;
}

.t-item.left {
  left: 0;
}

.t-item.right {
  left: 50%;
}

.t-item::before {
  content: "";
  position: absolute;
  top: 32px;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at 30% 30%, #fff, #ffe5db);
  border: 2px solid #ffd4c1;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .08);
}

.t-item.left::before {
  right: -14px;
}

.t-item.right::before {
  left: -14px;
}

.t-card {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(2, 8, 23, .06);
  padding: 20px 22px;
}

.t-title {
  color: var(--ad-orange);
  margin: 0 0 6px;
  font-size: 20px;
}

.t-text {
  color: #475569;
  margin: 0 0 12px;
}

.t-badge {
  display: inline-block;
  font-weight: 800;
  font-size: .85rem;
  color: #fff;
  background: linear-gradient(135deg, var(--ad-orange), #f7931e);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 107, 53, .25);
}

@media (max-width: 900px) {
  .timeline::before {
    left: 18px;
  }

  .t-item,
  .t-item.right,
  .t-item.left {
    left: 0;
    width: 100%;
    padding-left: 48px;
  }

  .t-item::before {
    left: 4px;
    right: auto;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ===== TALK TO US (stable field order with named areas) ===== */
.about-contact {
  background: #f8fafc;
  padding: 64px 0;
}

.ac-shell {
  max-width: 1040px;
  margin-inline: auto;
}

.ac-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(2, 8, 23, .06);
  overflow: hidden;
}

@media (max-width: 980px) {
  .ac-grid {
    grid-template-columns: 1fr;
  }
}

.ac-info {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border-right: 1px solid #eef2f7;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

@media (max-width: 980px) {
  .ac-info {
    border-right: 0;
    border-bottom: 1px solid #eef2f7;
  }
}

.ac-info h3 {
  margin: 0 0 6px;
  color: #0f172a;
  font-size: 24px;
}

.ac-info p {
  color: #4b5563;
  margin: 0;
}

.ac-info ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

/* Form pane */
.ac-form {
  --field-gap: 14px;
  padding: 28px;
  display: block;
}

.ac-form .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "name email"
    "subject subject"
    "message message"
    "actions actions";
  gap: var(--field-gap);
}

@media (max-width: 760px) {
  .ac-form .grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "name"
      "email"
      "subject"
      "message"
      "actions";
  }
}

.field-name {
  grid-area: name;
}

.field-email {
  grid-area: email;
}

.field-subject {
  grid-area: subject;
}

.field-message {
  grid-area: message;
}

.field-actions {
  grid-area: actions;
}

.float {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}

.float>input,
.float>textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
  background: #fff;
  line-height: 1.3;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}

.float>textarea {
  resize: vertical;
}

.float>input:focus,
.float>textarea:focus {
  outline: 0;
  border-color: var(--ad-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, .18);
}

.float>span {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #6b7280;
  background: #fff;
  padding: 0 6px;
  pointer-events: none;
  transition: transform .15s ease, color .15s ease, top .15s ease, font-size .15s ease;
}

.float>input:not(:placeholder-shown)+span,
.float>textarea:not(:placeholder-shown)+span,
.float>input:focus+span,
.float>textarea:focus+span {
  transform: translateY(-18px);
  top: 8px;
  font-size: 12px;
  color: #0e5875;
}

.ac-form .actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ac-form .form-status {
  color: #0e5875;
  opacity: 0;
  transition: opacity .2s;
}

/* ===== LOCATIONS (maps) ===== */
.about-locations {
  background: #fff;
}

.loc-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 992px) {
  .loc-shell {
    grid-template-columns: 1fr;
  }
}

.loc-list {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(2, 8, 23, .06);
  padding: 12px;
  display: grid;
  gap: 10px;
  position: sticky;
  top: 96px;
}

.loc-btn {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 12px 14px;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.loc-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(2, 8, 23, .08);
}

.loc-btn[aria-selected="true"] {
  border-color: var(--ad-orange);
  background: linear-gradient(180deg, #fff, #fff7f3);
  box-shadow: 0 10px 24px rgba(255, 107, 53, .10);
}

.loc-btn .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 4px;
  background: #e2e8f0;
  flex: 0 0 auto;
}

.loc-btn[aria-selected="true"] .dot {
  background: var(--ad-orange);
}

.loc-map-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(2, 8, 23, .06);
  overflow: hidden;
}

.loc-meta {
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.loc-name {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}

.loc-address {
  margin: 0;
  color: #475569;
}

.loc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  /* responsive */
  border-top: 1px solid #eef2f7;
}

.loc-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  transform: scale(1.002);
  transition: filter .25s ease;
}

.loc-map-card:hover .loc-map {
  filter: saturate(1.02) contrast(1.02);
}
