/* Hero */
.hero {
  min-height: 100vh;
  background: var(--indigo-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

/* Geometric textile pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      60deg,
      rgba(201, 146, 42, 0.06) 0px,
      rgba(201, 146, 42, 0.06) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(201, 146, 42, 0.06) 0px,
      rgba(201, 146, 42, 0.06) 1px,
      transparent 1px,
      transparent 40px
    );
  pointer-events: none;
}

/* Real community photo behind the hero content */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 29, 63, 0.82), rgba(17, 29, 63, 0.92));
  z-index: 1;
}
.hero::before {
  z-index: 1;
}

/* Decorative concentric arc: evokes the moon and nomadic horizon */
.hero-arc {
  position: absolute;
  right: -8vw;
  top: 50%;
  transform: translateY(-50%);
  width: 58vw;
  height: 58vw;
  max-width: 660px;
  max-height: 660px;
  border: 1.5px solid rgba(201, 146, 42, 0.18);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.hero-arc::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  border: 1px solid rgba(201, 146, 42, 0.1);
  border-radius: 50%;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 120px 6vw 80px;
  gap: 2rem;
}

.hero-inner {
  flex: 1;
  max-width: 620px;
  padding: 0;
  position: relative;
  z-index: 3;
}

.hero-ad-sidebar {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
}

.hero-ad-card {
  background: rgba(245, 237, 216, 0.08);
  border: 1px solid rgba(201, 146, 42, 0.3);
  border-radius: 4px;
  padding: 1rem;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}

.hero-ad-card:hover {
  background: rgba(245, 237, 216, 0.14);
}

.hero-ad-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 0.6rem;
}

.hero-ad-card .ad-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.hero-ad-card .ad-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sand);
  margin-bottom: 0.2rem;
}

.hero-ad-card .ad-desc {
  font-size: 0.75rem;
  color: rgba(245, 237, 216, 0.55);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero-ad-sidebar {
    display: none;
  }
  .hero-layout {
    padding: 100px 5vw 60px;
  }
}

.ad-submit-section {
  background: var(--sand);
  padding-top: 2.5rem;
}

.ad-submit-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 5% 2.5rem;
}

.ad-submit-wrap h2 {
  font-family: var(--ff-display);
  color: var(--indigo);
  margin-bottom: 0.5rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--sand);
  margin-bottom: 1.2rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245, 237, 216, 0.65);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2.4rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stat-row {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.hero-stat .number {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.1;
}
.hero-stat .label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.45);
  margin-top: 0.15rem;
}

/* Pre-Arrival section */
.prearrival {
  background: var(--sand);
  text-align: center;
}
.prearrival .section-sub {
  margin: 0 auto;
  max-width: 720px;
}

.prearrival-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.2rem;
  text-align: left;
}

.pre-card {
  background: var(--white);
  border: 1px solid var(--sand-mid);
  border-radius: 4px;
  padding: 2.2rem 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pre-card:hover {
  box-shadow: 0 4px 20px rgba(27, 45, 94, 0.1);
  transform: translateY(-3px);
}
.pre-card .pre-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}
.pre-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--indigo-dark);
  margin-bottom: 0.6rem;
}
.pre-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.wa-cta-box {
  margin-top: 3rem;
  background: var(--indigo);
  border-radius: 4px;
  padding: 2.6rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: left;
}
.wa-cta-box p {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(245, 237, 216, 0.85);
  line-height: 1.7;
  max-width: 560px;
}
.wa-cta-box p strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* About section */
.about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6vw;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
}
.about-badge {
  position: absolute;
  bottom: -1.4rem;
  right: -1.2rem;
  background: var(--gold);
  color: var(--indigo-dark);
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 1rem 1.4rem;
  border-radius: 3px;
}

.about-text .section-sub + .section-sub {
  margin-top: 1rem;
}

/* A word from our president */
.president {
  background: var(--sand);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.president-visual {
  position: relative;
}
.president-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  border: 1px solid var(--sand-mid);
}
.president-badge {
  position: absolute;
  bottom: -1.4rem;
  left: -1.2rem;
  background: var(--indigo-dark);
  color: var(--gold);
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 1rem 1.4rem;
  border-radius: 4px;
}

.president-message {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}
.president-message + .president-message {
  margin-top: 1rem;
}
.president-message:first-of-type {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.65;
}

.president-sign {
  margin-top: 2rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.president-sign .sign-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--indigo-dark);
}
.president-sign .sign-role {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-values {
  display: flex;
  gap: 2.4rem;
  margin-top: 2.6rem;
  flex-wrap: wrap;
}
.value-item .v-title {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--indigo);
}
.value-item .v-sub {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

/* How it works */
.how {
  background: var(--indigo-dark);
  text-align: center;
}
.how .section-title {
  color: var(--sand);
}
.how .section-sub {
  color: rgba(245, 237, 216, 0.55);
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3.6rem;
  text-align: left;
}

.step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 146, 42, 0.12);
  padding: 2.4rem 2rem;
  transition: background 0.2s ease;
}
.step:hover {
  background: rgba(201, 146, 42, 0.05);
}
.step-num {
  font-family: var(--ff-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: rgba(201, 146, 42, 0.18);
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--sand);
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(245, 237, 216, 0.5);
  line-height: 1.7;
}

