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

:root {
  --cream:   #F7F3EC;
  --white:   #FFFFFF;
  --ink:     #111111;
  --ink-2:   #2A2520;
  --muted:   #7A7169;
  --orange:  #FF4D1C;
  --blue:    #2456FF;
  --yellow:  #F5D423;
  --teal:    #16C89A;
  --pink:    #FF5F8F;
  --border:  rgba(0,0,0,0.09);
  --radius:  12px;
  --font:    'Plus Jakarta Sans', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  transition: all 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover {
  background: #e63d0f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,77,28,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(0,0,0,0.2);
}
.btn--ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--orange);
  color: var(--white);
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 7px;
}
.btn--nav:hover { background: #e63d0f; }

.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--full { width: 100%; }

.link-arrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.18s;
}
.link-arrow:hover { color: var(--ink); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.25s, box-shadow 0.25s, padding 0.25s;
}

.nav.scrolled {
  background: rgba(247,243,236,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  padding: 13px 0;
}

.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo span {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.logo-icon {
  width: 26px;
  height: 24px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 8px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.18s;
}

.nav__links a:hover,
.nav__links a.active { color: var(--ink); }

.nav__inner .btn--nav { margin-left: auto; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.nav__burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 28px 20px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  gap: 6px;
}

.nav__mobile a {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.18s;
}

.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile a:hover { color: var(--ink); }
.nav__mobile .btn { margin-top: 10px; }
.nav__mobile.open { display: flex; }

/* ===== HOME HERO ===== */
.home-hero {
  position: relative;
  background: var(--cream);
  padding: 160px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.home-hero__deco {
  position: absolute;
  pointer-events: none;
}

.deco-circle {
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  position: absolute;
}

.deco-circle--orange {
  width: 480px; height: 480px;
  background: var(--orange);
  top: -160px; right: -100px;
  opacity: 0.18;
}

.deco-circle--yellow {
  width: 320px; height: 320px;
  background: var(--yellow);
  bottom: -60px; left: 10%;
  opacity: 0.22;
}

.deco-circle--blue {
  width: 240px; height: 240px;
  background: var(--blue);
  top: 30%; right: 20%;
  opacity: 0.12;
}

.home-hero__content { position: relative; z-index: 1; }

.home-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.home-hero__label::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: blink 2.2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.home-hero__h1 {
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 820px;
}

.home-hero__h1 em {
  font-style: italic;
  color: var(--orange);
  font-weight: 900;
}

.home-hero__body {
  font-size: 19px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
}

.home-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.home-hero__scroll-label {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-line {
  width: 44px; height: 1px;
  background: linear-gradient(to right, var(--muted), transparent);
  animation: scrollpulse 2.2s ease-in-out infinite;
}

@keyframes scrollpulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* ===== HOME: WORK PREVIEW ===== */
.home-work {
  background: var(--white);
  padding: 100px 0;
}

.home-work__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 12px;
}

.home-work__header h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-work__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.project-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  border: 1.5px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  text-decoration: none;
  color: var(--ink);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: transparent;
}

.project-card--featured { grid-row: span 2; }

.project-card__visual {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 20px;
}

.project-card--featured .project-card__visual { height: 360px; }

.project-card__info { padding: 24px 28px 28px; }

.project-card__cat {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.project-card__info h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.project-card__info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== HOME: DIFF (ORANGE BLOCK) ===== */
.home-diff {
  background: var(--orange);
  padding: 100px 0;
}

.home-diff__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.home-diff__text h2 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.home-diff__text p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}

.home-diff__text .link-arrow {
  color: rgba(255,255,255,0.6);
  display: inline-block;
  margin-top: 8px;
}

.home-diff__text .link-arrow:hover { color: var(--white); }

.home-diff__numbers {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 8px;
}

.big-stat__num {
  display: block;
  font-size: 60px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 6px;
}

.big-stat__label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  line-height: 1.5;
}

/* ===== HOME: PULL QUOTE ===== */
.home-quote {
  background: var(--ink);
  padding: 100px 0;
}

.pull-quote {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.pull-quote__mark {
  display: block;
  font-size: 88px;
  line-height: 0.5;
  color: var(--orange);
  margin-bottom: 32px;
  font-family: Georgia, serif;
}

.pull-quote p {
  font-size: clamp(19px, 2.5vw, 28px);
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.pull-quote footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pull-quote footer strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.pull-quote footer span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.pull-quote--sm { max-width: 620px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--cream);
  padding: 160px 0 80px;
  border-bottom: 1.5px solid var(--border);
}

.page-hero__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.page-hero__h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 20px;
}

.page-hero__body {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ===== BROWSER FRAME MOCKUP ===== */
.browser-frame {
  margin: 20px 20px 0;
  background: rgba(255,255,255,0.12);
  border-radius: 8px 8px 0 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-bottom: none;
  overflow: hidden;
}

.browser-frame--lg { margin: 24px 28px 0; }

.browser-bar {
  height: 26px;
  background: rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
}

.browser-bar span {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.browser-bar span:nth-child(1) { background: rgba(255,95,87,0.7); }
.browser-bar span:nth-child(2) { background: rgba(255,189,46,0.7); }
.browser-bar span:nth-child(3) { background: rgba(39,201,63,0.7); }

.browser-body { padding: 16px 14px; }

.bb-hero {
  height: 14px;
  background: rgba(255,255,255,0.22);
  border-radius: 4px;
  width: 65%;
  margin-bottom: 10px;
}

.bb-row { display: flex; gap: 8px; margin-bottom: 8px; }
.bb-row.mt { margin-top: 10px; }

.bb-block {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.w30 { width: 30%; }
.w35 { width: 35%; }
.w40 { width: 40%; }
.w50 { width: 50%; }
.w60 { width: 60%; }
.w70 { width: 70%; }
.w80 { width: 80%; }

.bb-cards { display: flex; gap: 7px; margin-top: 10px; }
.bb-card {
  flex: 1; height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.08);
}

.bb-split { display: flex; gap: 10px; }
.bb-img {
  width: 72px; height: 60px;
  background: rgba(255,255,255,0.12);
  border-radius: 5px; flex-shrink: 0;
}
.bb-text-col { flex: 1; display: flex; flex-direction: column; gap: 8px; padding-top: 4px; }
.bb-btn {
  height: 18px; width: 56px;
  background: rgba(255,255,255,0.25);
  border-radius: 12px;
}

/* ===== WORK PAGE ===== */
.work-list {
  background: var(--white);
  padding: 80px 0;
}

.work-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1.5px solid var(--border);
}

.work-item:first-child { padding-top: 0; }
.work-item:last-child { border-bottom: none; padding-bottom: 0; }

.work-item--flip .work-item__visual { order: 2; }
.work-item--flip .work-item__info { order: 1; }

.work-item__visual {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.work-item__info h2 {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.05;
}

.work-item__meta { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--cream);
  border: 1.5px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}

.work-item__info p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 12px;
}

.work-item__results {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1.5px solid var(--border);
  flex-wrap: wrap;
}

.work-item__results li {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.work-item__results strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}

.work-cta {
  background: var(--yellow);
  padding: 80px 0;
}

.work-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.work-cta__inner h2 {
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* ===== SERVICES PAGE ===== */
.services-list {
  background: var(--white);
  padding: 80px 0 40px;
}

.service-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 56px 0;
  border-bottom: 1.5px solid var(--border);
}

.service-row:last-child { border-bottom: none; }

.service-divider { display: none; }

.service-row__num {
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.05em;
  padding-top: 6px;
}

.service-row__body h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.service-row__body > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.78;
  max-width: 580px;
  margin-bottom: 12px;
}

