/* ==========================================================================
   LENS & LIGHT — Photography Studio Website
   Design: Dark cinematic + warm gold accent
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap");

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0c;
  --bg-2: #0f0f13;
  --surface: #16161c;
  --surface-2: #1c1c24;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f1e9;
  --muted: #a09c92;
  --gold: #c8a24a;
  --gold-2: #e8cd8a;
  --gold-dim: rgba(200, 162, 74, 0.14);
  --radius: 18px;
  --radius-sm: 10px;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: #141210; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2c2c35; border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- Utilities ---------- */
.container { width: min(1200px, 92%); margin-inline: auto; }

.section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }
.section--alt { background: var(--bg-2); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: 0.7; }
.section-head--center .eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: 0.7; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 600; line-height: 1.15; letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-lead { margin-top: 16px; color: var(--muted); font-size: 16px; font-weight: 300; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 34px; border-radius: 100px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s, color 0.35s, border-color 0.35s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 60%);
  color: #16130b;
  box-shadow: 0 10px 30px rgba(200, 162, 74, 0.28);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(200, 162, 74, 0.42); }

.btn-wa {
  background: linear-gradient(135deg, #2bb673, #128c4a 60%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(18, 140, 74, 0.35);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(18, 140, 74, 0.45); }

.form-note {
  display: flex; align-items: flex-start; gap: 8px;
  margin-top: 14px;
  font-size: 13px; color: var(--text-dim, #9a9aa2);
  line-height: 1.55;
}
.form-note svg { width: 15px; height: 15px; flex: 0 0 auto; margin-top: 2px; color: var(--gold-2); }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  transform: translateY(-3px); border-color: var(--gold);
  color: var(--gold-2); background: var(--gold-dim);
}

.btn-sm { padding: 12px 24px; font-size: 12.5px; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h); display: flex; align-items: center;
  transition: background 0.4s, box-shadow 0.4s, height 0.4s;
}
.header.is-scrolled {
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  height: 68px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-serif); font-size: 22px; font-weight: 600; letter-spacing: 0.02em;
}
.logo-mark {
  width: 40px; height: 40px; border: 1.5px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; color: var(--gold);
  font-family: var(--font-serif); font-size: 15px; font-weight: 600; font-style: italic;
  background: radial-gradient(circle at 30% 30%, rgba(200, 162, 74, 0.18), transparent 70%);
}
.logo span em { font-style: italic; color: var(--gold); }

.nav { display: flex; align-items: center; gap: 6px; }

.nav-link {
  position: relative; padding: 10px 16px;
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(244, 241, 233, 0.78); transition: color 0.3s;
}
.nav-link::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 14px; }

/* hide duplicate CTA inside nav on desktop, show only on mobile drawer */
.nav .btn { display: none; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 12px; position: relative; z-index: 110; }
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.3s, top 0.4s var(--ease); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #0b0b0e;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: saturate(0.92) contrast(1.04);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(10, 10, 12, 0.55) 0%, rgba(10, 10, 12, 0.35) 45%, rgba(10, 10, 12, 0.88) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(10, 10, 12, 0.5) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: calc(var(--header-h) + 40px) 0 130px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 26px;
  opacity: 0; animation: rise 0.9s var(--ease) 0.2s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ""; width: 44px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.hero-eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 600; line-height: 1.06; letter-spacing: -0.015em;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.55);
  opacity: 0; animation: rise 0.9s var(--ease) 0.38s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-2); }

.hero-sub {
  max-width: 620px; margin: 24px auto 0;
  font-size: clamp(15px, 1.6vw, 18px); font-weight: 300;
  color: rgba(244, 241, 233, 0.85);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  opacity: 0; animation: rise 0.9s var(--ease) 0.56s forwards;
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 38px;
  opacity: 0; animation: rise 0.9s var(--ease) 0.74s forwards;
}

