/* ═══════════════════════════════════════════════
   Q PRINTING & EMBROIDERY — MINIMAL / LIGHT
═════════════════════════════════════════════════ */

:root {
  /* Surfaces */
  --bg: #faf9f7;
  --surface: #ffffff;
  --surface-2: #f4f2ee;

  /* Ink */
  --ink: #17191e;
  --ink-2: #3a3d44;
  --ink-soft: #696e77;
  --ink-mute: #a2a7af;

  /* Lines */
  --line: #e8e5df;
  --line-soft: #f0ede8;

  /* Brand accents */
  --gold: #e0961a;
  --cyan: #00b4d8;
  --purple: #9d3fe0;
  --magenta: #e0436a;
  --grad-brand: linear-gradient(110deg, #00b4d8 0%, #9d3fe0 38%, #e0436a 66%, #e0961a 100%);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-sm: 0 2px 10px -4px rgba(23,25,30,.10);
  --shadow-md: 0 16px 40px -22px rgba(23,25,30,.28);
  --shadow-lg: 0 40px 80px -40px rgba(23,25,30,.35);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }

/* ═══════════════ NAVIGATION ═══════════════ */
.nav-wrapper {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  padding: 1.2rem 0; transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.nav-wrapper.nav--scrolled {
  background: rgba(250,249,247,.82);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 1px 0 var(--line);
  padding: .8rem 0;
}
.nav-inner {
  width: 100%; max-width: var(--max-w); margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; transition: opacity .3s var(--ease); }
.nav-logo:hover { opacity: .75; }
.logo-img { height: 42px; width: auto; }
.nav--scrolled .logo-img { height: 38px; transition: height .4s var(--ease); }

.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-link {
  position: relative; font-weight: 500; font-size: .95rem; color: var(--ink-soft);
  padding: .3rem 0; transition: color .25s var(--ease);
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0;
  background: var(--grad-brand); border-radius: 2px; transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }

.btn-quote {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ink); color: #fff; font-weight: 600; font-size: .9rem;
  padding: .68rem 1.35rem; border-radius: 100px;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.btn-quote svg { transition: transform .3s var(--ease); }
.btn-quote:hover { transform: translateY(-2px); background: #000; }
.btn-quote:hover svg { transform: translateX(4px); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 1100; }
.nav-hamburger span { width: 25px; height: 2px; background: var(--ink); border-radius: 4px; transition: transform .35s var(--ease), opacity .25s var(--ease); }
.hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger--open span:nth-child(2) { opacity: 0; }
.hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 9rem 0 4rem;
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(157,63,224,.05), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(0,180,216,.05), transparent 55%),
    var(--bg);
}
.hero-bg-pattern, .hero-orb, .hero-scroll-indicator { display: none; }

.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w); margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2); background: var(--surface); border: 1px solid var(--line);
  padding: .5rem 1rem; border-radius: 100px; margin-bottom: 2rem;
  box-shadow: var(--shadow-sm); animation: fadeUp .7s var(--ease) both;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad-brand); }

.hero-heading {
  font-family: var(--font-display); font-weight: 350;
  font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 1.8rem;
  font-optical-sizing: auto;
}
.hero-heading__line { display: block; animation: fadeUp .8s var(--ease) both; }
.hero-heading__line:nth-child(1) { animation-delay: .06s; }
.hero-heading__line:nth-child(2) { animation-delay: .14s; }
.hero-heading__line:nth-child(3) { animation-delay: .22s; }
.hero-heading__line:nth-child(4) { animation-delay: .30s; }
.hero-heading__line--accent {
  font-style: italic;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-subtext { font-size: clamp(1rem, 1.3vw, 1.15rem); color: var(--ink-soft); max-width: 34rem; margin-bottom: 2.4rem; animation: fadeUp .8s var(--ease) .38s both; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 3rem; animation: fadeUp .8s var(--ease) .46s both; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: #fff; font-weight: 600;
  padding: .95rem 1.9rem; border-radius: 100px;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); background: #000; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink);
  font-weight: 600; padding: .95rem 1.7rem; border-radius: 100px;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--ink-mute); box-shadow: var(--shadow-sm); }
.btn-ghost svg { color: var(--ink-2); }

.hero-stats { display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.6rem); animation: fadeUp .8s var(--ease) .54s both; }
.stat { display: flex; flex-direction: column; }
.stat-number { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1; color: var(--ink); }
.stat-number sup { font-size: .5em; color: var(--magenta); top: -.6em; }
.stat-label { font-size: .76rem; color: var(--ink-mute); letter-spacing: .03em; margin-top: .35rem; }
.stat-divider { width: 1px; height: 42px; background: var(--line); }

