/* ── Header-4 position override ── */
.header-area-4 {
  position: relative;
}

/* ── Header-4 logo text ── */
.header-area-4 .header-logo-text {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.header-area-4 .header-logo-text span {
  display: block;
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.12em;
  opacity: 0.6;
  margin-top: 2px;
}

/* ── Hero-12 overrides ── */
.hero-section-12__content {
  padding-top: 180px;
}

.hero-section-12__subtitle {
  font-size: 20px;
  line-height: 28px;
  max-width: 800px;
}

@media only screen and (max-width: 991px) {
  .hero-section-12__content {
    padding-top: 140px;
  }
}
@media (max-width: 575px) {
  .hero-section-12__content {
    padding-top: 110px;
  }
}

/* ── Stats strip overrides ── */
.experience__item .title {
  font-size: 120px;
  line-height: 130px;
  margin-top: 40px;
}

@media only screen and (max-width: 991px) {
  .experience__item .title {
    font-size: 80px;
    line-height: 90px;
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .experience__item .title {
    font-size: 60px;
    line-height: 70px;
    margin-top: 16px;
  }
}

/* ── Building Now section ── */
.building-now__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 60px;
}

@media (max-width: 767px) {
  .building-now__grid {
    grid-template-columns: 1fr;
  }
}

.building-now__card {
  border: 1px solid var(--border, #dadada);
  overflow: hidden;
}

.building-now__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--primary, #111);
}

.building-now__logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  font-family: var(--font_bai);
}

.building-now__body {
  padding: 28px 24px;
}

.building-now__name {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  font-family: var(--font_bai);
}

.building-now__name a {
  color: var(--primary, #111);
  text-decoration: none;
}

.building-now__name a:hover {
  color: var(--secondary, #666);
}

.building-now__category {
  font-size: 14px;
  font-weight: 500;
  color: #999;
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.42px;
}

.building-now__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #555;
  margin-bottom: 24px;
}

.building-now__link {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary, #111);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.48px;
}

.building-now__link:hover {
  color: var(--secondary, #666);
}

/* ── Status badges ── */
.status-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 500px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  line-height: 1.2;
}

.status-badge--active {
  background: #e6f9e6;
  color: #1a7a1a;
}

.status-badge--building {
  background: #fff3e0;
  color: #b36b00;
}

.status-badge--launched {
  background: #e3f2fd;
  color: #1565c0;
}

.status-badge--paused {
  background: #f5f5f5;
  color: #757575;
}

.status-badge--sunset {
  background: #fce4ec;
  color: #c62828;
}

/* ── Projects list (compact, no-thumb variant) ── */
.projects-list.project-showcase-14 .project-showcase-14__inner {
  height: auto;
}

.projects-list.project-showcase-14 .project-showcase-14__wrapper {
  display: block;
  padding: 0 30px;
}

@media only screen and (max-width: 991px) {
  .projects-list.project-showcase-14 .project-showcase-14__wrapper {
    padding: 0 20px;
  }
}

.projects-list.project-showcase-14 .project-showcase-14__list .title {
  transform: translateX(0);
}

.project-showcase-14__list .title {
  transform: translateX(0);
}

.project-showcase-14__list .title .status-badge {
  margin-left: 12px;
  vertical-align: middle;
}

/* ── Project showcase thumb rounded + border ── */
.project-showcase-14__thumb {
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.project-showcase-14__thumb img {
  border-radius: 12px;
}

/* ── Philosophy section ── */
.philosophy-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #999;
  margin-bottom: 50px;
  letter-spacing: -0.48px;
}

.feature-area .feature-box {
  gap: 0;
}

.feature-area .feature-box .title {
  white-space: pre-line;
}

/* ── Launch Timeline ── */
.launch-timeline .timeline {
  padding: 50px 0 0 0;
  border-top: 1px solid rgba(17, 17, 17, 0.4);
  max-width: 700px;
  margin-top: 60px;
}

.launch-timeline .timeline-item {
  display: grid;
  gap: 20px 52px;
  grid-template-columns: 110px 1fr;
}

.launch-timeline .timeline-item:not(:last-child) {
  margin-bottom: 8px;
}

@media (max-width: 575px) {
  .launch-timeline .timeline-item {
    grid-template-columns: 1fr;
  }
}

.launch-timeline .timeline-date {
  text-align: right;
}

@media (max-width: 575px) {
  .launch-timeline .timeline-date {
    text-align: left;
  }
  .launch-timeline .timeline__content {
    padding-left: 0;
  }
  .launch-timeline .timeline__content::before,
  .launch-timeline .timeline__content::after {
    display: none;
  }
}

.launch-timeline .timeline-date .year {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--primary, #111);
  letter-spacing: -0.48px;
  display: block;
}

.launch-timeline .timeline-date .location {
  color: #999;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.48px;
  display: block;
}

.launch-timeline .timeline__content {
  padding-left: 53px;
  position: relative;
  padding-bottom: 20px;
}

.launch-timeline .timeline__content::before {
  top: 0;
  left: -3px;
  content: "";
  width: 7px;
  height: 7px;
  background: #ccc;
  position: absolute;
  border-radius: 50%;
}

.launch-timeline .timeline__content::after {
  bottom: 0;
  left: 0;
  content: "";
  height: calc(100% - 17px);
  width: 1px;
  background: #ccc;
  position: absolute;
}

.launch-timeline .timeline__content .job-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--primary, #111);
  letter-spacing: -0.48px;
}

