/* Home page (core/home.html) styles. */

/* ---------- Hero (immersive: full-bleed image behind the header) ---------- */

.hero-immersive {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(160deg, #2B332C 0%, #1A1D1B 100%);
}

.hero-immersive__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-immersive__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
}

.hero-immersive .site-header {
  z-index: 3;
}

.hero-immersive__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding-top: 120px;
}

.hero-immersive__inner {
  max-width: 620px;
  padding-bottom: clamp(40px, 8vh, 90px);
}

.hero-immersive__kicker {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 14px;
  unicode-bidi: isolate;
}

.hero-immersive__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(34px, 6.2vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 3px 26px rgba(0, 0, 0, 0.4);
}

.hero-immersive__lede {
  font-size: 18px;
  line-height: 1.65;
  color: #fff;
  margin: 0 0 32px;
  text-wrap: pretty;
}

.hero-immersive__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .hero-immersive {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-immersive .site-header {
    /* Stay a positioned ancestor (just no longer absolute) so the
       dropdown nav's `position: absolute; top: 100%` still anchors to
       the header bar instead of the whole (now auto-height) hero. */
    position: relative;
  }

  .hero-immersive__content {
    position: relative;
    align-items: flex-start;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 56px;
  }

  .hero-immersive__inner {
    padding-bottom: 0;
  }

  .hero-immersive__actions {
    justify-content: flex-start;
  }
}

/* ---------- Section shell ---------- */

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 32px;
}

.section__head h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h2);
  letter-spacing: -0.02em;
  margin: 0;
}

/* ---------- WhatsApp CTA strip ---------- */

.cta-strip {
  margin-top: var(--section-gap);
}

.cta-strip__inner {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  flex-wrap: wrap;
}

.cta-strip__inner h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-h3);
  margin: 0 0 6px;
}

.cta-strip__inner p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

/* ---------- About ---------- */

.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.about__visual {
  height: clamp(300px, 40vw, 420px);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h2);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  text-wrap: balance;
}

.about p {
  font-size: var(--fs-body-lg);
  line-height: 1.68;
  color: var(--color-text-muted);
  margin: 0 0 16px;
  text-wrap: pretty;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 44px;
  padding-top: 28px;
  margin-top: 12px;
  border-top: 1px solid var(--color-border);
}

.stat-row__num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.stat-row__label {
  font-size: var(--fs-tiny);
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* ---------- Band sections (services / why) ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: clamp(24px, 3vw, 34px);
  margin-top: 40px;
}

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

.service-card svg {
  color: var(--color-primary);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-h4);
  margin: 0;
}

.service-card p {
  margin: 0;
  font-size: var(--fs-small);
  line-height: 1.6;
  color: var(--color-dark-text-muted);
}

/* ---------- International ---------- */

.international__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.international h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h2);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  text-wrap: balance;
}

.international p {
  font-size: var(--fs-body-lg);
  line-height: 1.68;
  color: var(--color-text-muted);
  margin: 0 0 16px;
  text-wrap: pretty;
}

.international p.international__lede {
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 24px;
}

.international__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
}

.international__card-label {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--color-text-muted);
}

.check-list li::before {
  content: '';
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ---------- Why us ---------- */

.why-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 18px 40px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--color-text-muted);
}

.why-list svg {
  flex: none;
  margin-top: 2px;
  color: var(--color-primary);
}

/* ---------- Archive ---------- */

.archive__more {
  font-size: var(--fs-small);
  font-weight: 600;
}

/* ---------- Contact ---------- */

.contact-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
  /* margin-bottom: var(--section-gap); */
}

.contact-panel h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(25px, 3.2vw, 34px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.contact-panel > div:first-child > p {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 28px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--fs-tiny);
  font-weight: 600;
}

.contact-form label.span-2 {
  grid-column: span 2;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form__submit {
  margin-top: 22px;
}

@media (max-width: 480px) {
  .contact-form label.span-2 {
    grid-column: span 1;
  }
}

.contact-info {
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-info__label {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: 8px;
}

.contact-info__phone {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
}

.contact-info__email {
  font-size: 17px;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.social-links a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.contact-info__meeting {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--color-text-muted);
}

@media (max-width: 760px) {
  .hero__actions,
  .hero {
    text-align: left;
  }
}
