:root {
  --bg: #f4efe8;
  --surface: #fffdf9;
  --surface-2: #f9f4ee;
  --hero: #d8c7b8;
  --text: #2a2724;
  --muted: #6f665d;
  --line: #dfd4c7;
  --accent: #ea7e10;
  --accent-deep: #b85e00;
  --dark: #2d2118;
  --shadow-soft: 0 14px 34px rgba(59, 37, 20, 0.08);
  --shadow-card: 0 12px 28px rgba(37, 25, 15, 0.06);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 0 14px;
  max-width: 840px;
}

.section-intro {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0 0 34px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(73, 49, 29, 0.08);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  height: 74px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  font-size: 0.94rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.nav-links a {
    font-size: 1.25rem !important;
}

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

/* HIDE HAMBURGER ON DESKTOP */
.menu-toggle {
  display: none !important;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
}

.header-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 8px;
}

.linkedin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #1f5fa8;
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.linkedin-icon img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

.linkedin-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  background: #004182;
}

.hero {
  background: linear-gradient(180deg, #d9c8b9 0%, #d4c1b1 100%);
  border-bottom: 1px solid rgba(73, 49, 29, 0.06);
  padding: 64px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.18) 100%);
  border: 1px solid rgba(255,255,255,0.44);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.hero h1 {
  font-size: clamp(2.8rem, 5.6vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 0 0 18px;
  max-width: 760px;
}

.hero h1 .accent-line {
  display: block;
  color: var(--accent-deep);
}

.hero p {
  max-width: 680px;
  font-size: 1.08rem;
  color: #4f463f;
  margin: 0 0 26px;
}

.hero-buttons,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(234, 126, 16, 0.2);
}

.btn-secondary {
  background: rgba(255,255,255,0.72);
  color: var(--dark);
  border-color: rgba(45,33,24,0.12);
}

.hero-proof,
.stat-grid,
.cards,
.tile-grid,
.info-grid,
.project-grid,
.step-grid,
.two-col-cards,
.contact-grid,
.about-grid,
.philosophy-grid,
.content-grid,
.hero-side {
  display: grid;
  gap: 18px;
}

.hero-proof { grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cards,
.tile-grid { grid-template-columns: repeat(3, 1fr); }
.project-grid { grid-template-columns: repeat(4, 1fr); }
.info-grid,
.step-grid,
.two-col-cards { grid-template-columns: repeat(2, 1fr); }
.about-grid,
.philosophy-grid,
.contact-grid,
.content-grid { grid-template-columns: 1.04fr 0.96fr; align-items: start; }
.hero-side { grid-template-columns: 1fr; }

.proof-item,
.card,
.panel,
.project-card,
.info-box,
.meta-box,
.contact-card,
.project-section-wrap,
.philosophy-highlight,
.side-panel,
.mini-panel,
.step-card,
.stat-card,
.callout-band {
  box-shadow: var(--shadow-card);
}

.proof-item {
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(45,33,24,0.08);
  border-radius: 16px;
  padding: 15px 14px;
  min-height: 112px;
}

.proof-item strong,
.stat-card strong {
  display: block;
  font-size: 1.16rem;
  line-height: 1.05;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}

.proof-item span,
.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
  display: block;
}