.scroll-hint {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(244, 241, 233, 0.7); font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase;
  opacity: 0; animation: rise 0.9s var(--ease) 1s forwards;
}
.scroll-hint .mouse { width: 24px; height: 38px; border: 1.5px solid rgba(244, 241, 233, 0.55); border-radius: 14px; position: relative; }
.scroll-hint .mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; width: 3px; height: 8px;
  margin-left: -1.5px; border-radius: 3px; background: var(--gold-2);
  animation: wheel 1.8s var(--ease) infinite;
}
@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ---------- Stats bar ---------- */
.stats { position: relative; z-index: 5; margin-top: -60px; }

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background-color: var(--surface);
}
.stat { background: linear-gradient(180deg, #17171d, #121218); padding: 38px 24px; text-align: center; transition: background 0.4s; }
.stat:hover { background: linear-gradient(180deg, #1d1d26, #14141a); }

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 600; line-height: 1; color: var(--gold-2);
}
.stat-num .plus { color: var(--gold); }
.stat-label { margin-top: 10px; font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ---------- Services (home) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  position: relative;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 220px at 20% -10%, var(--gold-dim), transparent 60%);
  opacity: 0; transition: opacity 0.45s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 162, 74, 0.45);
  box-shadow: var(--shadow);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 62px; height: 62px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--gold-dim);
  border: 1px solid rgba(200, 162, 74, 0.35);
  color: var(--gold-2);
  margin-bottom: 26px;
  transition: transform 0.45s var(--ease), background 0.45s;
}
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.06); background: var(--gold); color: #16130b; }
.service-icon svg { width: 28px; height: 28px; }

.service-card h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 14.5px; font-weight: 300; }

.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  transition: gap 0.3s;
}
.service-link svg { width: 14px; height: 14px; }
.service-link:hover { gap: 14px; }

.section-cta-row { display: flex; justify-content: center; margin-top: 48px; }

/* ---------- Why choose us ---------- */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.why-media { position: relative; }
.why-media .img-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5; object-fit: cover; width: 100%;
}
.why-media .img-float {
  position: absolute; right: -8%; bottom: -12%;
  width: 52%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--bg-2);
  box-shadow: var(--shadow);
}
.why-badge {
  position: absolute; top: -22px; left: -22px;
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #16130b;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; font-family: var(--font-serif);
  box-shadow: 0 14px 34px rgba(200, 162, 74, 0.4);
  animation: floaty 5s ease-in-out infinite;
}
.why-badge strong { font-size: 30px; line-height: 1; font-weight: 700; }
.why-badge span { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.why-list { margin-top: 34px; display: grid; gap: 26px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-item .tick {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid rgba(200, 162, 74, 0.4);
  display: grid; place-items: center; color: var(--gold-2);
  margin-top: 3px;
}
.why-item .tick svg { width: 15px; height: 15px; }
.why-item h4 { font-family: var(--font-serif); font-size: 18px; font-weight: 600; margin-bottom: 5px; }
.why-item p { color: var(--muted); font-size: 14.5px; font-weight: 300; }

/* ---------- Portfolio (home) ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.pf-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 3/4; display: block;
}
.pf-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.6s;
  filter: saturate(0.9);
}
.pf-item:hover img { transform: scale(1.08); filter: saturate(1.1); }

.pf-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.9) 0%, rgba(10, 10, 12, 0.2) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; opacity: 0; transition: opacity 0.5s;
}
.pf-item:hover .pf-overlay { opacity: 1; }
.pf-overlay .cat {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold-2); margin-bottom: 6px;
}
.pf-overlay h4 { font-family: var(--font-serif); font-size: 19px; font-weight: 600; }

.pf-zoom {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(10, 10, 12, 0.55); border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--gold-2);
  backdrop-filter: blur(6px);
  transform: scale(0); transition: transform 0.4s var(--ease);
}
.pf-zoom svg { width: 16px; height: 16px; }
.pf-item:hover .pf-zoom { transform: scale(1); }
/* ---------- Testimonials ---------- */
.testi-wrap { position: relative; max-width: 860px; margin-inline: auto; }

.testi-slider { overflow: hidden; }
.testi-track { display: flex; transition: transform 0.6s var(--ease); }

.testi-slide { flex: 0 0 100%; padding: 10px 6px; }
.testi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 52px);
  text-align: center;
  position: relative;
}
.testi-quote {
  width: 54px; height: 54px; margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--gold-dim); border: 1px solid rgba(200, 162, 74, 0.4);
  display: grid; place-items: center; color: var(--gold);
}
.testi-quote svg { width: 22px; height: 22px; }

.testi-stars { display: flex; justify-content: center; gap: 4px; color: var(--gold); margin-bottom: 20px; }
.testi-stars svg { width: 16px; height: 16px; }