.service-row__details {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1.5px solid var(--border);
}

.service-row__details h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.service-row__details ul { display: flex; flex-direction: column; gap: 9px; }

.service-row__details li {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  padding-left: 16px;
  position: relative;
}

.service-row__details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 12px;
}

.service-row__price {
  font-size: 40px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.service-row__price-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.services-faq {
  background: var(--yellow);
  padding: 80px 0 100px;
}

.services-faq__inner h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 44px;
  line-height: 1.05;
}

.faq-list { max-width: 680px; }

.faq-item { border-bottom: 2px solid rgba(0,0,0,0.12); }

.faq-item summary {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.18s;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.78;
  padding-bottom: 22px;
  opacity: 0.75;
}

/* ===== ABOUT PAGE ===== */
.about-story {
  background: var(--white);
  padding: 80px 0;
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-story__text h2 {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  line-height: 1.05;
}

.about-story__text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 18px;
}

.about-story__aside { display: flex; flex-direction: column; gap: 14px; }

.about-aside-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.about-aside-card__year {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.about-aside-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.about-team {
  background: var(--cream);
  padding: 80px 0;
}

.about-team__title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.team-card__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.team-card:nth-child(2) .team-card__avatar { background: var(--blue); }
.team-card:nth-child(3) .team-card__avatar { background: var(--teal); }

.team-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.team-card__role {
  display: block;
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.team-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
}

.about-values {
  background: var(--white);
  padding: 80px 0;
}

.about-values__inner h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  line-height: 1.05;
}

