/* ===== DESIGN TOKENS (from logo: pure B/W + premium amber accent) ===== */
:root {
  --black: #0a0a0a;
  --ink: #131316;
  --ink-2: #27272a;
  --ink-3: #3f3f46;
  --muted: #71717a;
  --muted-2: #a1a1aa;
  --surface: #ffffff;
  --surface-2: #fafaf9;
  --surface-3: #f5f5f4;
  --border: #e7e5e4;
  --border-dark: rgba(255, 255, 255, 0.1);
  --accent: #d4a437;
  --accent-dark: #b88825;
  --accent-soft: #fdf6e3;
  --success: #16a34a;
  --star: #f59e0b;
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.04);
  --shadow-md: 0 4px 24px rgba(10, 10, 10, 0.06);
  --shadow-lg: 0 20px 60px rgba(10, 10, 10, 0.12);
  --shadow-cta: 0 10px 30px rgba(212, 164, 55, 0.35);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; color: var(--black); }
h1 { font-size: clamp(2.25rem, 5vw, 4.25rem); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.85rem, 3.4vw, 3rem); }
h3 { font-size: 1.25rem; }
p { color: var(--ink-2); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s;
  white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: var(--accent); color: var(--black);
  box-shadow: var(--shadow-cta);
  font-weight: 700;
}
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: var(--ink); transform: translateY(-2px); }
.btn-ghost-light {
  background: rgba(255, 255, 255, 0.1); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.18); }
.btn-outline {
  background: transparent; color: var(--black);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--black); transform: translateY(-2px); }

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; color: var(--black); font-size: 17px; letter-spacing: -0.01em;
}
.logo-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--black); overflow: hidden;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  flex: none;
}
.logo-mark img { width: 32px; height: 32px; object-fit: cover; object-position: center 35%; }
.logo-txt { display: flex; flex-direction: column; line-height: 1.1; }
.logo-txt small { font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: 0.02em; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--ink-2); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--black); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--black); font-weight: 700; font-size: 15px;
  transition: color .2s;
}
.nav-phone:hover { color: var(--accent-dark); }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border); }
.nav-toggle svg { width: 22px; height: 22px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.65) 45%, rgba(10, 10, 10, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.4) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 80px 0;
  width: 100%;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px; font-size: 13px; font-weight: 600; color: #fff;
  margin-bottom: 24px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(212, 164, 55, 0.2); }

