/* P1 Thailand — Brand CSS v1.0
   Palette: Navy #1B3F73 | Gold #C8993F | Warm White #F8F6F1 | Charcoal #1A1A2E | Midnight #0D1B2A | Steel Blue #2D5FA8
   Typography: Playfair Display (headlines) | Lato (body) | Montserrat (subheadings/data)
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Lato:wght@300;400;700&family=Montserrat:wght@400;600;700;800&display=swap');

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

:root {
  --navy:       #1B3F73;
  --gold:       #C8993F;
  --warm-white: #F8F6F1;
  --charcoal:   #1A1A2E;
  --midnight:   #0D1B2A;
  --steel:      #2D5FA8;
  --gold-light: #D4A84B;
  --text-dark:  #1A1A2E;
  --text-mid:   #4A4A5A;
  --sand:       #EFE8DA;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--warm-white);
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.label, .overline, nav a, .btn, .service-number {
  font-family: 'Montserrat', sans-serif;
}

/* ── Layout ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 80px 0; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 153, 63, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.nav-logo span {
  color: var(--gold);
}

.nav-logo img {
  display: block;
  height: 30px;
  width: auto;
}

@media (max-width: 640px) {
  .nav-logo img { height: 26px; }
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.45rem 1.2rem;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--midnight) !important;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--midnight);
  padding: 130px 0 90px;
}

/* Facilitation hero — Michael presenting (approved P1T imagery, 2026-06-16) */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200,153,63,0.12), transparent 55%),
    url('../img/p1t-hero.jpg') center 32% / cover no-repeat;
  opacity: 1;
}

.hero-motif {
  position: absolute;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13,27,42,0.94) 30%, rgba(13,27,42,0.66) 64%, rgba(27,63,115,0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-overline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  max-width: 720px;
  margin-bottom: 1.8rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 2.8rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--midnight);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  margin-left: 1rem;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Intro Band ── */
.intro-band {
  background: var(--navy);
  padding: 60px 0;
  text-align: center;
}

.intro-band p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.88);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.intro-band p em {
  font-style: italic;
  color: var(--gold);
}

/* ── Services Section ── */
.services {
  background: var(--warm-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-overline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  background: var(--midnight);
  padding: 3rem 2.5rem;
  overflow: hidden;
  transition: all 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--charcoal); }

.service-number {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.service-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.75;
}

.service-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Philosophy Strip ── */
.philosophy {
  background: var(--charcoal);
  text-align: center;
}

.philosophy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--warm-white);
  max-width: 720px;
  margin: 0 auto 2rem;
}

.philosophy-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2rem;
}

.philosophy p {
  color: rgba(248,246,241,0.6);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Credentials ── */
.credentials {
  background: var(--warm-white);
}

.credentials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.credentials-img {
  position: relative;
}

.credentials-img img {
  height: 480px;
  object-fit: cover;
}

.credentials-img::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  z-index: -1;
}

.credentials-text .section-overline { text-align: left; }

.credentials-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.credentials-text p {
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cred-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: var(--text-mid);
}

.cred-list li::before {
  content: '—';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── CTA Strip ── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--midnight) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-strip h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 1rem;
}

.cta-strip p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* ── Footer ── */
footer {
  background: var(--midnight);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(200,153,63,0.2);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.footer-logo span { color: var(--gold); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-col address {
  font-style: normal;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.9;
}

.footer-col address a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col address a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom span {
  color: var(--gold);
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--navy) 100%);
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero .section-overline { margin-bottom: 1rem; }

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Pricing / Service Tiers ── */
.pricing {
  background: var(--warm-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: #fff;
  border: 1px solid rgba(27,63,115,0.1);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s;
}

.pricing-card.featured {
  background: var(--navy);
  border-color: transparent;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(27,63,115,0.12);
}

.pricing-card.featured:hover {
  box-shadow: 0 20px 40px rgba(13,27,42,0.3);
}

.pricing-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.pricing-card.featured h3 { color: #fff; }

.pricing-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 1.2rem 0;
  line-height: 1.2;
}

.pricing-card.featured .pricing-price { color: var(--gold); }

.pricing-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-mid);
  display: block;
  margin-top: 0.25rem;
}

.pricing-card.featured .pricing-price small { color: rgba(255,255,255,0.5); }

.pricing-divider {
  height: 1px;
  background: rgba(27,63,115,0.1);
  margin: 1.5rem 0;
}

.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.15); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.7); }

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--steel);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--navy);
}

.btn-white:hover {
  background: var(--warm-white);
}