.values-list { display: flex; flex-direction: column; }

.value-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1.5px solid var(--border);
}

.value-item:first-child { border-top: 1.5px solid var(--border); }

.value-item__num {
  font-size: 20px;
  color: var(--orange);
  font-weight: 900;
  padding-top: 2px;
}

.value-item h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.78;
  max-width: 580px;
}

.about-quote {
  background: var(--blue);
  padding: 80px 0 100px;
}

.about-quote .pull-quote__mark { color: var(--yellow); }

/* ===== CONTACT PAGE ===== */
.contact-page {
  background: var(--cream);
  padding: 120px 0 80px;
  min-height: 100vh;
}

.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  padding-top: 60px;
}

.contact-page__h1 {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 14px 0 20px;
}

.contact-page__body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }

.contact-detail { display: flex; flex-direction: column; gap: 3px; }

.contact-detail__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-detail a,
.contact-detail span {
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  transition: color 0.18s;
}

.contact-detail a:hover { color: var(--orange); }

.contact-reassure {
  padding-top: 28px;
  border-top: 1.5px solid var(--border);
}

.contact-reassure p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-reassure a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,77,28,0.1);
  background: var(--white);
}

.form-group select {
  cursor: pointer;
  color: var(--muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%237A7169' stroke-width='2'%3E%3Cpath d='m19 9-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
}

.form-group select option { background: var(--white); color: var(--ink); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  padding-top: 64px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}

.site-footer .nav__logo span { color: var(--white); }

.site-footer__brand .nav__logo { margin-bottom: 14px; }

.site-footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
}

.site-footer__nav { display: flex; flex-direction: column; gap: 11px; padding-top: 4px; }

.site-footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  transition: color 0.18s;
}

.site-footer__nav a:hover { color: var(--white); }

.site-footer__contact { display: flex; flex-direction: column; gap: 14px; padding-top: 4px; }

.site-footer__contact > a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  transition: color 0.18s;
}

.site-footer__contact > a:hover { color: var(--orange); }

.footer-socials { display: flex; gap: 8px; }

.footer-socials a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.18s;
}

.footer-socials a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.site-footer__bottom { padding: 20px 0; }

