/* ===========================================
   ARC — Artisan Revival Company
   Design: Warm-Craft editorial with bold red+blue
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Tiro+Devanagari+Hindi&family=Mulish:wght@300;400;600;700&display=swap');

:root {
  --red:        #C0392B;
  --red-deep:   #96231A;
  --red-soft:   #F5E6E4;
  --blue:       #1A3A5C;
  --blue-mid:   #22537F;
  --blue-light: #E3EBF4;
  --ivory:      #FAF7F2;
  --sand:       #EDE5D8;
  --sand-dark:  #D6C9B5;
  --brown:      #6B4C3B;
  --black:      #1A1410;
  --grey:       #5E5551;
  --grey-lt:    #C8BFB5;
  --white:      #FFFFFF;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Mulish', sans-serif;
  --ff-hindi:   'Tiro Devanagari Hindi', serif;

  --ease: cubic-bezier(.25,.46,.45,.94);
  --shadow-sm: 0 2px 12px rgba(26,20,16,.08);
  --shadow:    0 8px 32px rgba(26,20,16,.12);
  --shadow-lg: 0 20px 60px rgba(26,20,16,.18);
  --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--ivory);
  color: var(--black);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-align: left;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===================== UTILITY ===================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }
.section-label {
  display: inline-block;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--red); margin-bottom: .75rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--blue); line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--brown); }
.section-title .r { color: var(--red); }
.body-text { color: var(--grey); font-size: 1.025rem; line-height: 1.8; margin-bottom: 1.25rem; }

.btn {
  display: inline-block;
  padding: .8rem 2rem;
  font-family: var(--ff-body); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  cursor: pointer; border: none;
}
.btn-red   { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(192,57,43,.35); }
.btn-blue  { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,58,92,.3); }
.btn-outline {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-white { background: var(--white); color: var(--red); font-weight: 700; }
.btn-white:hover { background: var(--ivory); transform: translateY(-2px); }
.link-arr {
  color: var(--red); font-size: .83rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: gap .25s var(--ease);
}
.link-arr:hover { gap: .8rem; }

/* ===================== PATTERN BG ===================== */
.pattern-bg {
  background-color: var(--ivory);
  background-image:
    radial-gradient(circle, var(--sand-dark) 1px, transparent 1px),
    radial-gradient(circle, var(--sand-dark) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: var(--blue);
  border-bottom: 4px solid var(--red);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 74px; padding: 0 3rem;
  max-width: 1280px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: .9rem; }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.4rem; font-weight: 900;
  color: var(--white); letter-spacing: 1px;
  border-radius: 2px; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--ff-display); font-size: 1.25rem; font-weight: 700;
  color: var(--white); letter-spacing: 2px;
}
.logo-sub {
  font-size: .6rem; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,.5);
}
.main-nav { display: flex; align-items: center; gap: .15rem; }
.nav-link {
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,.75);
  padding: .45rem .9rem; border-radius: 2px;
  transition: all .25s var(--ease);
}
.nav-link:hover, .nav-link.active {
  color: var(--white); background: rgba(255,255,255,.1);
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: .45rem 1.1rem !important;
  margin-left: .5rem;
}
.nav-cta:hover { background: var(--red-deep) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--blue-mid); padding: 1rem 2rem;
}
.mobile-nav a {
  color: var(--white); padding: .65rem 0;
  font-size: .85rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.open { display: flex; }

/* ===================== HERO ===================== */
.hero {
  background: var(--blue);
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem 3rem 5rem 3rem;
  position: relative; z-index: 2;
  max-width: 640px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: rgba(255,255,255,.6); margin-bottom: 1.5rem;
}
.hero-kicker-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--white); line-height: 1.05;
  margin-bottom: 1.5rem; font-weight: 900;
}
.hero-title .line2 { color: var(--red); font-style: italic; }
.hero-hindi {
  font-family: var(--ff-hindi);
  font-size: 1.5rem; color: rgba(255,255,255,.3);
  letter-spacing: 3px; margin-bottom: 1.5rem; display: block;
}
.hero-desc {
  font-size: 1.08rem; color: rgba(255,255,255,.72);
  line-height: 1.8; max-width: 480px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative; overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--blue) 0%, transparent 35%);
  z-index: 1;
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .7;
}
.hero-visual-badge {
  position: absolute; bottom: 3rem; right: 3rem;
  background: var(--red); color: var(--white);
  padding: 1.2rem 1.5rem; z-index: 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-visual-badge .num {
  font-family: var(--ff-display); font-size: 2.5rem;
  font-weight: 900; line-height: 1; display: block;
}
.hero-visual-badge .lbl {
  font-size: .65rem; text-transform: uppercase;
  letter-spacing: 2px; opacity: .85;
}

/* HERO STATS BAR */
.hero-stats-bar {
  background: var(--red-deep);
  padding: 1.4rem 3rem;
}
.hero-stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; gap: 3rem; flex-wrap: wrap;
}
.hs-item { display: flex; flex-direction: column; }
.hs-num {
  font-family: var(--ff-display);
  font-size: 1.8rem; color: var(--white); font-weight: 900; line-height: 1;
}
.hs-lbl {
  font-size: .65rem; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,.6); margin-top: .25rem;
}