/* ── About Story ── */
.about-story {
  background: var(--warm-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-img img {
  height: 520px;
  object-fit: cover;
}

.story-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* ── Contact Section ── */
.contact-section {
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-item-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-item-text a,
.contact-item-text span {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.6;
  transition: color 0.2s;
}

.contact-item-text a:hover { color: var(--navy); }

/* ── Contact Form ── */
.contact-form-wrap {
  background: var(--midnight);
  padding: 3rem;
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 0.85rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s;
}

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

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

.form-group select option { background: var(--midnight); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Map / DBD Strip ── */
.trust-strip {
  background: var(--charcoal);
  padding: 50px 0;
  text-align: center;
}

.trust-strip p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1.2rem;
}

/* ── Visual Depth v1.1 — editorial surfaces, no photography ── */

/* Grid motif on inner-page heroes (all pages, automatic) */
.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 18%, rgba(200,153,63,0.10), transparent 55%),
    repeating-linear-gradient(to right, rgba(200,153,63,0.045) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(to bottom, rgba(248,246,241,0.025) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

/* Faint diagonal weave on dark philosophy strips */
.philosophy {
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(200,153,63,0.035) 0 1px, transparent 1px 72px);
  pointer-events: none;
}

.philosophy .container {
  position: relative;
  z-index: 2;
}

/* Gold glow + grid on CTA strips */
.cta-strip {
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(200,153,63,0.14), transparent 60%),
    repeating-linear-gradient(to right, rgba(248,246,241,0.02) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.cta-strip .container {
  position: relative;
  z-index: 2;
}

/* ── Drama section (midnight, oversized numerals) ── */
.drama {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

.drama::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 10%, rgba(45,95,168,0.14), transparent 55%),
    repeating-linear-gradient(to right, rgba(200,153,63,0.04) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.drama .container {
  position: relative;
  z-index: 2;
}

.drama .section-header h2 { color: #fff; }
.drama .section-header p { color: rgba(255,255,255,0.55); }

.drama-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  margin-top: 4.5rem;
}

.drama-item {
  border-top: 1px solid rgba(200,153,63,0.3);
  padding-top: 1.6rem;
}

.drama-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(200,153,63,0.22);
  display: block;
  margin-bottom: 0.8rem;
}

.drama-item h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.drama-item p {
  color: rgba(255,255,255,0.55);
  font-size: 0.93rem;
  line-height: 1.75;
}

.drama-close {
  margin-top: 4.5rem;
  text-align: center;
}

.drama-close .philosophy-line { margin-bottom: 2rem; }

.drama-close p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--warm-white);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.drama-close p em {
  font-style: italic;
  color: var(--gold);
}

/* ── Quiet step line (order of work) ── */
.steps-line {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
}

.steps-line::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,153,63,0.55) 18%, rgba(200,153,63,0.55) 82%, transparent);
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  padding-top: 2.6rem;
}

.step::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  background: var(--warm-white);
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}

.step-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 180px;
  margin: 0 auto;
}

/* ── Warm-sand pull-quote panel ── */
.sand-panel {
  background: var(--sand);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.sand-panel::before {
  content: '\201D';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 26rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(200,153,63,0.10);
  pointer-events: none;
}

.sand-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sand-inner h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.sand-inner p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 620px;
  margin: 0 auto;
}

.sand-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2rem;
}