.launch-timeline .timeline__content .company {
  color: #999;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.48px;
}

/* ── Collaboration CTA ── */
.cta-section-10 .section-title__wrap .section-title {
  font-size: 100px;
  line-height: 105px;
}

@media only screen and (max-width: 991px) {
  .cta-section-10 .section-title__wrap .section-title {
    font-size: 50px;
    line-height: 55px;
  }
}

@media (max-width: 575px) {
  .cta-section-10 .section-title__wrap .section-title {
    font-size: 36px;
    line-height: 42px;
  }
}

.cta-section-10__contact-list a {
  font-size: 20px;
  line-height: 28px;
}

.collab-cta__desc {
  text-align: center;
  max-width: 800px;
  margin: 24px auto 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #555;
  letter-spacing: -0.48px;
}

/* ── About page (vcard) overrides ── */
.vcard__wrapper.about-page {
  height: auto;
  min-height: 0;
  grid-template-columns: 480px 1fr minmax(0, 420px);
}

@media only screen and (max-width: 1919px) {
  .vcard__wrapper.about-page {
    grid-template-columns: 420px 1fr minmax(0, 380px);
  }
}
@media only screen and (max-width: 1399px) {
  .vcard__wrapper.about-page {
    grid-template-columns: 1fr;
    height: auto;
  }
}
@media (max-width: 575px) {
  .vcard__wrapper.about-page {
    padding-left: 0;
  }
}

.vcard .timeline-item {
  grid-template-columns: 150px 1fr;
}

.vcard .timeline-date .year,
.vcard .timeline-date .location {
  display: block;
  white-space: nowrap;
}

.about-page .vcard__author {
  margin-top: 0;
}

.about-page .vcard__author .media {
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.about-page .vcard__author .media img.author {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 1399px) {
  .about-page .vcard__author .media {
    min-height: 300px;
  }
}

/* ── Contact page fixes ── */
.page-title-area .page-title-area-inner {
  padding-top: 40px;
  padding-bottom: 30px;
}

.contact-area-contact-page .contact-mail .text {
  max-width: 100%;
}

.contact-area-contact-page .contact-formfield textarea {
  width: 100%;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  resize: vertical;
  transition: all 0.5s;
  color: var(--primary);
  letter-spacing: -0.54px;
  background-color: transparent;
  border-bottom: 1px solid var(--primary);
  font-family: inherit;
  padding: 10px 0;
}

.contact-area-contact-page .contact-formfield textarea:focus {
  border-color: var(--primary);
}

.contact-area-contact-page .contact-formfield textarea::placeholder {
  color: var(--primary);
}

/* ── Map wrapper — block scroll zoom, allow click to interact ── */
.map-wrapper {
  position: relative;
}

.map-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.map-wrapper:active::after {
  display: none;
}

/* ── Footer sizing overrides ── */
.footer-widget-box .subscribe-form .title {
  color: #999;
}

.footer {
  margin-top: 0;
}

.footer-widget-wrapper {
  grid-template-columns: 2fr 1fr 1fr;
}
@media only screen and (max-width: 767px) {
  .footer-widget-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 30px 0;
  }
}
@media (max-width: 575px) {
  .footer-widget-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.footer-widget-box {
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-widget-box > .title {
  margin-bottom: 16px;
}

.footer-widget-box .footer-nav-list {
  margin-top: 0;
}

.footer-widget-box .footer-location {
  margin-top: 0;
}

.footer-widget-box .footer-nav-list li {
  margin-bottom: 12px;
}

.footer-widget-box .copyright-text {
  margin-top: 30px;
}

/* ── Experience banner (about page) ── */
.experience-banner .cta-section-10__wrapper {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.experience-banner__subtitle {
  text-align: right;
  margin-top: 24px;
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
  color: #999;
  letter-spacing: -0.48px;
}

@media (max-width: 575px) {
  .experience-banner__subtitle {
    font-size: 22px;
    line-height: 30px;
  }
}

