/* =====================================================================
   GRID — Graphic Designer Portfolio Template
   Plain HTML5 + CSS3. No frameworks, no build step.
   ---------------------------------------------------------------------
   Bold Swiss / editorial aesthetic, LIGHT theme: white surfaces, black
   type, ONE bold red accent (#e63946). Strict grid, oversized headings,
   confident whitespace. Photography via Picsum/Pravatar (responsive,
   lazy-loaded, object-fit: cover).

   REBRAND TIP: edit the CSS variables in :root below. Swap --accent for
   your primary color and update --font-head / --font-body plus the Google
   Fonts <link> in each HTML file. Everything else cascades.
   ===================================================================== */

:root {
  /* --- Palette (edit these to rebrand) --- */
  --bg:      #ffffff;   /* page background          */
  --ink:     #0a0a0a;   /* near-black text / heads  */
  --accent:  #e63946;   /* bold red (one accent)    */
  --accent-dark: #c32330;/* darker accent for hovers */
  --muted:   #6e6e6e;   /* secondary text           */
  --surface: #ffffff;   /* cards / panels           */
  --paper:   #f4f4f2;   /* soft off-white sections  */
  --line:    #e4e4e1;   /* borders / dividers       */

  /* --- Fonts --- */
  --font-head: 'Archivo', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    4px;
  --radius-sm: 3px;
  --shadow:    0 1px 2px rgba(10,10,10,.04), 0 10px 34px rgba(10,10,10,.08);
  --shadow-lg: 0 28px 70px rgba(10,10,10,.16);
  --ease:      .4s cubic-bezier(.16,.84,.44,1);

  /* --- Layout --- */
  --maxw: 1280px;
  --gutter: 32px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: .98;
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.9rem, 9vw, 7rem); }
h2 { font-size: clamp(2.1rem, 5.2vw, 4rem); }
h3 { font-size: 1.3rem; letter-spacing: -.02em; }

p { margin: 0 0 1rem; }

a { color: var(--accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent-dark); }

svg { max-width: 100%; display: block; }

