/* ================================================================
   Atelier PeopleOps — site.css
   Palette: Logo altın (#C9A87C), charcoal (#1A1A1A), warm cream
   Fonts: Playfair Display + DM Sans (Google Fonts)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ----------------------------------------------------------------
   CSS Custom Properties
   ---------------------------------------------------------------- */
:root {
  /* Brand — logo kaynaklı */
  --gold:          #C9A87C;
  --gold-hover:    #B5935F;
  --gold-dark:     #9A7A47;
  --gold-light:    #E5CEAC;
  --gold-subtle:   #FBF6EE;
  --gold-mist:     #F7F0E6;

  --charcoal:      #1A1A1A;
  --charcoal-soft: #2C2C2C;
  --charcoal-mid:  #3D3D3D;

  --gray:          #666666;
  --gray-light:    #999999;
  --gray-muted:    #BFBAB4;

  /* Backgrounds */
  --white:         #FFFFFF;
  --cream:         #FDFBF8;
  --warm-1:        #F8F4EF;
  --warm-2:        #F1EBE3;
  --warm-3:        #E9E1D8;

  /* Borders */
  --border:        #E3DDD6;
  --border-soft:   #EDE8E2;

  /* Shadows — warm tinted */
  --shadow-xs:  0 1px 4px rgba(160,120,80,0.07);
  --shadow-sm:  0 3px 12px rgba(160,120,80,0.09);
  --shadow-md:  0 6px 28px rgba(160,120,80,0.11);
  --shadow-lg:  0 14px 52px rgba(160,120,80,0.13);

  /* Radius */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;

  /* Layout */
  --max-w:    1200px;
  --gutter:   clamp(20px, 5vw, 48px);
  --sec-py:   clamp(80px, 8vw, 128px);
  --sec-py-s: clamp(60px, 6vw, 96px);

  /* Transition */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur:      0.3s;
  --t:        var(--dur) var(--ease);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ----------------------------------------------------------------
   Layout Helpers
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.text-center { text-align: center; }

.section-header {
  margin-bottom: 56px;
}

/* ----------------------------------------------------------------
   Typography
   ---------------------------------------------------------------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-heading em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--gray);
  line-height: 1.75;
  max-width: 580px;
}

.section-sub--center { margin-inline: auto; }

.gold-accent {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* ----------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background-color var(--t), border-color var(--t), color var(--t),
              box-shadow var(--t), transform var(--t);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 2px 10px rgba(201,168,124,0.30);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  box-shadow: 0 4px 18px rgba(201,168,124,0.42);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1rem;
  border-radius: var(--r-md);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  height: 80px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}

.site-header.scrolled {
  border-bottom-color: var(--border-soft);
  box-shadow: 0 2px 24px rgba(160,120,80,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.header-logo img {
  height: 56px;
  width: auto;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 7px 13px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal-mid);
  border-radius: var(--r-xs);
  transition: color var(--t), background-color var(--t);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--gold-dark);
  background: var(--gold-subtle);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--r-xs);
  transition: background-color var(--t);
}

.nav-toggle:hover { background: var(--warm-1); }

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--cream);
  overflow: hidden;
}

/* Soft gradient orbs */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 58vw;
  height: 58vw;
  background: radial-gradient(circle, rgba(201,168,124,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -8%;
  left: -5%;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(201,168,124,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Decorative lines */
.hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-deco-line {
  position: absolute;
  background: var(--gold-light);
  opacity: 0.4;
}

.hero-deco-line--1 {
  right: 10%;
  top: 20%;
  width: 1px;
  height: 30vh;
}

.hero-deco-line--2 {
  right: 15%;
  top: 20%;
  width: 12vw;
  height: 1px;
}

.hero-deco-circle {
  position: absolute;
  right: 8%;
  top: 18%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(56px, 7vw, 96px);
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border: 1px solid var(--gold-light);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold-dark);
  background: var(--gold-subtle);
  letter-spacing: 0.04em;
  width: fit-content;
  margin-bottom: 28px;
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 24px;
}

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

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--gray);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--gray-light);
  letter-spacing: 0.04em;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounceY 2.2s ease-in-out infinite;
  opacity: 0.4;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 1.5px solid var(--gray);
  border-bottom: 1.5px solid var(--gray);
  transform: rotate(45deg);
}

@keyframes bounceY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   PROBLEM
   ================================================================ */
