/* =====================================================================
   DOODLE — Illustrator & Artist Portfolio Template
   Plain HTML5 + CSS3 + vanilla JS. No frameworks. No external images.
   Every visual is a CSS gradient, blob/sticker shape, inline SVG, or emoji.
   ---------------------------------------------------------------------
   REBRAND TIP: edit the CSS variables in :root below. Swap the palette
   and fonts (also update the Google Fonts <link> in each HTML file).
   Everything else cascades.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:       #fff8ef;   /* warm cream page background        */
  --ink:      #2a2233;   /* near-black plum (headings/text)   */
  --accent:   #ff5da2;   /* playful pink (primary)            */
  --accent2:  #ffb830;   /* sunny yellow                      */
  --accent3:  #5ad1c9;   /* fresh teal                        */
  --muted:    #877f8c;   /* muted text                        */
  --surface:  #ffffff;   /* cards / panels                    */
  --line:     #f0e7da;   /* borders / dividers                */

  /* Derived helpers */
  --accent-dark: #ec3f8c;
  --ink-soft:    #4b4256;

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

  /* --- Shape & motion --- */
  --radius:    22px;
  --radius-sm: 14px;
  --shadow:    0 10px 28px rgba(42, 34, 51, .08);
  --shadow-lg: 0 26px 60px rgba(42, 34, 51, .16);
  --shadow-pink: 0 10px 24px rgba(255, 93, 162, .35);
  --ease:      .35s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw: 1180px;
  --gutter: 24px;
}

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

html { scroll-behavior: smooth; }

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

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

h1 { font-size: clamp(2.3rem, 5.4vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

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

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

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

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

.section { padding: 92px 0; position: relative; }
.section--soft { background: #fffdf8; }
.section--tight { padding: 64px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(255, 93, 162, .12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lead { font-size: 1.12rem; color: var(--ink-soft); }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow 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;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { background: var(--accent-dark); color: #fff; box-shadow: 0 14px 30px rgba(255, 93, 162, .45); }

.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: #fff;
}
.btn-light:hover { background: var(--accent2); color: var(--ink); border-color: var(--accent2); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 239, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 40px; height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid; place-items: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-pink);
  transform: rotate(-6deg);
  transition: transform var(--ease);
}
.brand:hover .logo-mark { transform: rotate(6deg) scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .96rem;
  color: var(--ink-soft);
  padding: 8px 15px;
  border-radius: 999px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(255, 93, 162, .1); color: var(--accent-dark); }
.nav-links a.active { color: var(--accent-dark); background: rgba(255, 93, 162, .14); }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2.5px;
  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(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   DECORATIVE BLOBS / STICKERS (reusable playful shapes)
   --------------------------------------------------------------------- */
.blob {
  position: absolute;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  filter: blur(2px);
  opacity: .55;
  z-index: 0;
  pointer-events: none;
}
.sticker {
  position: absolute;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow);
  font-size: 1.6rem;
  z-index: 2;
  pointer-events: none;
}

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 460px at 88% -10%, rgba(90,209,201,.28), transparent 60%),
    radial-gradient(640px 460px at 2% 110%, rgba(255,184,48,.28), transparent 58%),
    linear-gradient(180deg, var(--bg) 0%, #fffdf8 100%);
  padding: 84px 0 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .squiggle { color: var(--accent); position: relative; white-space: nowrap; }
.hero h1 .squiggle::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px; height: 10px;
  background: var(--accent2);
  border-radius: 999px;
  opacity: .8;
  z-index: -1;
}
.hero .lead { max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-meta { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta div span { font-size: .9rem; color: var(--muted); }

/* Hero visual — playful CSS art canvas */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
  border-radius: 36px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.6), transparent 40%),
    conic-gradient(from 200deg, var(--accent2), var(--accent), var(--accent3), var(--accent2));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-visual .art-blob {
  position: absolute; border-radius: 50%;
}
.hero-visual .b1 { width: 46%; height: 46%; left: 12%; top: 14%; background: rgba(255,255,255,.35); border-radius: 48% 52% 60% 40%/55% 48% 52% 45%; }
.hero-visual .b2 { width: 30%; height: 30%; right: 12%; bottom: 16%; background: rgba(42,34,51,.18); border-radius: 60% 40% 45% 55%/50% 60% 40% 50%; }
.hero-visual .face {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: clamp(5rem, 16vw, 9rem);
  filter: drop-shadow(0 14px 24px rgba(42,34,51,.25));
  animation: bob 4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-3deg);} 50% { transform: translateY(-14px) rotate(3deg);} }

.hero .sticker-1 { top: -14px; right: 8%; width: 64px; height: 64px; animation: bob 5s ease-in-out infinite; }
.hero .sticker-2 { bottom: 6%; left: -16px; width: 70px; height: 70px; animation: bob 6s ease-in-out .4s infinite; }

/* ---------------------------------------------------------------------
   CLIENTS / BRANDS STRIP
   --------------------------------------------------------------------- */
.trusted { padding: 38px 0; border-bottom: 1px solid var(--line); background: var(--bg); }
.trusted p { text-align: center; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 44px;
}
.logo-strip span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  opacity: .42;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--ease), color var(--ease);
}
.logo-strip span:hover { opacity: 1; color: var(--accent-dark); }