img { display: block; max-width: 100%; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #fff; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 116px 0; }
.section--soft { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--tight { padding: 76px 0; }

.section-head {
  max-width: 820px;
  margin: 0 0 64px;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 3px;
  background: var(--accent);
  display: inline-block;
}

.lead { font-size: 1.2rem; color: var(--muted); max-width: 640px; line-height: 1.55; }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn-light { background: #fff; color: var(--ink); border-color: transparent; }
.btn-light:hover { background: var(--paper); color: var(--ink); }

.btn-line { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-line:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 2px solid var(--ink);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  display: grid; place-items: center;
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 9px 16px;
  border-radius: var(--radius);
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: var(--paper); color: var(--ink); }
.nav-links a.active { color: var(--accent); }
.nav-cta { margin-left: 10px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  background: transparent;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   HERO (home) — oversized type, asymmetric editorial grid
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 100px;
  border-bottom: 2px solid var(--ink);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
.hero-name {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}
.hero-name .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(230,57,70,.18); }
.hero h1 { margin-bottom: 26px; }
.hero h1 .accent { color: var(--accent); }
.hero h1 .outline {
  -webkit-text-stroke: 2.5px var(--ink);
  color: transparent;
}
.hero .lead { margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-meta { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  display: block;
  line-height: 1;
  letter-spacing: -.03em;
}
.hero-meta div span { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* Hero visual — real photograph */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual .hv-tag {
  position: absolute;
  bottom: 0; left: 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 9px 16px;
}

/* ---------------------------------------------------------------------
   CLIENT LOGO STRIP (text)
   --------------------------------------------------------------------- */
.clients { padding: 46px 0; border-bottom: 1px solid var(--line); }
.clients p {
  text-align: center; font-size: .74rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 26px;
  font-family: var(--font-head); font-weight: 600;
}
.logo-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 16px 56px;
}
.logo-strip span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
  opacity: .34;
  letter-spacing: -.02em;
  text-transform: uppercase;
  transition: opacity var(--ease), color var(--ease);
}
.logo-strip span:hover { opacity: 1; color: var(--accent); }

/* ---------------------------------------------------------------------
   SECTION HEADER ROW (title + link)
   --------------------------------------------------------------------- */
.head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 52px; flex-wrap: wrap;
}
.head-row .lead { margin: 0; }
.text-link {
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
}
.text-link span { transition: transform var(--ease); }
.text-link:hover { color: var(--accent); }
.text-link:hover span { transform: translateX(5px); }

/* ---------------------------------------------------------------------
   WORK GRID + CARDS (strict grid, real photography)
   --------------------------------------------------------------------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.work-card {
  display: block;
  color: var(--ink);
  transition: transform var(--ease);
}
.work-card:hover { color: var(--ink); transform: translateY(-6px); }
.work-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--paper);
}
.work-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--ease);
}
.work-card:hover .work-thumb img { transform: scale(1.05); }
.work-num {
  position: absolute; top: 0; left: 0; z-index: 2;
  background: var(--ink); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: .82rem;
  letter-spacing: .12em; padding: 7px 12px;
}
.work-info { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.work-info h3 { font-size: 1.55rem; margin-bottom: 4px; }
.work-cat {
  font-family: var(--font-head); font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0;
}
.work-arrow {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  font-size: 1.05rem;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.work-card:hover .work-arrow { background: var(--accent); color: #fff; border-color: var(--accent); transform: rotate(-45deg); }

/* Work filters (work.html) */
.work-filters {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 52px;
}
.filter-chip {
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 11px 22px; border-radius: var(--radius);
  background: transparent; color: var(--ink);
  border: 2px solid var(--line); cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.work-card.is-hidden { display: none; }

/* ---------------------------------------------------------------------
   ABOUT TEASER / SPLIT (real photography)
   --------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-media .sm-tag {
  position: absolute;
  bottom: 0; left: 0;
  background: var(--accent); color: #fff;
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; padding: 9px 16px;
}
.about-list { margin-top: 26px; display: grid; gap: 14px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.about-list li .tick {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: var(--radius-sm);
  background: rgba(230,57,70,.1); color: var(--accent);
  display: grid; place-items: center; font-size: .8rem; font-weight: 700; margin-top: 2px;
}

/* ---------------------------------------------------------------------
   SKILLS GRID
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.skill-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.skill-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.skill-card .skill-icon { font-size: 1.9rem; display: block; margin-bottom: 18px; }
.skill-card h3 { margin-bottom: 8px; }
.skill-card p { color: var(--muted); margin-bottom: 0; font-size: .96rem; }

/* Tool tags */
.tool-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tool-tags li {
  font-family: var(--font-head); font-weight: 600; font-size: .85rem;
  letter-spacing: .03em; text-transform: uppercase;
  color: var(--ink); background: var(--surface);
  border: 2px solid var(--line); padding: 8px 16px; border-radius: var(--radius);
}

/* ---------------------------------------------------------------------
   STATS BAND
   --------------------------------------------------------------------- */
.stats-band { background: var(--ink); color: #fff; }
.stats-band h2 { color: #fff; }
.stats-band .eyebrow { color: #fff; }
.stats-band .eyebrow::before { background: var(--accent); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat strong {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 800;
  display: block; line-height: 1; letter-spacing: -.04em;
  color: #fff;
}
.stat span { color: rgba(255,255,255,.6); font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.stat .accent { color: var(--accent); }

/* ---------------------------------------------------------------------
   TESTIMONIALS (real avatars)
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 38px 34px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote-card .mark { font-family: var(--font-head); font-size: 3.2rem; line-height: .6; color: var(--accent); display: block; margin-bottom: 16px; font-weight: 800; }
.quote-card blockquote {
  margin: 0 0 26px;
  font-size: 1.1rem; color: var(--ink);
  font-weight: 500; line-height: 1.5;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-author .avatar {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--ink);
}
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); text-transform: uppercase; letter-spacing: .02em; font-size: .95rem; }
.quote-author span { font-size: .84rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 76px 56px;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; top: -45%; right: -8%;
  width: 480px; height: 480px; border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 580px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  padding: 84px 0 70px;
  border-bottom: 2px solid var(--ink);
}
.breadcrumb {
  font-family: var(--font-head);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.breadcrumb a { color: var(--ink); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 10px; color: var(--line); }
.page-banner h1 { margin-bottom: 20px; }
.page-banner .lead { margin-bottom: 0; }

/* ---------------------------------------------------------------------
   ABOUT PAGE — timeline + values
   --------------------------------------------------------------------- */
.timeline { position: relative; margin-top: 10px; }
.timeline::before {
  content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px;
  width: 2px; background: var(--line);
}
.timeline-item {
  position: relative; padding-left: 46px; padding-bottom: 42px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: 2px; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--surface); border: 4px solid var(--accent);
}
.timeline-period {
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px;
}
.timeline-item h3 { font-size: 1.3rem; margin-bottom: 2px; }
.timeline-org { font-family: var(--font-head); font-weight: 600; color: var(--muted); font-size: .9rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .04em; }
.timeline-item p { color: var(--muted); margin-bottom: 0; }

.value-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value-card .v-num {
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  color: var(--accent); letter-spacing: .04em; display: block; margin-bottom: 14px;
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--muted); margin-bottom: 0; font-size: .96rem; }

/* ---------------------------------------------------------------------
   SERVICES PAGE
   --------------------------------------------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 30px;
  align-items: start;
  padding: 42px 0;
  border-top: 2px solid var(--ink);
}
.service-block:last-child { border-bottom: 2px solid var(--ink); }
.service-block .s-num {
  font-family: var(--font-head); font-weight: 800; font-size: 1.7rem;
  color: var(--accent); letter-spacing: -.02em;
}
.service-block h3 { font-size: 1.8rem; margin-bottom: 10px; }
.service-block p { color: var(--muted); margin-bottom: 16px; max-width: 640px; }
.deliverables { display: flex; flex-wrap: wrap; gap: 10px; }
.deliverables li {
  font-size: .8rem; font-family: var(--font-head); font-weight: 600;
  letter-spacing: .03em; text-transform: uppercase;
  color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); padding: 6px 14px; border-radius: var(--radius);
}
.service-block .s-price { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1rem; white-space: nowrap; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.step .num {
  font-family: var(--font-head); font-weight: 800; font-size: 2.6rem;
  color: var(--accent); letter-spacing: -.04em; display: block; margin-bottom: 12px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .94rem; color: var(--muted); }

/* Packages */
.pkg {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 40px 34px;
  display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg.featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.pkg.featured h3, .pkg.featured .pkg-price { color: #fff; }
.pkg.featured .pkg-sub { color: rgba(255,255,255,.66); }
.pkg.featured .pkg-feat li { color: rgba(255,255,255,.85); }
.pkg.featured .pkg-feat li::before { color: var(--accent); }
.pkg .pkg-tag {
  font-family: var(--font-head); font-weight: 700; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; display: block;
}
.pkg h3 { font-size: 1.5rem; margin-bottom: 6px; }
.pkg-price { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; letter-spacing: -.03em; color: var(--ink); margin-bottom: 4px; }
.pkg-price span { font-size: .9rem; font-weight: 600; color: var(--muted); text-transform: none; }
.pkg-sub { color: var(--muted); font-size: .94rem; margin-bottom: 24px; }
.pkg-feat { display: grid; gap: 12px; margin-bottom: 30px; }
.pkg-feat li { display: flex; gap: 10px; font-size: .94rem; color: var(--ink); }
.pkg-feat li::before { content: "✓"; color: var(--accent); font-weight: 800; }
.pkg .btn { width: 100%; justify-content: center; margin-top: auto; }

/* FAQ */
.faq { max-width: 840px; }
.faq-item { border-top: 2px solid var(--ink); }
.faq-item:last-child { border-bottom: 2px solid var(--ink); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--ink);
  text-transform: uppercase; letter-spacing: -.01em;
  padding: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.faq-q .ic { flex: 0 0 auto; font-size: 1.5rem; color: var(--accent); transition: transform var(--ease); line-height: 1; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--ease); }
.faq-a p { color: var(--muted); padding: 0 0 28px; margin: 0; max-width: 700px; }
.faq-item.open .faq-a { max-height: 280px; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-details { display: grid; gap: 18px; margin-top: 28px; }
.contact-details li { display: flex; gap: 14px; align-items: flex-start; }
.contact-details .ic {
  width: 46px; height: 46px; flex: 0 0 auto; border-radius: var(--radius);
  background: var(--surface); border: 2px solid var(--ink);
  display: grid; place-items: center; font-size: 1.2rem;
}
.contact-details b { font-family: var(--font-head); color: var(--ink); display: block; font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; }
.contact-details span { font-size: .96rem; color: var(--muted); }
.contact-socials { display: flex; gap: 12px; margin-top: 30px; }
.contact-socials a {
  width: 46px; height: 46px; border-radius: var(--radius);
  border: 2px solid var(--ink); display: grid; place-items: center;
  color: var(--ink); font-size: 1rem; font-family: var(--font-head); font-weight: 700;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.contact-socials a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.form-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 42px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: .82rem; color: var(--ink); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .05em;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 2px solid var(--line); border-radius: var(--radius);
  background: var(--bg); transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230,57,70,.14);
}
.field textarea { resize: vertical; min-height: 140px; }
.field .error-msg { color: var(--accent-dark); font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--accent); }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none; margin-top: 18px; padding: 15px 18px; border-radius: var(--radius);
  background: rgba(230,57,70,.08); border: 2px solid rgba(230,57,70,.3);
  color: var(--accent-dark); font-weight: 500;
}
.form-status.show { display: block; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.62); padding: 80px 0 28px; }
.footer-cta { text-align: center; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.14); margin-bottom: 46px; }
.footer-cta h2 { color: #fff; font-size: clamp(2.1rem, 5.5vw, 3.8rem); margin-bottom: 24px; }
.footer-cta .btn { font-size: .95rem; padding: 17px 36px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 46px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .95rem; color: rgba(255,255,255,.6); max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-head); font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,.62); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 1rem; color: #fff;
  font-family: var(--font-head); font-weight: 700;
  transition: background var(--ease);
}
.social a:hover { background: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .84rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.7); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-io .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 440px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 80px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--surface); border-bottom: 2px solid var(--ink);
    box-shadow: var(--shadow); padding: 16px var(--gutter) 24px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; gap: 34px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .split--reverse .split-media { order: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 14px; }
  .service-block .s-price { white-space: normal; }
  .cta-band { padding: 54px 30px; }
  .form-card { padding: 30px 24px; }
}

@media (max-width: 480px) {
  :root { --gutter: 20px; }
  .stats-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 30px; }
  .head-row { align-items: flex-start; }
}