.testi-text {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.2vw, 22px);
  font-style: italic; line-height: 1.6;
  color: rgba(244, 241, 233, 0.92);
  max-width: 640px; margin-inline: auto;
}
.testi-person { margin-top: 28px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-person .name { font-weight: 600; font-size: 15px; text-align: left; }
.testi-person .role { font-size: 12.5px; color: var(--muted); text-align: left; }

.testi-nav {
  display: flex; align-items: center; justify-content: center; gap: 26px; margin-top: 36px;
}
.testi-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--text);
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s;
}
.testi-arrow:hover { border-color: var(--gold); background: var(--gold); color: #16130b; transform: translateY(-2px); }
.testi-arrow svg { width: 18px; height: 18px; }

.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transition: background 0.3s, width 0.3s;
}
.testi-dot.active { background: var(--gold); width: 26px; border-radius: 6px; }

/* ---------- Instagram ---------- */
.ig-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.ig-handle { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-serif); font-size: 20px; font-style: italic; color: var(--gold-2); }
.ig-handle svg { width: 22px; height: 22px; color: var(--gold); }

.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ig-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 1/1; display: block;
}
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.ig-item:hover img { transform: scale(1.1); }
.ig-item::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(200, 162, 74, 0.45);
  opacity: 0; transition: opacity 0.4s;
}
.ig-item svg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.4);
  width: 30px; height: 30px; color: #fff; z-index: 2;
  opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s;
}
.ig-item:hover::after { opacity: 1; }
.ig-item:hover svg { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ---------- Contact CTA banner ---------- */
.cta-banner {
  position: relative; overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 80px);
  text-align: center;
  isolation: isolate;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: url("https://images.pexels.com/photos/3014856/pexels-photo-3014856.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover no-repeat;
}
.cta-banner::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(10, 10, 12, 0.9), rgba(60, 45, 15, 0.72));
}
.cta-banner h2 { font-family: var(--font-serif); font-size: clamp(28px, 4.4vw, 46px); font-weight: 600; line-height: 1.15; }
.cta-banner h2 em { font-style: italic; color: var(--gold-2); }
.cta-banner p { max-width: 560px; margin: 18px auto 0; color: rgba(244, 241, 233, 0.8); font-weight: 300; }
.cta-banner .btn-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 34px; }
.cta-contact {
  display: flex; justify-content: center; gap: 34px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 34px; border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px; color: rgba(244, 241, 233, 0.85);
}
.cta-contact a { display: inline-flex; align-items: center; gap: 10px; transition: color 0.3s; }
.cta-contact a:hover { color: var(--gold-2); }
.cta-contact svg { width: 17px; height: 17px; color: var(--gold); }

/* ---------- Footer ---------- */
.footer { background: #070708; border-top: 1px solid var(--line); padding: 72px 0 0; }

.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px;
  padding-bottom: 56px;
}
.footer-brand p { margin-top: 18px; color: var(--muted); font-size: 14px; font-weight: 300; max-width: 300px; }

.footer h5 {
  font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-links { display: grid; gap: 12px; }
.footer-links a {
  color: var(--muted); font-size: 14px; transition: color 0.3s, padding-left 0.3s;
}
.footer-links a:hover { color: var(--gold-2); padding-left: 6px; }

.footer-news p { color: var(--muted); font-size: 14px; font-weight: 300; margin-bottom: 18px; }
.news-form { display: flex; gap: 10px; }
.news-form input {
  flex: 1; min-width: 0;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 100px; padding: 13px 20px;
  color: var(--text); font-size: 14px; font-family: inherit; outline: none;
  transition: border-color 0.3s;
}
.news-form input:focus { border-color: var(--gold); }
.news-form input::placeholder { color: #6f6b63; }
.news-form button {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #16130b; display: grid; place-items: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.news-form button:hover { transform: translateX(3px); box-shadow: 0 8px 22px rgba(200, 162, 74, 0.4); }
.news-form button svg { width: 18px; height: 18px; }

.socials { display: flex; gap: 12px; margin-top: 26px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--muted);
  transition: all 0.3s;
}
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); background: var(--gold-dim); }
.socials svg { width: 17px; height: 17px; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}
.footer-bottom a { color: var(--muted); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold-2); }
.footer-bottom .heart { color: var(--gold); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid rgba(200, 162, 74, 0.45);
  color: var(--gold-2); display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all 0.4s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: #16130b; }
.to-top svg { width: 18px; height: 18px; }

/* ---------- Floating WhatsApp (quick booking) ---------- */
.wa-float {
  position: fixed; right: 26px; bottom: 90px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #2bb673, #128c4a);
  color: #fff;
  box-shadow: 0 12px 30px rgba(18, 140, 74, 0.45);
  animation: waPulse 2.6s infinite;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 18px 44px rgba(18, 140, 74, 0.55); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }
.wa-float .wa-tip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%) translateX(6px);
  background: #fff; color: #0a0a0c; font-size: 12.5px; font-weight: 600;
  padding: 7px 12px; border-radius: 8px; white-space: nowrap;
  opacity: 0; visibility: hidden; transition: all 0.3s var(--ease);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.wa-float:hover .wa-tip { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }
