:root {
  --ink: #1919a3;
  --teal: #2020da;
  --teal-dark: #1919a3;
  --clay: #e75454;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --line: #ded9ce;
  --muted: #1919a3;
  --shadow: 10px 10px 0 rgba(216, 110, 76, .14);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.topbar {
  color: #eaf4ed;
  background: var(--teal-dark);
  font-size: .78rem;
  letter-spacing: .02em;
}
.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar span { opacity: .88; }

.main-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(247, 243, 234, .97);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white; 
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: -.05em;
}
.brand-wordmark { display: block; font-size: 1.1rem; font-weight: 800; letter-spacing: -.04em; }
.brand-sub {
  display: block;
  color: var(--muted);
  font-size: .59rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  padding: 28px 0 24px;
  color: #63716f;
  font-size: .9rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); border-color: var(--clay); }
.nav-cta, .button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  color: white;
  background: var(--teal);
  border: 1px solid var(--teal);
  text-decoration: none;
  font-weight: 700;
  font-size: .86rem;
}
.nav-cta:hover, .button-primary:hover { background: var(--teal-dark); }

.hero, .page-hero { padding: 96px 0 108px; }
.hero-grid, .page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .88fr;
  align-items: center;
  gap: 74px;
}
.eyebrow {
  margin-bottom: 16px;
  color: var(--clay);
  font-family: "Courier New", monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
.display {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: .96;
  letter-spacing: -.075em;
}
.display em { color: var(--clay); font-style: normal; }
.hero-copy, .page-hero p { max-width: 570px; color: var(--muted); font-size: 1.06rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 20px; }
.button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 19px;
  color: var(--teal);
  border: 1px solid #b9c8c2;
  text-decoration: none;
  font-weight: 700;
  font-size: .86rem;
}
.button-secondary:hover { border-color: var(--teal); background: #edf3ee; }
.hero-note { color: var(--muted); font-family: "Courier New", monospace; font-size: .75rem; }
.hero-note::before { content: "✓"; margin-right: 8px; color: var(--clay); font-weight: 700; }
.hero-art { position: relative; }
.hero-art img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  border-radius: 150px 150px 4px 4px;
  box-shadow: var(--shadow);
}
.hero-stat {
  position: absolute;
  left: -36px;
  bottom: 24px;
  width: 190px;
  padding: 20px;
  background: var(--paper);
  border-left: 4px solid var(--clay);
  box-shadow: 0 8px 28px rgba(23, 63, 59, .1);
}
.hero-stat strong { display: block; color: var(--teal); font-size: 1.65rem; line-height: 1; }
.hero-stat span { display: block; margin-top: 8px; color: var(--muted); font-size: .75rem; line-height: 1.35; }