/* ---------------------------------------------------------------------
   GENERIC GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------------------------------------------------------------------
   ART / GALLERY TILES
   --------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.art-tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
  transition: transform var(--ease), box-shadow var(--ease);
  color: var(--ink);
}
.art-tile:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--shadow-lg); color: var(--ink); }
.art-canvas {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  font-size: 3.4rem;
  overflow: hidden;
}
.art-canvas::before {
  content: "";
  position: absolute; width: 60%; height: 60%;
  background: rgba(255,255,255,.35);
  border-radius: 48% 52% 60% 40%/55% 48% 52% 45%;
  top: 8%; left: 8%;
  filter: blur(1px);
}
.art-canvas .emoji { position: relative; z-index: 1; filter: drop-shadow(0 8px 14px rgba(42,34,51,.25)); }
.art-tile:hover .art-canvas .emoji { transform: scale(1.12) rotate(6deg); transition: transform var(--ease); }

/* Bright tile gradients */
.g-1 { background: linear-gradient(150deg, #ff5da2, #ffb830); }
.g-2 { background: linear-gradient(150deg, #5ad1c9, #5a8bff); }
.g-3 { background: linear-gradient(150deg, #ffb830, #ff7a59); }
.g-4 { background: linear-gradient(150deg, #a76bff, #ff5da2); }
.g-5 { background: linear-gradient(150deg, #5ad1c9, #ffe05a); }
.g-6 { background: linear-gradient(150deg, #ff7a9c, #ffd36e); }
.g-7 { background: linear-gradient(150deg, #5a8bff, #5ad1c9); }
.g-8 { background: linear-gradient(150deg, #ff9a3d, #ff5da2); }
.g-9 { background: linear-gradient(150deg, #7be0d0, #a76bff); }
.g-10 { background: linear-gradient(150deg, #ffd36e, #5ad1c9); }
.g-11 { background: linear-gradient(150deg, #ff5da2, #a76bff); }
.g-12 { background: linear-gradient(150deg, #ffb830, #5ad1c9); }

.art-info {
  padding: 18px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.art-info h3 { font-size: 1.1rem; margin: 0 0 2px; }
.art-cat { font-size: .82rem; color: var(--muted); font-family: var(--font-head); font-weight: 600; margin: 0; }
.art-arrow {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,93,162,.12);
  color: var(--accent-dark);
  display: grid; place-items: center;
  font-weight: 700;
  transition: transform var(--ease), background var(--ease);
}
.art-tile:hover .art-arrow { background: var(--accent); color: #fff; transform: translateX(3px) rotate(-8deg); }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-chip {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1.5px solid var(--line);
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent-dark); transform: translateY(-2px); }
.filter-chip.is-active { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: var(--shadow-pink); }

/* hidden state for filtering */
.art-tile.is-hidden { display: none; }

/* ---------------------------------------------------------------------
   GENERIC CARDS
   --------------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(255,93,162,.3); }
.card .icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,93,162,.16), rgba(255,184,48,.2));
  display: grid; place-items: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
  transform: rotate(-4deg);
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); margin-bottom: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
}
.card-link span { transition: transform var(--ease); }
.card-link:hover span { transform: translateX(4px); }

/* Feature list */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .tick {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  box-shadow: var(--shadow-pink);
}
.feature h3 { font-size: 1.12rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; }

/* ---------------------------------------------------------------------
   SPLIT SECTION (art block + content)
   --------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: 28px;
  min-height: 380px;
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.5), transparent 42%),
    conic-gradient(from 160deg, var(--accent3), var(--accent), var(--accent2), var(--accent3));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--ink);
  padding: 32px;
  text-align: center;
}
.split-media .big-emoji {
  font-size: clamp(4rem, 12vw, 7rem);
  filter: drop-shadow(0 12px 20px rgba(42,34,51,.25));
  animation: bob 5s ease-in-out infinite;
}

/* ---------------------------------------------------------------------
   STATS BAND
   --------------------------------------------------------------------- */
.stats-band {
  background: var(--ink);
  color: #fff;
  border-radius: 0;
}
.stats-band .section-head h2 { color: #fff; }
.stats-band .section-head p { color: rgba(255,255,255,.8); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat strong {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  display: block;
  line-height: 1;
  background: linear-gradient(120deg, var(--accent2), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat span { color: rgba(255,255,255,.78); font-size: .95rem; }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.quote-card .stars { color: var(--accent2); margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.1rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.5;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
}
.av-1 { background: linear-gradient(135deg, var(--accent), var(--accent2)); }
.av-2 { background: linear-gradient(135deg, var(--accent3), #5a8bff); }
.av-3 { background: linear-gradient(135deg, var(--accent2), #ff7a59); }
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); }
.quote-author span { font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(520px 360px at 88% 12%, rgba(255,255,255,.3), transparent 60%),
    linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border-radius: 32px;
  padding: 62px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band .sticker { font-size: 2.4rem; }
.cta-band .cs-1 { top: 18px; left: 8%; width: 70px; height: 70px; transform: rotate(-10deg); }
.cta-band .cs-2 { bottom: 18px; right: 8%; width: 70px; height: 70px; transform: rotate(12deg); }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(620px 360px at 86% -20%, rgba(90,209,201,.3), transparent 60%),
    radial-gradient(520px 340px at 4% 120%, rgba(255,184,48,.28), transparent 58%),
    linear-gradient(180deg, #fffdf8, var(--bg));
  padding: 66px 0 58px;
  border-bottom: 1px solid var(--line);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { margin-bottom: 10px; }
.page-banner p { max-width: 620px; color: var(--ink-soft); margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--accent-dark); }
.breadcrumb span { margin: 0 6px; }
.page-banner .pb-sticker-1 { top: 24px; right: 10%; width: 60px; height: 60px; transform: rotate(-8deg); }
.page-banner .pb-sticker-2 { bottom: 18px; right: 22%; width: 54px; height: 54px; transform: rotate(10deg); }

/* ---------------------------------------------------------------------
   SERVICES PAGE
   --------------------------------------------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-block .s-icon {
  width: 70px; height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,93,162,.16), rgba(90,209,201,.22));
  display: grid; place-items: center;
  font-size: 2rem;
  transform: rotate(-5deg);
}
.service-block h3 { margin-bottom: 8px; }
.service-block p { margin-bottom: 0; }
.service-block .price-tag {
  font-family: var(--font-head); font-weight: 700; color: var(--accent-dark);
  font-size: .95rem; margin-top: 12px; display: inline-block;
}
.deliverables { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.deliverables li {
  font-size: .85rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--accent-dark);
  background: rgba(255,93,162,.1);
  padding: 6px 13px;
  border-radius: 999px;
}

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.step .num {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  display: grid; place-items: center;
  margin-bottom: 16px;
  transform: rotate(-4deg);
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .95rem; }

/* Pricing cards */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.price-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--accent); position: relative; }
.price-card.featured::before {
  content: "Most loved";
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .74rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
}
.price-card .tier { font-family: var(--font-head); font-weight: 700; color: var(--accent-dark); text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; }
.price-card .amount { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--ink); line-height: 1; margin: 12px 0 4px; }
.price-card .amount small { font-size: .9rem; color: var(--muted); font-weight: 600; }
.price-card .price-feats { margin: 20px 0 24px; }
.price-card .price-feats li { padding: 7px 0; font-size: .95rem; border-bottom: 1px dashed var(--line); }
.price-card .price-feats li::before { content: "✦ "; color: var(--accent); }
.price-card .btn { margin-top: auto; justify-content: center; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--accent); transition: transform var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 22px; margin: 0; color: var(--ink-soft); }

/* ---------------------------------------------------------------------
   ABOUT — skills, timeline, fun facts
   --------------------------------------------------------------------- */
.skill-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.skill-chips span {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  color: var(--ink); background: var(--surface);
  border: 1.5px solid var(--line);
  padding: 9px 18px; border-radius: 999px;
}
.skill-chips span:hover { border-color: var(--accent3); }

.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 36px; }
.timeline::before {
  content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent3));
  border-radius: 999px;
}
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -34px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(255,93,162,.25);
}
.tl-item .tl-year { font-family: var(--font-head); font-weight: 700; color: var(--accent-dark); font-size: .9rem; }
.tl-item h3 { margin: 4px 0 6px; font-size: 1.2rem; }
.tl-item p { margin: 0; color: var(--ink-soft); }

.fun-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.fun-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 22px; text-align: center;
  box-shadow: var(--shadow); transition: transform var(--ease);
}
.fun-card:hover { transform: translateY(-5px) rotate(-1.5deg); }
.fun-card .fun-emoji { font-size: 2.4rem; display: block; margin-bottom: 10px; }
.fun-card strong { font-family: var(--font-head); display: block; color: var(--ink); font-size: 1.05rem; margin-bottom: 2px; }
.fun-card span { font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  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 4px rgba(255,93,162,.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #d6336c; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d6336c; }
.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: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(90,209,201,.16);
  border: 1px solid var(--accent3);
  color: #1f8a82;
  font-weight: 600;
}
.form-status.show { display: block; }

.info-card {
  background: linear-gradient(160deg, rgba(255,184,48,.12), rgba(255,93,162,.1));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 22px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 14px; background: #fff;
  display: grid; place-items: center; font-size: 1.3rem;
  box-shadow: var(--shadow);
}
.info-row b { font-family: var(--font-head); color: var(--ink); display: block; }
.info-row span { font-size: .94rem; }

.social-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.social-card h3 { margin-bottom: 16px; }
.social-links { display: flex; flex-wrap: wrap; gap: 12px; }
.social-links a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  color: var(--ink); background: var(--bg);
  border: 1.5px solid var(--line);
  padding: 10px 16px; border-radius: 999px;
  transition: all var(--ease);
}
.social-links a:hover { border-color: var(--accent); color: var(--accent-dark); transform: translateY(-2px); }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.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,.7); max-width: 320px; }
.footer-col h4 {
  color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a { display: block; color: rgba(255,255,255,.72); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--accent2); }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  font-size: 1rem;
  transition: background var(--ease), transform var(--ease);
}
.social a:hover { background: var(--accent); transform: translateY(-3px) rotate(-6deg); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.75); }
.footer-bottom a:hover { color: var(--accent2); }

/* ---------------------------------------------------------------------
   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) {
  * { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .fun-grid { 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: 44px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

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

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    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: 12px 16px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split-media { order: 0; }
  .service-block { grid-template-columns: 1fr; }
  .service-block .s-icon { width: 60px; height: 60px; }
  .stats-grid, .steps { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 46px 26px; }
  .timeline { padding-left: 30px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid, .steps, .fun-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 22px; }
}

@media (max-width: 360px) {
  body { font-size: 16px; }
  .stats-grid, .steps, .fun-grid { grid-template-columns: 1fr; }
  .btn { padding: 13px 22px; }
}
