:root {
  --bg: #f5ede0;
  --bg-soft: #ffffff;
  --surface: #ffffff;
  --surface-2: #fbf6ee;
  --border: #e7dcc8;
  --border-dark: rgba(255, 255, 255, 0.14);
  --navy: #1c2636;
  --navy-soft: #2a3650;
  --text: #1c2636;
  --text-dim: #59616b;
  --text-invert: #ffffff;
  --text-invert-dim: rgba(255, 255, 255, 0.68);
  --accent: #ff7f00;
  --accent-dark: #e56e00;
  --accent-tint: rgba(255, 127, 0, 0.08);
  --success-bg: #dff3dd;
  --success-text: #276b2a;
  --danger-bg: #fdece9;
  --danger-text: #c0392b;
  --gradient: linear-gradient(135deg, #ff7f00 0%, #ffa94d 100%);
  --radius: 8px;
  --radius-sm: 5px;
  --shadow: 0 22px 45px -28px rgba(23, 32, 43, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before { content: ""; position: fixed; z-index: 9999; inset: 0; pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E"); }
.scroll-progress { position: fixed; z-index: 1000; top: 0; left: 0; width: var(--scroll-progress, 0%); height: 3px; background: var(--accent); box-shadow: 0 1px 8px rgba(255,127,0,.55); transition: width .08s linear; }

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
  scroll-margin-top: 118px;
}

.brand-accent {
  color: var(--accent-dark);
  font-weight: 800;
}

footer.site-footer .brand-accent,
.trust-strip .brand-accent {
  color: var(--accent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 4px;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  padding: 7px 16px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent-tint);
  margin-bottom: 16px;
}

h1, h2, h3, h4 {
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h1, h2 { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; letter-spacing: -0.035em; }

h1 {
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.02;
}

h2 {
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.08;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head p {
  color: var(--text-dim);
  font-size: 17px;
}

p {
  margin: 0 0 16px;
  color: var(--text-dim);
}

/* ---------- Top bar ---------- */

.topbar {
  background: var(--accent);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  gap: 16px;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar-contact .dot {
  opacity: 0.6;
}

.topbar-contact a {
  transition: opacity 0.2s ease;
}

.topbar-contact a:hover {
  opacity: 0.7;
}

/* ---------- Header ---------- */

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 16px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text-invert);
}

.logo > span:last-child { display: grid; line-height: 1; }
.logo small { display: block; margin-top: 4px; color: var(--text-invert-dim); font-size: 7px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }

.logo-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .14));
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 15px;
  color: var(--text-invert-dim);
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-invert);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
  color: var(--text-invert);
  background: rgba(255, 255, 255, 0.14);
}

.nav-cta {
  display: inline-flex;
  padding: 10px 20px !important;
  background: var(--gradient);
  color: #ffffff !important;
  border-radius: 999px;
  font-weight: 700 !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  color: var(--text-invert);
  font-size: 18px;
  cursor: pointer;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  padding: 3px;
  margin-right: 4px;
}

.lang-switch button {
  border: none;
  background: transparent;
  color: var(--text-invert-dim);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switch button.active {
  background: var(--gradient);
  color: #ffffff;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-primary {
  background: var(--gradient);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 28px -12px rgba(255, 127, 0, 0.62);
}

.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--accent);
}

/* ---------- Hero ---------- */

.hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 500px;
  background: radial-gradient(closest-side, rgba(255, 127, 0, 0.14), transparent 70%);
  z-index: -1;
}

.hero .lead {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: left;
  padding-left: 24px;
  border-left: 1px solid var(--border);
}

.stat:first-child {
  padding-left: 0;
  border-left: none;
}

.stat .num {
  font-size: 34px;
  font-weight: 900;
  color: var(--accent);
}

.stat .label {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 6px;
}

/* ---------- Cards / Grids ---------- */

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 1px 2px rgba(28, 38, 54, 0.04);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  margin-bottom: 0;
}

.card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent-tint);
  color: var(--accent-dark);
  border: 1px solid rgba(255, 127, 0, 0.25);
}

