/* =====================================================================
   APERTURE — Premium Photography Studio Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   REBRAND TIP: Change the look by editing the CSS variables in :root
   below. Swap --accent for your highlight color, adjust --bg / --surface
   for the dark canvas, and update --font-head / --font-body plus the
   Google Fonts <link> in each HTML file. Everything else cascades.
   The "photo" tiles are pure CSS gradients defined under PHOTO TILES.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:        #0d0d0f;   /* near-black page background               */
  --surface:   #18181b;   /* raised cards / panels                    */
  --surface-2: #1f1f23;   /* alt surface for contrast                 */
  --ink:       #f4f4f5;   /* primary light text                       */
  --muted:     #9a9aa2;   /* muted / secondary text                   */
  --accent:    #e8b25a;   /* warm amber accent                        */
  --accent-2:  #f3cd8b;   /* lighter amber for gradients              */
  --line:      #2a2a30;   /* borders / dividers                       */

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

  /* --- Shape & motion --- */
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 12px 30px rgba(0, 0, 0, .45);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, .6);
  --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(--muted);
  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.12;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
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; }

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

.section { padding: 96px 0; }
.section--soft { background: var(--surface); }
.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: .76rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

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

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .96rem;
  letter-spacing: .01em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px 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: #1a1408;
  box-shadow: 0 10px 26px rgba(232, 178, 90, .28);
}
.btn-primary:hover { background: var(--accent-2); color: #1a1408; box-shadow: 0 14px 32px rgba(232, 178, 90, .4); }

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

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

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 15, .82);
  backdrop-filter: blur(14px);
  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: 600;
  font-size: 1.28rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(232, 178, 90, .35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: .95rem;
  color: var(--muted);
  padding: 8px 15px;
  border-radius: 999px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: var(--surface-2); color: var(--ink); }
.nav-links a.active { color: var(--accent); }

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

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  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); }

/* ---------------------------------------------------------------------
   PHOTO TILES — pure-CSS gradient "photographs" (no image files).
   Hues are varied so each tile reads as a distinct photo.
   --------------------------------------------------------------------- */
.photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #3a3a44, #1c1c22);
  min-height: 220px;
}
.photo::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,.14), transparent 55%);
  pointer-events: none;
}
/* Distinct hue treatments */
.ph-1  { background: linear-gradient(150deg, #b06a3a 0%, #5a2f1e 60%, #20140d 100%); }
.ph-2  { background: linear-gradient(140deg, #2b4a6b 0%, #16263b 55%, #0c1420 100%); }
.ph-3  { background: linear-gradient(135deg, #7a5c8a 0%, #3c2b50 55%, #1a1226 100%); }
.ph-4  { background: linear-gradient(160deg, #3f6b54 0%, #1f3b2e 55%, #0e1c16 100%); }
.ph-5  { background: linear-gradient(135deg, #c08a4a 0%, #7a4f24 55%, #2e1d0e 100%); }
.ph-6  { background: linear-gradient(150deg, #6b4a4a 0%, #3a2424 55%, #1a1010 100%); }
.ph-7  { background: linear-gradient(140deg, #4a5b6b 0%, #2a3742 55%, #131a20 100%); }
.ph-8  { background: linear-gradient(135deg, #8a6a4a 0%, #523c26 55%, #221810 100%); }
.ph-9  { background: linear-gradient(155deg, #5a4a7a 0%, #2e2447 55%, #15101f 100%); }
.ph-10 { background: linear-gradient(135deg, #b8884a 0%, #6e4c22 55%, #2a1c0c 100%); }
.ph-11 { background: linear-gradient(145deg, #3a6b6b 0%, #1f3a3a 55%, #0e1c1c 100%); }
.ph-12 { background: linear-gradient(150deg, #8a4a5a 0%, #4f2632 55%, #20101a 100%); }

/* caption overlay for gallery / featured tiles */
.photo .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 20px 18px;
  background: linear-gradient(0deg, rgba(0,0,0,.7), transparent);
  z-index: 1;
}
.photo .cap .tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.photo .cap b {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  color: #fff;
  font-size: 1.02rem;
}

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 88% -10%, rgba(232,178,90,.14), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(232,178,90,.06), transparent 55%),
    var(--bg);
  padding: 96px 0 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 span { color: var(--accent); }
.hero .lead { max-width: 520px; margin-bottom: 30px; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta {
  display: flex;
  gap: 38px;
  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: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* Hero visual — stacked CSS "photo" collage */
.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 460px;
}
.hero-visual .photo { min-height: 0; box-shadow: var(--shadow); }
.hero-visual .hv-big { grid-row: span 2; }

/* ---------------------------------------------------------------------
   MARQUEE / STAT STRIP
   --------------------------------------------------------------------- */
.strip { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px 56px;
  text-align: center;
}
.strip-inner div strong {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--ink);
  display: block;
  line-height: 1.1;
}
.strip-inner div span { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  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(232,178,90,.4); }

.card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.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: 16px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .9rem;
}
.card-link span { transition: transform var(--ease); }
.card-link:hover span { transform: translateX(4px); }

/* Feature list (why us / approach) */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature .tick {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1408;
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--font-head);
}
.feature h3 { font-size: 1.1rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; color: var(--muted); }

/* Split section (photo block + content) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius);
  min-height: 400px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.split-media .badge {
  position: absolute;
  left: 22px; bottom: 22px;
  z-index: 1;
  background: rgba(13,13,15,.7);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
}
.split-media .badge strong { font-family: var(--font-head); color: var(--ink); display: block; font-size: 1.05rem; }
.split-media .badge span { font-size: .85rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   FEATURED GALLERY (home preview)
   --------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid .photo { min-height: 260px; }
.gallery-grid .span-2 { grid-column: span 2; }
.gallery-grid .photo:hover { transform: translateY(-4px); transition: transform var(--ease); }

/* ---------------------------------------------------------------------
   FILTER BAR (gallery page — visual only)
   --------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-bar button {
  font-family: var(--font-head);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.filter-bar button:hover { color: var(--ink); border-color: var(--accent); }
.filter-bar button.active { color: #1a1408; background: var(--accent); border-color: var(--accent); }

/* Masonry-ish gallery (gallery page) */
.masonry {
  columns: 3;
  column-gap: 18px;
}
.masonry .photo {
  width: 100%;
  margin-bottom: 18px;
  break-inside: avoid;
  display: block;
}
.masonry .tall  { min-height: 360px; }
.masonry .short { min-height: 240px; }
.masonry .photo:hover { transform: scale(1.01); transition: transform var(--ease); }

/* ---------------------------------------------------------------------
   STATS BAND
   --------------------------------------------------------------------- */
.stats-band {
  background:
    radial-gradient(600px 360px at 85% 10%, rgba(232,178,90,.12), 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.2rem, 4vw, 3rem);
  display: block;
  line-height: 1;
  color: var(--accent);
}
.stat span { color: var(--muted); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
}
.quote-card .stars { color: var(--accent); margin-bottom: 14px; letter-spacing: 3px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.1rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 400;
  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: #1a1408;
  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); }
.quote-author span { font-size: .86rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(600px 400px at 90% 10%, rgba(232,178,90,.18), transparent 60%),
    linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 24px;
  padding: 62px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: var(--ink); }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  background:
    radial-gradient(700px 400px at 85% -20%, rgba(232,178,90,.12), transparent 60%),
    var(--surface);
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 12px; }
.page-banner p { max-width: 620px; color: var(--muted); margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-head);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 8px; color: var(--line); }

/* ---------------------------------------------------------------------
   SERVICES PAGE — detailed blocks
   --------------------------------------------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.service-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(232,178,90,.35); }
.service-block .s-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1.9rem;
}
.service-block h3 { margin-bottom: 8px; }
.service-block p { color: var(--muted); }
.deliverables {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 16px;
}
.deliverables li {
  font-size: .82rem;
  font-family: var(--font-head);
  color: var(--accent);
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 6px 13px;
  border-radius: 999px;
}

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.step .num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1408;
  font-family: var(--font-head);
  font-weight: 700;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .95rem; color: var(--muted); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg); }
.price-card .plan { font-family: var(--font-head); letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; color: var(--accent); margin-bottom: 12px; }
.price-card .price { font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: var(--ink); line-height: 1; }
.price-card .price small { font-size: .9rem; font-weight: 400; color: var(--muted); }
.price-card .plan-sub { font-size: .92rem; color: var(--muted); margin: 8px 0 20px; }
.price-card .feat-list { margin: 0 0 26px; }
.price-card .feat-list li { padding: 7px 0; font-size: .94rem; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; border-bottom: 1px solid var(--line); }
.price-card .feat-list li::before { content: "\2713"; color: var(--accent); font-weight: 700; }
.price-card .btn { width: 100%; justify-content: center; margin-top: auto; }
.badge-pop { display: inline-block; font-family: var(--font-head); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: #1a1408; background: var(--accent); padding: 3px 10px; border-radius: 999px; margin-left: 8px; vertical-align: middle; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin-bottom: 14px;
}
.faq-item h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--ink); }
.faq-item h3::before { content: "\2014  "; color: var(--accent); }
.faq-item p { margin-bottom: 0; color: var(--muted); font-size: .96rem; }

/* ---------------------------------------------------------------------
   ABOUT — values + team
   --------------------------------------------------------------------- */
.team-card { text-align: center; }
.team-card .team-photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2rem;
  color: #1a1408;
}
.team-card .tp-1 { background: linear-gradient(135deg, #e8b25a, #b06a3a); }
.team-card .tp-2 { background: linear-gradient(135deg, #7a5c8a, #3c2b50); color:#fff; }
.team-card .tp-3 { background: linear-gradient(135deg, #3f6b54, #1f3b2e); color:#fff; }
.team-card .tp-4 { background: linear-gradient(135deg, #2b4a6b, #16263b); color:#fff; }
.team-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent); font-family: var(--font-head); font-size: .88rem; letter-spacing: .06em; margin-bottom: 10px; }
.team-card p { font-size: .92rem; color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   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;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 400;
  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: var(--surface-2);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #66666e; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232,178,90,.16);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #f38ba8; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #f38ba8; }
.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(232,178,90,.12);
  border: 1px solid var(--accent);
  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: 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: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 12px; background: var(--surface-2);
  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; }
.info-row span { font-size: .94rem; color: var(--muted); }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius);
  min-height: 240px;
  background:
    linear-gradient(rgba(232,178,90,.04), rgba(232,178,90,.04)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 42px),
    var(--surface-2);
  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 { color: var(--ink); font-family: var(--font-head); display: block; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.site-footer .brand { color: var(--ink); margin-bottom: 14px; }
.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: .78rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 16px;
}
.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: 16px; }
.social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1rem;
  color: var(--muted);
}
.social a:hover { background: var(--accent); color: #1a1408; border-color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  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: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 520px; height: 420px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .span-2 { grid-column: span 2; }
  .masonry { columns: 2; }
}

@media (max-width: 768px) {
  .section { padding: 68px 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 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: 32px; }
  .split--reverse .split-media { order: 0; }
  .service-block { grid-template-columns: 1fr; }
  .stats-grid, .steps { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .span-2 { grid-column: span 2; }
  .cta-band { padding: 44px 26px; }
}

@media (max-width: 360px) {
  .stats-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-grid .span-2 { grid-template-columns: 1fr; grid-column: auto; }
  .masonry { columns: 1; }
  .hero-visual { grid-template-columns: 1fr 1fr; height: 360px; }
}