.trust-strip { color: white; background: var(--teal); }
.trust-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 27px 0; }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { font-size: .9rem; }
.trust-item span { color: #c3ded4; font-size: .74rem; }

.section { padding: 94px 0; }
.section-tinted { background: #eaf1ea; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 38px; }
.section-heading .display { max-width: 650px; margin-bottom: 0; font-size: clamp(2.2rem, 5vw, 4.3rem); }
.section-heading > p { max-width: 340px; color: var(--muted); }
.service-grid, .product-grid, .testimonial-grid, .value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.service-card, .product-card, .value-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.service-card.featured { color: white; background: var(--teal); border-color: var(--teal); }
.service-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 26px; color: var(--clay); border: 1px solid currentColor; border-radius: 50%; font-weight: 800; }
.service-card h3, .product-card h3, .value-card h3 { margin-bottom: 9px; font-size: 1.25rem; line-height: 1.15; }
.service-card p, .product-card p, .value-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.featured p { color: #c3ded4; }
.arrow-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: var(--clay); font-weight: 700; font-size: .78rem; text-decoration: none; }
.featured .arrow-link { color: white; }

.story-grid { display: grid; grid-template-columns: .95fr 1fr; align-items: center; gap: 75px; }
.story-image img { width: 100%; height: 450px; object-fit: cover; border-radius: 4px 120px 4px 4px; box-shadow: var(--shadow); }
.story-copy .display { font-size: clamp(2.2rem, 5vw, 4.3rem); }
.story-copy p { max-width: 560px; color: var(--muted); }

.quote-band { padding: 85px 0; color: white; background: var(--clay); }
.quote-band blockquote { max-width: 900px; margin: 0 auto; font-size: clamp(1.8rem, 4vw, 3.45rem); line-height: 1.08; letter-spacing: -.055em; text-align: center; }
.quote-band cite { display: block; margin-top: 20px; color: #ffe5db; font-size: .78rem; font-style: normal; letter-spacing: .12em; text-align: center; text-transform: uppercase; }

.page-hero { padding-bottom: 65px; }
.page-hero .display { font-size: clamp(2.8rem, 6vw, 5.4rem); }
.page-hero-image img { width: 100%; height: 260px; object-fit: cover; border-radius: 4px 110px 4px 4px; box-shadow: var(--shadow); }
.timeline { display: grid; gap: 0; border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 32px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.timeline-year { color: var(--clay); font-family: "Courier New", monospace; font-size: .85rem; font-weight: 700; }
.timeline-item h3 { margin-bottom: 6px; font-size: 1.25rem; }
.timeline-item p { max-width: 650px; margin: 0; color: var(--muted); }

.product-card { min-height: 430px; padding: 0; overflow: hidden; }
.product-card img { width: 100%; height: 190px; object-fit: cover; }
.product-card-content { padding: 22px; }
.product-card .tag { color: var(--clay); font-family: "Courier New", monospace; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.testimonial-grid { grid-template-columns: repeat(2, 1fr); }
.testimonial-card { display: grid; grid-template-columns: 78px 1fr; gap: 20px; padding: 26px; background: var(--paper); border: 1px solid var(--line); }
.testimonial-card:first-child { grid-column: span 2; grid-template-columns: 105px 1fr; padding: 35px; }
.testimonial-card img { width: 78px; height: 78px; object-fit: cover; border-radius: 50%; }
.testimonial-card:first-child img { width: 105px; height: 105px; }
.testimonial-card blockquote { margin: 0 0 15px; font-size: 1.05rem; line-height: 1.45; }
.testimonial-card:first-child blockquote { font-size: 1.45rem; }
.testimonial-card cite { color: var(--muted); font-size: .8rem; font-style: normal; }

.contact-grid, .location-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: start; }
.form-card { padding: 32px; background: var(--paper); border: 1px solid var(--line); }
label { display: block; margin-bottom: 7px; color: var(--ink); font-size: .82rem; font-weight: 700; }
input, textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c8d0c9;
  border-radius: 0;
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus { outline: 2px solid var(--clay); outline-offset: 2px; border-color: var(--teal); }
.contact-image img, .location-image img { width: 100%; height: 330px; object-fit: cover; border-radius: 4px 100px 4px 4px; box-shadow: var(--shadow); }
.contact-details { display: grid; gap: 20px; margin-top: 28px; }
.contact-detail strong, .contact-detail span { display: block; }
.contact-detail strong { margin-bottom: 3px; }
.contact-detail span { color: var(--muted); font-size: .9rem; }
.map-frame { width: 100%; height: 420px; border: 0; }
.direction-list { display: grid; gap: 13px; padding: 0; margin: 28px 0 0; list-style: none; }
.direction-list li { display: grid; grid-template-columns: 35px 1fr; gap: 12px; color: var(--muted); font-size: .9rem; }
.direction-list b { color: var(--clay); font-family: "Courier New", monospace; }

.footer { padding: 60px 0 22px; color: #d9ebe2; background: var(--teal-dark); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; }
.footer .brand { color: white; }
.footer .brand-sub, .footer-intro, .footer a { color: #b6d1c7; }
.footer-intro { max-width: 350px; margin: 20px 0; font-size: .9rem; }
.socials { display: flex; gap: 9px; }
.social-link { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #4e8b7c; border-radius: 50%; text-decoration: none; }
.social-link:hover { color: white; background: var(--clay); border-color: var(--clay); }
.footer h3 { color: white; margin-bottom: 14px; font-size: .88rem; }
.footer-links { display: grid; gap: 8px; font-size: .85rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 35px; margin-top: 45px; color: #91b9aa; border-top: 1px solid #376f65; font-size: .7rem; }

@media (max-width: 900px) {
  .nav-inner { gap: 14px; }
  .nav-links { gap: 13px; }
  .nav-links a { font-size: .8rem; }
  .nav-cta { padding: 11px 12px; font-size: .75rem; }
  .hero-grid, .page-hero-grid, .story-grid, .contact-grid, .location-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-art { max-width: 650px; }
  .hero { padding-top: 70px; }
  .service-grid, .product-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .topbar-inner { justify-content: center; min-height: 32px; }
  .topbar-side:last-child { display: none; }
  .nav-inner { min-height: 70px; flex-wrap: wrap; }
  .brand-wordmark { font-size: 1rem; }
  .brand-sub { font-size: .5rem; }
  .nav-links { order: 3; width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
  .nav-links a { padding: 10px 2px; text-align: center; font-size: .72rem; }
  .nav-cta { display: none; }
  .hero, .page-hero { padding: 58px 0 70px; }
  .display { font-size: clamp(2.7rem, 14vw, 4.3rem); }
  .hero-art img { height: 370px; border-radius: 100px 100px 4px 4px; }
  .hero-stat { left: 12px; bottom: 14px; }
  .trust-inner { grid-template-columns: 1fr; gap: 17px; padding: 22px 0; }
  .section { padding: 65px 0; }
  .section-heading { display: block; margin-bottom: 28px; }
  .section-heading > p { margin-top: 18px; }
  .service-grid, .product-grid, .value-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card:first-child { grid-column: auto; grid-template-columns: 78px 1fr; padding: 26px; }
  .testimonial-card:first-child img { width: 78px; height: 78px; }
  .testimonial-card:first-child blockquote { font-size: 1.05rem; }
  .story-image img, .contact-image img, .location-image img { height: 280px; }
  .timeline-item { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .footer-bottom { display: grid; gap: 8px; }
}