.site-footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer__bottom span {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ===== RICH BROWSER MOCKUP TEMPLATES ===== */
.bm-urlbar {
  height: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bm-urlbar__input {
  flex: 1;
  height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 4.5px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 0 5px;
}
.bm-urlbar__icon {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.browser-body--tpl {
  padding: 0;
  background: #ffffff;
  overflow: hidden;
}

.bm-nav {
  display: flex;
  align-items: center;
  padding: 4px 7px;
  gap: 4px;
}
.bm-nav__logo { height: 6px; width: 22px; border-radius: 3px; flex-shrink: 0; }
.bm-nav__spacer { flex: 1; }
.bm-nav__link { width: 11px; height: 3px; border-radius: 2px; background: rgba(0,0,0,0.13); }
.bm-nav__pill { height: 9px; width: 20px; border-radius: 3px; margin-left: 3px; flex-shrink: 0; }

/* ── E-commerce: Volta Gear ── */
.bm-ecom-nav { background: #0f0f1a; border-bottom: 1px solid rgba(255,255,255,0.06); }
.bm-ecom-nav .bm-nav__logo { background: #ff4d1c; }
.bm-ecom-nav .bm-nav__link { background: rgba(255,255,255,0.2); }
.bm-ecom-nav .bm-nav__pill { background: #ff4d1c; }

.bm-ecom-hero {
  background: linear-gradient(130deg, #0d0d1c 0%, #1a1a38 100%);
  padding: 10px 8px 9px;
}
.bm-ecom-hero__tag { height: 3px; width: 30px; border-radius: 2px; background: #ff4d1c; opacity: 0.75; margin-bottom: 5px; }
.bm-ecom-hero__h1 { height: 11px; width: 80%; border-radius: 3px; background: rgba(255,255,255,0.92); margin-bottom: 4px; }
.bm-ecom-hero__h2 { height: 11px; width: 58%; border-radius: 3px; background: rgba(255,255,255,0.92); margin-bottom: 8px; }
.bm-ecom-hero__sub { height: 3px; width: 62%; border-radius: 2px; background: rgba(255,255,255,0.3); margin-bottom: 3px; }
.bm-ecom-hero__sub2 { height: 3px; width: 46%; border-radius: 2px; background: rgba(255,255,255,0.3); margin-bottom: 9px; }
.bm-ecom-hero__btns { display: flex; gap: 4px; }
.bm-ecom-hero__btn-a { height: 11px; width: 36px; border-radius: 3px; background: #ff4d1c; }
.bm-ecom-hero__btn-b { height: 11px; width: 28px; border-radius: 3px; border: 1px solid rgba(255,255,255,0.28); }

.bm-ecom-banner { background: #ff4d1c; height: 11px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.bm-ecom-banner__dot { height: 3px; width: 48px; border-radius: 2px; background: rgba(255,255,255,0.5); }
.bm-ecom-banner__dot--sm { width: 24px; }

.bm-ecom-products { background: #f4f1eb; padding: 6px; }
.bm-ecom-products__heading { height: 3px; width: 28px; border-radius: 2px; background: rgba(0,0,0,0.15); margin-bottom: 5px; }
.bm-ecom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.bm-ecom-card { background: #fff; border-radius: 3px; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.06); }
.bm-ecom-card__img { aspect-ratio: 1; background: linear-gradient(135deg, #e2ddd6, #cac5bc); }
.bm-ecom-card__img--b { background: linear-gradient(135deg, #d6dae2, #bcc2ca); }
.bm-ecom-card__img--c { background: linear-gradient(135deg, #e2d6d6, #cabcbc); }
.bm-ecom-card__img--d { background: linear-gradient(135deg, #d6e2d8, #bccabe); }
.bm-ecom-card__body { padding: 3px 4px 4px; }
.bm-ecom-card__name { height: 3px; width: 70%; border-radius: 2px; background: rgba(0,0,0,0.22); margin-bottom: 2px; }
.bm-ecom-card__price { height: 3px; width: 35%; border-radius: 2px; background: #ff4d1c; opacity: 0.7; }

/* ── SaaS: Paletto Studio ── */
.bm-saas-nav { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.07); }
.bm-saas-nav .bm-nav__logo { background: #2456ff; }
.bm-saas-nav .bm-nav__pill { background: #2456ff; }

.bm-saas-hero {
  background: linear-gradient(165deg, #f0f4ff 0%, #e8edff 100%);
  padding: 9px 8px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.bm-saas-hero__badge { height: 7px; width: 38px; border-radius: 100px; background: rgba(36,86,255,0.12); border: 1px solid rgba(36,86,255,0.22); margin-bottom: 6px; }
.bm-saas-hero__h1 { height: 9px; width: 75%; border-radius: 3px; background: rgba(0,0,0,0.82); margin-bottom: 3px; }
.bm-saas-hero__h2 { height: 9px; width: 54%; border-radius: 3px; background: rgba(0,0,0,0.82); margin-bottom: 7px; }
.bm-saas-hero__sub { height: 3px; width: 62%; border-radius: 2px; background: rgba(0,0,0,0.2); margin-bottom: 3px; }
.bm-saas-hero__sub2 { height: 3px; width: 45%; border-radius: 2px; background: rgba(0,0,0,0.2); margin-bottom: 7px; }
.bm-saas-hero__btns { display: flex; gap: 4px; justify-content: center; }
.bm-saas-hero__btn-a { height: 10px; width: 36px; border-radius: 3px; background: #2456ff; }
.bm-saas-hero__btn-b { height: 10px; width: 28px; border-radius: 3px; border: 1px solid rgba(0,0,0,0.16); }

.bm-saas-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 5px 7px; background: #fff; }
.bm-saas-feature { background: #f4f7ff; border-radius: 4px; padding: 5px 5px 4px; border: 1px solid rgba(36,86,255,0.07); }
.bm-saas-feature__icon { width: 9px; height: 9px; border-radius: 3px; background: #2456ff; opacity: 0.25; margin-bottom: 4px; }
.bm-saas-feature__title { height: 3px; width: 55%; border-radius: 2px; background: rgba(0,0,0,0.3); margin-bottom: 3px; }
.bm-saas-feature__line { height: 2px; border-radius: 2px; background: rgba(0,0,0,0.1); margin-bottom: 2px; }
.bm-saas-feature__line--w80 { width: 80%; }
.bm-saas-feature__line--w60 { width: 60%; }

/* ── Hospitality: Ember & Oak ── */
.bm-resto-nav { background: #1c1811; border-bottom: 1px solid rgba(255,255,255,0.05); }
.bm-resto-nav .bm-nav__logo { background: #c9a96e; }
.bm-resto-nav .bm-nav__link { background: rgba(255,255,255,0.2); }
.bm-resto-nav .bm-nav__pill { background: #16c89a; }

.bm-resto-hero { display: grid; grid-template-columns: 52% 48%; }
.bm-resto-hero__text {
  background: #1c1811;
  padding: 9px 7px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
}
.bm-resto-hero__eyebrow { height: 2px; width: 35%; border-radius: 2px; background: #16c89a; opacity: 0.75; margin-bottom: 2px; }
.bm-resto-hero__h1a { height: 7px; width: 88%; border-radius: 3px; background: rgba(255,255,255,0.88); }
.bm-resto-hero__h1b { height: 7px; width: 64%; border-radius: 3px; background: rgba(255,255,255,0.88); }
.bm-resto-hero__rule { width: 22px; height: 1px; background: rgba(201,169,110,0.45); margin: 2px 0; }
.bm-resto-hero__sub { height: 2px; width: 92%; border-radius: 2px; background: rgba(255,255,255,0.22); }
.bm-resto-hero__sub2 { height: 2px; width: 74%; border-radius: 2px; background: rgba(255,255,255,0.22); }
.bm-resto-hero__sub3 { height: 2px; width: 56%; border-radius: 2px; background: rgba(255,255,255,0.22); margin-bottom: 3px; }
.bm-resto-hero__btn { height: 9px; width: 40px; border-radius: 3px; background: #16c89a; margin-top: 1px; }
.bm-resto-hero__img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #3a2618 0%, #5c3d28 50%, #7a5035 100%);
}
.bm-resto-hero__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 45%, rgba(255,190,90,0.18) 0%, transparent 55%),
    radial-gradient(circle at 70% 65%, rgba(180,110,50,0.12) 0%, transparent 45%);
}

.bm-resto-bar {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px 6px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.bm-resto-bar__field { flex: 1; height: 9px; background: #f5f2ec; border-radius: 3px; border: 1px solid rgba(0,0,0,0.09); }
.bm-resto-bar__btn { height: 9px; width: 26px; border-radius: 3px; background: #16c89a; flex-shrink: 0; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .home-work__grid { grid-template-columns: 1fr; }
  .project-card--featured { grid-row: span 1; }
  .project-card--featured .project-card__visual { height: 240px; }

  .home-diff__inner { grid-template-columns: 1fr; gap: 48px; }

  .work-item { grid-template-columns: 1fr; gap: 28px; }
  .work-item--flip .work-item__visual { order: 0; }
  .work-item--flip .work-item__info { order: 0; }

  .team-grid { grid-template-columns: 1fr; }

  .about-story__inner { grid-template-columns: 1fr; gap: 48px; }

  .service-row { grid-template-columns: 1fr; gap: 12px; }
  .service-row__num { display: none; }
  .service-row__details { grid-template-columns: 1fr; gap: 28px; }

  .contact-page__inner { grid-template-columns: 1fr; gap: 48px; }

  .site-footer__inner { grid-template-columns: 1fr; }

  .work-cta__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
  .nav__links, .nav__inner .btn--nav { display: none; }
  .nav__burger { display: flex; }

  .home-hero__scroll-label { display: none; }
  .home-hero { padding: 120px 0 72px; }
  .home-hero__cta { flex-direction: column; }
  .home-hero__cta .btn { width: 100%; }

  .page-hero { padding: 120px 0 60px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  .site-footer__bottom .container { flex-direction: column; gap: 8px; }

  .work-item__results { flex-direction: column; gap: 16px; }
}