/* Hero visual */
.hero-visual { animation: fadeUp 1s var(--ease) .3s both; }
.hero-visual__frame { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--surface); }
.hero-visual__photo { position: relative; aspect-ratio: 4/4.5; overflow: hidden; }
.hero-photo-img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s var(--ease); }
.hero-visual__frame:hover .hero-photo-img { transform: scale(1.05); }
.hero-visual__overlay { display: none; }
.hero-visual__badge {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  background: rgba(255,255,255,.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.6); border-radius: 12px; padding: .5rem .8rem;
  box-shadow: var(--shadow-sm);
}
.badge-logo { height: 24px; width: auto; }
.hero-visual__caption {
  position: absolute; bottom: 16px; left: 16px; z-index: 3;
  background: rgba(255,255,255,.88); backdrop-filter: blur(10px);
  border-radius: 12px; padding: .6rem .95rem; box-shadow: var(--shadow-sm);
}
.hero-caption__label { display: block; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.hero-caption__main { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); }
.hero-visual__ticker { display: none; }

/* ═══════════════ SECTION HEADERS ═══════════════ */
.section-header { text-align: center; max-width: 42rem; margin: 0 auto clamp(3rem, 5vw, 4.5rem); }
.section-eyebrow { font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1rem; }
.section-eyebrow::before { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--grad-brand); border-radius: 2px; vertical-align: middle; margin-right: .7rem; transform: translateY(-2px); }
.section-title { font-family: var(--font-display); font-weight: 350; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 1rem; }
.section-subtitle { color: var(--ink-soft); font-size: 1.05rem; }

/* ═══════════════ SERVICES ═══════════════ */
.services { padding: clamp(5rem, 9vw, 7.5rem) 0; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card {
  position: relative; overflow: hidden; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.service-card__glow { display: none; }
.service-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service-card__media--contain { background: #fff; border-bottom: 1px solid var(--line-soft); }
.service-card__media--contain img { object-fit: contain; padding: 1rem; }
.service-card:hover { transform: translateY(-6px); border-color: var(--ink-mute); box-shadow: var(--shadow-md); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { padding: 1.7rem 1.9rem 1.9rem; }

.service-card__number {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-display); font-size: 1rem; font-weight: 500; letter-spacing: .05em;
  color: var(--ink); background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  border-radius: 8px; padding: .2rem .6rem; box-shadow: var(--shadow-sm);
}
.service-card__icon { width: 40px; height: 40px; margin-bottom: 1.1rem; }
.service-card__icon svg { width: 100%; height: 100%; transition: transform .5s var(--ease); }
.service-card:hover .service-card__icon svg { transform: rotate(-6deg) scale(1.06); }
.service-card__title { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; letter-spacing: -0.01em; color: var(--ink); margin-bottom: .65rem; }
.service-card__desc { color: var(--ink-soft); font-size: .96rem; margin-bottom: 1.3rem; }
.service-card__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.service-card__tags li { font-size: .76rem; font-weight: 500; color: var(--ink-2); background: var(--surface-2); border: 1px solid var(--line-soft); padding: .32rem .75rem; border-radius: 100px; }
.card-link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .9rem; color: var(--ink); transition: gap .3s var(--ease); }
.card-link span { transition: transform .3s var(--ease); }
.card-link:hover { gap: .8rem; }

/* ═══════════════ WHY CHOOSE US ═══════════════ */
.why-us { padding: clamp(5rem, 9vw, 7.5rem) 0; background: var(--surface); border-block: 1px solid var(--line); }
.why-us__bg-stripe { display: none; }
.why-us__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.why-us__left .section-eyebrow, .why-us__left .section-title { text-align: left; }
.why-us__lead { color: var(--ink-soft); font-size: 1.06rem; margin: 1.3rem 0 2.2rem; max-width: 28rem; }
.why-us__photo { display: none; }
.why-us__visual { display: flex; align-items: center; gap: 1.1rem; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; }
.why-logo-wrap { flex-shrink: 0; width: 76px; height: 76px; border-radius: 14px; background: var(--surface); display: grid; place-items: center; border: 1px solid var(--line); }
.why-logo-img { width: 52px; height: auto; }
.why-tagline { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; line-height: 1.15; color: var(--ink); }

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.feature-item { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.7rem 1.5rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ink-mute); }
.feature-icon { width: 40px; height: 40px; margin-bottom: .9rem; }
.feature-icon svg { width: 100%; height: 100%; }
.feature-text h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; letter-spacing: -0.01em; color: var(--ink); margin-bottom: .45rem; }
.feature-text p { color: var(--ink-soft); font-size: .92rem; }

