@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/barlow-condensed-500-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/barlow-condensed-600-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/barlow-condensed-700-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("assets/fonts/public-sans-300-600-latin.woff2") format("woff2");
}

:root {
  --bg: #ffffff;
  --text: #4b545c;
  --heading: #1f3a2e;
  --muted: #6a747c;
  --accent: #2f6b4a;
  --accent-dark: #245139;
  --line: #e6e3df;
  --soft: #f7f5f2;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(22, 27, 33, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  margin: 0 auto;
  max-width: 90%;
  max-height: 80px;
  display: block;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 16px;
  background: var(--heading);
  color: #fff;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 600;
  color: var(--heading);
}

.brand-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  color: var(--heading);
  background: var(--soft);
}

.site-nav .nav-cta {
  background: var(--heading);
  color: #fff;
}

.site-nav .nav-cta:hover {
  background: var(--accent-dark);
  color: #fff;
}

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--heading);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.6rem, 3vw + 1.4rem, 3.6rem);
  margin: 14px 0 16px;
}

h2 {
  font-size: clamp(2rem, 2vw + 1.2rem, 2.8rem);
  margin: 12px 0 16px;
}

h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 540px;
  color: var(--muted);
}

.hero-note {
  margin: 0;
  color: var(--muted);
}

.layout-simple .hero {
  padding: 36px 0 8px;
}

.layout-simple .section {
  padding: 32px 0;
}

.layout-simple #services {
  padding: 0;
}

.layout-simple .hero-actions {
  margin: 16px 0 12px;
}

.layout-simple .service-card {
  padding: 18px;
}

.layout-simple .service-card p {
  margin: 8px 0;
}

.layout-simple h1 {
  //font-size: clamp(2.2rem, 2.6vw + 1.1rem, 3.1rem);
  font-size: clamp(1.5rem, 2vw + .5rem, 2rem);
}

.layout-simple h2 {
  font-size: clamp(1.4rem, 2vw + 0.4rem, 1.8rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(154, 107, 59, 0.25);
}

.button.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button.secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--heading);
}

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

.hero-panel {
  padding: 0;
  border-radius: var(--radius);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

.section {
  padding: 32px 0;
}


.section-header {
  max-width: 680px;
  margin-bottom: 16px;
}

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

.service-card {
  padding: 26px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(31, 42, 48, 0.06);
}


.service-card ul {
  padding-left: 18px;
  margin: 16px 0 0;
  color: var(--muted);
}

.quote {
  background: var(--soft);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-card {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.contact-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 16px 0 6px;
}

.contact-label:first-of-type {
  margin-top: 0;
}

.contact-value {
  margin: 0;
  font-weight: 600;
  color: var(--heading);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

label {
  font-weight: 500;
  color: var(--heading);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: 2px solid rgba(154, 107, 59, 0.35);
  outline-offset: 2px;
}


.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 600;
  color: var(--heading);
  margin: 0 0 8px;
}

.footer-subtext,
.footer-meta p {
  margin: 0 0 6px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {
  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

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


  .quote-form {
    grid-template-columns: 1fr;
  }
}

:root {
  --bg: #f3f4f2;
  --surface: #ffffff;
  --ink: #1f262b;
  --muted: #525f6a;
  --line: #ccd2d7;
  --accent: #2f4958;
}

html,
body {
  min-height: 100%;
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Public Sans", "Segoe UI", sans-serif;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  gap: 12px;
  font-family: "Barlow Condensed", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-name {
  font-size: clamp(2.2rem, 1vw + 2rem, 2.55rem);
  line-height: 1;
}

.brand-logo img {
  height: 42px;
}

.site-nav {
  gap: 12px;
  color: var(--accent);
  font-weight: 600;
}

.site-nav a {
  padding: 4px 8px;
}

.hero {
  padding: 56px 0 34px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", "Segoe UI", sans-serif;
  letter-spacing: 0.02em;
  color: var(--ink);
}

h1 {
  margin: 10px 0 14px;
  line-height: 1;
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 14ch;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.hero-subtitle {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
}

.section {
  padding: 10px 0 14px;
}

.section-header {
  margin-bottom: 0;
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(28, 35, 39, 0.05);
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.volume {
  padding-top: 18px;
}

.hero-note {
  margin: 0;
  color: var(--accent);
}

.contact {
  padding: 24px 0 42px;
}

.contact-grid {
  display: grid;
  row-gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.contact-grid h2 {
  margin: 0 0 8px;
}

.contact-grid > p {
  margin: 0;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.contact-grid > p strong {
  color: var(--ink);
}

.contact-grid > p strong::after {
  content: ":";
}

.contact-grid > p a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 760px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
  }

  .contact-grid > p {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