/* ===================== MARQUEE ===================== */
.marquee-wrap {
  background: var(--sand);
  border-top: 1px solid var(--sand-dark);
  border-bottom: 1px solid var(--sand-dark);
  overflow: hidden; padding: .65rem 0;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--brown); padding: 0 1.5rem;
}
.marquee-track .sep { color: var(--red); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================== INTRO STRIP ===================== */
.intro-strip {
  background: var(--ivory); padding: 5rem 0;
}
.intro-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 5rem; align-items: start;
}
.intro-left .big-quote {
  font-family: var(--ff-display); font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-style: italic; color: var(--blue); line-height: 1.3;
  border-left: 5px solid var(--red); padding-left: 1.5rem;
  margin-top: 1rem;
}
.intro-right .body-text:last-of-type { margin-bottom: 1.5rem; }

/* ===================== WHAT WE DO CARDS ===================== */
.cards-section { padding: 5.5rem 0; background: var(--sand); }
.cards-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}
.cards-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; border: 1px solid var(--sand-dark);
}
.card-item {
  padding: 2.2rem 1.75rem;
  border-right: 1px solid var(--sand-dark);
  background: var(--white); position: relative;
  transition: all .3s var(--ease); overflow: hidden;
}
.card-item:last-child { border-right: none; }
.card-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red); transform: scaleX(0);
  transform-origin: left; transition: transform .3s var(--ease);
}
.card-item:hover { background: var(--ivory); transform: translateY(-4px); box-shadow: var(--shadow); z-index: 2; }
.card-item:hover::after { transform: scaleX(1); }
.card-num {
  font-family: var(--ff-display); font-size: 4rem; font-weight: 900;
  color: var(--sand); line-height: 1; margin-bottom: .75rem;
  transition: color .3s; display: block;
}
.card-item:hover .card-num { color: var(--red-soft); }
.card-icon { font-size: 2rem; margin-bottom: .85rem; display: block; }
.card-title {
  font-family: var(--ff-display); font-size: 1.1rem;
  color: var(--blue); margin-bottom: .6rem; font-weight: 700;
}
.card-body { font-size: .83rem; color: var(--grey); line-height: 1.65; }

/* ===================== HOW IT WORKS ===================== */
.how-section { padding: 5.5rem 0; background: var(--blue); }
.how-section .section-title { color: var(--white); }
.how-section .section-title em { color: rgba(255,255,255,.5); }
.how-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 3rem; position: relative;
}
.how-steps::before {
  content: '';
  position: absolute; top: 2.5rem; left: 10%; right: 10%;
  height: 2px; background: rgba(255,255,255,.15); z-index: 0;
}
.step {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 0 1.5rem; position: relative; z-index: 1;
}
.step-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.3rem; font-weight: 900;
  margin-bottom: 1.25rem; flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(192,57,43,.25);
}
.step-title {
  font-family: var(--ff-display); font-size: 1.05rem;
  color: var(--white); margin-bottom: .5rem; font-weight: 700;
}
.step-body { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ===================== FEATURE BAND ===================== */
.feature-band {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.feature-img { position: relative; overflow: hidden; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,.45), rgba(26,58,92,.6));
}
.feature-img-tag {
  position: absolute; bottom: 2rem; left: 2rem;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white); font-size: .7rem;
  text-transform: uppercase; letter-spacing: 2px;
  padding: .4rem .9rem; border-radius: 2px;
}
.feature-text {
  background: var(--red);
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.feature-text .section-label { color: rgba(255,255,255,.6); }
.feature-text h2 {
  font-family: var(--ff-display); font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  color: var(--white); line-height: 1.2; margin-bottom: 1.5rem;
}
.feature-text p { color: rgba(255,255,255,.8); font-size: .975rem; line-height: 1.75; margin-bottom: 1rem; }
.vision-list { margin: 1rem 0 2rem; }
.vision-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  color: rgba(255,255,255,.85); font-size: .9rem;
  padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.12);
}
.vision-list li::before { content: '◆'; color: rgba(255,255,255,.35); flex-shrink: 0; font-size: .7rem; margin-top: .2rem; }

