/* Nadim Hoca â€” refined atelier system */
:root {
  --night: #090a0c;
  --night-2: #12151a;
  --ink: #0f1218;
  --ink-soft: #2f3542;
  --muted: #5a6474;
  --line: #e1e5ec;
  --mist: #f3f5f8;
  --snow: #fbfcfd;
  --white: #ffffff;
  --ember: #b4532a;
  --ember-deep: #8f3a18;
  --champagne: #c4a574;
  --champagne-soft: #e4d0b0;
  --sage: #3a5348;
  --sage-deep: #1f322a;
  --wa: #25a85a;
  --wa-deep: #1a8a48;
  --glass: rgba(255, 255, 255, 0.06);
  --shadow: 0 18px 44px rgba(9, 10, 12, 0.1);
  --shadow-lg: 0 28px 64px rgba(9, 10, 12, 0.15);
  --radius: 20px;
  --container: 1160px;
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 0% -5%, rgba(180, 83, 42, 0.045), transparent 55%),
    radial-gradient(800px 380px at 100% 10%, rgba(58, 83, 72, 0.04), transparent 50%),
    var(--mist);
  line-height: 1.75;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.015em;
  color: var(--ink);
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: #000; color: #fff; padding: .75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  margin: 0 0 1rem; font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ember);
}
.eyebrow::before {
  content: ""; width: 1.75rem; height: 1px; background: currentColor; opacity: .7;
}