.hero h1 { margin-bottom: 22px; color: #fff; max-width: 680px; }
.hero h1 .accent { color: var(--accent); }
.hero .lead { font-size: 1.15rem; color: rgba(255, 255, 255, 0.85); max-width: 540px; margin-bottom: 36px; font-weight: 400; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.92); font-size: 14px; font-weight: 500; }
.hero-trust-item svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* Hero visual side */
.hero-side { position: relative; display: grid; place-items: end; }
.hero-stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 340px;
  color: #fff;
}
.hero-stat-row { display: flex; gap: 24px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.hero-stat-row .item b { display: block; font-family: 'DM Serif Display', serif; font-size: 2.25rem; font-weight: 400; color: var(--accent); line-height: 1; letter-spacing: -0.02em; }
.hero-stat-row .item span { font-size: 12px; color: rgba(255,255,255,0.7); display: block; margin-top: 6px; }
.hero-stat-reviews { display: flex; align-items: center; gap: 12px; }
.hero-stars { display: flex; gap: 2px; color: var(--star); }
.hero-stars svg { width: 18px; height: 18px; }
.hero-stat-reviews div b { display: block; font-size: 14px; color: #fff; font-weight: 700; }
.hero-stat-reviews div span { font-size: 12px; color: rgba(255,255,255,0.7); }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--black);
  color: #fff;
  padding: 28px 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .t-icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 12px;
  background: rgba(212, 164, 55, 0.15); color: var(--accent);
  display: grid; place-items: center;
}
.trust-item .t-icon svg { width: 22px; height: 22px; }
.trust-item .t-txt b { display: block; font-weight: 700; font-size: 15px; color: #fff; }
.trust-item .t-txt span { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ===== SECTIONS ===== */
section.block { padding: 110px 0; }
.section-head { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: var(--accent-dark); text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.section-head h2 { margin-bottom: 14px; color: var(--black); }
.section-head p { font-size: 1.05rem; color: var(--muted); }

/* ===== SERVICES ===== */
.services { background: var(--surface-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.services-grid .srv:first-child { grid-column: span 2; grid-row: span 2; }
.srv {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.srv:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.srv-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-3); }
.srv:first-child .srv-photo { aspect-ratio: 16/10; }
.srv-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.srv:hover .srv-photo img { transform: scale(1.06); }
.srv-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.srv-body .ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent-dark);
  display: grid; place-items: center; margin-bottom: 6px;
}
.srv-body .ic svg { width: 22px; height: 22px; }
.srv-body h3 { color: var(--black); font-size: 1.15rem; }
.srv-body p { font-size: 0.95rem; color: var(--muted); flex: 1; }
.srv-body .arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--black); font-weight: 600; font-size: 14px; margin-top: 8px; }
.srv-body .arrow svg { width: 14px; height: 14px; transition: transform .22s var(--ease); }
.srv:hover .srv-body .arrow svg { transform: translateX(4px); }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1040px; margin: 0 auto;
}
.price-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 38px 30px;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: var(--black); color: #fff; border-color: transparent;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--black); font-size: 11px;
  font-weight: 800; letter-spacing: 0.14em; padding: 7px 16px;
  border-radius: 999px; text-transform: uppercase;
}
.price-card .pname { font-size: 14px; font-weight: 700; color: var(--muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.1em; }
.price-card.featured .pname { color: var(--accent); }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 10px; }
.price-amount b { font-size: 3.25rem; font-weight: 900; letter-spacing: -0.04em; color: var(--black); }
.price-card.featured .price-amount b { color: #fff; }
.price-amount span { font-size: 1rem; color: var(--muted); font-weight: 500; }
.price-card.featured .price-amount span { color: rgba(255,255,255,0.6); }
.price-desc { color: var(--muted); margin-bottom: 28px; min-height: 44px; font-size: 14px; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.7); }
.price-feats { list-style: none; margin-bottom: 28px; flex: 1; }
.price-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 14px; color: var(--ink-2);
}
.price-card.featured .price-feats li { color: rgba(255,255,255,0.88); }
.price-feats svg {
  flex: none; width: 18px; height: 18px; margin-top: 2px;
  color: var(--success);
}
.price-card.featured .price-feats svg { color: var(--accent); }

.price-extras {
  margin-top: 40px; max-width: 820px; margin-left: auto; margin-right: auto;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px; display: flex; gap: 40px; justify-content: space-around;
  flex-wrap: wrap;
}
.extra-item { text-align: center; }
.extra-item b { display: block; color: var(--black); font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; }
.extra-item span { color: var(--muted); font-size: 13px; display: block; margin-top: 4px; }

.section-cta { text-align: center; margin-top: 48px; }
.section-cta .btn { min-width: 200px; }

