/* ========================================
   BridgeTech Corporate Site - Style Sheet
   ======================================== */

/* --- CSS Variables --- */
:root {
  --forest: #1A3C34;
  --emerald: #3D9B7A;
  --emerald-hover: #2E8266;
  --ivory: #F7F5F0;
  --warm-gray: #6B6560;
  --light-sage: #E8F0EC;
  --dark-overlay: rgba(26, 60, 52, 0.85);
  --border-color: #D6D3CE;
  --white: #FFFFFF;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Zen Kaku Gothic New', sans-serif;
  --header-height: 72px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--warm-gray);
  background: var(--ivory);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--forest);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--sage {
  background: var(--light-sage);
}

.section--forest {
  background: var(--forest);
  color: var(--white);
}

.section--forest h2,
.section--forest h3 {
  color: var(--white);
}

/* --- Grid Utilities --- */
.grid {
  display: grid;
  gap: 48px;
}

.grid--7-5 {
  grid-template-columns: 7fr 5fr;
}

.grid--5-7 {
  grid-template-columns: 5fr 7fr;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* --- Section Title --- */
.section-title {
  margin-bottom: 48px;
}

.section-title__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 8px;
}

.section-title__text {
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

.section-title__text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--emerald);
}

.section-title--center {
  text-align: center;
}

.section-title--center .section-title__text::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-title--white .section-title__label {
  color: rgba(255, 255, 255, 0.7);
}

.section-title--white .section-title__text {
  color: var(--white);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--forest);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.header__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--emerald);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald);
  transition: width var(--transition);
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--white);
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  width: 100%;
}

/* Mobile menu trigger */
.header__menu-trigger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}

.header__menu-trigger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 60, 52, 0.92) 0%, rgba(26, 60, 52, 0.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  color: var(--white);
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__title {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__description {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__actions {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

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

.btn--primary:hover {
  background: var(--emerald-hover);
  border-color: var(--emerald-hover);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn--outline-dark {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn--outline-dark:hover {
  background: var(--forest);
  color: var(--white);
}

.btn--large {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn__arrow {
  transition: transform var(--transition);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* --- Numbers / Stats --- */
.stats {
  padding: 64px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats__item {
  padding: 16px;
}

.stats__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 8px;
}

.stats__number span {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--warm-gray);
}

.stats__label {
  font-size: 0.875rem;
  color: var(--warm-gray);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 60, 52, 0.08);
}

.card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__body {
  padding: 28px;
}

.card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--emerald);
  background: var(--light-sage);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.card__title {
  margin-bottom: 12px;
}

.card__text {
  font-size: 0.9rem;
  color: var(--warm-gray);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--emerald);
  margin-top: 16px;
  transition: gap var(--transition);
}

.card__link:hover {
  gap: 10px;
}

/* --- Service Cards --- */
.service-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 2px;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 60, 52, 0.08);
  border-color: var(--emerald);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  padding: 8px;
  background: var(--light-sage);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.service-card__title {
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--emerald);
  transition: gap var(--transition);
}

.service-card__link:hover {
  gap: 10px;
}

/* --- CTA Section --- */
.cta {
  text-align: center;
  padding: 80px 0;
  background: var(--emerald);
  color: var(--white);
}

.cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.cta .btn--primary {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}

.cta .btn--primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* --- Footer --- */
.footer {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__brand-text {
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--emerald);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 24px 0;
  margin-top: var(--header-height);
  background: var(--light-sage);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb__link {
  color: var(--emerald);
  transition: color var(--transition);
}

.breadcrumb__link:hover {
  color: var(--forest);
}

.breadcrumb__separator {
  color: var(--border-color);
}

.breadcrumb__current {
  color: var(--warm-gray);
}

/* --- Page Hero (subpages) --- */
.page-hero {
  padding: 64px 0;
  background: var(--light-sage);
}

.page-hero__title {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.page-hero__text {
  max-width: 640px;
  font-size: 1.05rem;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline__item {
  position: relative;
  padding-bottom: 40px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--emerald);
  border-radius: 50%;
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 4px;
}

.timeline__text {
  font-size: 0.95rem;
}

/* --- Info Table (dl/dt/dd) --- */
.info-table {
  border-top: 2px solid var(--forest);
}

.info-table__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--border-color);
}

.info-table__label {
  padding: 20px 24px;
  background: var(--light-sage);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--forest);
}

.info-table__value {
  padding: 20px 24px;
  font-size: 0.9rem;
}

/* --- Service Detail (alternating layout) --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse > * {
  direction: ltr;
}

.service-detail__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--light-sage);
  line-height: 1;
  margin-bottom: 8px;
}

.service-detail__title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-detail__text {
  margin-bottom: 20px;
}

.service-detail__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-detail__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.service-detail__feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Flow / Steps --- */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: flow-step;
}

