:root {
  --red: #e31b23;
  --red-dark: #a90e14;
  --red-soft: #fff0f1;
  --black: #080808;
  --black-2: #121212;
  --ink: #171717;
  --muted: #66645f;
  --cream: #f4f1eb;
  --cream-2: #ece8e0;
  --white: #ffffff;
  --line: #ddd8cf;
  --line-dark: rgba(255, 255, 255, .14);
  --shadow: 0 24px 70px rgba(0, 0, 0, .16);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, .09);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1240px;
  --header: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  max-width: 100%;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--white); background: var(--red); }

.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 2000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--black);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 14px; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 112px 0; position: relative; }
.section-sm { padding: 78px 0; position: relative; }
.section-dark { color: var(--white); background: var(--black); }
.section-red { color: var(--white); background: var(--red); }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-muted { background: var(--cream-2); }

.announcement {
  min-height: 34px;
  color: rgba(255, 255, 255, .78);
  background: var(--black);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.announcement .container {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.announcement a { color: var(--white); text-decoration: none; }
.announcement a:hover { color: #ff6f74; }
.announcement-links { display: flex; align-items: center; gap: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 34px rgba(0, 0, 0, .09); }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.logo img { width: 255px; height: 62px; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  position: relative;
  color: #232323;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transition: right .22s ease;
}
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav a.active { color: var(--red); }
.nav .nav-cta {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(227, 27, 35, .24);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.nav .nav-cta:hover { transform: translateY(-2px); background: #f02a32; box-shadow: 0 14px 30px rgba(227, 27, 35, .3); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid #dad5ce;
  border-radius: 14px;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.open span { opacity: 0; }
.menu-toggle.open::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open::after { transform: translateY(-7px) rotate(-45deg); }

.btn {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--red); box-shadow: 0 14px 30px rgba(227, 27, 35, .28); }
.btn-primary:hover { background: #f02a32; box-shadow: 0 18px 38px rgba(227, 27, 35, .34); }
.btn-dark { color: var(--white); background: var(--black); }
.btn-dark:hover { background: #252525; }
.btn-light { color: var(--black); background: var(--white); box-shadow: var(--shadow-soft); }
.btn-light:hover { color: var(--red); }
.btn-outline-light { color: var(--white); border-color: rgba(255, 255, 255, .42); background: rgba(255, 255, 255, .04); }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255, 255, 255, .1); }
.btn-outline-dark { color: var(--black); border-color: rgba(0, 0, 0, .24); background: transparent; }
.btn-outline-dark:hover { border-color: var(--red); color: var(--red); }
.btn svg { width: 18px; height: 18px; }

.eyebrow, .section-kicker {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before, .section-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  flex: 0 0 auto;
  background: currentColor;
  border-radius: 999px;
}
.section-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .94;
  letter-spacing: -.055em;
  text-transform: uppercase;
  font-weight: 950;
}
.section-title span { color: var(--red); }
.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.section-dark .section-intro { color: rgba(255, 255, 255, .62); }
.section-head {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .48fr);
  gap: 64px;
  align-items: end;
}
.section-head.center { display: block; max-width: 860px; margin: 0 auto 58px; text-align: center; }
.section-head.center .section-kicker { justify-content: center; }
.section-head.center .section-intro { max-width: 650px; margin: 24px auto 0; }

.hero {
  min-height: min(820px, calc(100vh - 116px));
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--black);
}
.hero-media { position: absolute; inset: 0; z-index: -4; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .83) 38%, rgba(0, 0, 0, .38) 70%, rgba(0, 0, 0, .17) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .14), rgba(0, 0, 0, .42));
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: -130px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  border: 95px solid rgba(227, 27, 35, .18);
  border-radius: 50%;
}
.hero-inner {
  min-height: inherit;
  padding: 98px 0 124px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .42fr);
  gap: 60px;
  align-items: center;
}
.hero-copy h1 {
  margin: 20px 0 26px;
  max-width: 790px;
  color: var(--white);
  font-size: clamp(58px, 7.5vw, 108px);
  line-height: .88;
  letter-spacing: -.072em;
  text-transform: uppercase;
  font-weight: 950;
}
.hero-copy h1 span { display: block; color: var(--red); }
.hero-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.65;
}
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-card {
  align-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 25px;
  background: rgba(8, 8, 8, .75);
  box-shadow: 0 28px 75px rgba(0, 0, 0, .36);
  backdrop-filter: blur(14px);
}
.hero-card img { width: 100%; height: 235px; object-fit: cover; object-position: center 68%; }
.hero-card-body { padding: 22px 23px 24px; }
.hero-card-label { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.hero-card h2 { margin: 10px 0 9px; font-size: 27px; line-height: 1; letter-spacing: -.035em; text-transform: uppercase; }
.hero-card p { margin: 0; color: rgba(255, 255, 255, .58); font-size: 13px; line-height: 1.55; }
.hero-card a { margin-top: 18px; display: inline-flex; color: var(--white); text-decoration: none; font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.hero-card a span { color: var(--red); margin-left: 8px; }

.trust-strip { color: var(--white); background: var(--black); border-top: 1px solid rgba(255, 255, 255, .1); }
.trust-grid { min-height: 96px; display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 22px 32px; display: flex; align-items: center; gap: 15px; border-right: 1px solid rgba(255, 255, 255, .12); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-number { color: var(--red); font-size: 30px; font-weight: 950; line-height: 1; }
.trust-item strong { display: block; font-size: 13px; letter-spacing: .075em; text-transform: uppercase; }
.trust-item span { display: block; margin-top: 4px; color: rgba(255, 255, 255, .48); font-size: 12px; line-height: 1.45; }

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 15%, rgba(227, 27, 35, .3), transparent 32%),
    linear-gradient(125deg, transparent 0 58%, rgba(255, 255, 255, .025) 58% 59%, transparent 59% 68%, rgba(255, 255, 255, .02) 68% 69%, transparent 69%);
}
.page-hero-inner { position: relative; padding: 108px 0 100px; }
.page-hero h1 {
  max-width: 920px;
  margin: 18px 0 22px;
  font-size: clamp(58px, 8vw, 112px);
  line-height: .87;
  letter-spacing: -.07em;
  text-transform: uppercase;
  font-weight: 950;
}
.page-hero h1 span { color: var(--red); }
.page-hero p { max-width: 680px; margin: 0; color: rgba(255, 255, 255, .68); font-size: 19px; line-height: 1.7; }
.page-hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card {
  min-height: 285px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 4px 0 transparent;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(227, 27, 35, .38); box-shadow: var(--shadow-soft); }
.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border-radius: 13px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { margin: 50px 0 12px; font-size: 21px; letter-spacing: -.025em; text-transform: uppercase; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-card a { margin-top: auto; padding-top: 22px; display: inline-flex; align-items: center; gap: 8px; color: var(--red); text-decoration: none; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.compare-layout { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(310px, .45fr); gap: 30px; align-items: stretch; }
.compare {
  min-width: 0;
  max-width: 100%;
  --pos: 50%;
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: #222;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.compare > img, .compare-after img { width: 100%; height: 100%; object-fit: cover; object-position: center 68%; }
.compare > img { position: absolute; inset: 0; }
.compare-after { position: absolute; inset: 0; width: 100%; overflow: hidden; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.compare-after img { width: 100%; height: 100%; object-fit: cover; object-position: center 68%; }
.compare-line { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--pos); width: 3px; background: var(--white); transform: translateX(-50%); box-shadow: 0 0 16px rgba(0, 0, 0, .4); }
.compare-handle { position: absolute; z-index: 4; left: var(--pos); top: 50%; width: 58px; height: 58px; display: grid; place-items: center; color: var(--white); background: var(--red); border: 3px solid var(--white); border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 10px 25px rgba(0, 0, 0, .35); pointer-events: none; }
.compare-handle svg { width: 27px; height: 27px; }
.compare input[type="range"] { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.compare-badge { position: absolute; z-index: 2; top: 18px; padding: 9px 13px; color: var(--white); background: rgba(0, 0, 0, .7); border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; backdrop-filter: blur(8px); font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.compare-badge.before { left: 18px; }
.compare-badge.after { right: 18px; }
.project-panel { min-width: 0; max-width: 100%; padding: 34px; display: flex; flex-direction: column; border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); background: linear-gradient(150deg, #191919, #0d0d0d); }
.project-panel .section-kicker { color: var(--red); }
.project-panel h3 { margin: 0 0 18px; color: var(--white); font-size: clamp(38px, 4vw, 58px); line-height: .94; letter-spacing: -.05em; text-transform: uppercase; }
.project-panel p { margin: 0; color: rgba(255, 255, 255, .62); line-height: 1.72; }
.project-facts { margin-top: 30px; }
.project-fact { padding: 16px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255, 255, 255, .12); }
.project-fact span { color: rgba(255, 255, 255, .42); font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.project-fact strong { color: var(--white); font-size: 13px; text-align: right; }
.project-panel .btn { margin-top: auto; align-self: flex-start; }
.project-note { margin-top: 20px !important; color: rgba(255, 255, 255, .46) !important; font-size: 12px; }

.project-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.project-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2, .7, .2, 1); }
.project-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0, 0, 0, .08) 28%, rgba(0, 0, 0, .85) 100%); }
.project-card:hover img { transform: scale(1.045); }
.project-card-body { position: absolute; z-index: 2; inset: auto 0 0; padding: 28px; }
.project-card-label { color: #ff767b; font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.project-card h3 { margin: 10px 0 10px; font-size: 31px; line-height: 1; letter-spacing: -.045em; text-transform: uppercase; }
.project-card p { margin: 0 0 20px; color: rgba(255, 255, 255, .68); font-size: 13px; line-height: 1.6; }
.project-card a { display: inline-flex; align-items: center; gap: 8px; color: var(--white); text-decoration: none; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.project-card a span { color: var(--red); }

.process { overflow: hidden; }
.process::after { content: "AYASH"; position: absolute; right: -45px; bottom: -74px; color: rgba(0, 0, 0, .1); font-size: clamp(145px, 22vw, 330px); line-height: .75; font-weight: 950; letter-spacing: -.09em; pointer-events: none; }
.process .section-kicker { color: var(--black); }
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.process-step { min-height: 270px; padding: 27px; border: 1px solid rgba(255, 255, 255, .34); border-radius: 20px; background: rgba(0, 0, 0, .07); backdrop-filter: blur(4px); }
.step-number { width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); background: var(--black); border-radius: 50%; font-weight: 950; }
.process-step h3 { margin: 52px 0 12px; font-size: 20px; line-height: 1.1; text-transform: uppercase; }
.process-step p { margin: 0; color: rgba(255, 255, 255, .78); font-size: 14px; line-height: 1.65; }

.about-grid { min-width: 0; display: grid; grid-template-columns: minmax(0, .8fr) minmax(400px, .58fr); gap: 74px; align-items: center; }
.about-copy h2 { margin: 0 0 24px; font-size: clamp(44px, 5.5vw, 76px); line-height: .94; letter-spacing: -.055em; text-transform: uppercase; }
.about-copy h2 span { color: var(--red); }
.about-copy > p { margin: 0 0 18px; color: var(--muted); font-size: 17px; line-height: 1.78; }
.value-grid { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.value { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.value strong { display: block; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.value span { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.about-visual { position: relative; min-height: 620px; }
.about-visual > img { position: absolute; inset: 0 54px 38px 0; width: calc(100% - 54px); height: calc(100% - 38px); object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.about-badge { position: absolute; right: 0; bottom: 0; width: 245px; padding: 25px; color: var(--white); background: var(--black); border-radius: 20px; box-shadow: 0 22px 60px rgba(0, 0, 0, .27); }
.about-badge::before { content: ""; width: 48px; height: 4px; display: block; margin-bottom: 18px; background: var(--red); }
.about-badge strong { display: block; font-size: 25px; line-height: 1.05; text-transform: uppercase; }
.about-badge span { display: block; margin-top: 10px; color: rgba(255, 255, 255, .56); font-size: 12px; line-height: 1.55; }

.video-layout { min-width: 0; display: grid; grid-template-columns: minmax(320px, .44fr) minmax(0, .7fr); gap: 60px; align-items: center; }
.video-copy h2 { margin: 0 0 22px; font-size: clamp(44px, 5.5vw, 75px); line-height: .94; letter-spacing: -.055em; text-transform: uppercase; }
.video-copy h2 span { color: var(--red); }
.video-copy p { margin: 0; color: rgba(255, 255, 255, .62); font-size: 17px; line-height: 1.75; }
.video-frame { max-width: 520px; margin-left: auto; position: relative; overflow: hidden; border: 1px solid rgba(255, 255, 255, .14); border-radius: 30px; background: #111; box-shadow: 0 30px 80px rgba(0, 0, 0, .45); }
.video-frame video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }
.video-frame::after { content: "PROJECT REEL"; position: absolute; left: 17px; top: 17px; padding: 8px 11px; color: var(--white); background: rgba(0, 0, 0, .72); border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; pointer-events: none; font-size: 9px; font-weight: 900; letter-spacing: .16em; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.stat strong { display: block; color: var(--red); font-size: 40px; line-height: 1; }
.stat span { display: block; margin-top: 10px; color: var(--muted); font-size: 13px; line-height: 1.55; }

.detail-service { padding: 34px 0; display: grid; grid-template-columns: 120px minmax(230px, .5fr) minmax(0, 1fr); gap: 34px; align-items: start; border-top: 1px solid var(--line); }
.detail-service:last-child { border-bottom: 1px solid var(--line); }
.detail-index { color: var(--red); font-size: 34px; font-weight: 950; letter-spacing: -.04em; }
.detail-service h2 { margin: 0; font-size: 31px; line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }
.detail-service p { margin: 0; color: var(--muted); line-height: 1.75; }
.detail-tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: #4f4d49; background: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.case-study { scroll-margin-top: 120px; }
.case-study + .case-study { margin-top: 110px; }
.case-head { margin-bottom: 32px; display: grid; grid-template-columns: minmax(0, .75fr) minmax(320px, .48fr); gap: 60px; align-items: end; }
.case-head h2 { margin: 0; font-size: clamp(44px, 5.5vw, 74px); line-height: .94; letter-spacing: -.055em; text-transform: uppercase; }
.case-head p { margin: 0; color: var(--muted); line-height: 1.75; }
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.case-image { position: relative; min-height: 560px; overflow: hidden; border-radius: 22px; background: #ddd; }
.case-image img { width: 100%; height: 100%; object-fit: cover; }
.case-label { position: absolute; left: 18px; top: 18px; padding: 9px 13px; color: var(--white); background: rgba(0, 0, 0, .74); border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; grid-auto-rows: 310px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 20px; cursor: zoom-in; background: #ddd; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .3s ease; }
.gallery-item:hover img { transform: scale(1.04); filter: brightness(.78); }
.gallery-caption { position: absolute; inset: auto 0 0; padding: 46px 20px 18px; color: var(--white); background: linear-gradient(transparent, rgba(0, 0, 0, .72)); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; opacity: 0; transition: opacity .25s ease; }
.gallery-item:hover .gallery-caption { opacity: 1; }

.quote-section { overflow: hidden; }
.quote-section::after { content: ""; position: absolute; width: 580px; height: 580px; right: -310px; top: 50%; transform: translateY(-50%); border: 96px solid rgba(227, 27, 35, .13); border-radius: 50%; }
.quote-grid { min-width: 0; position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .7fr) minmax(430px, .57fr); gap: 80px; align-items: start; }
.quote-copy h2 { margin: 0 0 22px; font-size: clamp(50px, 6vw, 82px); line-height: .91; letter-spacing: -.06em; text-transform: uppercase; }
.quote-copy h2 span { color: var(--red); }
.quote-copy p { margin: 0; max-width: 530px; color: rgba(255, 255, 255, .62); font-size: 17px; line-height: 1.75; }
.contact-links { margin-top: 32px; display: grid; gap: 12px; }
.contact-link { display: flex; align-items: center; gap: 13px; color: var(--white); text-decoration: none; font-weight: 800; }
.contact-link-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--red); background: rgba(227, 27, 35, .16); border-radius: 50%; }
.contact-link-icon svg { width: 19px; height: 19px; }
.quote-form { padding: 30px; color: var(--ink); background: var(--white); border-radius: 24px; box-shadow: 0 30px 80px rgba(0, 0, 0, .28); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #4b4945; font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #faf9f6;
  border: 1px solid #d7d2ca;
  border-radius: 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 124px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(227, 27, 35, .1); }
.quote-form .btn { width: 100%; margin-top: 18px; }
.form-note { margin: 13px 0 0; color: #77736d; font-size: 11px; line-height: 1.5; }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; color: #235e35; background: #e7f6eb; border-radius: 10px; font-size: 12px; line-height: 1.5; }
.form-status.show { display: block; }

.faq-list { display: grid; gap: 10px; }
.faq { border: 1px solid var(--line); border-radius: 16px; background: var(--white); overflow: hidden; }
.faq button { width: 100%; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--ink); background: transparent; border: 0; cursor: pointer; text-align: left; font-weight: 850; }
.faq button span:last-child { color: var(--red); font-size: 22px; transition: transform .2s ease; }
.faq.open button span:last-child { transform: rotate(45deg); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-content p { margin: 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.7; }

.site-footer { color: var(--white); background: #050505; border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-main { padding: 60px 0 42px; display: grid; grid-template-columns: 1.1fr .55fr .55fr .75fr; gap: 54px; }
.footer-brand img { width: 250px; padding: 12px 14px; background: var(--white); border-radius: 13px; }
.footer-brand p { max-width: 330px; margin: 18px 0 0; color: rgba(255, 255, 255, .48); font-size: 13px; line-height: 1.65; }
.footer-column h3 { margin: 0 0 18px; color: var(--white); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a, .footer-column span { display: block; margin: 0 0 11px; color: rgba(255, 255, 255, .58); text-decoration: none; font-size: 13px; line-height: 1.5; }
.footer-column a:hover { color: var(--white); }
.footer-bottom { padding: 22px 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .38); font-size: 11px; }
.footer-bottom a { color: rgba(255, 255, 255, .58); text-decoration: none; }

.mobile-cta { display: none; position: fixed; z-index: 900; left: 12px; right: 12px; bottom: 12px; padding: 9px; background: rgba(8, 8, 8, .93); border: 1px solid rgba(255, 255, 255, .14); border-radius: 17px; box-shadow: 0 18px 50px rgba(0, 0, 0, .34); backdrop-filter: blur(14px); }
.mobile-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mobile-cta a { min-height: 44px; display: flex; align-items: center; justify-content: center; color: var(--white); border-radius: 11px; text-decoration: none; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.mobile-cta .call { background: #252525; }
.mobile-cta .estimate { background: var(--red); }

.lightbox { position: fixed; z-index: 2000; inset: 0; display: none; place-items: center; padding: 24px; background: rgba(0, 0, 0, .94); }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(94vw, 1300px); max-height: 88vh; border-radius: 16px; box-shadow: 0 26px 90px rgba(0, 0, 0, .6); }
.lightbox button { position: absolute; top: 18px; right: 20px; width: 48px; height: 48px; color: var(--white); background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; cursor: pointer; font-size: 30px; line-height: 1; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .logo img { width: 220px; }
  .nav { gap: 18px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) 340px; gap: 38px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .project-cards { grid-template-columns: 1fr 1fr; }
  .project-card:last-child { grid-column: 1 / -1; min-height: 450px; }
  .footer-main { grid-template-columns: 1.2fr .7fr .7fr; }
  .footer-column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  :root { --header: 74px; }
  .announcement .container { justify-content: center; }
  .announcement-links { display: none; }
  .logo img { width: 205px; height: 54px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: calc(34px + var(--header)) 0 auto;
    min-height: calc(100vh - 34px - var(--header));
    padding: 34px 24px 110px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--white);
    background: rgba(8, 8, 8, .98);
    transform: translateX(102%);
    transition: transform .27s ease;
    overflow-y: auto;
  }
  .nav.open { transform: none; }
  .nav a { padding: 20px 0; color: var(--white); border-bottom: 1px solid rgba(255, 255, 255, .13); font-size: 15px; }
  .nav a::after { display: none; }
  .nav .nav-cta { margin-top: 24px; border: 0; }
  .hero { min-height: auto; }
  .hero-inner { min-height: auto; padding: 88px 0 86px; grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(58px, 13vw, 88px); }
  .hero-card { max-width: 470px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 88px 0; }
  .section-head, .case-head { grid-template-columns: 1fr; gap: 24px; }
  .compare-layout { grid-template-columns: minmax(0, 1fr); }
  .compare { min-height: 560px; }
  .project-panel { min-height: 420px; }
  .about-grid, .video-layout, .quote-grid { grid-template-columns: minmax(0, 1fr); gap: 50px; }
  .about-visual { min-height: 600px; }
  .video-frame { margin: 0 auto; }
  .detail-service { grid-template-columns: 80px 1fr; gap: 24px; }
  .detail-service p, .detail-tags { grid-column: 2; }
  .case-grid { grid-template-columns: 1fr; }
  .case-image { min-height: 520px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 280px; }
  .gallery-item.tall { grid-row: span 1; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .mobile-cta { display: block; }
  .site-footer { padding-bottom: 76px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .announcement { font-size: 9px; }
  .logo img { width: 180px; }
  .hero-inner { padding: 72px 0 70px; }
  .hero-copy h1 { margin-top: 17px; font-size: clamp(54px, 16vw, 76px); }
  .hero-copy p { font-size: 16px; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-card img { height: 210px; }
  .section { padding: 74px 0; }
  .section-title { font-size: clamp(42px, 13vw, 62px); }
  .services-grid, .project-cards, .process-grid, .stats-grid, .value-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 255px; }
  .project-card, .project-card:last-child { grid-column: auto; min-height: 470px; }
  .compare { min-height: 500px; }
  .project-panel { min-height: 450px; padding: 28px; }
  .process-step { min-height: 230px; }
  .about-visual { min-height: 510px; }
  .about-visual > img { inset: 0 25px 42px 0; width: calc(100% - 25px); height: calc(100% - 42px); }
  .about-badge { width: 230px; padding: 21px; }
  .quote-form { padding: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .detail-service { grid-template-columns: 54px 1fr; gap: 18px; }
  .detail-index { font-size: 26px; }
  .detail-service h2 { font-size: 26px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 360px; }
  .gallery-item.wide { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand, .footer-column:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero-inner { padding: 84px 0 78px; }
  .page-hero h1 { font-size: clamp(56px, 16vw, 82px); }
  .page-hero p { font-size: 17px; }
}

.hidden-field{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}

/* Expanded project gallery */
.portfolio-preview .section-intro { color: #b7b7b7; }
.media-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 185px;
  gap: 12px;
}
.media-gallery-preview {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 165px;
}
.media-tile {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #171717;
  cursor: zoom-in;
  text-align: left;
}
.media-gallery .media-tile.tall,
.media-gallery .media-tile.wide {
  grid-row: auto;
  grid-column: auto;
}
.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .35s ease;
}
.media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,.82) 100%);
  pointer-events: none;
}
.media-tile:hover img { transform: scale(1.045); filter: brightness(.82); }
.media-tile > span {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  color: #fff;
}
.media-tile b { font-size: 15px; font-weight: 900; letter-spacing: .02em; text-transform: uppercase; }
.media-tile small { color: #d0d0d0; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.gallery-cta { margin-top: 30px; display: flex; justify-content: center; }
.project-video-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.project-video {
  overflow: hidden;
  background: #fff;
  border: 1px solid #ded9d0;
  border-radius: 22px;
  box-shadow: 0 16px 50px rgba(0,0,0,.08);
}
.project-video video { width: 100%; aspect-ratio: 9/12; object-fit: cover; background: #111; }
.project-video > div { padding: 18px 20px 22px; }
.project-video span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.project-video h3 { margin: 6px 0 0; font-size: 20px; }

@media (max-width: 1000px) {
  .media-gallery, .media-gallery-preview { grid-template-columns: repeat(3, minmax(0,1fr)); grid-auto-rows: 170px; }
  .project-video-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .media-gallery, .media-gallery-preview { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 155px; gap: 10px; }
  .media-tile { border-radius: 14px; }
  .media-tile > span { left: 14px; right: 14px; bottom: 12px; }
  .media-tile b { font-size: 12px; }
  .media-tile small { font-size: 9px; }
  .project-video-grid { grid-template-columns: 1fr; }
  .project-video video { aspect-ratio: 9/11; }
}
@media (max-width: 420px) {
  .media-gallery, .media-gallery-preview { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
}