/* ===================== NETWORK GRID ===================== */
.network-section { padding: 5.5rem 0; background: var(--ivory); }
.network-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-top: 2.5rem; align-items: start;
}
.network-box {
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius); overflow: hidden;
}
.network-box-head {
  background: var(--blue); color: var(--white);
  padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: .75rem;
}
.network-box-head .ico { font-size: 1.25rem; }
.network-box-head h4 {
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700;
}
.network-box-body { background: var(--white); }
.network-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--sand);
  transition: background .2s;
}
.network-item:last-child { border-bottom: none; }
.network-item:hover { background: var(--ivory); }
.network-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}
.network-item span { font-size: .9rem; color: var(--grey); font-weight: 600; }

/* ===================== PARTNERS LOGOS ===================== */
.partners-section { padding: 5.5rem 0; background: var(--sand); }
.partners-tier-label {
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--blue); margin: 2rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--sand-dark);
}
.logos-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; border: 1px solid var(--sand-dark);
  margin-bottom: 0;
}
.logo-tile {
  background: var(--white);
  border-right: 1px solid var(--sand-dark);
  padding: 1.75rem 1.25rem;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: .4rem;
  transition: all .25s var(--ease);
}
.logo-tile:last-child { border-right: none; }
.logo-tile:hover { background: var(--ivory); }
.logo-pill {
  background: var(--blue-light);
  color: var(--blue); font-family: var(--ff-display);
  font-size: 1.1rem; font-weight: 700; letter-spacing: 2px;
  padding: .3rem .8rem; border-radius: 2px;
  width: 100%;
}
.logo-tile-name { font-size: .72rem; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; }

.partner-why {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  background: var(--white); border: 1px solid var(--sand-dark);
  border-top: 3px solid var(--blue);
  padding: 2rem; border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-top-color: var(--red); }
.why-num { font-family: var(--ff-display); font-size: 2.5rem; color: var(--red); display: block; line-height: 1; margin-bottom: .6rem; }
.why-card h4 { font-family: var(--ff-display); font-size: 1.05rem; color: var(--blue); margin-bottom: .5rem; }
.why-card p { font-size: .83rem; color: var(--grey); line-height: 1.65; }

/* ===================== ABOUT SECTIONS ===================== */
.about-intro { padding: 5.5rem 0; background: var(--ivory); }
.about-two { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-two img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius); }
.about-text .body-text:last-of-type { margin-bottom: 1.75rem; }
.timeline { margin-top: 1.5rem; }
.tl-item {
  display: flex; gap: 1.5rem; margin-bottom: 1.75rem;
  padding-bottom: 1.75rem; border-bottom: 1px solid var(--sand-dark);
}
.tl-item:last-child { border-bottom: none; }
.tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--red); flex-shrink: 0; margin-top: .3rem;
  box-shadow: 0 0 0 4px var(--red-soft);
}
.tl-content h5 { font-family: var(--ff-display); font-size: 1rem; color: var(--blue); margin-bottom: .3rem; }
.tl-content p { font-size: .85rem; color: var(--grey); line-height: 1.65; }

/* ===================== TEAM ===================== */
.team-section { padding: 5.5rem 0; background: var(--sand); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.team-card { position: relative; }
.team-card img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius); margin-bottom: 1rem; filter: grayscale(15%); transition: filter .3s; }
.team-card:hover img { filter: grayscale(0); }
.team-card h4 { font-family: var(--ff-display); font-size: 1.05rem; color: var(--blue); margin-bottom: .2rem; }
.team-card .role { font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--red); font-weight: 700; }
.team-card p { font-size: .82rem; color: var(--grey); margin-top: .4rem; line-height: 1.55; }

/* ===================== CTA BAND ===================== */
.cta-band { background: var(--blue); padding: 5.5rem 3rem; position: relative; overflow: hidden; }
.cta-band::before {
  content: 'ARC';
  position: absolute; right: -.05em; bottom: -.15em;
  font-family: var(--ff-display); font-size: 30vw; font-weight: 900;
  color: rgba(255,255,255,.03); line-height: 1; pointer-events: none;
}
.cta-inner { position: relative; max-width: 720px; }
.cta-inner h2 {
  font-family: var(--ff-display); font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white); margin-bottom: 1rem; line-height: 1.1;
}
.cta-inner p { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 2.5rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===================== CONTACT ===================== */
.contact-section { padding: 5.5rem 0; background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; }
.contact-info h3 { font-family: var(--ff-display); font-size: 1.6rem; color: var(--blue); margin-bottom: 1rem; }
.contact-info p { font-size: .9rem; color: var(--grey); line-height: 1.7; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.ci { display: flex; flex-direction: column; }
.ci strong {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--red); margin-bottom: .25rem;
}
.ci span { font-size: .9rem; color: var(--grey); }
.contact-form-box {
  background: var(--white); padding: 2.75rem;
  border-radius: var(--radius); border-top: 4px solid var(--red);
  box-shadow: var(--shadow-sm);
}
.contact-form-box h4 { font-family: var(--ff-display); font-size: 1.4rem; color: var(--blue); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-group label {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--blue); margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem; border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius); font-family: var(--ff-body);
  font-size: .9rem; color: var(--black); background: var(--ivory);
  outline: none; transition: border-color .25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,58,92,.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; background: var(--blue-light);
  border: 1px solid var(--blue); color: var(--blue);
  padding: 1rem; border-radius: var(--radius);
  font-size: .9rem; margin-top: 1rem;
}

