/* 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;
}

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-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;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--midnight);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center 20%;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.95) 40%, rgba(27,63,115,0.7) 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;
}

/* ── 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; }
}

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

/* ── v2: AI Direction Redesign ─────────────────────────────────────── */

/* Split Hero */
.hero-split {
  display: grid;
  grid-template-columns: 58% 42%;
  width: 100%;
  min-height: 100vh;
}

.hero-left {
  background: var(--midnight);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 6rem 6rem;
}

.hero-left > * { max-width: 540px; }

.hero-right {
  position: relative;
  overflow: hidden;
  background: #0a1928;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  filter: brightness(0.8) saturate(0.7);
  display: block;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--midnight) 0%, rgba(13,27,42,0.1) 35%, transparent 60%);
}

/* AI Proof Section */
.ai-proof {
  background: #0a1421;
  padding: 90px 0;
}

.ai-proof-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ai-proof-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}

.ai-proof-header p {
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.85;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 4rem;
  background: rgba(200,153,63,0.12);
}

.proof-stat {
  background: #0a1421;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.proof-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}

.proof-stat-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* Scale / Workshop Section */
.scale-section {
  background: var(--charcoal);
}

.scale-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: center;
}

.scale-photo img {
  height: 400px;
  object-fit: cover;
  object-position: center;
}

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

.scale-text p {
  color: rgba(248,246,241,0.58);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* AI Advisory CTA strip variant */
.ai-proof .btn {
  margin-top: 2.5rem;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive for v2 additions */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 7rem 2rem 3rem; }
  .hero-right { height: 55vw; max-height: 380px; }
  .hero-right::after { background: linear-gradient(to bottom, var(--midnight) 0%, transparent 40%); }
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .scale-inner { grid-template-columns: 1fr; gap: 2rem; }
  .scale-inner .scale-photo { order: -1; }
}

@media (max-width: 600px) {
  .hero-left > * { max-width: 100%; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── About Framework Block ── */
.about-framework-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 1rem;
}

.about-framework-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(200,153,63,0.15);
}

.about-framework-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: 1.2rem;
}

.about-framework-text p {
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

@media (max-width: 900px) {
  .about-framework-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