/* ── Location band (replaces stock-photo map strip) ── */
.location-band {
  background: var(--midnight);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.location-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(45,95,168,0.18), transparent 60%),
    repeating-linear-gradient(to right, rgba(200,153,63,0.05) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.location-band .container {
  position: relative;
  z-index: 2;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .services-grid,
  .pricing-grid,
  .credentials-inner,
  .story-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .credentials-img::after { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .nav-links { display: none; }
  .hero-motif { display: none; }
  .drama-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 760px) {
  .steps-line {
    flex-direction: column;
    gap: 2.2rem;
    margin-top: 3rem;
  }

  .steps-line::before {
    top: 4%;
    bottom: 4%;
    left: 14px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, transparent, rgba(200,153,63,0.55) 15%, rgba(200,153,63,0.55) 85%, transparent);
  }

  .step {
    text-align: left;
    padding-top: 0;
    padding-left: 2.6rem;
  }

  .step::before {
    left: 10px;
    top: 8px;
    transform: none;
  }

  .step p { max-width: none; margin: 0; }

  .sand-panel::before { font-size: 16rem; top: -30px; }
}

@media (max-width: 600px) {
  section { padding: 50px 0; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content .btn-outline { display: none; }
  .drama { padding: 70px 0; }
  .sand-panel { padding: 70px 0; }
}

/* ── Photo gallery + lightbox (added 2026-06-16) ───────────────────────── */
.gallery-section { padding: 5rem 0; }
.photo-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; margin-top: 2.5rem; }
.gallery-item { display: block; overflow: hidden; border-radius: 8px; aspect-ratio: 4/3; background: #e8e4dc; cursor: pointer; box-shadow: 0 2px 10px rgba(13,27,42,0.08); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.lightbox { position: fixed; inset: 0; background: rgba(10,15,25,.94); display: none; align-items: center; justify-content: center; z-index: 9999; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 6px; box-shadow: 0 12px 48px rgba(0,0,0,.55); }
.lb-btn { position: absolute; color: #fff; background: rgba(255,255,255,.12); border: none; cursor: pointer; font-size: 1.7rem; line-height: 1; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-btn:hover { background: rgba(200,153,63,.5); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.82); font-size: .85rem; padding: 0 1rem; }
@media (max-width: 600px) { .lb-btn { width: 40px; height: 40px; font-size: 1.4rem; } .lb-close{top:14px;right:14px} .lb-prev{left:8px} .lb-next{right:8px} }

/* ── Nav fix + credibility strip + responsive menu (Day-25 rebuild) ── */
.nav-links { flex-wrap: nowrap; gap: 1.3rem; align-items: center; }
.nav-links a { white-space: nowrap; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; padding: .2rem .4rem; }
/* EN/TH language switch (Day-26) */
.lang-switch { display: flex; align-items: center; gap: .25rem; font-family: 'Montserrat', sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .04em; }
.lang-switch span { opacity: .5; }
.lang-switch a { padding: 0 .1rem; opacity: .72; }
.lang-switch a:hover, .lang-switch a.active { color: var(--gold); opacity: 1; }

.hero-proof { list-style: none; display: flex; flex-wrap: wrap; gap: .55rem .7rem; margin: 2.1rem 0 0; padding: 0; max-width: 660px; }
.hero-proof li { font-family: 'Montserrat', sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.85); border: 1px solid rgba(200,153,63,.38); border-radius: 3px; padding: .42rem .72rem; background: rgba(200,153,63,.07); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: flex; position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(13,27,42,0.98); border-bottom: 1px solid rgba(200,153,63,0.25);
    max-height: 0; overflow: hidden; transition: max-height .28s ease;
  }
  .nav-links.open { max-height: 560px; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 1rem; }
  .nav-links .nav-cta { display: block; margin: .6rem auto 1rem; width: max-content; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 2rem; line-height: 1.14; overflow-wrap: break-word; }
  .hero-content { overflow: hidden; }
}

/* ── Stat band (legitimacy) ── */
.stat-band { background: #0d1b2a; color: #fff; padding: 3.6rem 0; border-top: 1px solid rgba(200,153,63,.22); border-bottom: 1px solid rgba(200,153,63,.22); }
.stat-band-label { font-family: 'Montserrat', sans-serif; font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); text-align: center; margin: 0 0 2.3rem; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; padding: 0 .4rem; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; line-height: 1; color: #fff; }
.stat-unit { font-size: 1.25rem; color: var(--gold); margin-left: .08em; }
.stat-cap { display: block; margin-top: .85rem; font-size: .82rem; line-height: 1.5; color: rgba(255,255,255,.72); }
@media (max-width: 760px) { .stat-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem 1.2rem; } .stat-num { font-size: 2.5rem; } }

/* ── Full-width image band ── */
.image-band { position: relative; }
.image-band img { display: block; width: 100%; height: 58vh; min-height: 340px; max-height: 540px; object-fit: cover; }
.image-band-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 3rem 2rem 2.4rem; background: linear-gradient(to top, rgba(13,27,42,.9), rgba(13,27,42,0)); }
.image-band-cap .section-overline { display: block; text-align: center; color: var(--gold); }
.image-band-cap p { max-width: 720px; margin: .5rem auto 0; font-size: 1.18rem; line-height: 1.5; font-family: 'Playfair Display', serif; text-align: center; color: #fff; }
@media (max-width: 560px) { .image-band-cap p { font-size: 1rem; } }

/* ── Service-card thumbnails ── */
.svc-thumb { width: 100%; height: 168px; object-fit: cover; border-radius: 4px; margin: 0 0 1.4rem; display: block; }

/* ── Photo gallery band ── */
.gallery-band { padding: 5rem 0; background: #f7f5f1; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; margin-top: 2.6rem; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: 6px; background: #e6e2da; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.gallery-grid figure:hover img { transform: scale(1.045); }
.gallery-grid .g-tall { grid-row: span 2; }
.gallery-grid .g-wide { grid-column: span 2; }
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery-grid .g-tall { grid-row: span 1; }
  .gallery-grid .g-wide { grid-column: span 2; }
}

/* ── Framework / architecture diagram ── */
.framework { padding: 5rem 0; background: #0d1b2a; color: #fff; }
.framework .section-header h2 { color: #fff; }
.framework .section-header p { color: rgba(255,255,255,.62); }
.arch { max-width: 900px; margin: 2.6rem auto 0; display: flex; flex-direction: column; align-items: center; }
.arch-node { background: rgba(255,255,255,.04); border: 1px solid rgba(200,153,63,.32); border-radius: 8px; padding: 1.1rem 1.3rem; text-align: center; width: 100%; }
.arch-source, .arch-out { border-color: var(--gold); background: rgba(200,153,63,.10); }
.arch-source { max-width: 580px; }
.arch-out { max-width: 660px; }
.arch-k { display: block; font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.arch-d { display: block; margin-top: .35rem; font-size: .88rem; color: rgba(255,255,255,.82); }
.arch-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; width: 100%; }
.arch-arrow { width: 2px; height: 34px; background: linear-gradient(to bottom, var(--gold), rgba(200,153,63,.15)); margin: 8px 0; }
@media (max-width: 680px) { .arch-row { grid-template-columns: 1fr 1fr; gap: 10px; } }