.side-panel {
  background: linear-gradient(180deg, #3d2d21 0%, #2f231b 100%);
  color: #fff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
}

.mini-panel,
.panel,
.contact-card,
.card,
.project-card,
.meta-box,
.step-card,
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.project-card { overflow: hidden; padding: 0; border-radius: 18px; }

.side-panel h3,
.mini-panel h3,
.meta-box h3,
.contact-offer h3,
.philosophy-highlight h3,
.card h3,
.step-card h3,
.project-body h3,
.info-box h4,
.panel h3 {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.side-panel p,
.side-panel li {
  color: rgba(255,255,255,0.84);
  font-size: 0.95rem;
  margin: 0;
}

.mini-panel p,
.mini-panel li,
.meta-box p,
.meta-box li,
.panel p,
.panel li,
.info-box p,
.info-box li,
.card p,
.card li,
.project-body p,
.contact-offer p,
.step-card p,
.stat-card p,
.page-hero p,
.section-copy,
.lead-copy {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0;
}

.side-panel ul,
.mini-panel ul,
.meta-box ul,
.card ul,
.info-box ul,
.philosophy-highlight ul,
.panel ul,
.step-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 9px;
}

.signal-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.signal-row strong {
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.signal-row span {
  color: var(--muted);
  font-size: 0.94rem;
}

.process-visual-section {
  padding: 42px 0 8px;
}

.process-visual-section img,
.full-width-graphic {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

section { padding: 86px 0; }

.card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(234,126,16,0.9), rgba(234,126,16,0.08));
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(234,126,16,0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.project-section-wrap,
.callout-band,
.philosophy-highlight {
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.75) 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
}

.project-image {
  aspect-ratio: 1.2 / 0.85;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-body {
  padding: 16px;
}

.quote-band {
  background: #13100e;
  color: #fff;
  padding: 78px 0;
  text-align: center;
  margin: 8px 0 0;
}

.quote-band blockquote {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.quote-band em {
  color: #f08a00;
  font-style: normal;
}

.quote-band small {
  display: block;
  margin-top: 16px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.info-box {
  background: #fffaf4;
  border: 1px solid rgba(234,126,16,0.28);
  border-radius: 16px;
  padding: 18px;
}

.info-box h4 {
  font-size: 0.96rem;
  line-height: 1.2;
  color: var(--accent);
}

.page-hero {
  padding: 64px 0 24px;
  background: linear-gradient(180deg, #efe6dc 0%, #f4efe8 100%);
  border-bottom: 1px solid rgba(73,49,29,0.06);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 0 0 16px;
  max-width: 840px;
}

.page-hero p {
  max-width: 760px;
  font-size: 1.06rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.list-tight {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--muted);
}

.stat-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.stat-card {
  border-radius: 18px;
}

.contact-offer {
  background: linear-gradient(135deg, #ef8400 0%, #d86d00 100%);
  color: #fff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-offer p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 18px;
}

.contact-offer .btn-secondary {
  background: rgba(255,255,255,0.88);
}

form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
    
input,
textarea,
select {
  width: 100%;
  border: 1px solid #ddcfc1;
  background: #fff;
  color: var(--text);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(234,126,16,0.7);
  box-shadow: 0 0 0 4px rgba(234,126,16,0.08);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.success-box {
  background: #fffdf9;
  border: 1px solid #e2d6c9;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 12px 28px rgba(37,25,15,0.06);
  max-width: 500px;
}

.success-box h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.success-box p {
  margin: 0;
  color: #6f665d;
}

footer {
  background: #735f4d;
  color: rgba(255,255,255,0.92);
  padding: 32px 0 28px;
  margin-top: 16px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.94rem;
  color: rgba(255,255,255,0.8);
}

.footer-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}
.form-consent-wrap{
    margin:18px 0 20px;
}

.form-privacy{
    font-size:.92rem;
    line-height:1.6;
    color:#666;
    margin-bottom:12px;
}

.form-consent{
    display:flex;
    align-items:flex-start;
    gap:10px;
    line-height:1.5;
    font-size:.92rem;
    color:#444;
}

.form-consent input[type="checkbox"]{
    width:auto !important;
    min-width:18px;
    max-width:18px;
    height:18px;
    margin:3px 0 0;
    flex:none;
}

.form-consent span{
    flex:1;
}

.form-consent a{
    color:#e67817;
    font-weight:600;
    text-decoration:none;
}

.form-consent a:hover{
    text-decoration:underline;
}
.credibility-band {
  padding: 34px 0 72px;
}

.support-summary {
  padding-top: 40px;
}
.hero-simple .container {
  max-width: 1100px;
}

.hero-card-centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-card-centered h1 {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-card-centered p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-card-centered .hero-buttons {
  justify-content: center;
}
.hero-process {
  padding: 70px 0 50px;
}

.hero-process .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 44px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 4.2vw, 4.2rem);
  line-height: .96;
  margin-bottom: 24px;
}

.hero-copy p {
  max-width: 650px;
}

.hero-graphic {
  max-width: 650px;
  justify-self: end;
}

.hero-graphic img {
  width: 100%;
  border-radius: 12px;
}
@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .philosophy-grid,
  .contact-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .project-grid,
  .info-grid,
  .tile-grid,
  .step-grid,
  .two-col-cards,
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-side {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
    max-width: 100%;
  }

  .nav {
    min-height: 72px;
    padding: 10px 0;
    justify-content: space-between;
  }

  .brand img {
    height: 54px;
  }

  .menu-toggle {
    display: block !important;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 50;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 1.25rem;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--surface-2);
  }

  .linkedin-icon,
  .header-social {
    display: none !important;
  }

  .hero,
  .page-hero {
    padding: 36px 0 28px;
  }

  .hero-grid,
  .hero-proof,
  .cards,
  .project-grid,
  .info-grid,
  .hero-side,
  .form-row,
  .tile-grid,
  .step-grid,
  .two-col-cards,
  .stat-grid,
  .about-grid,
  .philosophy-grid,
  .contact-grid,
  .content-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-card,
  .side-panel,
  .mini-panel,
  .panel,
  .contact-card,
  .project-section-wrap,
  .contact-offer,
  .meta-box,
  .philosophy-highlight,
  .card,
  .step-card,
  .stat-card,
  .proof-item {
    padding: 20px;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
    max-width: 100%;
    word-break: break-word;
  }

  .hero p,
  .page-hero p,
  .section-intro,
  .section-copy,
  .lead-copy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-buttons,
  .button-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 100%;
  }

  .quote-band {
    padding: 58px 0;
  }

  .quote-band blockquote {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  section {
    padding: 64px 0;
  }
}