/* ========================================
   ATLANTIS CLINIC — About Us Page Styles
   ======================================== */

/* ---------- Custom Properties ---------- */
:root {
  --black: #191514;
  --black-70: rgba(25, 21, 20, 0.7);
  --coral: #cb7266;
  --brown: #5f413d;
  --brown-hover: #4a322f;
  --sepia: #f5f0ec;
  --yellow: #f6bc5e;
  --white: #FFFFFF;
  --stroke: #e5e2df;
  --text-secondary: #646569;

  --font-heading: 'TT Firs Neue', 'DM Sans', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-max: 1344px;
  --section-padding: 140px;
  --border-radius: 20px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ---------- Utilities ---------- */
.text-accent {
  color: var(--coral);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px 8px 8px;
  border: 1.5px solid var(--stroke);
  border-radius: 88px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
  line-height: 24px;
  letter-spacing: 0.032px;
}

.section-badge svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--black);
  line-height: 44px;
  margin-bottom: 12px;
}

.section-description {
  font-size: 1rem;
  color: var(--black);
  line-height: 24px;
  letter-spacing: 0.032px;
  max-width: 660px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 99px;
  transition: all var(--transition);
}

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

.btn--primary:hover {
  background: var(--brown-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(95, 65, 61, 0.3);
}

.btn--full {
  width: 100%;
}

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 88px;
  display: flex;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(6px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav--scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.nav__logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav__logo-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 48px;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  line-height: 28px;
  letter-spacing: 0.044px;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--black-70);
  line-height: 20px;
}

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

.nav__list {
  display: flex;
  align-items: center;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  padding: 12px 16px;
  border-radius: 99px;
  transition: all var(--transition);
  line-height: 24px;
}

.nav__link:hover {
  background: var(--sepia);
  color: var(--brown);
}

.nav__link--active {
  background: var(--sepia);
  color: var(--brown);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 20px;
  background: var(--brown);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  border-radius: 99px;
  transition: all var(--transition);
  line-height: 24px;
}

.nav__cta svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.nav__cta:hover {
  background: var(--brown-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(95, 65, 61, 0.3);
}

.nav__lang {
  position: relative;
}

.nav__lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--stroke);
  border-radius: 99px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  line-height: 24px;
  cursor: pointer;
  transition: all var(--transition);
}

.nav__lang-btn:hover {
  background: var(--sepia);
}

.nav__lang-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.nav__lang.open .nav__lang-btn svg {
  transform: rotate(180deg);
}

.nav__lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 100;
}

.nav__lang.open .nav__lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--black);
  cursor: pointer;
  transition: background 0.2s ease;
}

.nav__lang-option:hover {
  background: var(--sepia);
}

.nav__lang-option--active {
  background: var(--sepia);
  font-weight: 500;
}

.nav__flag {
  border-radius: 2px;
  flex-shrink: 0;
}

/* Mobile-only elements — hidden on desktop */
.nav__mobile-bottom {
  display: none;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO / ABOUT
   ======================================== */
.hero {
  padding-top: 88px;
  background: var(--white);
}

.hero__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 275px 100px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero__content {
  max-width: 890px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--black);
  line-height: 44px;
}

.hero__description {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--black-70);
  line-height: 24px;
  letter-spacing: 0.032px;
}

.hero__image {
  border-radius: 20px;
  overflow: hidden;
  height: 527px;
}

.hero__img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.hero__section-img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.hero__mission-image,
.hero__vision-image {
  border-radius: 20px;
  overflow: hidden;
}

/* Mission & Vision shared layout */
.hero__mission,
.hero__vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  line-height: 32px;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.hero__body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 24px;
  letter-spacing: 0.032px;
}

.hero__mission-image,
.hero__vision-image {
  aspect-ratio: 425 / 260;
}

/* ========================================
   TEAM
   ======================================== */
.team {
  padding: var(--section-padding) 48px;
  background: var(--white);
}

.team__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.team__header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.team__grid {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.team__card {
  width: 324px;
  border-radius: 20px 20px 16px 16px;
  overflow: visible;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team__card:not(.team__card--cta) {
  flex: 0 0 324px;
}

.team__card:nth-child(2),
.team__card:nth-child(3) {
  flex: 1 1 0;
  min-width: 0;
}

.team__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(25, 21, 20, 0.1);
}

.team__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 20px;
  background: var(--sepia);
}

