@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bg: #eeeeee;
  --bg-alt: #f3f3f3;
  --text: #111111;
  --muted: #888888;
  --accent: #111111;
  --border: #e5e5e5;
  --rule: #111111;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 6.5vw, 90px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.5px;
}

h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 56px;
}

h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 20px;
}

.large-text {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--muted);
}

.fade { opacity: 0; transition: opacity .9s ease; }
.fade.visible { opacity: 1; }

section {
  padding: 140px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-full {
  padding: 140px 120px;
  max-width: 100%;
  border-top: 1px solid var(--border);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  border-bottom: 1.5px solid var(--text);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 500;
  padding: 4px 0 8px;
  cursor: pointer;
  transition: opacity .2s;
  letter-spacing: -0.2px;
}

.btn-primary:hover { opacity: 0.45; }

.btn-filled {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 40px;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
  border-radius: 0;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-filled:hover { opacity: 0.75; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 64px;
  padding: 0 120px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  justify-self: start;
}

.nav-menu {
  display: contents;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.5px;
  transition: color .2s;
}

.nav-links a:hover { color: var(--text); }

.nav-phone {
  justify-self: end;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  stroke: #111;
  stroke-width: 1;
  fill: none;
}

.hero {
  background: var(--white);
  padding: 60px 40px 120px;
  border-bottom: 1px solid var(--border);
}


.hero-slogan {
  margin-top: 20px;
  font-size: 18px;
  color: var(--muted);
}

.hero hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 48px 0;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 64px;
}

.hero-bottom .large-text { max-width: 560px; }

.hero-facts {
  min-width: 220px;
}

.hero-facts p {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.hero-facts strong {
  font-family: 'DM Serif Display', serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.2;
}

.hero-facts span {
  font-size: 16px;
  color: var(--muted);
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.marquee-wrap {
  background: var(--text);
  padding: 20px 0;
  overflow: hidden;
  border-top: 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg);
  padding-right: 36px;
}

.marquee-track em {
  font-style: normal;
  color: rgba(250,250,250,0.4);
  margin: 0 8px;
}

.philosophy-grid,
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}

.philosophy-content p { color: var(--muted); margin-bottom: 22px; }

.philosophy-content img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: grayscale(20%);
  margin-top: 12px;
}

.accordion-item {
  border-top: 1px solid var(--border);
}

.accordion-item:last-child { border-bottom: 1px solid var(--border); }

.accordion-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.accordion-item button span {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.2px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.accordion-item button b {
  font-family: 'DM Serif Display', serif;
  color: var(--muted);
  font-weight: 400;
}

.accordion-item button i {
  font-style: normal;
  font-size: 20px;
  color: var(--muted);
}

.accordion-content {
  display: none;
  padding-bottom: 24px;
}

.accordion-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.accordion-item.open .accordion-content { display: block; }
.accordion-item.open button i { color: var(--text); }

.work-cta { margin-top: 48px; }

.process {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding-top: 120px;
  padding-bottom: 120px;
}

.process h2 { margin-bottom: 80px; }

.process-flex { display: flex; }

.process-item {
  flex: 1;
  border-right: 1px solid var(--border);
  padding: 0 40px;
}

.process-item:first-child { padding-left: 0; }
.process-item:last-child { border-right: 0; padding-right: 0; }

.process-item strong {
  font-family: 'DM Serif Display', serif;
  font-size: 72px;
  color: var(--border);
  line-height: .9;
  font-weight: 400;
}

.process-item h3 {
  font-size: 17px;
  margin-top: -20px;
}

.process-item p {
  font-size: 14px;
  line-height: 110%;
  color: var(--muted);
}

.process-item small {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.numbers-text {
  background: var(--text);
  padding-top: 100px;
  padding-bottom: 100px;
}

.numbers-text p {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--bg);
  line-height: 1.4;
  max-width: 1200px;
}

.count-value {
  font-size: 1.4em;
  font-weight: 400;
}

.numbers-note {
  border-top: 1px solid rgba(250,250,250,0.35);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 16px;
  color: rgba(250,250,250,0.5);
}

.cases-list .case {
  border-top: 1px solid var(--border);
  padding: 60px 0;
  display: grid;
  grid-template-columns: 10% 35% 55%;
  gap: 40px;
  align-items: start;
}

.case-number {
  font-family: 'DM Serif Display', serif;
  font-size: 80px;
  line-height: .9;
  color: var(--border);
}

.case img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(15%);
}

.tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 10px;
}

.case p { color: var(--muted); margin-bottom: 8px; }
.case p strong { color: var(--text); }
.case ul { margin: 12px 0 22px 18px; list-style: disc; }

#pricing { border-top: 1px solid var(--border); }
.pricing-intro { max-width: 940px; color: var(--muted); margin-bottom: 26px; }

.pricing-row {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 40px 0;
}

.pricing-row h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.price { font-size: 20px; font-weight: 500; }
.pricing-row p { font-size: 16px; color: var(--muted); }

.featured {
  background: var(--text);
  color: var(--bg);
  padding-left: 14px;
  padding-right: 14px;
}

.featured h3,
.featured .price,
.featured p { color: var(--bg); }

.featured .price span {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.featured .btn-primary {
  color: var(--bg);
  border-bottom-color: var(--bg);
}

.pricing-note { margin-top: 48px; font-size: 16px; color: var(--muted); }

.pull-quote {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding-top: 120px;
  padding-bottom: 120px;
}

.pull-quote blockquote {
  max-width: 980px;
  margin: 0 auto;
}

.quote-mark {
  float: left;
  font-family: 'DM Serif Display', serif;
  font-size: 200px;
  line-height: .5;
  color: var(--border);
  margin-right: -20px;
}

.pull-quote p {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.4;
  color: var(--text);
}

.pull-quote footer {
  margin-top: 40px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  color: var(--muted);
}

.pull-quote footer img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.reviews {
  border-top: 1px solid var(--border);
  padding-right: 0;
}

.reviews-head { padding-right: 120px; }

.reviews-slider {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-right: 120px;
}

.reviews-slider::-webkit-scrollbar { display: none; }

.review-card {
  min-width: 380px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--bg-alt);
  padding: 36px;
  border-top: 3px solid var(--text);
}

.stars {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card p { color: var(--text); font-size: 17px; margin-bottom: 16px; }
.review-card hr { border: 0; border-top: 1px solid var(--border); margin: 18px 0; }
.review-card div img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}

.review-card small { color: var(--muted); }

.reviews-controls {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  padding-right: 120px;
}

.reviews-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
}

.reviews-controls svg {
  width: 20px;
  height: 20px;
  stroke: #111;
  stroke-width: 1;
  fill: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.faq-grid article { margin-bottom: 48px; }

.faq-grid h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}

.faq-grid p {
  font-size: 17px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  margin-bottom: 80px;
}

.form-lead {
  margin-top: 24px;
  font-size: 20px;
  color: var(--muted);
}

.form-facts p {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--border);
  padding: 12px 0 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--text);
  transition: border-color .2s;
}

input::placeholder { color: var(--muted); font-weight: 300; }
input:focus { outline: none; border-bottom-color: var(--text); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 24px;
  align-items: end;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

#thank-you {
  display: none;
  text-align: left;
  padding: 40px 0;
}

#thank-you.show { display: block; }

#thank-you h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  font-weight: 400;
}

#thank-you p { color: var(--muted); }

.form-bottom {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.form-bottom p { font-size: 13px; color: var(--muted); }
.form-bottom a { font-size: 15px; font-weight: 500; }

.team-contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}

.team-line {
  border-bottom: 1px solid var(--border);
  padding: 22px 0 18px;
}

.team-line h3 { margin-bottom: 2px; font-size: 17px; }
.team-line p { font-size: 15px; color: var(--muted); }

.contact-content .contact-phone {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  line-height: 1.2;
}

.contact-content p { font-size: 17px; color: var(--text); }
.contact-content .muted { font-size: 15px; color: var(--muted); }

.contact-content hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.contact-content iframe {
  width: 100%;
  height: 260px;
  border: 1px solid var(--border);
}

.socials {
  margin-top: 24px;
  display: flex;
  gap: 24px;
}

.socials a { font-size: 15px; font-weight: 400; }

footer {
  background: var(--text);
  padding: 60px 120px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

footer .brand {
  color: var(--bg);
  margin-bottom: 4px;
}

footer p, .footer-center {
  font-size: 14px;
  color: rgba(250,250,250,0.5);
}

.footer-center {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-center a {
  color: rgba(250,250,250,0.5);
  transition: color .2s;
}

.footer-center a:hover { color: var(--bg); }

.footer-right {
  display: flex;
  gap: 16px;
}

.footer-right a {
  font-size: 14px;
  color: rgba(250,250,250,0.6);
  transition: color .2s;
}

.footer-right a:hover { color: var(--bg); }

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.floating-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--text);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 80;
}