.section-problem {
  padding-block: var(--sec-py);
  background: var(--warm-1);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
  margin-top: 4px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 26px 30px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}

.problem-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.problem-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--gold-subtle);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background-color var(--t);
}

.problem-card:hover .problem-icon { background: var(--gold-mist); }

.problem-text {
  font-size: 0.9375rem;
  color: var(--charcoal-mid);
  line-height: 1.55;
  padding-top: 6px;
}

/* ================================================================
   SOLUTION
   ================================================================ */
.section-solution {
  padding-block: var(--sec-py);
  background: var(--white);
}

.solution-intro {
  max-width: 620px;
  margin-bottom: 56px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.solution-col {
  background: var(--white);
  padding: 48px 38px;
  position: relative;
  transition: background-color var(--t);
  cursor: default;
}

.solution-col:hover { background: var(--gold-subtle); }

.solution-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 22px;
  display: block;
  transition: color var(--t);
}

.solution-col:hover .solution-num { color: var(--gold); }

.solution-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.solution-desc {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ================================================================
   SERVICES
   ================================================================ */
.section-services {
  padding-block: var(--sec-py);
  background: var(--warm-1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.45s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.service-card:hover::after { width: 100%; }

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-sm);
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--gold);
  transition: background-color var(--t);
}

.service-card:hover .service-icon { background: var(--gold-mist); }

.service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.68;
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity var(--t), transform var(--t);
  pointer-events: none;
}

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

/* ================================================================
   PACKAGES (dark section)
   ================================================================ */
.section-packages {
  padding-block: var(--sec-py);
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.section-packages::before {
  content: '';
  position: absolute;
  top: -25%;
  right: -8%;
  width: 52vw;
  height: 52vw;
  background: radial-gradient(circle, rgba(201,168,124,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.section-packages .section-label { color: var(--gold-light); }
.section-packages .section-label::before { background: var(--gold-light); }
.section-packages .section-heading { color: var(--white); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.package-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), background-color var(--t);
}

.package-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-5px);
}

.package-card--featured {
  background: rgba(201,168,124,0.10);
  border-color: rgba(201,168,124,0.32);
}

.package-badge {
  display: inline-block;
  padding: 4px 13px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 18px;
  width: fit-content;
}

.package-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.package-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.68;
  margin-bottom: 28px;
}

.package-contents {
  flex: 1;
  margin-bottom: 30px;
}

.package-contents li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.package-contents li:last-child { border-bottom: none; }

.package-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.package-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1.5px solid rgba(201,168,124,0.45);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-light);
  transition: var(--t);
}

.package-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.package-card--featured .package-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.package-card--featured .package-cta:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

/* ================================================================
   PRODUCTS
   ================================================================ */
.section-products {
  padding-block: var(--sec-py);
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.product-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--warm-1);
  color: var(--gray-light);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid var(--border-soft);
  margin-bottom: 18px;
  width: fit-content;
}

.product-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.product-contents {
  flex: 1;
  margin-bottom: 22px;
}

.product-contents li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--gray);
  border-bottom: 1px solid var(--border-soft);
}

.product-contents li:last-child { border-bottom: none; }

.product-check {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--gold);
}

.product-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

/* ================================================================
   APPROACH
   ================================================================ */
.section-approach {
  padding-block: var(--sec-py);
  background: var(--warm-1);
}

.approach-intro {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 30px 20px;
  text-align: center;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold-light);
}

.value-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  background: var(--gold-subtle);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background-color var(--t);
}

.value-card:hover .value-icon { background: var(--gold-mist); }

.value-en {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.value-tr {
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* ================================================================
   AUDIENCE
   ================================================================ */
.section-audience {
  padding-block: var(--sec-py);
  background: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.audience-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold-light);
}

.audience-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.audience-text {
  font-size: 0.9375rem;
  color: var(--charcoal-mid);
  line-height: 1.5;
}

/* ================================================================
   ABOUT
   ================================================================ */
.section-about {
  padding-block: var(--sec-py);
  background: var(--warm-1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-text .section-heading { margin-top: 8px; }

.about-text p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-text p:last-of-type { margin-bottom: 28px; }

/* Pillar tags */
.about-values-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.pillar-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  letter-spacing: 0.02em;
  transition: border-color var(--t), color var(--t);
}

.pillar-tag:hover {
  border-color: var(--gold-light);
  color: var(--gold-dark);
}

/* Founder card */
.founder-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 36px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
}

.founder-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-subtle));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  border: 2px solid rgba(201,168,124,0.25);
}