/* ---------- Rent vs Own comparison ---------- */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}

.compare-col {
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.compare-col.good {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 127, 0, 0.06), transparent 60%), var(--surface);
}

.compare-col .compare-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.compare-col.bad .compare-tag {
  background: var(--danger-bg);
  color: var(--danger-text);
}

.compare-col.good .compare-tag {
  background: var(--success-bg);
  color: var(--success-text);
}

.compare-col h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.compare-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.compare-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-dim);
}

.compare-list .mark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 1px;
}

.compare-col.bad .mark {
  background: var(--danger-bg);
  color: var(--danger-text);
}

.compare-col.good .mark {
  background: var(--success-bg);
  color: var(--success-text);
}

/* ---------- Work / Portfolio ---------- */

.work-thumb {
  height: 180px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.02em;
}

.work-thumb.g1 { background: linear-gradient(135deg, #ff7f00, #1c2636); }
.work-thumb.g2 { background: linear-gradient(135deg, #e2725b, #ffb577); }
.work-thumb.g3 { background: linear-gradient(135deg, #1c2636, #3e4c6a); }
.work-thumb.g4 { background: linear-gradient(135deg, #ffa94d, #ff7f00); }
.work-thumb.g5 { background: linear-gradient(135deg, #6b5b4a, #a98b6a); }
.work-thumb.g6 { background: linear-gradient(135deg, #276b2a, #5fa463); }

.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.work-meta .cat {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
}

/* ---------- Team ---------- */

.team-card {
  text-align: center;
}

.avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
}

.team-card .role {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.social-row a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--text-dim);
  transition: all 0.2s ease;
}

.social-row a:hover {
  border-color: var(--accent);
  color: var(--text);
}

/* ---------- Process ---------- */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process .step {
  position: relative;
  padding-top: 8px;
}

.process .step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-size: 34px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  display: block;
  margin-bottom: 14px;
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: var(--navy);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--text-invert);
}

.cta-banner p {
  color: var(--text-invert-dim);
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side, rgba(255, 127, 0, 0.22), transparent 70%);
  z-index: 0;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

/* ---------- Contact ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.info-row .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-row h4 {
  margin-bottom: 4px;
  font-size: 15px;
}

.info-row p {
  margin: 0;
  font-size: 15px;
}

form.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 18px;
  box-shadow: 0 1px 2px rgba(28, 38, 54, 0.04);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
}

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.form-note {
  font-size: 13px;
  color: var(--text-dim);
}

.form-status { margin: -8px 0 0; color: var(--success-text); font-size: 13px; font-weight: 700; }

/* ---------- Footer ---------- */

footer.site-footer {
  background: var(--navy);
  color: var(--text-invert-dim);
  border-top: 3px solid var(--accent);
  padding: 56px 0 32px;
  margin-top: 40px;
}

footer.site-footer p {
  color: var(--text-invert-dim);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-top h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-links li {
  color: var(--text-invert-dim);
  font-size: 15px;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-invert-dim);
  font-size: 14px;
}

/* ---------- Responsive ---------- */

/* ---------- Editorial premium treatment ---------- */

.hero { padding: 108px 0 78px; text-align: left; background: var(--bg); isolation: isolate; }
.hero .container { display: grid; grid-template-columns: minmax(0, .94fr) minmax(440px, 1.06fr); column-gap: 64px; align-items: center; }
.hero::before { inset: -25% -10% auto 45%; height: 650px; background: radial-gradient(closest-side, rgba(214, 107, 50, .18), transparent 72%); }
.hero::after { content: "DMS"; position: absolute; z-index: -1; left: 42%; top: 22px; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(190px, 25vw, 390px); line-height: .7; color: rgba(28,38,54,.035); letter-spacing: -.1em; pointer-events: none; }
.hero-copy { position: relative; z-index: 1; }
.hero-index { color: var(--navy); font-size: 10px; letter-spacing: .14em; font-weight: 800; margin: 0 0 18px; text-transform: uppercase; }.hero-index span { color: var(--text-dim); margin-left: 15px; font-weight: 600; letter-spacing: .08em; }
.hero h1 em { color: var(--accent-dark); font-style: italic; }
.hero .lead { margin: 0 0 32px; max-width: 540px; font-size: 17px; }
.eyebrow { border: 0; background: transparent; padding: 0; color: var(--accent-dark); letter-spacing: .13em; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.hero-actions { justify-content: flex-start; align-items: center; }
.btn { border-radius: 4px; padding: 14px 22px; }
.text-link { font-size: 14px; font-weight: 800; border-bottom: 1px solid var(--text); padding-bottom: 3px; }
.text-link::after { content: " ↗"; color: var(--accent-dark); }
.hero-visual { min-height: 430px; position: relative; background: #fbf6ee; border: 1px solid #e7cda5; border-radius: 24px; padding: 12px; box-shadow: 18px 24px 40px rgba(28,38,54,.10); transform: rotate(1.2deg); }
.hero-visual::before { content: ""; position: absolute; width: 92px; height: 92px; top: -20px; right: 34px; border-top: 1px solid var(--accent); border-right: 1px solid var(--accent); border-radius: 0 24px 0 0; }.visual-caption { position: absolute; writing-mode: vertical-rl; transform: rotate(180deg); left: -30px; top: 105px; color: var(--accent-dark); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.browser-bar { height: 30px; background: #f5f2ec; display: flex; align-items: center; gap: 5px; padding: 0 10px; color: #5d625e; font-size: 9px; }
.browser-bar span { width: 6px; height: 6px; border-radius: 50%; background: #c9c5bd; }.browser-bar b { font-weight: 600; margin-left: auto; margin-right: auto; }
.preview-nav { display: flex; justify-content: space-between; padding: 17px 24px; color: #f5ede0; background: #1c2636; font-size: 11px; letter-spacing: .06em; }.preview-nav span { font-size: 9px; opacity: .75; }
.preview-main { min-height: 340px; padding: 40px 32px; background: #1c2636; color: #f5ede0; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.preview-main small { font-size: 9px; letter-spacing: .12em; opacity: .7; }.preview-main h3 { color: inherit; font-family: "DM Serif Display", Georgia, serif; font-size: 40px; font-weight: 400; line-height: .95; margin: 34px 0; }.preview-main a { font-size: 11px; border-bottom: 1px solid #d6d0c7; padding-bottom: 4px; }
.product-orb { width: 250px; height: 250px; margin: 4px 0 0 -4px; border-radius: 50%; background: linear-gradient(145deg, #ffad3e, #e56e00 56%, #9e4215); box-shadow: inset 18px 13px 30px rgba(255,255,255,.24), -14px 20px 30px rgba(0,0,0,.26); position: relative; border: 7px solid #f5ede0; outline: 6px solid #ff7f00; }.product-orb i { position: absolute; inset: 28% 40% 18% 25%; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); }
.result-chip { position: absolute; right: -24px; bottom: 34px; background: #f8f7f3; color: var(--navy); padding: 14px 20px; display: flex; gap: 10px; align-items: center; box-shadow: 0 14px 32px rgba(23,32,43,.15); }.result-chip span { font-family: "DM Serif Display", Georgia, serif; font-size: 30px; color: var(--accent-dark); }.result-chip small { font-size: 10px; line-height: 1.35; font-weight: 700; }
.hero-visual { animation: hero-float 7s ease-in-out infinite; transition: box-shadow .45s ease, transform .45s ease; }.hero-visual:hover { animation-play-state: paused; transform: rotate(0deg) translateY(-8px); box-shadow: 26px 34px 58px rgba(28,38,54,.16); }.product-orb { animation: orb-breathe 8s ease-in-out infinite; }
.stats { grid-column: 1 / -1; margin-top: 92px; position: relative; }.stats::before { content: "A considered approach to digital growth"; position: absolute; top: -26px; right: 0; color: var(--accent-dark); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }.stat .num { color: var(--navy); font-family: "DM Serif Display", Georgia, serif; font-size: 43px; font-weight: 400; }
.trust-strip { padding: 26px 0; background: var(--navy); color: rgba(255,255,255,.62); }.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }.trust-inner p { margin: 0; color: inherit; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }.client-logos { display: flex; align-items: center; justify-content: space-between; flex: 1; max-width: 680px; gap: 20px; }.client-logos span { color: rgba(255,255,255,.78); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }.client-logos span:nth-child(3) { font-family: "DM Serif Display", Georgia, serif; font-size: 19px; font-weight: 400; letter-spacing: .04em; text-transform: none; }
.card { border-radius: 5px; box-shadow: none; padding: 29px; }.card:hover { transform: translateY(-5px); border-color: var(--navy); box-shadow: var(--shadow); }.card .icon { width: auto; height: auto; background: transparent; border: 0; display: block; font-size: 12px; font-weight: 800; color: var(--accent-dark); letter-spacing: .12em; margin-bottom: 42px; }.card h3 { font-size: 18px; }

/* A less templated, studio-like system for content sections */
#about .grid { grid-template-columns: 1.1fr .9fr 1fr; gap: 0; border-top: 1px solid var(--navy); border-bottom: 1px solid var(--border); }
#about .card { padding: 34px 28px 42px 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
#about .card + .card { border-left: 1px solid var(--border); padding-left: 28px; }
#about .card:hover { transform: none; border-color: var(--border); }
#about .card .icon { font-family: "DM Serif Display", Georgia, serif; font-size: 32px; font-weight: 400; margin-bottom: 70px; }
#about .card h3 { max-width: 180px; }

#services .section-head { display: grid; grid-template-columns: 150px 1fr; max-width: 100%; column-gap: 38px; align-items: start; }
#services .section-head .eyebrow { grid-row: span 2; margin-top: 12px; }
#services .section-head h2 { margin: 0; }
#services .section-head p { max-width: 540px; margin: 12px 0 0; }
#services .grid { grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--navy); }
#services .card { min-height: 224px; display: flex; flex-direction: column; background: transparent; border: 0; border-bottom: 1px solid var(--border); border-radius: 0; padding: 27px 28px 27px 0; box-shadow: none; }
#services .card:not(:nth-child(3n)) { border-right: 1px solid var(--border); padding-right: 28px; }
#services .card:nth-child(3n + 2), #services .card:nth-child(3n) { padding-left: 28px; }
#services .card:hover { transform: none; box-shadow: none; border-color: var(--border); }
#services .card .icon { font-family: "DM Serif Display", Georgia, serif; font-size: 28px; font-weight: 400; margin-bottom: auto; }
#services .card h3 { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; font-size: 25px; line-height: 1.04; letter-spacing: -.025em; margin-bottom: 9px; }
#services .card p { font-size: 13px; line-height: 1.55; }
#services .card .tags { margin-top: 15px; }.tag { font-size: 10px; padding: 4px 9px; }

#services .card { min-height: 0; flex-direction: row; flex-wrap: wrap; align-items: center; column-gap: 12px; }
#services .card .icon { margin-bottom: 0; flex: 0 0 auto; }
#services .card h3 { flex: 1 1 auto; margin-bottom: 0; }
#services .card p { flex-basis: 100%; margin: 9px 0 0; }
#services .card .tags { flex-basis: 100%; }

#work .grid { grid-template-columns: repeat(12, 1fr); gap: 22px; }
#work .card { grid-column: span 4; padding: 0 0 25px; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
#work .card:first-child { grid-column: span 8; }.work-thumb { border-radius: 2px; }
#work .card:first-child .work-thumb { height: 370px; }.work-meta { margin-top: 18px; }
#work .card:hover { transform: none; box-shadow: none; }.work-thumb { transition: transform .45s cubic-bezier(.2,.8,.2,1); }#work .card:hover .work-thumb { transform: scale(.985); }
#work .card:first-child .mini-title { font-size: 66px; }.work-thumb.g1 { padding: 26px; }

#process { overflow: hidden; position: relative; }.process .step { border-top: 1px solid var(--border); padding: 24px 18px 0 0; }.process .step + .step { padding-left: 18px; border-left: 1px solid var(--border); }.process .step::before { font-family: "DM Serif Display", Georgia, serif; font-size: 52px; -webkit-text-stroke: 0; color: var(--accent-dark); }

/* Scroll choreography: quiet entrance, no distracting motion */
.reveal-scope .section-head, .reveal-scope .card, .reveal-scope .compare-col, .reveal-scope .step, .reveal-scope .contact-layout, .reveal-scope .cta-banner { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-scope.is-visible .section-head, .reveal-scope.is-visible .card, .reveal-scope.is-visible .compare-col, .reveal-scope.is-visible .step, .reveal-scope.is-visible .contact-layout, .reveal-scope.is-visible .cta-banner { opacity: 1; transform: none; }
.reveal-scope.is-visible .card:nth-child(2), .reveal-scope.is-visible .compare-col:nth-child(2), .reveal-scope.is-visible .step:nth-child(2) { transition-delay: .1s; }.reveal-scope.is-visible .card:nth-child(3), .reveal-scope.is-visible .step:nth-child(3) { transition-delay: .18s; }.reveal-scope.is-visible .card:nth-child(4), .reveal-scope.is-visible .step:nth-child(4) { transition-delay: .26s; }.reveal-scope.is-visible .card:nth-child(5) { transition-delay: .34s; }.reveal-scope.is-visible .card:nth-child(6) { transition-delay: .42s; }

/* Restore normal hover transitions once the entrance animation has run */
.reveal-scope.is-visible .card { transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease; transition-delay: 0s; }
.hero.reveal-scope .hero-copy, .hero.reveal-scope .hero-visual, .hero.reveal-scope .stats { opacity: 0; transform: translateY(18px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }.hero.reveal-scope.is-visible .hero-copy, .hero.reveal-scope.is-visible .hero-visual, .hero.reveal-scope.is-visible .stats { opacity: 1; transform: none; }.hero.reveal-scope.is-visible .hero-visual { transition-delay: .12s; animation: hero-float 7s ease-in-out infinite .75s; }.hero.reveal-scope.is-visible .stats { transition-delay: .26s; }
@keyframes hero-float { 0%, 100% { transform: rotate(1.2deg) translateY(var(--parallax-y, 0px)); } 50% { transform: rotate(.2deg) translateY(calc(var(--parallax-y, 0px) - 8px)); } }
@keyframes orb-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(.96); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } .reveal-scope .section-head, .reveal-scope .card, .reveal-scope .compare-col, .reveal-scope .step, .reveal-scope .contact-layout, .reveal-scope .cta-banner, .hero.reveal-scope .hero-copy, .hero.reveal-scope .hero-visual, .hero.reveal-scope .stats { opacity: 1; transform: none; } }
.work-thumb { height: 220px; border-radius: 3px; padding: 18px; overflow: hidden; position: relative; align-items: initial; justify-items: initial; }
.mini-nav { width: 100%; display: flex; justify-content: space-between; font-size: 10px; letter-spacing: .08em; }.mini-nav span { font-size: 8px; opacity: .7; }.mini-title { align-self: end; font-family: "DM Serif Display", Georgia, serif; font-size: 38px; font-weight: 400; line-height: .88; }
.shop-card { color: #22312b; background: #f1e8d8; width: 70%; height: 100%; padding: 16px; display: grid; align-content: space-between; box-shadow: 20px 16px 0 #c46d57; }.shop-card span, .shop-card b { font-size: 11px; }.shop-card i { width: 100px; height: 90px; justify-self: center; background: #bd5b3e; border-radius: 54% 46% 39% 61%; }
.chart { height: 95px; border-bottom: 1px solid rgba(255,255,255,.28); display: flex; align-items: end; gap: 9px; }.chart i { width: 18px; background: #d36e3e; }.chart i:nth-child(1){height:20%}.chart i:nth-child(2){height:33%}.chart i:nth-child(3){height:52%}.chart i:nth-child(4){height:44%}.chart i:nth-child(5){height:73%}.chart i:nth-child(6){height:92%}.g3 strong,.g6 strong { font-family: "DM Serif Display", Georgia, serif; font-size: 30px; margin-top: 20px; }.g4 { display: flex; flex-direction: column; justify-content: space-between; }.g4 span { font-size: 11px; }.g4 b { font-family: "DM Serif Display", Georgia, serif; font-size: 34px; font-weight: 400; line-height: .9; }.lesson { height: 100%; width: 100%; background: #ece2d1; color: #24313d; padding: 18px; display: flex; flex-direction: column; gap: 14px; font-size: 10px; }.lesson b { font-family: "DM Serif Display", Georgia, serif; font-size: 31px; font-weight: 400; line-height: .9; }.lesson small { margin-top: auto; }.route { height: 100px; position: relative; margin-top: 14px; }.route::before { content: ""; position: absolute; left: 18px; top: 0; height: 100%; border-left: 2px dashed rgba(255,255,255,.6); transform: rotate(47deg); transform-origin: top; }.route i { position: absolute; width: 12px; height: 12px; background: #d8a47a; border-radius: 50%; }.route i:nth-child(1){left:15px;top:0}.route i:nth-child(2){left:43px;top:25px}.route i:nth-child(3){left:79px;top:52px}.route i:nth-child(4){left:108px;top:83px}
.avatar { border-radius: 4px; width: 100%; height: 180px; margin-bottom: 22px; font-family: "DM Serif Display", Georgia, serif; font-size: 44px; }.team-card { text-align: left; }.team-card .social-row { justify-content: flex-start; }.cta-banner { border-radius: 6px; background: #18212a; }.cta-banner h2 { font-family: "DM Serif Display", Georgia, serif; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .lang-switch button { padding: 6px 8px; font-size: 11px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { padding-left: 0; border-left: none; }
  .grid-3, .grid-4, .process { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  section { padding: 64px 0; }
  .nav { padding: 12px 16px; }
  .logo small { display: none; }
  .lang-switch { gap: 0; margin-right: 2px; }
  .lang-switch button { padding: 5px 6px; font-size: 10px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .grid-3, .grid-4, .process { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .topbar-inner { flex-direction: column; gap: 4px; padding: 8px 24px; text-align: center; }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; row-gap: 46px; }
  .hero-visual { max-width: 640px; width: 100%; }
  .trust-inner { align-items: flex-start; flex-direction: column; }
  .client-logos { width: 100%; }
  #work .card, #work .card:first-child { grid-column: span 6; }
  #services .grid { grid-template-columns: repeat(2, 1fr); }
  #services .card:not(:nth-child(3n)) { border-right: 0; padding-right: 0; }
  #services .card:nth-child(3n + 2), #services .card:nth-child(3n) { padding-left: 0; }
  #services .card:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 28px; }
  #services .card:nth-child(even) { padding-left: 28px; }
}

@media (max-width: 620px) {
  .hero { padding-top: 66px; }
  .hero h1 { font-size: 48px; }
  .hero-visual { min-height: 350px; padding: 8px; }
  .preview-main { min-height: 0; padding: 30px 22px; grid-template-columns: 1fr; row-gap: 20px; }
  .preview-main h3 { font-size: 31px; margin: 20px 0; }
  .product-orb { width: 150px; height: 150px; margin: 0 auto; }
  .result-chip { right: -8px; bottom: 20px; }
  .client-logos { gap: 12px; flex-wrap: wrap; }.client-logos span { font-size: 13px; }
  .hero::after { left: 25%; top: 50px; }
  .hero-index span { display: block; margin: 7px 0 0; }
  .stats::before { left: 0; right: auto; }
  #about .grid, #services .grid { grid-template-columns: 1fr; }
  #about .card + .card { border-left: 0; padding-left: 0; }
  #about .card { padding: 28px 0; }
  #about .card .icon { margin-bottom: 28px; }
  #services .section-head { display: block; }
  #services .section-head .eyebrow { margin: 0 0 16px; }
  #services .card { min-height: 0; padding: 28px 0; }
  #services .card:nth-child(odd) { border-right: 0; padding-right: 0; }
  #services .card:nth-child(even) { padding-left: 0; }
  #services .card .icon { margin-bottom: 0; }
  #work .grid { display: grid; grid-template-columns: 1fr; }
  #work .card, #work .card:first-child { grid-column: auto; }
  #work .card:first-child .work-thumb { height: 270px; }
  #work .card:first-child .mini-title { font-size: 48px; }
  .process .step + .step { padding-left: 0; border-left: 0; }
}

/* Final interaction layer */
.hero { --spot-x: 50%; --spot-y: 42%; background-image: radial-gradient(430px circle at var(--spot-x) var(--spot-y), rgba(255,127,0,.10), transparent 65%); }
.btn-primary, .nav-cta { will-change: transform; }
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 17px; right: 17px; bottom: 6px; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-links a:not(.nav-cta):hover::after, .nav-links a.active:not(.nav-cta)::after { transform: scaleX(1); }
.btn-primary { position: relative; overflow: hidden; isolation: isolate; }
.btn-primary::before { content: ""; position: absolute; inset: 0; background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,.34) 48%, transparent 64%); transform: translateX(-130%); transition: transform .55s ease; pointer-events: none; }
.btn-primary:hover::before { transform: translateX(130%); }
#work .work-thumb::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.7); transform: scale(.94); opacity: 0; transition: transform .45s ease, opacity .35s ease; pointer-events: none; }
#work .card:hover .work-thumb::after { transform: scale(1); opacity: 1; }
.hero-visual { will-change: transform; }
@media (max-width: 700px), (pointer: coarse) { .scroll-progress { display: none; } .hero { background-image: none; } }

/* ---------- Cohesive studio composition ---------- */
section { padding: clamp(78px, 9vw, 144px) 0; }
.section-head { position: relative; max-width: 720px; margin-bottom: 58px; }
.section-head h2 { max-width: 620px; }
.section-head p { max-width: 560px; font-size: 16px; }
.section-head::after { content: ""; display: block; width: 58px; height: 2px; margin-top: 28px; background: var(--accent); }

#own-vs-rent { position: relative; overflow: hidden; }
#own-vs-rent::before { content: "OWN"; position: absolute; right: -2vw; bottom: -4vw; color: rgba(28,38,54,.035); font: 400 clamp(150px, 25vw, 390px)/.7 "DM Serif Display", Georgia, serif; letter-spacing: -.08em; pointer-events: none; }
.compare-grid { position: relative; gap: 0; border: 1px solid var(--border); background: var(--border); }
.compare-col { border: 0; border-radius: 0; padding: 42px; background: var(--surface); }.compare-col.good { background: var(--navy); border: 0; }.compare-col.good h3 { color: var(--text-invert); }.compare-col.good .compare-list li { color: rgba(255,255,255,.72); }.compare-col.good .compare-tag { background: rgba(255,127,0,.17); color: #ffb36c; }.compare-col.good .mark { background: rgba(255,255,255,.1); color: #ff9a38; }
.compare-col h3 { font-family: "DM Serif Display", Georgia, serif; font-size: 30px; font-weight: 400; line-height: 1.06; }.compare-list { gap: 18px; }.compare-list li { font-size: 14px; }

#about { background: var(--bg); }
#about .section-head { margin-left: auto; text-align: right; }.section-head .eyebrow { white-space: nowrap; }#about .section-head::after { margin-left: auto; }
#about .grid { background: linear-gradient(90deg, rgba(255,127,0,.08), transparent 35%); }
#about .card:first-child { background: var(--navy); color: var(--text-invert); padding-left: 28px; margin-left: -28px; }#about .card:first-child h3 { color: inherit; }#about .card:first-child p { color: rgba(255,255,255,.7); }#about .card:first-child .icon { color: #ff9a38; }

#services { position: relative; background: #fffdf9 !important; }
#services::after { content: "SERVICES"; position: absolute; top: 95px; right: 4vw; color: rgba(28,38,54,.04); font: 400 clamp(80px, 12vw, 180px)/.7 "DM Serif Display", Georgia, serif; letter-spacing: -.07em; pointer-events: none; }
#services .container { position: relative; z-index: 1; }
#services .card { transition: background .25s ease, padding .25s ease; }.card .icon { transition: color .25s ease; }
#services .card:hover { background: var(--navy); padding-left: 22px; padding-right: 22px !important; }#services .card:hover h3 { color: #fff; }#services .card:hover p { color: rgba(255,255,255,.68); }#services .card:hover .icon { color: #ff9a38; }#services .card:hover .tag { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color: #ffb36c; }

#work { background: var(--navy); color: var(--text-invert); position: relative; overflow: hidden; }#work::before { content: "SELECTED\A WORK"; white-space: pre; position: absolute; right: 3vw; top: 88px; font: 400 clamp(72px, 11vw, 170px)/.74 "DM Serif Display", Georgia, serif; color: rgba(255,255,255,.045); text-align: right; letter-spacing: -.06em; }#work .container { position: relative; z-index: 1; }#work h2, #work h3 { color: var(--text-invert); }#work p { color: rgba(255,255,255,.64); }#work .section-head::after { background: var(--accent); }#work .work-meta .cat { color: #ffad5b; }#work .tag { background: rgba(255,255,255,.08); color: #ffb36c; border-color: rgba(255,255,255,.16); }
#work .card { border-bottom: 1px solid rgba(255,255,255,.15); }.work-thumb { box-shadow: 0 18px 28px rgba(0,0,0,.12); }

#process { background: #fffdf9 !important; }.process { gap: 0; border-top: 1px solid var(--navy); }.process .step { min-height: 240px; padding-top: 30px; }.process .step h3 { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; font-size: 28px; }

#team { background: var(--bg); }.team-card { background: transparent; box-shadow: none; }.team-card:hover { background: var(--surface); }.team-card:nth-child(1) .avatar, .team-card:nth-child(4) .avatar { border-radius: 50% 50% 8px 8px; }.team-card:nth-child(2) .avatar, .team-card:nth-child(5) .avatar { border-radius: 8px 50% 50% 8px; }.team-card:nth-child(3) .avatar, .team-card:nth-child(6) .avatar { border-radius: 50% 8px 50% 8px; }.team-card h3 { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; font-size: 25px; }

#cta { padding-top: 84px; padding-bottom: 84px; background: var(--bg); }.cta-banner { border-radius: 0; padding: clamp(56px, 8vw, 100px) 48px; box-shadow: 14px 14px 0 var(--accent); }.cta-banner h2 { font-size: clamp(38px, 4.2vw, 64px); }.cta-banner .btn { margin-top: 12px; }
#contact { background: #fffdf9 !important; }.contact-layout { gap: 72px; }.info-row { padding-bottom: 20px; border-bottom: 1px solid var(--border); }.info-row .icon { border-radius: 50%; background: var(--navy); color: var(--text-invert); border-color: var(--navy); }.contact-form { border-radius: 0 !important; border-top: 3px solid var(--accent) !important; box-shadow: 16px 16px 0 rgba(28,38,54,.07) !important; }
footer.site-footer { border-top: 0; padding-top: 72px; }.footer-top { border-bottom: 1px solid var(--border-dark); }.footer-bottom { border-top: 0; }

@media (max-width: 900px) { #about .section-head { margin-left: 0; text-align: left; } #about .section-head::after { margin-left: 0; } #services::after, #work::before { display: none; } .compare-grid { gap: 1px; } .contact-layout { gap: 44px; } }
@media (max-width: 620px) { .section-head { margin-bottom: 38px; }.section-head::after { margin-top: 20px; } .compare-col { padding: 28px; } #about .card:first-child { margin-left: 0; padding-left: 0; background: transparent; color: var(--text); } #about .card:first-child h3 { color: var(--navy); } #about .card:first-child p { color: var(--text-dim); } #about .card:first-child .icon { color: var(--accent-dark); } .cta-banner { padding: 52px 26px; box-shadow: 8px 8px 0 var(--accent); } }

/* Mobile nav panel */

.nav-links.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: var(--navy);
  border-bottom: 1px solid var(--border-dark);
  padding: 12px 24px 20px;
  gap: 4px;
}

.nav-links.open a {
  width: 100%;
}