.floating-call.show {
  opacity: 1;
  pointer-events: auto;
}

.floating-call svg {
  width: 22px;
  height: 22px;
  stroke: #111;
  stroke-width: 1;
  fill: none;
}

@media (max-width: 767px) {
  section { padding: 40px 24px; }
  .section-full { padding: 24px; }
  .nav { grid-template-columns: 1fr auto; padding: 0 24px; }
  .nav-toggle { display: inline-flex; justify-self: end; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 26px;
  }
  .nav-open .nav-menu { display: block; }
  .nav-links { flex-direction: column; gap: 12px; margin-bottom: 14px; }
  .nav-phone { display: flex; justify-self: center; }
  .hero { padding: 50px 24px 80px; }
  h1 { font-size: 44px; letter-spacing: -1px; }
  h2 { font-size: 30px; margin-bottom: 40px; }
  .hero h1 { max-width: 100%; }
  .hero-slogan { font-size: 16px; }
  .hero-bottom { flex-direction: column; gap: 40px; align-items: flex-start; }
  .hero-actions { flex-wrap: wrap; gap: 22px; margin-top: 36px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 0px; }
  .work-grid { grid-template-columns: 1fr; gap: 40px; }
  .process h2 {margin-bottom: 0;}
  .process-flex { flex-direction: column; gap: 0; }
  .process-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 0; }
  .process-item:last-child { border-bottom: 0; }
  .cases-list .case { grid-template-columns: 1fr; gap:10px; padding: 25px 0; }
  .case-number { display: none; }
  .pricing-row { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .team-contacts-grid { grid-template-columns: 1fr; gap: 60px; }
  footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 18px;
    padding: 34px 24px;
  }
  .footer-left { gap: 8px; }
  .footer-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    max-width: 300px;
  }
  .footer-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }
  footer p, .footer-center, .footer-right a { font-size: 13px; line-height: 1.5; }
  .reviews { padding-right: 0; }
  .reviews-head { padding-right: 24px; }
  .reviews-slider {
    gap: 16px;
    padding-right: 24px;
    padding-left: 2px;
  }
  .review-card {
    min-width: calc(100vw - 48px);
    width: calc(100vw - 48px);
    padding: 24px;
  }
  .review-card p { font-size: 16px; margin-bottom: 12px; }
  .review-card h3 { font-size: 17px; margin-bottom: 4px; }
  .review-card small { font-size: 13px; line-height: 1.4; display: block; }
  .reviews-controls {
    padding-right: 24px;
    margin-top: 16px;
  }
  .reviews-controls button { width: 38px; height: 38px; }
}

@media (min-width: 768px) and (max-width: 1279px) {
  section, .section-full { padding: 100px 60px; }
  .nav { padding: 0 60px; grid-template-columns: 1fr auto; }
  .nav-toggle { display: inline-flex; justify-self: end; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 22px 60px 28px;
  }
  .nav-open .nav-menu { display: block; }
  .nav-links { justify-content: flex-start; margin-bottom: 16px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 60px; }
  .work-grid { grid-template-columns: 1fr; gap: 60px; }
  .process-flex { flex-wrap: wrap; }
  .process-item { min-width: 45%; padding: 0 24px 26px 0; border-right: 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .team-contacts-grid { grid-template-columns: 1fr; gap: 60px; }
  .pricing-row { grid-template-columns: 1fr 1fr; }
  .reviews-head { padding-right: 60px; }
  .reviews-slider { padding-right: 60px; }
  .reviews-controls { padding-right: 60px; }
  footer { flex-direction: column; text-align: center; }
}

@media (min-width: 1280px) {
  .philosophy-grid { grid-template-columns: 1fr 1fr; gap: 120px; }
  .work-grid { grid-template-columns: 1fr 1fr; gap: 120px; }
  .process-flex { display: flex; flex-direction: row; }
  .process-item { flex: 1; padding: 0 40px; border-right: 1px solid var(--border); }
  .process-item:first-child { padding-left: 0; }
  .process-item:last-child { border-right: none; }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 24px; align-items: end; }
  .team-contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; }
  .cases-list .case { display: grid; grid-template-columns: 10% 35% 55%; gap: 40px; align-items: start; }
  footer { display: flex; flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 1920px) {
  section, .nav, footer {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
