/* ============================================================
   Custom Printing MNL — Main Stylesheet
   Palette: Graphite #111827 · Brand Blue #3A6EF5 · Magenta #C81870 · Amber #F59E0B · Cream #F8F7F4
   Fonts: Sarpanch (display) + Asap (body)
   ============================================================ */

/* 1. VARIABLES & RESET */
:root {
  --dark:       #111827;
  --dark-2:     #1E2A3A;
  --brand:      #3A6EF5;
  --brand-dark: #2754D4;
  --accent:     #C81870;
  --accent-dark:#A01259;
  --highlight:  #F59E0B;
  --cream:      #F8F7F4;
  --cream-dark: #EDE9E3;
  --white:      #FFFFFF;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-300:   #D1D5DB;
  --gray-500:   #6B7280;
  --gray-700:   #374151;
  --text-main:  #1E293B;
  --text-muted: #64748B;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(17,24,39,.10);
  --shadow-lg:  0 12px 40px rgba(17,24,39,.16);
  --transition: 0.25s ease;
  --font-display: 'Sarpanch', sans-serif;
  --font-body:    'Asap', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* 2. UTILITY */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-cta-wrap {
  text-align: center;
  margin-top: 48px;
}

/* 3. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,24,112,.35);
}

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

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

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-cta {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  padding: 11px 22px;
  font-size: 0.9rem;
}
.btn-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* 4. NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  flex-shrink: 0;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255,255,255,.8);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* 5. HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.in-view .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,24,39,.88) 0%,
    rgba(17,24,39,.72) 50%,
    rgba(58,110,245,.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 120px 24px 80px;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 8px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero .btn-primary { padding: 16px 36px; font-size: 1rem; }
.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  padding: 16px 36px;
  font-size: 1rem;
}
.hero .btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.hero-hashtag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand);
  letter-spacing: 0.04em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.5);
  animation: bounce 2s infinite;
}
.hero-scroll-hint svg { width: 28px; height: 28px; }

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

/* 6. FEATURES STRIP */
.features-strip {
  background: var(--dark);
  padding: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--accent);
}

.feature-item {
  padding: 40px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition);
}

.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,.04); }

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--brand);
  margin-bottom: 16px;
}

.feature-icon svg { width: 100%; height: 100%; }

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

/* 7. SERVICES MOSAIC */
.services-grid-section { background: var(--cream); }

.services-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.mosaic-large { grid-column: 1 / 3; grid-row: 1 / 2; }
.mosaic-wide  { grid-column: 1 / 3; grid-row: 2 / 3; }

.mosaic-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-2);
  cursor: pointer;
}

.mosaic-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.mosaic-large .mosaic-img-wrap,
.mosaic-wide .mosaic-img-wrap { height: 340px; }

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mosaic-item:hover img { transform: scale(1.06); }

.mosaic-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(transparent, rgba(17,24,39,.9));
  color: var(--white);
}

.mosaic-label h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.mosaic-label p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
}

/* 8. BADGES */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.badge-sig  { background: var(--brand);   color: var(--white); }
.badge-best { background: var(--accent);  color: var(--white); }
.badge-new  { background: var(--highlight); color: var(--dark); }

/* 9. BRAND TEASER */
.brand-teaser { background: var(--white); }

.brand-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.brand-teaser-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.brand-teaser-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.brand-teaser-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}

.brand-teaser-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

.brand-teaser-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.brand-teaser-text strong { color: var(--dark); font-weight: 700; }
.brand-teaser-text .btn { margin-top: 12px; }

/* 10. STATS */
.stats-section {
  background: var(--accent);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item { padding: 16px; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* 11. REVIEWS */
.reviews-section { background: var(--cream); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card.featured {
  background: var(--dark);
  color: var(--white);
}

.review-stars {
  display: flex;
  gap: 3px;
}
.review-stars svg { width: 18px; height: 18px; }

.review-card blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  color: inherit;
  font-style: normal;
  flex: 1;
}

.review-card.featured blockquote { color: var(--white); font-size: 1.3rem; }

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}
.reviewer span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.review-card.featured .reviewer span { color: rgba(255,255,255,.55); }

.highlight-card {
  background: linear-gradient(135deg, rgba(200,24,112,.06), rgba(58,110,245,.06));
  border: 2px solid var(--accent);
  text-align: center;
  justify-content: center;
  align-items: center;
}

.review-icon { width: 56px; height: 56px; }
.review-icon svg { width: 100%; height: 100%; }

.highlight-text {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.6;
}

.highlight-source {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

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

/* 12. SOCIAL CTA */
.social-cta-section { background: var(--dark-2); }

.social-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.social-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.social-cta-inner p {
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
  font-size: 1rem;
}

.social-cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-pill svg { width: 20px; height: 20px; }

.social-pill.instagram {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  color: var(--white);
}
.social-pill.instagram:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(131,58,180,.4); }

.social-pill.facebook {
  background: #1877F2;
  color: var(--white);
}
.social-pill.facebook:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(24,119,242,.4); }

.social-pill.whatsapp {
  background: #25D366;
  color: var(--white);
}
.social-pill.whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }

/* 13. SOCIAL FEED */
.social-feed { background: var(--cream); }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}

.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feed-item:hover img { transform: scale(1.08); }

.feed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.feed-item:hover .feed-overlay { opacity: 1; }
.feed-overlay svg { width: 32px; height: 32px; color: var(--white); }

/* 14. FOOTER */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding-top: 72px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo img { width: 42px; height: 42px; border-radius: 6px; object-fit: cover; }

.footer-tagline {
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--accent); color: var(--white); }
.footer-socials svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-contact a { color: rgba(255,255,255,.55); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.3);
}

