* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
}
/* Very light animated background accents (stay behind content) */
body::before {
  content: "";
  position: fixed;
  inset: -20% -10% auto auto;
  width: 60vmax;
  height: 60vmax;
  background: radial-gradient(40% 40% at 70% 30%, var(--brand-100), transparent 60%), radial-gradient(35% 35% at 20% 70%, var(--brand-50), transparent 60%);
  opacity: .25;
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
  animation: bgDrift 22s linear infinite alternate;
}
@keyframes bgDrift { 0% { transform: translate3d(0,0,0) rotate(0deg);} 100% { transform: translate3d(4%, -3%, 0) rotate(5deg);} }

/* Very light page floral decor */
.page-decor { position: fixed; inset: 0; pointer-events: none; z-index: 1; }
.page-decor .fl { position: absolute; opacity: .2; color: var(--brand-600); }
.page-decor .tl { top: 40px; left: 16px; width: 120px; transform: rotate(-10deg); }
.page-decor .br { bottom: 60px; right: 20px; width: 160px; transform: rotate(15deg); }
.\:root-replace { }
:root {
  /* Brand palette tuned to the logo (gold-brown + ink red) */
  --brand-50: #f8f3ea;
  --brand-100: #efe5d2;
  --brand-200: #e4d2b6;
  --brand-300: #d4bb90;
  --brand-400: #c7a070;
  --brand-500: #b5895a;
  --brand-600: #a17444; /* primary */
  --brand-700: #805a33;
  --brand-800: #5f4123;
  --ink-red: #b1443a;
  --work-card-w: 260px;

  /* Motion tokens */
  --ease-standard: cubic-bezier(.2,.8,.2,1);
  --ease-emph: cubic-bezier(.2,.9,.1,1);
  --dur-1: 160ms;
  --dur-2: 260ms;
  --dur-3: 420ms;
}
.container { width: min(1100px, 92%); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: -999px; }
.skip-link:focus { left: 8px; top: 8px; background: #111; color: #fff; padding: 8px 12px; border-radius: 6px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--brand-50) 80%, #ffffff); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--brand-200); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand-logo { width: 44px; height: 44px; object-fit: contain; }
.brand-name { font-weight: 700; letter-spacing: 0.2px; color: var(--brand-700); }
.site-nav .nav-list { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.site-nav a { text-decoration: none; color: #0f172a; font-weight: 500; }
.site-nav a:hover { color: var(--brand-600); }
.nav-toggle { display: none; }

/* Hero */
.hero { padding: 64px 0 40px; background: linear-gradient(180deg, var(--brand-50) 0%, #ffffff 60%); min-height: 70vh; display: flex; align-items: center; }
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.hero h1 { font-size: 44px; line-height: 1.08; margin: 0 0 12px; letter-spacing: -0.6px; background: linear-gradient(180deg, var(--brand-800), var(--brand-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 18px; color: #334155; }
.hero-cta { margin-top: 20px; display: flex; gap: 12px; }
.cta-center { justify-content: center; }
.btn { display: inline-block; padding: 10px 16px; border: 1px solid var(--brand-200); color: #0f172a; text-decoration: none; border-radius: 10px; background: #fff; }
.btn.primary { background: var(--brand-600); color: #fff; border-color: var(--brand-600); }
.btn.primary:hover { background: var(--brand-700); border-color: var(--brand-700); }
.btn:hover { filter: brightness(0.98); border-color: var(--brand-300); }
.btn.pill { border-radius: 999px; padding: 10px 18px; display: inline-flex; align-items: center; gap: 8px; }
.btn.wa { background: #25D366; border-color: #25D366; color: #0b2b16; font-weight: 600; }
.btn.wa:hover { filter: brightness(0.95); }
.hero-media { display: grid; }
.hero-card { border-radius: 16px; border: 1px solid var(--brand-200); background: radial-gradient(900px 300px at 100% -40%, var(--brand-200) 0%, transparent 60%), linear-gradient(135deg, var(--brand-50) 0%, #ffffff 70%); height: 280px; box-shadow: 0 10px 30px rgba(2,6,23,0.08); }
/* Animated soft glow layers behind hero image */
.hero-card { position: relative; overflow: hidden; }
.hero-card::before,
.hero-card::after { content: ""; position: absolute; border-radius: 50%; filter: blur(20px); opacity: .35; pointer-events: none; }
.hero-card::before { width: 180px; height: 180px; left: -40px; top: 40px; background: radial-gradient(circle at 40% 40%, var(--brand-300), transparent 60%); animation: pulse 6s var(--ease-emph) infinite; }
.hero-card::after { width: 220px; height: 220px; right: -30px; bottom: -20px; background: radial-gradient(circle at 60% 60%, var(--brand-100), transparent 60%); animation: pulse 7.5s var(--ease-emph) infinite .6s; }
@keyframes pulse { 0%, 100% { transform: scale(1) translateY(0); opacity: .35; } 50% { transform: scale(1.08) translateY(-6px); opacity: .5; } }

/* Hero content extras */
.eyebrow { display: inline-block; padding: 4px 10px; border: 1px solid var(--brand-200); border-radius: 999px; background: var(--brand-100); color: var(--brand-700); font-size: 12px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 10px; }
.hero-stats { margin-top: 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; max-width: 520px; }
.stat-card { border: 1px solid var(--brand-200); border-radius: 16px; background: var(--brand-100); padding: 12px 14px; text-align: center; }
.stat-value { font-size: 22px; font-weight: 800; color: var(--brand-800); }
.stat-caption { font-size: 12px; color: #6b7280; margin-top: 2px; }

/* Micro-interactions */
.interactive:hover { transform: translateY(-2px); transition: transform var(--dur-2) var(--ease-standard); }
.pressable:active { transform: translateY(0); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity var(--dur-3) var(--ease-emph), transform var(--dur-3) var(--ease-emph); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Keyframes for subtle floating accents */
@keyframes floatY { 0% { transform: translateY(0);} 50% { transform: translateY(-6px);} 100% { transform: translateY(0);} }
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Sections */
.section { padding: 56px 0; }
.section.alt { background: var(--brand-50); }
.section h2 { font-size: 28px; margin: 0 0 16px; }
.section-lead { color: #475569; margin-bottom: 18px; }

/* Categories */
.category-grid { list-style: none; padding: 0; margin: 0 0 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
/* Category pill cards */
.category-card {
  display: grid; place-items: center; text-align: center;
  border: 1px solid var(--brand-200);
  padding: 16px; border-radius: 18px; background: var(--brand-100);
  text-decoration: none; color: #0f172a; font-weight: 600;
  box-shadow: 0 2px 0 0 color-mix(in srgb, var(--brand-800) 6%, transparent) inset;
}
.category-card:hover {
  border-color: var(--brand-600); background: color-mix(in srgb, var(--brand-100) 70%, #fff);
  transform: translateY(-2px); transition: transform var(--dur-2) var(--ease-standard), background var(--dur-2) var(--ease-standard);
}
.cat-icon { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; background: var(--brand-50); border: 1px solid var(--brand-200); box-shadow: 0 6px 16px rgba(2,6,23,0.06); margin-bottom: 10px; }
.cat-icon::after { content: ""; position: absolute; inset: 0; border-radius: 16px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent); transform: translateX(-120%); animation: sheen 3s ease-in-out infinite; pointer-events: none; }
.category-card { position: relative; }
@keyframes sheen { 0% { transform: translateX(-120%);} 60% { transform: translateX(130%);} 100% { transform: translateX(130%);} }
.category-card svg { width: 26px; height: 26px; color: var(--brand-700); }
.cat-title { font-weight: 700; font-size: 14px; line-height: 1.2; }
.cat-sub { margin-top: 6px; font-weight: 500; font-size: 12px; color: #6b7280; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 16px; align-items: center; }
.step-card { position: relative; border: 1px solid var(--brand-200); border-radius: 18px; background: var(--brand-100); padding: 16px; text-align: center; }
.step-icon { width: 72px; height: 72px; border-radius: 16px; display: grid; place-items: center; background: var(--brand-50); border: 1px solid var(--brand-200); margin: 6px auto 10px; }
.step-icon svg { width: 34px; height: 34px; color: var(--brand-700); }
.step-title { font-weight: 700; }
.step-desc { margin-top: 6px; font-size: 12px; color: #6b7280; line-height: 1.35; }
.step-arrow { display: none; font-size: 24px; color: var(--brand-700); }
@media (min-width: 900px) {
  .step-arrow { display: block; text-align: center; }
}
.product-sections { display: grid; gap: 36px; }
.product-section h3 { margin: 0 0 12px; font-size: 22px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.product { border: 1px solid var(--brand-200); border-radius: 12px; background: #fff; padding: 10px; }
.product-title { font-size: 16px; margin: 10px 4px 2px; }
.product-media { width: 100%; border-radius: 8px; background: linear-gradient(135deg, #e2e8f0, #f1f5f9); border: 1px dashed #cbd5e1; }
.aspect-4-3 { aspect-ratio: 4 / 3; }
.aspect-1-1 { aspect-ratio: 1 / 1; }
.aspect-16-9 { aspect-ratio: 16 / 9; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.testimonial { margin: 0; padding: 18px; border: 1px solid var(--brand-200); border-radius: 16px; background: #fff; color: #0f172a; }
.testimonial header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--brand-100); border: 1px solid var(--brand-200); }
.stars { color: #f59e0b; font-size: 14px; }
.testimonial footer { margin-top: 8px; color: #475569; }

/* Featured Works */
.works-wrap { position: relative; }
.works-row { display: grid; grid-auto-flow: column; grid-auto-columns: var(--work-card-w); gap: 14px; overflow-x: auto; padding: 6px 4px 10px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.works-row::-webkit-scrollbar { height: 8px; }
.works-row::-webkit-scrollbar-thumb { background: var(--brand-300); border-radius: 8px; }
.works-card { position: relative; scroll-snap-align: start; border: 1px solid var(--brand-200); border-radius: 14px; background: #fff; overflow: hidden; transition: transform var(--dur-2) var(--ease-standard), box-shadow var(--dur-2) var(--ease-standard); }
.works-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(2,6,23,0.10); }
.works-media { width: 100%; aspect-ratio: 3 / 4; background: linear-gradient(135deg, #e2e8f0, #f1f5f9); }
.works-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px; color: #fff; font-weight: 600; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.45)); }
.works-tag { display: inline-block; margin-top: 4px; font-size: 12px; color: #f3f4f6; opacity: 0.9; }
.works-nav { position: absolute; top: 50%; transform: translateY(-50%); display: flex; align-items: center; gap: 8px; }
.works-nav.prev { left: -8px; }
.works-nav.next { right: -8px; }
.works-nav button { border: 1px solid var(--brand-200); background: var(--brand-600); color: #fff; width: 36px; height: 36px; border-radius: 999px; cursor: pointer; box-shadow: 0 4px 12px rgba(2,6,23,0.20); }
.works-nav button:hover { background: var(--brand-700); }
@media (max-width: 900px) {
  :root { --work-card-w: 220px; }
  .works-nav { display: none; }
}

/* Before/After */
.ba-section h2 { text-align: center; }
.ba-wrap { position: relative; max-width: 900px; margin: 0 auto; }
.ba-stage { position: relative; border: 1px solid var(--brand-200); border-radius: 16px; overflow: hidden; background: #fff; }
.ba-stage img { display: block; width: 100%; height: auto; }
.ba-top { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos,50%)) 0 0); transition: clip-path var(--dur-2) var(--ease-standard); }
.ba-slider { position: absolute; left: 0; right: 0; bottom: 10px; width: calc(100% - 24px); margin: 0 12px; }
.ba-slider input[type="range"] { width: 100%; -webkit-appearance: none; appearance: none; height: 4px; background: var(--brand-200); border-radius: 999px; outline: none; }
.ba-slider input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--brand-600); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--brand-600); cursor: pointer; }
.ba-labels { position: absolute; top: 10px; left: 12px; right: 12px; display: flex; justify-content: space-between; pointer-events: none; font-weight: 700; color: #0f172a; }
.ba-pill { background: rgba(255,255,255,0.9); border: 1px solid var(--brand-200); padding: 4px 8px; border-radius: 999px; font-size: 12px; }

/* FAQ */
.faq-box { background: var(--brand-100); border: 1px solid var(--brand-200); border-radius: 24px; padding: 14px; box-shadow: 0 6px 20px rgba(2,6,23,0.06) inset; }
.faq { display: grid; gap: 8px; }
.faq details { border: 1px solid var(--brand-200); border-radius: 12px; background: #fff; padding: 12px 14px; }
.faq summary { cursor: pointer; font-weight: 600; display: flex; align-items: center; justify-content: space-between; }
.faq summary::after { content: '+'; color: var(--brand-700); font-weight: 700; }
.faq details[open] summary::after { content: '–'; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.contact-card { border: 1px solid var(--brand-200); border-radius: 12px; background: #fff; padding: 16px; }
.contact-card h3 { margin: 0 0 8px; }
.muted { color: #64748b; }
.small { font-size: 12px; }

/* Footer */
.site-footer { border-top: 1px solid var(--brand-200); background: var(--brand-800); color: #f8fafc; position: relative; overflow: hidden; }
.footer-inner { padding: 24px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px 24px; position: relative; z-index: 1; align-items: start; }
.footer-col { display: flex; flex-direction: column; gap: 6px; }
.footer-col h4 { margin: 0 0 8px; font-size: 13px; color: #f3f4f6; letter-spacing: .4px; text-transform: uppercase; font-weight: 700; }
.footer-col a { color: #e7eaf0; text-decoration: none; display: inline-block; margin: 2px 0; }
.footer-col a:hover { color: #ffffff; text-decoration: underline; }
.footer-desc { color: #e5e7eb; opacity: .9; }
.footer-meta { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 12px; margin-top: 6px; font-size: 12px; color: #f3f4f6; opacity: .9; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 2px 0; }
.footer-logo { width: 56px; height: 56px; object-fit: contain; background: #fff; border-radius: 8px; padding: 6px; border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 2px 8px rgba(0,0,0,0.15); margin-bottom: 8px; }
.footer-decor { position: absolute; right: -30px; bottom: -28px; width: 320px; height: auto; opacity: 0.12; color: #ffffff; pointer-events: none; z-index: 0; }
@media (min-width: 1100px) {
  /* Keep all five footer columns on one row on desktop */
  .footer-inner { grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; }
}

/* Guidelines */
details.guidelines { margin-top: 8px; }
details.guidelines summary { cursor: pointer; font-weight: 600; }
details.guidelines ul { margin: 10px 0 0 18px; color: #475569; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero { min-height: 56vh; }
}
@media (max-width: 640px) {
  .site-nav .nav-list { display: none; }
  .nav-toggle { display: inline-block; border: 1px solid #e2e8f0; background: #fff; padding: 8px 10px; border-radius: 8px; }
  .site-nav[data-open="true"] .nav-list { display: flex; position: absolute; top: 56px; right: 4%; background: #fff; padding: 12px; border: 1px solid #e2e8f0; border-radius: 12px; flex-direction: column; gap: 10px; }
}

/* Selection highlight tuned to brand */
::selection { background: color-mix(in srgb, var(--brand-600) 25%, #ffffff); }

/* Chat CTA */
.cta-section { text-align: center; }
.cta-title { font-size: 36px; margin: 0 0 6px; letter-spacing: 0.5px; background: linear-gradient(180deg, var(--brand-800), var(--brand-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-sub { color: #6b7280; font-weight: 600; }
.cta-actions { margin-top: 12px; }