.flow__step {
  text-align: center;
  position: relative;
  counter-increment: flow-step;
}

.flow__step::before {
  content: counter(flow-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--emerald);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.flow__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background: var(--border-color);
}

.flow__title {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.flow__text {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

/* --- Filter Buttons --- */
.filter {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter__btn {
  padding: 8px 20px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  background: var(--white);
  color: var(--warm-gray);
  cursor: pointer;
  transition: all var(--transition);
}

.filter__btn:hover,
.filter__btn--active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* --- Accordion --- */
.accordion__item {
  border: 1px solid var(--border-color);
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
  text-align: left;
  transition: background var(--transition);
}

.accordion__trigger:hover {
  background: var(--light-sage);
}

.accordion__icon {
  transition: transform var(--transition);
  font-size: 1.25rem;
  color: var(--emerald);
}

.accordion__item--open .accordion__icon {
  transform: rotate(45deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__body {
  padding: 0 24px 24px;
  font-size: 0.9rem;
}

.accordion__body dt {
  font-weight: 500;
  color: var(--forest);
  margin-top: 12px;
  margin-bottom: 4px;
}

.accordion__body dd {
  color: var(--warm-gray);
}

/* --- Interview Cards --- */
.interview-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 2px;
}

.interview-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 2px;
  overflow: hidden;
}

.interview-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-card__role {
  font-size: 0.8rem;
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: 4px;
}

.interview-card__name {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.interview-card__text {
  font-size: 0.9rem;
}

/* --- Contact Form --- */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 8px;
}

.form-group label .required {
  color: #C0392B;
  font-size: 0.75rem;
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  background: var(--white);
  color: var(--warm-gray);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  outline: none;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

/* --- Contact Info Sidebar --- */
.contact-info__item {
  margin-bottom: 24px;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--forest);
}

/* --- Map --- */
.map-wrapper {
  width: 100%;
  height: 400px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- About Page: CEO & Philosophy --- */
.ceo-quote {
  border-left: 3px solid var(--emerald);
  padding-left: 24px;
  margin-bottom: 32px;
  font-size: 1.25rem;
  color: var(--forest);
  font-style: italic;
  line-height: 1.8;
}

.ceo-signature {
  margin-top: 32px;
  font-weight: 500;
  color: var(--forest);
}

.ceo-signature__role {
  font-size: 0.875rem;
  color: var(--warm-gray);
}

.ceo-photo {
  border-radius: 2px;
  width: 100%;
  object-fit: cover;
}

.philosophy-card {
  text-align: center;
  padding: 48px 32px;
}

.philosophy-card h3 {
  margin-bottom: 8px;
}

.philosophy-card__subtitle {
  color: var(--emerald);
  margin-bottom: 16px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-btn {
  margin-top: 24px;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--left {
  transform: translateX(-24px);
}

.reveal--right {
  transform: translateX(24px);
}

.reveal--visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger children */
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.5s; }

/* --- Skew Section Divider --- */
.skew-divider {
  position: relative;
}

.skew-divider::before {
  content: '';
  position: absolute;
  top: -32px;
  left: 0;
  width: 100%;
  height: 64px;
  background: inherit;
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid--7-5,
  .grid--5-7 {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail {
    gap: 40px;
  }

  .flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .flow__step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  html { font-size: 15px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .section { padding: 64px 0; }

  .header__nav { display: none; }
  .header__menu-trigger { display: flex; }

  /* Mobile nav open state */
  .header--nav-open .header__nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--forest);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .grid--7-5,
  .grid--5-7,
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__title { font-size: 2.25rem; }

  .hero__actions {
    flex-direction: column;
  }

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

  .service-detail--reverse {
    direction: ltr;
  }

  .flow {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

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

  .info-table__row {
    grid-template-columns: 1fr;
  }

  .info-table__label {
    padding: 12px 16px;
  }

  .info-table__value {
    padding: 12px 16px;
  }

  .interview-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .interview-card__photo {
    margin: 0 auto;
  }

  .filter {
    justify-content: center;
  }
}

/* --- About Image --- */
.about-img {
  border-radius: 2px;
}

/* --- Philosophy Card hover disable (non-clickable) --- */
.philosophy-card:hover {
  transform: none;
  box-shadow: none;
}

/* --- Reduced Motion Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__subtitle,
  .hero__title,
  .hero__description,
  .hero__actions {
    opacity: 1;
    transform: none;
  }
  .card:hover,
  .service-card:hover {
    transform: none;
  }
}