/* City teaser */
.city-teaser {
  background: var(--cream);
}

.teaser-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}

.see-all-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.see-all-link:hover {
  color: var(--indigo);
}

#city-teaser-grid,
.teaser-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  width: 100% !important;
}

@media (max-width: 1024px) {
  #city-teaser-grid,
  .teaser-grid,
  #stories-grid,
  .stories-grid,
  #biz-grid,
  .biz-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  #stories-grid,
  .stories-grid,
  #biz-grid,
  .biz-grid,
  #city-teaser-grid,
  .teaser-grid,
  .testimonial-grid {
    grid-template-columns: 1fr !important;
  }
}

.teaser-card {
  background: var(--white);
  border: 1px solid var(--sand-mid);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 1.9rem 1.8rem;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.teaser-card:hover {
  box-shadow: 0 4px 20px rgba(27, 45, 94, 0.1);
  transform: translateY(-3px);
}
.teaser-card .teaser-emoji {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.7rem;
}
.teaser-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--indigo-dark);
  margin-bottom: 0.4rem;
}
.teaser-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.teaser-card .teaser-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.teaser-banner {
  margin-top: 2.5rem;
  background: var(--indigo);
  border-radius: 4px;
  padding: 2.4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.teaser-banner p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 237, 216, 0.85);
  line-height: 1.7;
  max-width: 600px;
}

/* Founding member */
.founding {
  position: relative;
  overflow: hidden;
  background: var(--indigo-dark);
  text-align: center;
}
.founding-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.founding-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 29, 63, 0.8);
  z-index: 1;
}
.founding > *:not(.founding-bg):not(.founding-overlay) {
  position: relative;
  z-index: 2;
}
.founding .section-title {
  color: var(--sand);
}
.founding .section-sub {
  margin: 0 auto;
  max-width: 680px;
  color: rgba(245, 237, 216, 0.65);
}

.timeline {
  display: flex;
  justify-content: center;
  margin: 3.6rem auto 3rem;
  max-width: 940px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(201, 146, 42, 0.35);
}

.timeline-phase {
  flex: 1;
  padding: 0 1.6rem;
  position: relative;
}
.timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--indigo);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}
.timeline-phase.active .timeline-dot {
  background: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 146, 42, 0.4);
}
.phase-status {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.timeline-phase h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sand);
  margin-bottom: 0.4rem;
}
.timeline-phase p {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(245, 237, 216, 0.55);
  line-height: 1.65;
}

.founding-counter {
  margin: 0 auto 2.6rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 146, 42, 0.35);
  border-radius: 4px;
  padding: 1.2rem 2.2rem;
}
.founding-counter .count {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.founding-counter .count-label {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.55);
  text-align: left;
  line-height: 1.5;
}

/* Testimonials */
.testimonials {
  background: var(--cream);
}

.testimonial-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1.5rem !important;
  width: 100% !important;
  margin-top: 3rem;
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr !important;
  }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--sand-mid);
  border-radius: 4px;
  padding: 2.2rem 2rem 1.8rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(27, 45, 94, 0.1);
  transform: translateY(-2px);
}

.quote-mark {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 0.6;
  display: block;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--gold-light);
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--gold);
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}
.testimonial-meta .t-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--indigo-dark);
}
.testimonial-meta .t-detail {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* Social channels */
.social {
  background: var(--indigo);
  text-align: center;
}
.social .section-title {
  color: var(--sand);
}
.social .section-sub {
  color: rgba(245, 237, 216, 0.55);
  margin: 0 auto;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.2rem;
  text-align: left;
}

.social-card {
  border-radius: 4px;
  padding: 2.2rem 2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(27, 45, 94, 0.1);
}

.social-card--whatsapp  { background: #128C5A; }
.social-card--facebook  { background: #1864C9; }
.social-card--instagram { background: linear-gradient(135deg, #8E2D6B 0%, #C9432A 60%, #C9922A 100%); }
.social-card--youtube   { background: #B22222; }

.social-card .social-icon {
  font-size: 2rem;
  display: block;
}
.social-card h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
}
.social-card p {
  font-size: 0.86rem;
  font-weight: 300;
  opacity: 0.85;
  line-height: 1.65;
  flex: 1;
}
.social-card .social-note {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}
.social-card .social-btn {
  align-self: flex-start;
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.3rem;
  min-height: 44px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s ease;
}
.social-card .social-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