@keyframes waPulse {
  0% { box-shadow: 0 12px 30px rgba(18, 140, 74, 0.45), 0 0 0 0 rgba(18, 140, 74, 0.4); }
  70% { box-shadow: 0 12px 30px rgba(18, 140, 74, 0.45), 0 0 0 16px rgba(18, 140, 74, 0); }
  100% { box-shadow: 0 12px 30px rgba(18, 140, 74, 0.45), 0 0 0 0 rgba(18, 140, 74, 0); }
}
/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 clamp(64px, 8vw, 96px);
  text-align: center;
  background: var(--bg-2);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(200, 162, 74, 0.12), transparent 60%),
    linear-gradient(to bottom, rgba(10, 10, 12, 0.4), var(--bg-2));
}
.page-hero::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 74, 0.5), transparent);
}
.page-hero .container { position: relative; z-index: 2; }

.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-2); }
.breadcrumb .sep { color: var(--muted); }

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.015em;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  max-width: 600px; margin: 18px auto 0;
  color: var(--muted); font-weight: 300; font-size: 16px;
}

/* ---------- About: story ---------- */
.story-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story-media { position: relative; }
.story-media img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 4/5; object-fit: cover; width: 100%;
}
.story-media .exp-card {
  position: absolute; right: -6%; bottom: -8%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #16130b; border-radius: var(--radius);
  padding: 26px 32px; text-align: center;
  box-shadow: 0 18px 44px rgba(200, 162, 74, 0.4);
}
.exp-card strong { font-family: var(--font-serif); font-size: 42px; font-weight: 700; line-height: 1; display: block; }
.exp-card span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }

.story-copy p { color: var(--muted); font-weight: 300; margin-bottom: 18px; font-size: 15.5px; }
.story-copy p strong { color: var(--text); font-weight: 500; }
.story-copy .dropcap::first-letter {
  font-family: var(--font-serif); float: left;
  font-size: 64px; line-height: 0.8; padding: 8px 12px 0 0;
  color: var(--gold);
}
.story-sign {
  margin-top: 30px; display: flex; align-items: center; gap: 18px;
}
.story-sign img {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--gold);
}
.story-sign .name { font-family: var(--font-serif); font-size: 19px; font-weight: 600; }
.story-sign .role { font-size: 12.5px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- About: values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 26px;
  text-align: center; transition: transform 0.4s var(--ease), border-color 0.4s;
}
.value-card:hover { transform: translateY(-6px); border-color: rgba(200, 162, 74, 0.45); }
.value-card .num {
  font-family: var(--font-serif); font-size: 15px; color: var(--gold);
  letter-spacing: 0.2em; margin-bottom: 14px; display: block;
}
.value-card svg { width: 30px; height: 30px; color: var(--gold-2); margin-bottom: 16px; }
.value-card h4 { font-family: var(--font-serif); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 13.5px; font-weight: 300; }