.team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.team__name-role {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team__name {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
  line-height: 28px;
  letter-spacing: 0.036px;
}

.team__role {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--black-70);
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team__rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.team__rating-score {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black);
  line-height: 28px;
  letter-spacing: 0.056px;
}

.team__stars {
  display: flex;
  gap: 2px;
  color: var(--yellow);
  font-size: 1.5rem;
}

/* Team CTA card (4th slot) */
.team__card--cta {
  width: 324px;
  flex: 0 0 324px;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  background: none;
}

.team__card--cta .team__cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.team__card--cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(95, 65, 61, 0.2);
}

.team__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.team__cta-icon {
  width: 80px;
  height: 80px;
  color: var(--white);
}

.team__cta-icon svg {
  width: 100%;
  height: 100%;
}

.team__cta-btn {
  padding: 16px 16px 16px 24px;
  background: var(--white);
  color: var(--brown);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 99px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 24px;
}

.team__cta-btn svg {
  width: 24px;
  height: 24px;
}

.team__cta-btn:hover {
  background: var(--sepia);
  color: var(--brown);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: var(--section-padding) 48px;
  background: var(--sepia);
}

.testimonials__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.testimonials__header {
  text-align: left;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonials__grid {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

/* Special first card — rating summary */
.testimonial-card--rating {
  width: 324px;
  flex: 0 0 324px;
  position: relative;
  color: var(--white);
}

.testimonial-rating__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.testimonial-rating__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 54px 24px 24px;
  height: 100%;
  box-sizing: border-box;
}

.testimonial-rating__laurel {
  flex: 1 0 0;
  min-width: 0;
  height: auto;
  opacity: 0.25;
}

.testimonial-rating__center {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.testimonial-rating__score-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.testimonial-card--rating .testimonial-rating__score {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  color: var(--white);
}

.testimonial-card--rating .testimonial-rating__text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  opacity: 0.7;
  text-align: center;
  line-height: 20px;
  color: var(--white);
}

.testimonial-card--rating .testimonial-rating__stars {
  display: flex;
  gap: 8px;
  justify-content: center;
  color: var(--yellow);
}

.testimonial-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 3 / 4;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(25, 21, 20, 0.08);
}

.testimonial-card__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial-card__stars {
  display: flex;
  gap: 16px;
  align-items: center;
}

.testimonial-card__stars-score {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  line-height: 24px;
  letter-spacing: 0.15px;
}

.testimonial-card__stars-icons {
  display: flex;
  gap: 8px;
  color: var(--yellow);
  font-size: 1.5rem;
}

.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 24px;
  color: var(--black-70);
  letter-spacing: 0.032px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.testimonial-card__author > div {
  min-width: 0;
}

.testimonial-card__avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--coral);
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--black);
  line-height: 28px;
  letter-spacing: 0.036px;
}

.testimonial-card__detail {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--black);
  opacity: 0.7;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: var(--section-padding) 48px;
  background: var(--white);
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  transition: border-color var(--transition);
}

.faq__item.active {
  border-color: var(--coral);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--coral);
}

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--coral);
  transition: transform var(--transition);
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__answer p {
  padding: 0 28px 22px;
  font-size: 1rem;
  line-height: 24px;
  color: var(--black-70);
  letter-spacing: 0.032px;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
  padding: var(--section-padding) 48px;
  background: var(--sepia);
}

.contact__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.contact__header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--black-70);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(95, 65, 61, 0.15);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A7A' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 10px;
}

.contact__info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown);
  border-radius: 8px;
  padding: 10px;
}

.contact__info-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--white);
}

.contact__info-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.contact__info-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--black-70);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--white);
}

.footer__divider {
  height: 4px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--yellow) 35%, var(--brown) 70%, var(--coral) 100%);
}

.footer__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 98px;
}

.footer__brand {
  flex-shrink: 0;
}

.footer__center {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--black-70);
}

