:root {
  --ink: #14251d;
  --muted: #65746a;
  --line: #dfe5df;
  --green: #2f6f46;
  --green-dark: #183b29;
  --leaf: #88c83a;
  --cream: #f7f8f4;
  --paper: #ffffff;
  --sage: #e8eee5;
  --clay: #8e4d3b;
  --terracotta: #c75c35;
  --shadow: 0 24px 80px rgba(20, 37, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fbfcf8 0%, var(--cream) 42%, #f4f6f1 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(251, 252, 248, 0.92);
  border-bottom: 1px solid rgba(20, 37, 29, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-dark), #214f37);
  color: var(--leaf);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-weight: 700;
}

nav a,
.topbar-phone {
  text-decoration: none;
}

.topbar-phone {
  color: var(--green-dark);
  font-weight: 800;
}

.mobile-call {
  display: none;
  border: 1px solid rgba(20, 37, 29, 0.14);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 8vw, 104px) clamp(20px, 4vw, 56px) 56px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.15;
}

.hero-lede {
  max-width: 660px;
  color: #405248;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--green-dark);
  color: white;
}

.button.secondary {
  border-color: rgba(20, 37, 29, 0.18);
  background: rgba(255, 255, 255, 0.56);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.proof-strip span {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(20, 37, 29, 0.1);
  border-radius: 8px;
  background: var(--paper);
  color: var(--muted);
  font-size: 14px;
}

.proof-strip strong {
  display: block;
  color: var(--green-dark);
  font-size: 24px;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 320px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(20, 37, 29, 0.86);
  color: white;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.decision-band,
.section,
.service-section,
.practice-section,
.contact-section,
.footer {
  margin: 0 clamp(20px, 4vw, 56px);
}

.decision-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) 1fr;
  gap: 32px;
  padding: 34px;
  border-radius: 8px;
  background: var(--green-dark);
  color: white;
}

.decision-band .eyebrow {
  color: var(--leaf);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.decision-grid article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.decision-grid span {
  color: var(--leaf);
  font-weight: 900;
}

.decision-grid p,
.decision-band h2 {
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: clamp(68px, 9vw, 116px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) 1fr;
  gap: clamp(30px, 6vw, 88px);
}

.section-copy p,
.section-heading p,
.bakery-section p,
.contact-copy p,
.practice-section p,
.image-band p {
  color: var(--muted);
  font-size: 18px;
}

.model-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.model-list article,
.quality-grid article,
.tender-grid article {
  padding: 22px;
  border: 1px solid rgba(20, 37, 29, 0.1);
  border-radius: 8px;
  background: var(--paper);
}

.service-section {
  padding: 0 0 clamp(68px, 9vw, 116px);
}

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

.service-grid article {
  overflow: hidden;
  border: 1px solid rgba(20, 37, 29, 0.1);
  border-radius: 8px;
  background: var(--paper);
}

.service-grid img {
  width: 100%;
  height: min(240px, 62vw);
  object-fit: cover;
}

.service-grid div {
  padding: 22px;
}

.service-grid span,
.process-list span {
  color: var(--terracotta);
  font-weight: 900;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.practice-section {
  padding: 0 0 clamp(68px, 9vw, 116px);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.practice-grid figure {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 54px rgba(20, 37, 29, 0.1);
}

.practice-grid .wide {
  grid-column: span 2;
}

.practice-grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.practice-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(20, 37, 29, 0.86);
  color: white;
  font-size: 14px;
  font-weight: 900;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  gap: 34px;
  align-items: center;
  margin: 0;
  padding: clamp(54px, 8vw, 92px) clamp(20px, 4vw, 56px);
  background: var(--sage);
}

.image-band img,
.bakery-section img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.proof-section {
  border-bottom: 1px solid rgba(20, 37, 29, 0.1);
}

.process-section {
  border-bottom: 1px solid rgba(20, 37, 29, 0.1);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-list article {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(20, 37, 29, 0.1);
  border-radius: 8px;
  background: var(--paper);
}

.process-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--sage);
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.proof-grid article {
  min-height: 156px;
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-dark), #214f37);
  color: white;
}

.proof-grid strong {
  display: block;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.proof-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.quality-grid,
.tender-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tender-pack {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) 1fr;
  gap: 28px;
  margin-top: 28px;
  padding: 28px;
  border-radius: 8px;
  background: var(--sage);
}

.tender-pack h3 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.tender-pack ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #405248;
}

.bakery-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.tender-section {
  border-top: 1px solid rgba(20, 37, 29, 0.1);
}

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

.tender-grid span {
  color: var(--green-dark);
  font-weight: 900;
}

.tender-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) 1fr;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(48px, 7vw, 82px);
  border-radius: 8px;
  background: var(--green-dark);
  color: white;
}

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

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.contact-links a,
.contact-links span {
  color: white;
  font-weight: 800;
}

.brief-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

label {
  display: grid;
  gap: 7px;
  color: #33443a;
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: white;
  color: var(--ink);
  font: inherit;
}

select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--green-dark) 50%) calc(100% - 18px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--green-dark) 50%, transparent 50%) calc(100% - 13px) 50% / 7px 7px no-repeat,
    white;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px 0;
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
}

.footer-top {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero,
  .decision-band,
  .split,
  .image-band,
  .bakery-section,
  .tender-pack,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
  }

  .proof-strip,
  .proof-grid,
  .decision-grid,
  .service-grid,
  .practice-grid,
  .process-list,
  .quality-grid,
  .tender-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .practice-grid .wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: center;
    gap: 12px;
  }

  .topbar-phone {
    display: none;
  }

  .mobile-call {
    display: inline-flex;
    margin-left: auto;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-media {
    min-height: 320px;
  }

  .proof-strip,
  .proof-grid,
  .decision-grid,
  .service-grid,
  .practice-grid,
  .model-list,
  .process-list,
  .quality-grid,
  .tender-grid,
  .brief-form {
    grid-template-columns: 1fr;
  }

  .decision-band,
  .contact-section {
    padding: 22px;
  }

  .practice-grid figure,
  .practice-grid img {
    min-height: 260px;
  }

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

@media (max-width: 380px) {
  h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .hero-lede {
    font-size: 17px;
  }
}