/* ---------- About: team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4;
}
.team-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.6s;
  filter: saturate(0.88);
}
.team-card:hover img { transform: scale(1.07); filter: saturate(1.05); }
.team-info {
  position: absolute; inset: auto 0 0 0; padding: 48px 20px 20px;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.95), transparent);
}
.team-info h4 { font-family: var(--font-serif); font-size: 19px; font-weight: 600; }
.team-info .role { font-size: 12px; color: var(--gold-2); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 3px; }
.team-socials { display: flex; gap: 10px; margin-top: 12px; opacity: 0; transform: translateY(8px); transition: all 0.4s var(--ease); }
.team-card:hover .team-socials { opacity: 1; transform: translateY(0); }
.team-socials a {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3); display: grid; place-items: center;
  color: var(--text); font-size: 12px; transition: all 0.3s;
}
.team-socials a:hover { background: var(--gold); border-color: var(--gold); color: #16130b; }
.team-socials svg { width: 14px; height: 14px; }

/* ---------- Page CTA strip ---------- */
.cta-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(200, 162, 74, 0.16), rgba(200, 162, 74, 0.05));
  border: 1px solid rgba(200, 162, 74, 0.3);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 44px) clamp(24px, 4vw, 52px);
}
.cta-strip h3 { font-family: var(--font-serif); font-size: clamp(20px, 2.6vw, 28px); font-weight: 600; }
.cta-strip h3 em { font-style: italic; color: var(--gold-2); }
.cta-strip p { color: var(--muted); font-size: 14.5px; margin-top: 6px; font-weight: 300; }
/* ---------- Services page: detail rows ---------- */
.svc-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(36px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--line);
}
.svc-row:last-child { border-bottom: none; }
.svc-row:nth-child(even) .svc-media { order: 2; }

.svc-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.svc-media img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform 0.8s var(--ease); }
.svc-media:hover img { transform: scale(1.05); }
.svc-media .tag {
  position: absolute; top: 18px; left: 18px;
  background: rgba(10, 10, 12, 0.7); border: 1px solid rgba(200, 162, 74, 0.5);
  color: var(--gold-2); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px; backdrop-filter: blur(8px);
}

.svc-copy .svc-num {
  font-family: var(--font-serif); font-size: 15px; color: var(--gold);
  letter-spacing: 0.24em; margin-bottom: 10px; display: block;
}
.svc-copy h3 { font-family: var(--font-serif); font-size: clamp(24px, 3vw, 32px); font-weight: 600; margin-bottom: 16px; }
.svc-copy p { color: var(--muted); font-weight: 300; font-size: 15px; margin-bottom: 20px; }

.svc-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; margin-bottom: 28px; }
.svc-feats li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(244, 241, 233, 0.85); }
.svc-feats svg { width: 15px; height: 15px; color: var(--gold); flex: 0 0 auto; }
.svc-price { font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.svc-price strong { font-family: var(--font-serif); font-size: 26px; color: var(--gold-2); font-weight: 600; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 44px 34px;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.price-card:hover { transform: translateY(-8px); border-color: rgba(200, 162, 74, 0.4); box-shadow: var(--shadow); }
.price-card.featured {
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, #1a1712, var(--surface));
}
.price-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #16130b; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; white-space: nowrap;
}
.price-card h4 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; text-align: center; }
.price-card .desc { text-align: center; color: var(--muted); font-size: 13.5px; font-weight: 300; margin-top: 8px; }
.price-amt {
  text-align: center; margin: 26px 0;
  font-family: var(--font-serif);
}
.price-amt .cur { font-size: 18px; color: var(--gold); vertical-align: 22px; }
.price-amt .num { font-size: 52px; font-weight: 700; color: var(--gold-2); line-height: 1; }
.price-amt .per { display: block; font-size: 11.5px; color: var(--muted); font-family: var(--font-sans); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; }
.price-feats { display: grid; gap: 13px; margin-bottom: 32px; }
.price-feats li { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: rgba(244, 241, 233, 0.82); }
.price-feats svg { width: 15px; height: 15px; color: var(--gold); flex: 0 0 auto; margin-top: 4px; }
.price-feats li.off { color: #6f6b63; text-decoration: line-through; }
.price-feats li.off svg { color: #6f6b63; }
.price-card .btn { margin-top: auto; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step-card {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(200, 162, 74, 0.45); }
.step-num {
  font-family: var(--font-serif); font-style: italic;
  font-size: 56px; line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(200, 162, 74, 0.65);
  margin-bottom: 18px;
}
.step-card h4 { font-family: var(--font-serif); font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: 13.5px; font-weight: 300; }
.step-arrow {
  position: absolute; top: 50%; right: -18px; transform: translateY(-50%);
  color: var(--gold); z-index: 2;
}
.step-arrow svg { width: 20px; height: 20px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(200, 162, 74, 0.45); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px; text-align: left;
  font-size: 15.5px; font-weight: 500; color: var(--text);
}
.faq-q .icon {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: grid; place-items: center;
  color: var(--gold); transition: transform 0.4s var(--ease), background 0.3s, color 0.3s;
}
.faq-q .icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--gold); color: #16130b; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a p { padding: 0 26px 24px; color: var(--muted); font-size: 14.5px; font-weight: 300; }
/* ---------- Portfolio filters ---------- */
.filter-bar {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 11px 24px; border-radius: 100px;
  border: 1px solid var(--line-strong);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); transition: all 0.3s;
}
.filter-btn:hover { color: var(--text); border-color: var(--gold); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #16130b; border-color: transparent;
  box-shadow: 0 8px 22px rgba(200, 162, 74, 0.3);
}

.pf-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.pf-gallery .pf-item { aspect-ratio: 4/3; }
.pf-gallery .pf-item--tall { aspect-ratio: 3/4; grid-row: span 2; }

.pf-item.hide { display: none; }
.pf-item { animation: fadeIn 0.5s var(--ease) both; }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5, 5, 7, 0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  backdrop-filter: blur(10px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-img-wrap { max-width: min(1000px, 88vw); max-height: 82vh; position: relative; }
.lb-img-wrap img {
  max-width: 100%; max-height: 82vh; object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
}
.lb-caption {
  position: absolute; left: 0; right: 0; bottom: -52px;
  text-align: center; font-size: 14px; color: var(--muted);
}
.lb-caption strong { color: var(--gold-2); font-family: var(--font-serif); }
.lb-btn {
  position: absolute; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-strong);
  color: var(--text); display: grid; place-items: center;
  transition: all 0.3s;
}
.lb-btn:hover { background: var(--gold); color: #16130b; border-color: var(--gold); }
.lb-btn svg { width: 20px; height: 20px; }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(36px, 5vw, 60px);
  align-items: start;
}

.info-cards { display: grid; gap: 16px; margin-top: 34px; }
.info-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 22px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.info-card:hover { border-color: rgba(200, 162, 74, 0.45); transform: translateX(4px); }
.info-card .ic {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 14px;
  background: var(--gold-dim); border: 1px solid rgba(200, 162, 74, 0.35);
  display: grid; place-items: center; color: var(--gold-2);
}
.info-card .ic svg { width: 20px; height: 20px; }
.info-card h4 { font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); font-size: 14px; font-weight: 300; transition: color 0.3s; }
.info-card a:hover { color: var(--gold-2); }