.footer__center a {
  color: var(--black-70);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__center a:hover {
  color: var(--brown);
}

.footer__sep {
  color: var(--stroke);
  user-select: none;
}

.footer__social-links {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.footer__social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  transition: all var(--transition);
  padding: 8px;
}

.footer__social-links a:hover {
  background: var(--brown);
}

.footer__social-links a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

/* ========================================
   RESPONSIVE — Tablet (1024px)
   ======================================== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero__container {
    padding: 60px 48px 80px;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 36px;
  }

  .hero__title {
    font-size: 2rem;
    line-height: 36px;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }

  .hero__image {
    height: 400px;
  }

  .team__grid {
    flex-wrap: wrap;
  }

  .team__card,
  .team__card:nth-child(2),
  .team__card:nth-child(3) {
    flex: 0 0 calc(50% - 8px);
    width: calc(50% - 8px);
  }

  .team__card--cta {
    flex: 0 0 calc(50% - 8px);
    width: calc(50% - 8px);
    height: 400px;
  }

  .testimonials__grid {
    flex-wrap: wrap;
  }

  .testimonial-card--rating {
    flex: 0 0 100%;
    width: 100%;
    height: 300px;
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - 11px);
    aspect-ratio: auto;
    min-height: 400px;
  }

  .footer__container {
    padding: 0 24px;
    flex-wrap: wrap;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 16px;
  }

  .footer__center {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
  }
}

/* ========================================
   RESPONSIVE — Mobile landscape (768px)
   ======================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .nav__container {
    padding: 0 24px;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    height: calc(100vh - 88px);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    padding: 16px;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
  }

  .nav__menu.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 99px;
    background: transparent;
  }

  .nav__link--active {
    background: var(--sepia);
    color: var(--brown);
  }

  /* Hide desktop CTA and lang on mobile */
  .nav__cta,
  .nav__lang {
    display: none;
  }

  /* Show mobile bottom section */
  .nav__mobile-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .nav__lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: #f2f2f2;
    border-radius: 99px;
    padding: 2px;
  }

  .nav__lang-pill {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px 12px 12px;
    border-radius: 99px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: var(--black);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .nav__lang-pill--active {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(19, 19, 20, 0.04);
  }

  .nav__lang-pill .nav__flag {
    width: 22px;
    height: 18px;
    border-radius: 3px;
  }

  .nav__mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px 12px 20px;
    background: var(--brown);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 99px;
    transition: all 0.3s ease;
  }

  .nav__mobile-cta svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .nav__mobile-cta:hover {
    background: var(--brown-hover);
  }

  .hero__container {
    padding: 40px 24px 64px;
  }

  .hero__title {
    font-size: 1.75rem;
    line-height: 32px;
  }

  .hero__image {
    height: 300px;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }

  .hero__mission,
  .hero__vision {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__mission-image,
  .hero__vision-image {
    aspect-ratio: 16 / 9;
  }

  .hero__vision-image {
    order: -1;
  }

  .section-title {
    font-size: 1.5rem;
    line-height: 32px;
  }

  .team,
  .testimonials,
  .faq,
  .contact {
    padding-left: 24px;
    padding-right: 24px;
  }

  .team__grid {
    flex-wrap: wrap;
  }

  .team__card,
  .team__card:nth-child(2),
  .team__card:nth-child(3),
  .team__card--cta {
    flex: 0 0 calc(50% - 8px);
    width: calc(50% - 8px);
  }

  .testimonials__grid {
    flex-direction: column;
  }

  .testimonial-card--rating {
    width: 100%;
    flex: 0 0 auto;
    height: 250px;
  }

  .testimonial-card {
    flex: 0 0 auto;
    aspect-ratio: auto;
    min-height: 360px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__center {
    font-size: 12px;
    gap: 6px;
  }
}

/* ========================================
   RESPONSIVE — Mobile portrait (480px)
   ======================================== */
@media (max-width: 480px) {
  :root {
    --section-padding: 48px;
  }

  .nav__container {
    padding: 0 16px;
  }

  .hero__container {
    padding: 32px 16px 48px;
  }

  .hero__title {
    font-size: 1.5rem;
    line-height: 28px;
  }

  .hero__image {
    height: 220px;
  }

  .section-title {
    font-size: 1.375rem;
    line-height: 28px;
  }

  .team,
  .testimonials,
  .faq,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .team__grid {
    flex-direction: column;
  }

  .team__card,
  .team__card:nth-child(2),
  .team__card:nth-child(3),
  .team__card--cta {
    flex: 0 0 auto;
    width: 100%;
  }

  .team__card--cta {
    height: 350px;
  }

  .testimonial-card {
    padding: 24px 20px 20px;
    min-height: 320px;
  }

  .faq__question {
    padding: 18px 20px;
    font-size: 0.9375rem;
  }

  .faq__answer p {
    padding: 0 20px 18px;
    font-size: 0.875rem;
  }

  .footer__container {
    padding: 16px;
    flex-direction: column;
    height: auto;
    gap: 12px;
    text-align: center;
  }

  .footer__center {
    order: 3;
    flex-direction: column;
    gap: 4px;
  }

  .footer__sep {
    display: none;
  }
}