/* 15. PAGE HERO (inner pages) */
.page-hero {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,.88) 0%, rgba(17,24,39,.65) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 72px;
}

.page-hero-content .section-eyebrow { margin-bottom: 12px; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}

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

/* 16. ABOUT PAGE */
.about-origin { background: var(--white); }
.about-origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

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

.about-origin-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.philosophy-section { background: var(--cream); }

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

.philosophy-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  transition: transform var(--transition);
}
.philosophy-card:hover { transform: translateY(-6px); }

.philosophy-card .card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 12px;
}

.philosophy-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.philosophy-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.values-section { background: var(--dark); }
.values-section .section-title { color: var(--white); }

.values-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.value-item {
  padding: 36px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  transition: border-color var(--transition), background var(--transition);
}
.value-item:hover {
  border-color: var(--accent);
  background: rgba(200,24,112,.06);
}

.value-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
}
.value-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline-section { background: var(--cream); }
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: center;
}

.timeline-item:nth-child(even) .tl-content { order: 2; }
.timeline-item:nth-child(even) .tl-year    { order: 1; text-align: right; }

.tl-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}

.tl-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.tl-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.tl-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* 17. SERVICES PAGE */
.services-disclaimer {
  background: var(--dark-2);
  padding: 20px 0;
  text-align: center;
}

.services-disclaimer p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
}

.services-disclaimer strong { color: var(--highlight); }

.category-tiles-section { background: var(--cream); padding: 64px 0; }

.category-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-tile {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-tile-img {
  height: 220px;
  overflow: hidden;
}

.category-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-tile:hover .category-tile-img img { transform: scale(1.06); }

.category-tile-body {
  padding: 28px 24px;
}

.category-tile-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.category-tile-body .tile-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.tile-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 700;
}

.tile-meta svg { width: 16px; height: 16px; }

.service-category { padding: 80px 0; }
.service-category:nth-child(even) { background: var(--gray-50); }

.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--accent);
}

.category-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.category-icon svg { width: 28px; height: 28px; color: var(--white); }

.category-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
}

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

.service-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}

.service-item:hover {
  border-left-color: var(--accent);
  transform: translateX(4px);
}

.service-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.service-item p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.service-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
}

.services-cta-section {
  background: var(--dark);
  text-align: center;
  padding: 80px 0;
}

.services-cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.services-cta-section p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

.services-cta-section .cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* 18. GALLERY PAGE */
.gallery-section { background: var(--cream); }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--white);
  border: 2px solid var(--gray-300);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.masonry-grid {
  column-count: 3;
  column-gap: 16px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.masonry-item:hover img { transform: scale(1.04); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-overlay svg {
  width: 40px; height: 40px;
  color: var(--white);
}

.gallery-cta-section {
  background: var(--accent);
  text-align: center;
  padding: 72px 0;
}

.gallery-cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.gallery-cta-section p {
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-cta-section .cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* 19. LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}

/* 20. CONTACT PAGE */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-blocks { display: flex; flex-direction: column; gap: 20px; }

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.contact-block:hover { transform: translateY(-3px); }

.contact-block-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-block-icon svg { width: 22px; height: 22px; color: var(--white); }

.contact-block-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact-block-body a,
.contact-block-body p {
  font-size: 0.94rem;
  color: var(--text-muted);
  word-break: break-word;
}

.contact-block-body a:hover { color: var(--accent); }

/* 21. FORM */
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 24px; }

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

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

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

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-submit { width: 100%; justify-content: center; padding: 14px; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

/* 22. MAP & FAQ */
.map-section { background: var(--white); padding: 0; }
.map-wrap { width: 100%; height: 360px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

.faq-section { background: var(--cream); }
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
}

.faq-q:hover { color: var(--accent); }

.faq-q svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-q svg { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-a { display: block; }

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

/* 1024px */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 2fr); gap: 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid .review-card:last-child { grid-column: 1 / -1; }
  .brand-teaser-grid { gap: 40px; }
  .contact-grid { gap: 36px; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .feed-grid .feed-item:nth-child(n+4) { display: none; }
  .values-list { grid-template-columns: repeat(3, 1fr); }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .about-origin-grid { gap: 40px; }
}

/* 768px */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; width: 100%; font-size: 1rem; }
  .nav-cta { display: none; }

  .hero-content { padding: 100px 24px 60px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-item { padding: 28px 20px; }

  .services-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .mosaic-large { grid-column: 1 / -1; }
  .mosaic-wide { grid-column: 1 / -1; }

  .brand-teaser-grid { grid-template-columns: 1fr; }
  .brand-teaser-img { order: -1; }
  .brand-teaser-img img { height: 320px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

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

  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-grid .feed-item { display: block !important; }
  .feed-grid .feed-item:nth-child(n+5) { display: none !important; }

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

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

  .about-origin-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .timeline-item:nth-child(even) .tl-content { order: unset; }
  .timeline-item:nth-child(even) .tl-year    { order: unset; text-align: left; }
  .masonry-grid { column-count: 2; }
  .service-items { grid-template-columns: 1fr; }
  .category-tiles { grid-template-columns: 1fr; }

  .social-cta-links { flex-direction: column; align-items: center; }
}

/* 480px */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .features-grid { grid-template-columns: 1fr; }
  .services-mosaic { grid-template-columns: 1fr; }
  .mosaic-large { grid-column: 1; }
  .mosaic-wide { grid-column: 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .values-list { grid-template-columns: 1fr 1fr; }
  .masonry-grid { column-count: 1; }
  .page-hero { height: 320px; }
  .contact-form-wrap { padding: 24px 16px; }
}