/* ═══════════════ CONTACT ═══════════════ */
.contact { padding: clamp(5rem, 9vw, 7.5rem) 0; }
.contact__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact__info .section-eyebrow, .contact__info .section-title { text-align: left; }
.contact__lead { color: var(--ink-soft); font-size: 1.04rem; margin: 1.1rem 0 2.2rem; }
.contact__phones { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1.8rem; }
.phone-link { display: flex; align-items: center; gap: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.2rem; transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease); }
.phone-link:hover { transform: translateX(5px); border-color: var(--ink-mute); box-shadow: var(--shadow-sm); }
.phone-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 11px; background: var(--ink); color: #fff; display: grid; place-items: center; }
.phone-icon svg { width: 21px; height: 21px; }
.phone-label { display: block; font-size: .72rem; color: var(--ink-mute); letter-spacing: .04em; text-transform: uppercase; }
.phone-number { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); }
.contact__location { display: flex; align-items: center; gap: .6rem; color: var(--ink-soft); font-weight: 500; }
.contact__location svg { color: var(--ink-2); }

.contact__form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.6rem); position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.contact__form-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-brand); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.required { color: var(--magenta); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--bg); color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px; padding: .82rem 1rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--ink-mute); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(23,25,30,.07); background: var(--surface); }
.form-group textarea { resize: vertical; min-height: 110px; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 2.6rem; }
.select-arrow { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--ink-mute); pointer-events: none; }
.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--ink); color: #fff; font-weight: 600; padding: 1rem 2rem;
  border: 0; border-radius: 100px; cursor: pointer; margin-top: .3rem;
  transition: transform .3s var(--ease), background .3s var(--ease), opacity .3s var(--ease);
}
.btn-submit:hover:not(:disabled) { transform: translateY(-3px); background: #000; }
.btn-submit:disabled { opacity: .6; cursor: wait; }
.form-success { display: flex; align-items: center; gap: .7rem; margin-top: .3rem; color: #1d8a5a; background: #eaf7f0; border: 1px solid #c4e9d6; padding: .85rem 1.1rem; border-radius: 10px; font-weight: 500; font-size: .94rem; animation: fadeUp .4s var(--ease) both; }

/* ═══════════════ FOOTER ═══════════════ */
.footer { background: var(--surface); border-top: 1px solid var(--line); padding-top: 4rem; position: relative; }
.footer-gradient-bar { display: none; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { height: 44px; width: auto; margin-bottom: 1.1rem; }
.footer__tagline { color: var(--ink-soft); font-size: .94rem; line-height: 1.6; }
.footer h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; color: var(--ink); margin-bottom: 1.1rem; }
.footer__nav ul, .footer__services ul { display: flex; flex-direction: column; gap: .65rem; }
.footer__nav a { color: var(--ink-soft); font-size: .94rem; transition: color .25s var(--ease), padding-left .25s var(--ease); }
.footer__nav a:hover { color: var(--ink); padding-left: 4px; }
.footer__services li { color: var(--ink-soft); font-size: .94rem; }
.footer-phone { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); margin-bottom: .45rem; transition: color .25s var(--ease); }
.footer-phone:hover { color: var(--magenta); }
.footer__address { color: var(--ink-mute); font-size: .88rem; margin-top: .8rem; }
.footer__bottom { border-top: 1px solid var(--line); padding: 1.6rem 0; text-align: center; }
.footer__bottom p { color: var(--ink-mute); font-size: .85rem; }

/* ═══════════════ ANIMATIONS ═══════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.services-grid .service-card:nth-child(2).revealed { transition-delay: .08s; }
.services-grid .service-card:nth-child(3).revealed { transition-delay: .16s; }
.services-grid .service-card:nth-child(4).revealed { transition-delay: .24s; }
.feature-list .feature-item:nth-child(2).revealed { transition-delay: .08s; }
.feature-list .feature-item:nth-child(3).revealed { transition-delay: .16s; }
.feature-list .feature-item:nth-child(4).revealed { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .why-us__inner, .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
}
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 2rem;
    background: var(--surface); padding: 2rem; transform: translateX(100%);
    transition: transform .4s var(--ease); box-shadow: -20px 0 60px -30px rgba(23,25,30,.3);
    border-left: 1px solid var(--line);
  }
  .nav-links--open { transform: translateX(0); }
  .nav-link { font-size: 1.15rem; }
  .btn-quote { font-size: 1rem; padding: .8rem 1.5rem; }
  .hero { padding-top: 7rem; min-height: auto; }
  .hero-stats { flex-wrap: wrap; gap: 1.3rem 1.8rem; }
  .stat-divider { display: none; }
  .services-grid, .feature-list, .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
  .why-us__visual { flex-direction: column; text-align: center; }
}