.founder-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.founder-title {
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}

.founder-divider {
  height: 1px;
  background: var(--border-soft);
  margin-bottom: 18px;
}

.founder-bio {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.founder-social {
  display: flex;
  gap: 8px;
}

.founder-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  transition: var(--t);
}

.founder-social-link:hover {
  border-color: var(--gold-light);
  color: var(--gold-dark);
  background: var(--gold-subtle);
}

/* About stat card */
.about-stat-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 24px 36px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.section-cta-banner {
  padding-block: var(--sec-py);
  background: linear-gradient(140deg, var(--gold-subtle) 0%, var(--warm-2) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta-banner::before {
  content: '';
  position: absolute;
  top: -35%;
  left: 50%;
  transform: translateX(-50%);
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(201,168,124,0.13) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}

.cta-banner-inner .section-heading { margin-bottom: 18px; }
.cta-banner-inner .section-sub { margin-bottom: 36px; }

/* ================================================================
   CONTACT
   ================================================================ */
.section-contact {
  padding-block: var(--sec-py);
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

/* Info card */
.contact-info-card {
  background: var(--warm-1);
  border-radius: var(--r-md);
  padding: 38px;
  position: sticky;
  top: 90px;
}

.contact-info-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid var(--border-soft);
}

.contact-info-text { flex: 1; }

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-muted);
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  line-height: 1.5;
  transition: color var(--t);
}

a.contact-info-value:hover { color: var(--gold-dark); }

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  background: var(--white);
  transition: var(--t);
}

.social-btn:hover {
  border-color: var(--gold-light);
  background: var(--gold-subtle);
  color: var(--gold-dark);
}

/* Form */
.contact-form-area { padding-top: 4px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal-mid);
}

.form-control {
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--white);
  width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
}

.form-control::placeholder { color: var(--gray-muted); }

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,124,0.13);
}

.form-control.input-validation-error { border-color: #d95252; }

textarea.form-control {
  min-height: 132px;
  resize: vertical;
}

select.form-control {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
  cursor: pointer;
}

.field-validation-error {
  font-size: 0.8125rem;
  color: #d95252;
}

.alert-success {
  padding: 15px 18px;
  background: rgba(90,175,120,0.08);
  border: 1px solid rgba(90,175,120,0.28);
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  color: #2e7d52;
  margin-bottom: 22px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding-top: 64px;
  padding-bottom: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.09em;
  opacity: 0.7;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--t);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

.footer-contact-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.footer-social { display: flex; gap: 8px; }

.footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--r-xs);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: var(--t);
}

.footer-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,124,0.09);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.28); }

.footer-bottom-links { display: flex; gap: 20px; }

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  transition: color var(--t);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 0.08s; }
[data-animate-delay="2"] { transition-delay: 0.16s; }
[data-animate-delay="3"] { transition-delay: 0.24s; }
[data-animate-delay="4"] { transition-delay: 0.32s; }
[data-animate-delay="5"] { transition-delay: 0.40s; }
[data-animate-delay="6"] { transition-delay: 0.48s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* --- Tablet (≤ 1024px) --- */
@media (max-width: 1024px) {
  .solution-grid {
    grid-template-columns: 1fr;
    background: transparent;
    border-radius: 0;
    gap: 14px;
  }

  .solution-col {
    border: 1px solid var(--border-soft);
    border-radius: var(--r-md);
  }

  .packages-grid { grid-template-columns: 1fr; }

  .products-grid { grid-template-columns: 1fr 1fr; }

  .values-grid { grid-template-columns: repeat(3, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 44px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-card { position: static; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* --- Mobile (≤ 768px) --- */
@media (max-width: 768px) {
  :root { --sec-py: 72px; }

  /* Header — mobile nav */
  .site-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    gap: 2px;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .site-nav.open { display: flex; }

  .nav-link { padding: 13px 16px; font-size: 1rem; }

  .header-actions .btn { display: none; }

  .nav-toggle { display: flex; }

  /* Hero */
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  /* Grids */
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 32px; }

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

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* --- Small mobile (≤ 480px) --- */
@media (max-width: 480px) {
  .hero-h1 { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-stat-card { flex-direction: column; gap: 16px; }
}