/* ===== PACKING OPTIONS ===== */
.packing { background: var(--black); color: #fff; position: relative; overflow: hidden; }
.packing .section-head h2 { color: #fff; }
.packing .section-head p { color: rgba(255,255,255,0.65); }
.packing .section-tag { color: var(--accent); }

.pack-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 60px; align-items: stretch; }
.pack-hero-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.pack-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.pack-hero-copy {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  display: flex; flex-direction: column; justify-content: center;
}
.pack-hero-copy h3 { color: #fff; font-size: 1.75rem; margin-bottom: 14px; letter-spacing: -0.02em; }
.pack-hero-copy p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7; }

.pack-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
.pack-tier {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  transition: transform .3s var(--ease), background .3s;
}
.pack-tier:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); }
.pack-tier.featured {
  background: linear-gradient(180deg, rgba(212, 164, 55, 0.18) 0%, rgba(212, 164, 55, 0.05) 100%);
  border-color: rgba(212, 164, 55, 0.4);
}
.pack-tier.featured::after {
  content: 'MOST POPULAR';
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--black);
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  padding: 6px 14px; border-radius: 999px;
}
.pack-tier h4 { color: #fff; font-size: 1.35rem; margin-bottom: 6px; letter-spacing: -0.02em; }
.pack-tier .tier-price { font-family: 'DM Serif Display', serif; font-size: 2.5rem; color: var(--accent); letter-spacing: -0.02em; line-height: 1; margin: 10px 0 14px; font-weight: 400; }
.pack-tier p { color: rgba(255,255,255,0.65); font-size: 14px; }

.pack-subgrid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
.pack-simple {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
}
.pack-simple h4 { color: #fff; font-size: 1.25rem; margin-bottom: 16px; }
.pack-simple-items { display: flex; flex-wrap: wrap; gap: 12px; }
.pack-item-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px; color: rgba(255,255,255,0.88);
  display: inline-flex; align-items: center; gap: 8px;
}
.pack-item-pill b { color: var(--accent); font-weight: 700; }

.pack-kitchen {
  background: rgba(212, 164, 55, 0.08);
  border: 1px solid rgba(212, 164, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  display: flex; flex-direction: column; justify-content: center;
}
.pack-kitchen h4 { color: #fff; font-size: 1.15rem; margin-bottom: 4px; }
.pack-kitchen .tier-price { font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--accent); line-height: 1; margin: 8px 0; font-weight: 400; }
.pack-kitchen p { color: rgba(255,255,255,0.7); font-size: 13px; }

.pack-trust {
  margin-top: 44px;
  text-align: center;
  padding: 24px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.pack-trust svg { width: 20px; height: 20px; color: var(--accent); flex: none; }

/* ===== WHY ===== */
.why { background: var(--surface-2); }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.why-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 22px;
  text-align: center;
  transition: transform .3s var(--ease);
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-item .ic {
  width: 54px; height: 54px; border-radius: 14px;
  margin: 0 auto 16px;
  background: var(--black); color: var(--accent);
  display: grid; place-items: center;
}
.why-item .ic svg { width: 26px; height: 26px; }
.why-item h4 { font-size: 1rem; color: var(--black); margin-bottom: 8px; }
.why-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.stars { display: flex; gap: 2px; color: var(--star); }
.stars svg { width: 18px; height: 18px; }
.review p { color: var(--ink-2); font-size: 15px; line-height: 1.65; flex: 1; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.reviewer .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--black);
  color: var(--accent); display: grid; place-items: center;
  font-weight: 800; font-size: 15px; letter-spacing: 0.02em;
}
.reviewer b { display: block; color: var(--black); font-size: 14px; font-weight: 700; }
.reviewer span { color: var(--muted); font-size: 12px; }

/* ===== GALLERY ===== */
.gallery { background: var(--surface-2); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 16px; grid-auto-rows: 200px;
}
.g-item {
  border-radius: var(--radius);
  overflow: hidden; position: relative;
  background: var(--surface-3);
  transition: transform .3s var(--ease);
  cursor: pointer;
}
.g-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.g-item:hover img { transform: scale(1.08); }
.g-item.big { grid-column: span 3; grid-row: span 2; }
.g-item.med { grid-column: span 3; }
.g-item.sm { grid-column: span 2; }
.g-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px; color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 80%);
  font-weight: 600; font-size: 14px;
  opacity: 0; transition: opacity .3s;
}
.g-item:hover .cap { opacity: 1; }

