:root {
  --ink: #111713;
  --muted: #646c66;
  --line: #e4e0d7;
  --paper: #f7f4ed;
  --panel: #ffffff;
  --green: #123f36;
  --green-2: #1d6354;
  --coral: #db6b4d;
  --gold: #d8aa45;
  --blue: #365f9f;
  --shadow: 0 28px 90px rgba(18, 28, 23, 0.16);
  --soft-shadow: 0 16px 46px rgba(18, 28, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffdf8 0, var(--paper) 620px, #fff 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid rgba(18, 63, 54, 0.12);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(162px, 18vw, 230px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(18, 63, 54, 0.08));
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #2e3833;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--green-2);
}

.nav-cta {
  padding: 12px 17px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(18, 63, 54, 0.18);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 64px) 44px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: min(42vw, 640px);
  height: 100%;
  background:
    linear-gradient(180deg, rgba(18, 63, 54, 0.08), rgba(216, 170, 69, 0.06)),
    linear-gradient(90deg, transparent, rgba(255,255,255,0.72));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.25rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.7vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 620px;
  color: #48524c;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #1f6a5a);
  box-shadow: 0 16px 36px rgba(18, 63, 54, 0.22);
}

.button.secondary {
  color: var(--green);
  background: rgba(255,255,255,0.84);
  border-color: rgba(18, 63, 54, 0.16);
  box-shadow: var(--soft-shadow);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 9px 12px;
  color: #314039;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(18, 63, 54, 0.13);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(18, 28, 23, 0.06);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 500px;
}