.socials--contact { display: flex; gap: 12px; margin-top: 26px; }

.map-box {
  margin-top: 34px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  filter: grayscale(1) invert(0.92) contrast(0.9) hue-rotate(180deg);
}
.map-box iframe { display: block; width: 100%; height: 280px; border: 0; }

/* ---------- Contact form ---------- */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 9px;
}
.form-group label .req { color: var(--gold); }
.form-control {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text); font-size: 14.5px; font-family: inherit;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200, 162, 74, 0.15); }
.form-control::placeholder { color: #6f6b63; }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c8a24a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; }
.form-group.error .form-control { border-color: #e0655a; }
.form-error {
  display: none; margin-top: 7px; font-size: 12.5px; color: #e0655a;
}
.form-group.error .form-error { display: block; }

.form-success {
  display: none; align-items: center; gap: 12px;
  background: rgba(76, 175, 130, 0.12);
  border: 1px solid rgba(76, 175, 130, 0.4);
  color: #7fd8ac; border-radius: var(--radius-sm);
  padding: 16px 20px; font-size: 14px; margin-top: 20px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex: 0 0 auto; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-left.visible, .reveal-right.visible { transform: translateX(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid, .team-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 105;
    width: min(320px, 84vw);
    background: rgba(12, 12, 15, 0.98);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 8px; padding: 80px 34px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }
  .nav.open { transform: translateX(0); }
  .nav-link { font-size: 16px; padding: 12px 0; width: 100%; }
  .nav-link::after { display: none; }
  .nav .btn { margin-top: 20px; width: 100%; display: inline-flex; }
  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .story-grid, .svc-row, .contact-grid { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .svc-media { order: 0; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-gallery { grid-template-columns: repeat(2, 1fr); }
  .why-media .img-float { right: 0; }
  .why-badge { left: 0; }
}

@media (max-width: 600px) {
  .services-grid, .pricing-grid, .values-grid, .team-grid, .process-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-gallery { grid-template-columns: 1fr; }
  .pf-gallery .pf-item--tall { grid-row: auto; aspect-ratio: 4/3; }
  .hero-cta .btn { width: 100%; }
  .svc-feats { grid-template-columns: 1fr; }
  .lb-btn { width: 44px; height: 44px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}