/* ===== HOW IT WORKS ===== */
.how { background: var(--black); color: #fff; position: relative; overflow: hidden; }
.how::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 90% 10%, rgba(212, 164, 55, 0.12), transparent 60%),
    radial-gradient(600px 400px at 10% 100%, rgba(212, 164, 55, 0.06), transparent 60%);
  pointer-events: none;
}
.how .section-head h2 { color: #fff; }
.how .section-head p { color: rgba(255,255,255,0.65); }
.how .section-tag { color: var(--accent); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 40px 30px;
  text-align: center;
  transition: transform .3s var(--ease), background .3s;
  position: relative;
}
.step:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); }
.step-num {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--accent); color: var(--black);
  display: grid; place-items: center;
  font-weight: 900; font-size: 22px;
  margin: 0 auto 20px;
}
.step h3 { color: #fff; margin-bottom: 10px; font-size: 1.25rem; }
.step p { color: rgba(255,255,255,0.7); font-size: 14px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: stretch; }
.contact-copy .section-tag { color: var(--accent-dark); }
.contact-copy h2 { margin-bottom: 20px; color: var(--black); }
.contact-copy .lead { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; }
.contact-list { display: flex; flex-direction: column; gap: 20px; }
.c-item { display: flex; gap: 18px; align-items: flex-start; }
.c-item .ic {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  background: var(--black); color: var(--accent);
  display: grid; place-items: center;
}
.c-item .ic svg { width: 20px; height: 20px; }
.c-item .txt b { display: block; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 4px; }
.c-item .txt a, .c-item .txt span { color: var(--black); font-size: 16px; font-weight: 600; line-height: 1.4; display: block; }
.c-item .txt a:hover { color: var(--accent-dark); }
.c-item .txt a.phone-big { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }

.form {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md);
}
.form h3 { margin-bottom: 8px; color: var(--black); font-size: 1.5rem; }
.form .form-sub { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font: inherit;
  background: var(--surface-2); color: var(--ink);
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); background: #fff;
}
.field textarea { resize: vertical; min-height: 90px; font-family: inherit; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form .btn { width: 100%; padding: 17px; font-size: 16px; margin-top: 10px; }
.form-note {
  text-align: center; color: var(--muted); font-size: 13px; margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.form-note svg { width: 14px; height: 14px; color: var(--success); }

/* ===== BIG CTA BAND ===== */
.cta-band {
  padding: 80px 0;
  background:
    linear-gradient(rgba(10, 10, 10, 0.86), rgba(10, 10, 10, 0.86)),
    url('../images/photo_2026-04-21_14-29-52.jpg') center/cover;
  color: #fff; text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 580px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: var(--black); color: rgba(255,255,255,0.65);
  padding: 70px 0 30px;
}
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.foot-brand .logo { color: #fff; margin-bottom: 20px; }
.foot-brand .logo-txt { color: #fff; }
.foot-brand .logo-txt small { color: rgba(255,255,255,0.55); }
.foot-brand p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 22px; max-width: 320px; line-height: 1.7; }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center; color: #fff;
  transition: background .2s, transform .2s, color .2s;
}
.foot-social a:hover { background: var(--accent); color: var(--black); transform: translateY(-2px); border-color: transparent; }
.foot-social svg { width: 16px; height: 16px; }
footer h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; font-weight: 700; }
.foot-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-list a, .foot-list span { color: rgba(255,255,255,0.6); font-size: 14px; transition: color .2s; }
.foot-list a:hover { color: var(--accent); }
.foot-bottom {
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.45); font-size: 13px; gap: 20px; flex-wrap: wrap;
}

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== MOBILE ===== */
@media (max-width: 960px) {
  section.block { padding: 72px 0; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero-inner { padding: 20px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-side { justify-content: center; display: flex; }
  .hero-stat-card { max-width: 460px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .srv:first-child { grid-column: span 2; grid-row: auto; }
  .pricing-grid, .pack-tiers, .steps, .contact-grid, .reviews-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pack-hero-grid { grid-template-columns: 1fr; }
  .pack-subgrid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-item.big, .g-item.med, .g-item.sm { grid-column: span 1; grid-row: span 1; }
  .g-item.big { grid-column: span 2; grid-row: span 2; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .hero-actions .btn { flex: 1; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .srv:first-child { grid-column: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .nav-phone { display: none; }
  .form { padding: 28px 22px; }
  .logo-txt small { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item.big { grid-column: auto; grid-row: auto; }
}
