/* =====================================================================
   INK HOUSE — Tattoo Studio Website Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   REBRAND TIP: Change the studio look by editing the CSS variables in
   :root below. Swap --accent for your primary color, adjust --bg /
   --surface / --ink to match, and update --font-head / --font-body plus
   the Google Fonts <link> in each HTML file. Everything else cascades.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:       #0b0b0d;            /* near-black page background          */
  --ink:      #f0eeea;            /* off-white headings & text           */
  --accent:   #c8102e;            /* crimson — primary highlight/links   */
  --accent-2: #d4a017;            /* gold — secondary accent             */
  --muted:    #8a8780;            /* muted secondary text                */
  --surface:  #141416;            /* card / panel surface                */
  --line:     rgba(255,255,255,.08); /* hairline borders / dividers     */
  --accent-dk:#9c0c24;            /* darker crimson for hovers           */

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

  /* --- Shape & motion --- */
  --radius:    14px;
  --radius-sm: 9px;
  --shadow:    0 14px 40px rgba(0, 0, 0, .45);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, .6);
  --ease:      .4s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw: 1200px;
  --gutter: 26px;
}

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

html { scroll-behavior: smooth; }

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

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

h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

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

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

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: 100px 0; }
.section--soft { background: var(--surface); }
.section--tight { padding: 70px 0; }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid var(--line);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.lead { font-size: 1.14rem; color: var(--ink); }

.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 4px;
  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: 0 10px 28px rgba(200, 16, 46, .35);
}
.btn-primary:hover { background: var(--accent-dk); color: #fff; box-shadow: 0 14px 34px rgba(200, 16, 46, .5); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent-2); color: var(--accent-2); }

.btn-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.btn-light:hover { background: #fff; color: var(--bg); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(200, 16, 46, .4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .98rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 15px;
  border-radius: 6px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(255,255,255,.05); 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: 46px; height: 46px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 9px;
  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) — full, dark, edgy
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 88% -10%, rgba(200,16,46,.22), transparent 60%),
    radial-gradient(700px 600px at -5% 110%, rgba(212,160,23,.12), transparent 55%),
    var(--bg);
  padding: 120px 0 130px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 span { color: var(--accent); }
.hero .lead { max-width: 540px; margin-bottom: 34px; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--accent-2);
  display: block;
  line-height: 1;
}
.hero-meta div span { font-size: .88rem; color: var(--muted); letter-spacing: .04em; }

/* Hero visual — pure-CSS gradient ink "flash" panel */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 25%, rgba(212,160,23,.35), transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(200,16,46,.55), transparent 50%),
    linear-gradient(160deg, #1c1c20, #050506);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero-visual .hv-ring {
  position: absolute;
  width: 62%; aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(240,238,234,.18);
  box-shadow: 0 0 0 14px rgba(240,238,234,.04), inset 0 0 60px rgba(200,16,46,.4);
}
.hero-visual .hv-ring::after {
  content: "";
  position: absolute; inset: 16%;
  border-radius: 50%;
  border: 1px dashed rgba(212,160,23,.4);
}
.hero-visual .hv-glyph {
  position: relative;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--ink);
  text-shadow: 0 8px 30px rgba(0,0,0,.6);
}
.hero-visual .hv-tag {
  position: absolute;
  bottom: 22px;
  font-family: var(--font-head);
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------------------------------------------------------------------
   STYLES STRIP
   --------------------------------------------------------------------- */
.styles-strip { padding: 44px 0; border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); background: var(--surface); }
.styles-strip p { text-align: center; font-size: .82rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 44px;
}
.logo-strip span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color var(--ease);
}
.logo-strip span:hover { color: var(--accent); }

/* ---------------------------------------------------------------------
   CARDS / 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); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(200,16,46,.4); }

.card .icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(200,16,46,.12);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.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: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
}
.feature h3 { font-size: 1.12rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; color: var(--muted); }

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: 18px;
  min-height: 400px;
  background:
    radial-gradient(circle at 70% 30%, rgba(200,16,46,.5), transparent 55%),
    radial-gradient(circle at 25% 80%, rgba(212,160,23,.3), transparent 50%),
    linear-gradient(150deg, #1c1c20, #060607);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--ink);
  padding: 36px;
}

/* ---------------------------------------------------------------------
   STATS BAND
   --------------------------------------------------------------------- */
.stats-band {
  background:
    radial-gradient(700px 400px at 80% 0%, rgba(200,16,46,.18), transparent 60%),
    var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.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.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  display: block;
  line-height: 1;
  color: var(--accent-2);
}
.stat span { color: var(--muted); font-size: .92rem; letter-spacing: .04em; }