.browser-window {
  border: 1px solid rgba(18, 63, 54, 0.14);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.main-window {
  position: absolute;
  inset: 16px 0 auto auto;
  width: min(100%, 560px);
  overflow: hidden;
  transform: translateY(-4px);
}

.browser-bar {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfbf8, #eef3ef);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  background: #bac2cc;
  border-radius: 50%;
}

.mock-site {
  padding: 28px;
}

.mock-nav,
.mock-grid span,
.mock-hero span,
.mock-hero strong,
.mock-hero small {
  display: block;
  border-radius: 6px;
}

.mock-nav {
  width: 62%;
  height: 16px;
  margin-bottom: 32px;
  background: linear-gradient(90deg, var(--green), var(--gold), #dfe6e1);
}

.mock-hero {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 22px;
  align-items: stretch;
}

.mock-hero span {
  width: 70px;
  height: 12px;
  margin-bottom: 18px;
  background: var(--coral);
}

.mock-hero strong {
  width: 100%;
  height: 90px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #123f36, #1f6a5a 62%, #d8aa45);
}

.mock-hero small {
  width: 78%;
  height: 42px;
  background: #d8dee5;
}

.mock-hero i {
  display: block;
  min-height: 170px;
  background:
    linear-gradient(145deg, rgba(225, 184, 95, 0.92), rgba(219, 107, 77, 0.92)),
    linear-gradient(45deg, #f0f1ec, #d6ddd8);
  border-radius: 8px;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.mock-grid span {
  height: 92px;
  background: linear-gradient(180deg, #f7f4ed, #e9eee9);
}

.floating-window {
  position: absolute;
  right: min(52%, 250px);
  bottom: 28px;
  width: 250px;
  padding: 24px;
  border-color: rgba(216, 170, 69, 0.44);
}

.metric span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.metric strong {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-size: 2.1rem;
}

.metric-lines {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.metric-lines i {
  height: 10px;
  background: #e5e9ee;
  border-radius: 999px;
}

.metric-lines i:nth-child(1) {
  width: 100%;
}

.metric-lines i:nth-child(2) {
  width: 74%;
}

.metric-lines i:nth-child(3) {
  width: 88%;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 clamp(20px, 5vw, 64px) 42px;
}

.proof-strip div {
  padding: 28px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(18, 63, 54, 0.12);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 2rem;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: clamp(76px, 9vw, 124px) clamp(20px, 5vw, 64px);
}

.section-heading {
  max-width: 820px;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}

.intro > p {
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.75;
}

.work-grid,
.service-grid,
.package-grid,
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.work-card,
.service-grid article,
.package,
.who-grid article {
  background: #fff;
  border: 1px solid rgba(18, 63, 54, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(18, 28, 23, 0.06);
}

.work-card {
  overflow: hidden;
}

.work-preview {
  min-height: 270px;
  background-color: #e9edf0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.74) 0 18%, transparent 18%),
    linear-gradient(135deg, rgba(18,20,23,0.88), rgba(31,106,90,0.72));
  position: relative;
}

.work-preview::before,
.work-preview::after {
  content: "";
  position: absolute;
  border-radius: 8px;
}

.work-preview::before {
  left: 24px;
  right: 24px;
  top: 30px;
  height: 44px;
  background: rgba(255,255,255,0.88);
}

.work-preview::after {
  left: 24px;
  bottom: 28px;
  width: 52%;
  height: 96px;
  background: rgba(255,255,255,0.8);
}

.work-preview.local {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.72) 0 23%, transparent 23%),
    linear-gradient(135deg, rgba(66,103,172,0.9), rgba(225,184,95,0.8));
}

.work-preview.creative {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.68) 0 15%, transparent 15%),
    linear-gradient(135deg, rgba(219,107,77,0.9), rgba(18,20,23,0.78));
}

.work-card-copy {
  padding: 22px;
}

.work-card-copy span,
.badge {
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.work-card-copy h3,
.service-grid h3,
.package h3 {
  margin: 8px 0 0;
}

.services {
  background: linear-gradient(180deg, #f4f6f1, #fff);
}

.service-grid article,
.who-grid article {
  padding: 28px;
}

.who {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0)),
    var(--paper);
}

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

.who-grid article {
  min-height: 230px;
  border-top: 4px solid var(--gold);
}

.who-grid article:nth-child(2) {
  border-top-color: var(--coral);
}

.who-grid article:nth-child(3) {
  border-top-color: var(--blue);
}

.who-grid article:nth-child(4) {
  border-top-color: var(--green);
}

.who-grid h3 {
  margin-bottom: 12px;
}

.personal {
  padding-top: 0;
}

.personal-panel {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(30px, 6vw, 60px);
  background:
    linear-gradient(135deg, rgba(18, 63, 54, 0.04), rgba(216, 170, 69, 0.08)),
    #fff;
  border: 1px solid rgba(18, 63, 54, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.personal-copy {
  display: grid;
  gap: 16px;
}

.personal-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about {
  padding-top: 0;
}

.about-panel {
  max-width: 980px;
  padding: clamp(30px, 6vw, 60px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 170, 69, 0.14), transparent 44%),
    linear-gradient(135deg, var(--ink), var(--green));
  border: 1px solid rgba(216, 170, 69, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-panel .eyebrow {
  color: var(--gold);
}

.about-panel h2 {
  max-width: 760px;
}

.about-panel p {
  max-width: 760px;
  color: #d9dfda;
  font-size: 1.1rem;
  line-height: 1.75;
}

.about-panel p:last-child {
  margin-bottom: 0;
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  border-radius: 8px;
  font-weight: 800;
}

.service-grid p,
.who-grid p,
.timeline p,
.package p,
.package li,
.contact-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.timeline {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(18, 63, 54, 0.12);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  border-radius: 8px;
  font-weight: 800;
}

.timeline h3 {
  margin-bottom: 6px;
}

.faq {
  background: linear-gradient(180deg, #f4f6f1, #fff);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.faq-grid details {
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(18, 63, 54, 0.12);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.faq-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.package {
  position: relative;
  padding: 28px;
}

.package.featured {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.package strong {
  display: block;
  margin: 22px 0;
  font-size: 2rem;
}

.package ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.badge {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--coral);
}

.bespoke {
  background: #fff;
}

.bespoke-panel {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 170, 69, 0.12), transparent 46%),
    linear-gradient(135deg, var(--green), var(--ink));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bespoke-panel h3 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.bespoke-panel p {
  margin-bottom: 0;
  color: #d7ddd9;
  font-size: 1.06rem;
  line-height: 1.7;
}

.bespoke-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
  color: #f1f4f0;
  line-height: 1.55;
}

.bespoke-panel .button {
  justify-self: start;
  background: var(--gold);
  color: var(--ink);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 64px) clamp(48px, 6vw, 78px);
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(219, 107, 77, 0.08), rgba(216, 170, 69, 0.1)),
    #fff;
  border: 1px solid rgba(18, 63, 54, 0.12);
  border-left: 8px solid var(--coral);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 900px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.cta-band .eyebrow {
  color: var(--coral);
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  margin: 0 clamp(20px, 5vw, 64px) clamp(48px, 6vw, 78px);
  padding: clamp(34px, 6vw, 64px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 170, 69, 0.1), transparent 40%),
    linear-gradient(135deg, #111713, #123f36);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact .eyebrow {
  color: var(--gold);
}

.contact-copy p {
  color: #c7cbd0;
  font-size: 1.05rem;
}

.contact-direct {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.16);
}

.contact-direct span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-direct a {
  color: #fff;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  border: 1px solid rgba(255,255,255,0.18);
  background: #fff;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(216, 170, 69, 0.28);
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #c7cbd0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.footer-logo {
  display: block;
  width: 150px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 920px) {
  .hero,
  .intro,
  .personal-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 450px;
  }

  .proof-strip,
  .work-grid,
  .service-grid,
  .package-grid,
  .who-grid,
  .faq-grid,
  .bespoke-panel {
    grid-template-columns: 1fr;
  }

  .who-grid article {
    min-height: auto;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 10px;
  }

  .nav-cta {
    text-align: center;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4.4rem);
    line-height: 1;
  }

  .hero-visual {
    min-height: 380px;
  }

  .mock-hero {
    grid-template-columns: 1fr;
  }

  .mock-hero i {
    min-height: 120px;
  }

  .floating-window {
    right: 10px;
    bottom: 4px;
    width: 210px;
  }

  .proof-strip {
    padding-bottom: 10px;
  }

  .hero-badges span {
    flex: 1 1 160px;
    text-align: center;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-logo {
    width: 142px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .main-window {
    width: 100%;
  }

  .mock-site {
    padding: 16px;
  }

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

  .floating-window {
    left: 20px;
    right: auto;
  }

  .contact {
    margin-left: 16px;
    margin-right: 16px;
    padding: 24px;
  }
}