/* ===================== FAQ ===================== */
.faq-list { max-width: 860px; margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--sand-dark); }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; cursor: pointer;
  font-family: var(--ff-body); font-size: 1rem; font-weight: 700;
  color: var(--blue); text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--red); }
.faq-arr { color: var(--red); font-size: 1.1rem; transition: transform .3s; }
.faq-item.open .faq-arr { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 0 1.25rem; font-size: .9rem; color: var(--grey); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ===================== PAGE HERO ===================== */
.page-hero {
  background: var(--blue); padding: 5.5rem 3rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; right: 0; top: 0;
  width: 45%; height: 100%;
  background: linear-gradient(to left, rgba(192,57,43,.15), transparent);
}
/* Craft pattern overlay */
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 20px,
    rgba(255,255,255,.015) 20px, rgba(255,255,255,.015) 21px
  );
  pointer-events: none;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb {
  font-size: .68rem; text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,.4); margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.4); }
.breadcrumb span { color: var(--red); }
.red-bar { width: 55px; height: 4px; background: var(--red); margin-bottom: 1.5rem; }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white); line-height: 1.1; max-width: 680px;
}
.page-hero p {
  color: rgba(255,255,255,.65); font-size: 1.05rem;
  max-width: 540px; margin-top: 1.25rem; line-height: 1.75;
}

/* ===================== CONTENT TWO-COL ===================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); }

/* ===================== FOCUS GRID ===================== */
.focus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.focus-card {
  background: var(--white); border: 1px solid var(--sand-dark);
  border-top: 3px solid var(--blue);
  padding: 2rem; border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.focus-card:hover { border-top-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow); }
.focus-icon { font-size: 2rem; display: block; margin-bottom: .75rem; }
.focus-card h4 { font-family: var(--ff-display); font-size: 1.05rem; color: var(--blue); margin-bottom: .5rem; }
.focus-card p { font-size: .83rem; color: var(--grey); line-height: 1.65; }

/* ===================== SECTION PADDING ===================== */
.section-pad { padding: 5.5rem 0; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--black); padding: 5rem 3rem 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 2fr;
  gap: 5rem; max-width: 1280px; margin: 0 auto;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo-mark {
  width: 52px; height: 52px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.6rem; font-weight: 900;
  color: var(--white); margin-bottom: 1rem; border-radius: 2px;
}
.footer-brand-name {
  font-family: var(--ff-display); font-size: 1.4rem;
  color: var(--white); letter-spacing: 3px; margin-bottom: .25rem;
}
.footer-brand-sub { font-size: .7rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.35); margin-bottom: 1.25rem; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: rgba(255,255,255,.4);
  border-bottom: 1px solid transparent;
  transition: all .2s;
}
.footer-social a:hover { color: var(--red); border-bottom-color: var(--red); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.footer-col h4 {
  font-size: .68rem; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--white); margin-bottom: 1.25rem; font-weight: 700;
}
.footer-col a {
  display: block; font-size: .83rem;
  color: rgba(255,255,255,.4); margin-bottom: .55rem;
  transition: all .2s;
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-col address {
  font-style: normal; font-size: .83rem;
  color: rgba(255,255,255,.35); line-height: 1.7;
}
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  font-size: .72rem; color: rgba(255,255,255,.22);
  flex-wrap: wrap; gap: .5rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .how-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .how-steps::before { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .logos-row { grid-template-columns: repeat(3, 1fr); }
  .partner-why { grid-template-columns: repeat(2, 1fr); }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: 320px; }
  .hero-visual::before { background: linear-gradient(to bottom, var(--blue) 0%, transparent 40%); }
  .hero-content { padding: 5rem 2rem 2rem; max-width: 100%; }
  .feature-band { grid-template-columns: 1fr; }
  .feature-text { padding: 3rem 2rem; }
  .about-two { grid-template-columns: 1fr; gap: 2rem; }
  .network-cols { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .container { padding: 0 1.5rem; }
  .header-inner { padding: 0 1.5rem; }
  .hero-stats-bar { padding: 1.2rem 1.5rem; }
  .cta-band { padding: 4rem 1.5rem; }
  .page-hero { padding: 4rem 1.5rem; }
}
@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .logos-row { grid-template-columns: repeat(2, 1fr); }
  .partner-why { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats-inner { gap: 1.5rem; }
}