/* ---------------------------------------------------------------------
   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: 30px 26px;
  position: relative;
}
.step .num {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .95rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
}
.quote-card .stars { color: var(--accent-2); margin-bottom: 16px; letter-spacing: 3px; }
.quote-card blockquote {
  margin: 0 0 24px;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.55;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); letter-spacing: .03em; }
.quote-author span { font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(600px 400px at 88% 12%, rgba(200,16,46,.4), transparent 60%),
    radial-gradient(500px 400px at 10% 90%, rgba(212,160,23,.18), transparent 55%),
    linear-gradient(150deg, #1c1c20, #060607);
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 22px;
  padding: 66px 50px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(240,238,234,.78); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 400px at 85% -30%, rgba(200,16,46,.25), transparent 60%),
    var(--surface);
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 12px; }
.page-banner p { max-width: 640px; color: var(--muted); margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--accent-2); }
.breadcrumb span { margin: 0 8px; }

/* ---------------------------------------------------------------------
   GALLERY — filterable tattoo tiles
   --------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-bar button {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-bar button:hover { color: var(--ink); border-color: var(--accent-2); }
.filter-bar button.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ink-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: transform var(--ease), box-shadow var(--ease);
}
.ink-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ink-tile .glyph {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 3rem;
  color: rgba(240,238,234,.9);
  text-shadow: 0 6px 24px rgba(0,0,0,.55);
}
.ink-tile .tile-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(0,0,0,.7), transparent);
}
.ink-tile .tile-meta b { display: block; font-family: var(--font-head); letter-spacing: .04em; color: #fff; }
.ink-tile .tile-meta span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-2); }
.ink-tile.is-hidden { display: none; }

/* Gradient tile variants (CSS-only "tattoo" visuals) */
.ink-g1 { background: radial-gradient(circle at 30% 25%, rgba(212,160,23,.4), transparent 50%), linear-gradient(150deg, #2a1416, #060607); }
.ink-g2 { background: radial-gradient(circle at 70% 70%, rgba(200,16,46,.6), transparent 55%), linear-gradient(150deg, #16161a, #050506); }
.ink-g3 { background: linear-gradient(150deg, #1c1c20, #38383f); }
.ink-g4 { background: radial-gradient(circle at 50% 30%, rgba(240,238,234,.14), transparent 55%), linear-gradient(150deg, #101013, #020203); }
.ink-g5 { background: radial-gradient(circle at 25% 75%, rgba(212,160,23,.5), transparent 50%), linear-gradient(150deg, #2a2410, #08070a); }
.ink-g6 { background: radial-gradient(circle at 75% 25%, rgba(200,16,46,.45), transparent 55%), linear-gradient(150deg, #20141a, #060306); }
.ink-g7 { background: linear-gradient(150deg, #c8102e, #5c0814); }
.ink-g8 { background: radial-gradient(circle at 40% 60%, rgba(240,238,234,.2), transparent 50%), linear-gradient(150deg, #1a1a1e, #060607); }
.ink-g9 { background: radial-gradient(circle at 60% 40%, rgba(212,160,23,.35), transparent 50%), linear-gradient(150deg, #241a2a, #070509); }
.ink-g10 { background: linear-gradient(150deg, #2a2722, #56504a); }
.ink-g11 { background: radial-gradient(circle at 30% 70%, rgba(200,16,46,.5), transparent 55%), linear-gradient(150deg, #18181c, #040405); }
.ink-g12 { background: radial-gradient(circle at 70% 30%, rgba(212,160,23,.4), transparent 50%), radial-gradient(circle at 20% 80%, rgba(200,16,46,.35), transparent 50%), linear-gradient(150deg, #16161a, #050506); }

/* ---------------------------------------------------------------------
   ARTISTS — cards with gradient portraits
   --------------------------------------------------------------------- */
.artist-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.artist-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(200,16,46,.4); }
.artist-portrait {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  position: relative;
}
.artist-portrait .initials {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 3.2rem;
  color: rgba(240,238,234,.92);
  text-shadow: 0 6px 20px rgba(0,0,0,.5);
}
.artist-body { padding: 24px 26px 28px; }
.artist-body h3 { margin-bottom: 2px; }
.artist-body .role { color: var(--accent); font-family: var(--font-head); font-weight: 500; font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.artist-body p { color: var(--muted); font-size: .95rem; margin-bottom: 14px; }
.artist-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.artist-tags li {
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid var(--line);
  padding: 4px 11px;
  border-radius: 999px;
}

/* ---------------------------------------------------------------------
   CONTACT / BOOKING
   --------------------------------------------------------------------- */
.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: 38px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.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: #0d0d10;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #5d5a54; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(200,16,46,.18);
}
.field select { appearance: none; }
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #ff6b81; font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff6b81; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 8px; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(212,160,23,.12);
  border: 1px solid rgba(212,160,23,.4);
  color: var(--accent-2);
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 22px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 11px; background: rgba(200,16,46,.12);
  border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1.3rem;
}
.info-row b { font-family: var(--font-head); color: var(--ink); display: block; letter-spacing: .04em; }
.info-row span { font-size: .94rem; color: var(--muted); }
.info-row a { color: var(--accent-2); }

/* Map placeholder (pure CSS, no external image) */
.map-placeholder {
  border-radius: var(--radius);
  min-height: 250px;
  background:
    linear-gradient(rgba(200,16,46,.05), rgba(200,16,46,.05)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 42px),
    var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
}
.map-placeholder .pin { font-size: 2.4rem; }
.map-placeholder b { font-family: var(--font-head); color: var(--ink); display: block; letter-spacing: .04em; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: #050506;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 46px;
}
.site-footer .brand { color: var(--ink); margin-bottom: 16px; }
.site-footer .brand:hover { color: var(--ink); }
.footer-about p { font-size: .95rem; color: var(--muted); max-width: 320px; }
.footer-col h4 {
  color: var(--ink); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a { display: block; color: var(--muted); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--ink); }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1rem;
  color: var(--ink);
}
.social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--ink); }

/* ---------------------------------------------------------------------
   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; }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 980px) {
  .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: 50px; }
  .hero { padding: 80px 0 90px; }
  .hero-visual { max-width: 420px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(11,11,13,.98);
    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 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; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split-media { order: 0; }
  .stats-grid, .steps { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 48px 28px; }
}

@media (max-width: 460px) {
  .stats-grid, .steps, .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