.section { padding: 6.5rem 0; position: relative; }
.section--night {
  background:
    radial-gradient(700px 320px at 85% 0%, rgba(184, 90, 50, 0.12), transparent 55%),
    linear-gradient(165deg, #0c0e12 0%, #151a16 48%, #0f1310 100%);
  color: rgba(255, 255, 255, 0.88);
}
.section--night .eyebrow { color: var(--champagne); }
.section--night h2 { color: #fff; }
.section--night .section__head p { color: rgba(255, 255, 255, 0.58); }
.section--soft {
  background:
    linear-gradient(180deg, var(--snow), #f4f5f8);
}
.section__head { max-width: 38rem; margin-bottom: 3rem; }
.section__head h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  font-weight: 600;
}
.section__head p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 400;
  margin-top: -.2rem;
}

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 80;
  transition: background .4s var(--ease), backdrop-filter .4s ease, border-color .4s ease, box-shadow .4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(9, 10, 12, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}
.topbar {
  color: rgba(255, 255, 255, 0.55);
  font-size: .76rem;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.topbar__inner {
  display: flex; justify-content: space-between; gap: 1rem; padding: .42rem 0;
}
.topbar__phone { color: var(--champagne-soft); font-weight: 500; }
.nav {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 1.2rem; min-height: 76px; position: relative;
}
.brand { display: flex; align-items: center; gap: .85rem; color: #fff; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #d4a574, var(--ember-deep));
  color: #1a0f0a; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 8px 20px rgba(184, 90, 50, 0.25);
}
.brand__logo {
  width: 42px; height: 42px; object-fit: cover; border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong {
  font-family: var(--font-display); font-size: 1.28rem; font-weight: 700; letter-spacing: -0.01em;
}
.brand__text small {
  color: rgba(255, 255, 255, 0.5); font-size: .72rem; letter-spacing: .03em; font-weight: 500;
}

.menu { display: flex; justify-content: center; gap: .2rem; }
.menu__link {
  padding: .55rem 1rem; border-radius: 999px; font-size: .9rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.72); transition: .25s var(--ease);
}
.menu__link:hover, .menu__link.is-active {
  color: #fff; background: rgba(255, 255, 255, 0.08);
}
.nav-actions { display: flex; gap: .5rem; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.05);
  cursor: pointer; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 17px; height: 1.5px; background: #fff; transition: .25s ease; border-radius: 2px; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .88rem 1.45rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: .9rem; letter-spacing: .01em; cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--call {
  background: linear-gradient(135deg, #d47845, var(--ember-deep));
  color: #fff;
  box-shadow: 0 12px 28px rgba(184, 90, 50, 0.32);
}
.btn--call:hover { box-shadow: 0 16px 34px rgba(184, 90, 50, 0.4); }
.btn--wa {
  background: linear-gradient(135deg, #2fbf68, var(--wa-deep));
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 168, 90, 0.28);
}
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #1c212b; }
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn--outline {
  background: transparent; border-color: #cfd4de; color: var(--ink);
}
.btn--outline:hover {
  border-color: var(--ember); color: var(--ember-deep);
  background: rgba(184, 90, 50, 0.04);
}
.btn--light { background: #fff; color: var(--ink); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); }
.btn--block { width: 100%; }

/* Hero */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: grid; align-items: end; color: #f7f1e8; overflow: hidden; isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(ellipse 70% 55% at 75% 35%, rgba(184, 90, 50, 0.2), transparent 58%),
    radial-gradient(ellipse 45% 40% at 15% 75%, rgba(58, 83, 72, 0.22), transparent 52%),
    linear-gradient(150deg, #08090b, #141916 42%, #1a1511 100%);
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.78) contrast(1.06) brightness(.68);
  animation: kenburns 32s var(--ease) infinite alternate;
}
.hero__shade {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(95deg, rgba(6, 7, 9, 0.94) 0%, rgba(6, 7, 9, 0.58) 46%, rgba(6, 7, 9, 0.25) 100%),
    linear-gradient(0deg, rgba(6, 7, 9, 0.9) 0%, transparent 45%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero__content {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto; padding: 9rem 0 5.2rem; max-width: 44rem;
  animation: rise 1s var(--ease) both;
}
.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9.2vw, 7.2rem);
  font-weight: 700; line-height: .9; margin: 0 0 1.25rem; letter-spacing: -.045em;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.hero__brand em {
  display: block; margin-top: .28em;
  font-style: italic; font-weight: 500; font-size: .4em;
  color: var(--champagne); letter-spacing: .01em; max-width: 18ch;
  line-height: 1.15;
}
.hero__lead {
  font-size: clamp(1.02rem, 1.9vw, 1.18rem);
  color: rgba(247, 241, 232, 0.78); max-width: 34rem;
  margin-bottom: 2rem; font-weight: 400; line-height: 1.75;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.85rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  display: inline-flex; align-items: center; padding: .52rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 999px;
  font-size: .82rem; color: rgba(255, 255, 255, 0.88); font-weight: 500;
  background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

/* Marquee */
.marquee {
  background: linear-gradient(90deg, #0a0b0e, #12161a 50%, #0a0b0e);
  color: rgba(255, 255, 255, 0.48);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden; white-space: nowrap; padding: .88rem 0;
  position: relative; z-index: 1;
}
.marquee__track {
  display: inline-flex; gap: 2.4rem; animation: march 40s linear infinite;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}
.marquee__track span { display: inline-flex; align-items: center; gap: .85rem; }
.marquee__track span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--champagne); opacity: .7;
}
@keyframes march {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Stats */
.stats {
  margin-top: -2.6rem;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
  padding-bottom: 1.4rem;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.stat {
  background: linear-gradient(165deg, #1a1e26, #12151b);
  padding: 1.75rem 1.1rem; text-align: center; color: #fff;
  transition: background .3s ease;
}
.stat:hover { background: linear-gradient(165deg, #1f2430, #151920); }
.stat strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.55rem); color: var(--champagne);
  margin-bottom: .3rem; font-weight: 600; letter-spacing: -0.02em;
}
.stat span {
  color: rgba(255, 255, 255, 0.5); font-size: .84rem; font-weight: 500; letter-spacing: .02em;
}

/* About */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-visual { position: relative; }
.about-visual__frame {
  border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #1c2420, #121614 55%, #241c16);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-visual__frame::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(201, 174, 134, 0.35);
  border-radius: 18px; pointer-events: none;
}
.about-visual__frame img { width: 100%; height: 100%; object-fit: cover; }
.about-visual__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.15rem; }
.tag {
  padding: .48rem .9rem; background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; font-size: .8rem; color: var(--ink-soft); font-weight: 500;
}
.about-copy h2 { font-size: clamp(2rem, 3.5vw, 2.9rem); }
.about-copy h2 em { font-style: italic; color: var(--ember); font-weight: 500; }
.about-copy .prose { color: var(--muted); margin: 1.2rem 0 1.2rem; font-size: 1.04rem; }

/* Services */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
.service-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px; padding: 1.6rem 1.45rem 1.4rem; min-height: 240px;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease, background .35s ease;
  position: relative; overflow: hidden;
}
.service-item::before {
  content: ""; position: absolute; inset: auto -30% -50% auto; width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(201, 174, 134, 0.12), transparent 70%);
  pointer-events: none;
}
.section:not(.section--night) .service-item {
  background: rgba(255, 255, 255, 0.85); border-color: var(--line); color: var(--ink);
}
.section:not(.section--night) .service-item p { color: var(--muted); }
.section:not(.section--night) .service-item__num { color: rgba(16, 18, 24, 0.14); }
.section:not(.section--night) .service-item__link { color: var(--ember-deep); }
.service-item:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 174, 134, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.service-item__top {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.2rem;
}
.service-item__icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(201, 174, 134, 0.12); color: var(--champagne);
  border: 1px solid rgba(201, 174, 134, 0.15);
}
.section:not(.section--night) .service-item__icon {
  background: rgba(184, 90, 50, 0.1); color: var(--ember);
  border-color: rgba(184, 90, 50, 0.12);
}
.service-item__num {
  font-family: var(--font-display); color: rgba(255, 255, 255, 0.16); font-size: 1.35rem;
}
.service-item h3 { font-size: 1.45rem; margin-bottom: .55rem; color: inherit; }
.service-item p { color: rgba(255, 255, 255, 0.55); font-size: .95rem; flex: 1; line-height: 1.65; }
.service-item__link {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.15rem;
  font-weight: 600; color: var(--champagne); font-size: .9rem;
}
.service-item:hover .service-item__link svg { transform: translateX(4px); }
.service-item__link svg { transition: transform .25s var(--ease); }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-step {
  position: relative; padding: 1.4rem 1.2rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
}
.process-step__n {
  font-family: var(--font-display); font-size: 2.6rem; color: var(--ember);
  line-height: 1; margin-bottom: .85rem; opacity: .85; font-weight: 600;
}
.process-step h3 { font-size: 1.3rem; }
.process-step p { color: var(--muted); font-size: .95rem; }

/* Why */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.why-item {
  padding: 1.75rem 1.5rem; border-radius: 18px;
  background: var(--white); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}
.why-item:hover {
  transform: translateY(-4px); box-shadow: var(--shadow);
  border-color: rgba(184, 90, 50, 0.25);
}
.why-item h3 { font-size: 1.28rem; margin-bottom: .45rem; }
.why-item p { color: var(--muted); font-size: .94rem; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 1.6rem 1.5rem; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review::before {
  content: "â€œ"; position: absolute; top: .55rem; right: 1.15rem;
  font-family: var(--font-display); font-size: 3.8rem; color: rgba(184, 90, 50, 0.12); line-height: 1;
}
.review__stars { color: var(--ember); letter-spacing: .12em; margin-bottom: .85rem; font-size: .85rem; }
.review p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 1.15rem; line-height: 1.7; }
.review__meta {
  display: flex; justify-content: space-between; color: var(--muted);
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
}

/* Blog */
.page-hero--center { text-align: center; }
.page-hero--center > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero--center p {
  margin-inline: auto;
  max-width: 40rem;
}
.page-hero--center .eyebrow {
  justify-content: center;
}
.page-hero--center .eyebrow::before { display: none; }
.page-hero--center h1 {
  margin-inline: auto;
  max-width: 22ch;
  text-wrap: balance;
}

.blog-page {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}

.blog-empty { text-align: center; color: var(--muted); padding: 3rem 0; }

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  width: 100%;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  box-shadow: 0 8px 28px rgba(15, 18, 24, 0.04);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.blog-card__media {
  display: block;
  width: 100%;
  height: 210px;
  flex: 0 0 210px;
  background: #1a201c;
  overflow: hidden;
  position: relative;
}
.blog-card__media img,
.blog-card__media .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.blog-card__media .ph {
  display: grid;
  place-items: center;
  font-size: 1rem;
  padding: 1rem;
}
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__media img { transition: transform .45s var(--ease); }

.blog-card__body {
  padding: 1.25rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1;
  min-height: 0;
  gap: 0;
}
.blog-card__body .blog-date {
  margin: 0 0 .55rem;
  width: 100%;
}
.blog-card__body h2 {
  font-size: 1.2rem;
  line-height: 1.35;
  margin: 0 0 .65rem;
  width: 100%;
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__body h2 a {
  display: inline;
  color: var(--ink);
}
.blog-card__body h2 a:hover { color: var(--ember-deep); }
.blog-card__body p {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.6;
  margin: 0 0 1.15rem;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  color: var(--ember-deep);
  font-size: .9rem;
}
.blog-card__more svg { transition: transform .2s ease; }
.blog-card:hover .blog-card__more svg { transform: translateX(3px); }

.blog-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.blog-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 1.2rem; }
.blog-feature, .blog-side-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 22px;
  overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s ease;
}
.blog-feature:hover, .blog-side-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-feature__img, .blog-side-item__img {
  aspect-ratio: 16 / 10; background: linear-gradient(145deg, #1c2420, #121614); overflow: hidden;
}
.blog-feature__img img, .blog-side-item__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.blog-feature__body, .blog-side-item__body { padding: 1.4rem 1.45rem 1.55rem; }
.blog-date {
  font-size: .78rem; color: var(--muted); margin-bottom: .5rem;
  letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
}
.blog-side { display: grid; gap: 1.1rem; }
.blog-side-item { display: grid; grid-template-columns: 128px 1fr; }
.blog-side-item__img { aspect-ratio: 1; }
.blog-list { display: grid; gap: 1.15rem; }
.blog-row {
  display: grid; grid-template-columns: 250px 1fr; gap: 1.5rem; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  padding-right: 1.4rem; transition: transform .3s var(--ease), box-shadow .3s ease;
}
.blog-row:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-row__img { aspect-ratio: 4 / 3; background: #1a201c; }
.blog-row__img img { width: 100%; height: 100%; object-fit: cover; }

/* FAQ */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.3rem 0; font-weight: 600;
  display: flex; justify-content: space-between; gap: 1rem; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-display); font-size: 1.55rem;
  color: var(--ember); line-height: 1; font-weight: 500;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item__a { padding: 0 0 1.3rem; color: var(--muted); line-height: 1.7; }

/* Page hero */
.page-hero {
  padding: 9rem 0 3.2rem;
  background:
    radial-gradient(680px 280px at 85% 0%, rgba(184, 90, 50, 0.16), transparent 58%),
    linear-gradient(180deg, #0b0d10, #151920 72%, var(--mist));
  color: #fff;
}
.page-hero .eyebrow { color: var(--champagne); }
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.3rem); color: #fff; letter-spacing: -.03em;
}
.page-hero p { color: rgba(255, 255, 255, 0.6); max-width: 36rem; font-size: 1.05rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.4rem; }
.contact-card {
  background: linear-gradient(160deg, #12151b, #1a201c);
  color: rgba(255, 255, 255, 0.86); border-radius: 24px; padding: 2.2rem;
  box-shadow: var(--shadow); border: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-card h2 { color: #fff; margin-bottom: 1rem; }
.contact-card a { color: var(--champagne); }
.contact-list { display: grid; gap: 1.1rem; margin: 1.5rem 0; }
.contact-list strong {
  display: block; color: rgba(255, 255, 255, 0.45);
  font-size: .72rem; margin-bottom: .25rem; letter-spacing: .1em; text-transform: uppercase;
}
.contact-form {
  background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 2.2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}
.form-row { display: grid; gap: .4rem; margin-bottom: 1rem; }
.form-row label { font-size: .84rem; font-weight: 600; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: .88rem 1rem; font: inherit; background: var(--snow);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: rgba(184, 90, 50, 0.45);
  box-shadow: 0 0 0 3px rgba(184, 90, 50, 0.12);
}
.alert { padding: .95rem 1rem; border-radius: 12px; margin-bottom: 1rem; font-size: .94rem; }
.alert--ok { background: rgba(37, 168, 90, 0.1); color: var(--wa-deep); }
.alert--err { background: rgba(184, 90, 50, 0.1); color: var(--ember-deep); }

.article-page {
  padding: 2.5rem 0 5rem;
}
.article {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.article__meta {
  color: var(--muted);
  margin-bottom: 1.5rem;
  letter-spacing: .04em;
  font-size: .92rem;
  text-align: center;
}
.article__cover {
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 2rem;
  width: 100%;
  height: 380px;
  background: #1a201c;
}
.article__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}
.article__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 2rem;
}
.prose { color: var(--ink-soft); font-size: 1.06rem; line-height: 1.8; }
.prose p { margin-bottom: 1.2rem; max-width: 65ch; }

.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.6rem; }
.mission-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 1.55rem;
}
.mission-item h3 { font-size: 1.25rem; }
.mission-item p { color: var(--muted); font-size: .94rem; }

/* CTA + Footer */
.cta-band {
  background:
    radial-gradient(560px 240px at 8% 50%, rgba(184, 90, 50, 0.18), transparent 60%),
    linear-gradient(135deg, #0d1210, #172019 50%, #1a1612);
  color: rgba(255, 255, 255, 0.86); padding: 5.2rem 0;
}
.cta-band__inner {
  display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff; font-size: clamp(2.1rem, 3.6vw, 3.1rem); max-width: 15ch; letter-spacing: -.03em;
}
.cta-band .eyebrow { color: var(--champagne); }
.cta-band__actions { display: flex; flex-direction: column; gap: .7rem; min-width: min(100%, 340px); }

.site-footer {
  background: #07080a; color: rgba(255, 255, 255, 0.62); padding: 4.2rem 0 1.6rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.45fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.8rem;
}
.footer-brand strong {
  display: block; font-family: var(--font-display); font-size: 1.7rem;
  color: #fff; margin-bottom: .4rem; font-weight: 700;
}
.footer-muted { color: rgba(255, 255, 255, 0.45); font-size: .92rem; line-height: 1.7; }
.site-footer h3 {
  color: rgba(255, 255, 255, 0.9); font-size: .74rem; margin-bottom: 1.05rem;
  font-family: var(--font-body); letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
}
.footer-links { display: grid; gap: .55rem; }
.footer-links a:hover { color: var(--champagne); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07); padding-top: 1.3rem;
  font-size: .84rem; color: rgba(255, 255, 255, 0.35);
}

.fab {
  position: fixed; right: 1.15rem; bottom: 1.15rem; display: grid; gap: .65rem; z-index: 70;
}
.fab__btn {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28); transition: transform .25s var(--ease);
}
.fab__btn:hover { transform: scale(1.07); }
.fab__btn--call { background: linear-gradient(135deg, #d47845, var(--ember-deep)); }
.fab__btn--wa { background: linear-gradient(135deg, #2fbf68, var(--wa-deep)); }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

.ph {
  width: 100%; height: 100%; display: grid; place-items: center;
  color: rgba(255, 255, 255, 0.28); font-family: var(--font-display); font-size: 1.5rem;
  text-align: center; padding: 1rem;
}

body.has-fixed-header .page-hero { padding-top: 9rem; }

@media (max-width: 980px) {
  .nav { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-toggle { display: inline-flex; order: 2; }
  .nav-actions { display: none; }
  .menu {
    display: none; position: absolute; left: 0; right: 0; top: calc(100% + .4rem);
    background: rgba(18, 21, 28, 0.96); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px; padding: .55rem; flex-direction: column; box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
  }
  .menu.is-open { display: flex; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about-split, .contact-grid, .blog-grid, .blog-row, .blog-side-item { grid-template-columns: 1fr; }
  .blog-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
  .blog-card__media { height: 190px; flex-basis: 190px; }
  .services-grid, .process-grid, .why-grid, .reviews-grid, .mission-grid, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-side-item__img { aspect-ratio: 16 / 9; }
  .about-split { gap: 2rem; }
  .article__cover { height: 280px; }
}
@media (max-width: 640px) {
  .topbar { display: none; }
  .hero__content { padding: 7.2rem 0 3rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__chips {
    display: grid; grid-template-columns: 1fr 1fr; gap: .45rem;
  }
  .chip {
    justify-content: center; text-align: center; font-size: .74rem;
    padding: .5rem .4rem; white-space: nowrap;
  }
  .stats {
    margin-top: -1.15rem; margin-bottom: 0; padding: 0 0 1.15rem;
  }
  .stats__grid { grid-template-columns: repeat(2, 1fr); border-radius: 18px; }
  .stat { padding: 1.1rem .65rem; }
  .stat strong { font-size: 1.5rem; line-height: 1.1; }
  .stat span { font-size: .74rem; display: block; line-height: 1.3; }
  .marquee { margin-top: 0; padding: .75rem 0; }
  .marquee__track { font-size: .7rem; gap: 1.4rem; letter-spacing: .08em; }
  .services-grid, .process-grid, .why-grid, .reviews-grid, .mission-grid, .footer-grid, .blog-cards {
    grid-template-columns: 1fr;
  }
  .blog-card__media { height: 200px; flex-basis: 200px; }
  .blog-card__body h2 { min-height: 0; }
  .article__cover { height: 220px; border-radius: 16px; }
  .cta-band__actions { width: 100%; }
  .blog-row { padding-right: 0; }
  .section { padding: 4.4rem 0; }
  .blog-page { padding-top: 2.5rem; padding-bottom: 4rem; }
  .fab { right: .85rem; bottom: .85rem; }
  .fab__btn { width: 52px; height: 52px; }
  .site-footer { padding-bottom: 5.5rem; }
}

