:root {
  --ink: #172019;
  --ink-soft: #465148;
  --forest: #1f2a24;
  --forest-light: #314238;
  --stone: #f4f0e8;
  --stone-deep: #e9e1d3;
  --paper: #fffdf9;
  --line: #d8d2c8;
  --accent: #c47a32;
  --accent-dark: #9e5d21;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 32, 25, 0.12);
  --radius: 22px;
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 600;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  font-weight: 600;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
}

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

.section {
  padding: clamp(76px, 10vw, 140px) 0;
}

.section-muted {
  background: var(--stone);
}

.section-dark {
  color: var(--white);
  background: var(--forest);
}

.material-section {
  border-top: 1px solid var(--line);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 120px);
}

.editorial-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.editorial-copy {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.editorial-copy p:last-child {
  margin-bottom: 0;
}

.lead-paragraph {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.42rem, 2.4vw, 2.05rem);
  line-height: 1.38;
}

.material-points {
  display: grid;
  margin-top: clamp(52px, 8vw, 90px);
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.material-points article {
  padding: 28px 26px;
  background: var(--stone);
  border-radius: 16px;
}

.material-points article > span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--accent-dark);
  font-family: Georgia, serif;
}

.material-points p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(216, 210, 200, 0.82);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  line-height: 1.1;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

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

.brand strong {
  letter-spacing: 0.13em;
}

.brand small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

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

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.84rem;
}

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

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  color: var(--forest);
  background: transparent;
  border-color: var(--forest);
}

.button-secondary:hover {
  background: var(--stone);
}

.button-light {
  color: var(--forest);
  background: var(--white);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.56);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button-row-compact {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 750;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 96px) 0;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -160px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(196, 122, 50, 0.15), transparent 67%);
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(48px, 7vw, 92px);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #efbb87;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media::before {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 86%;
  height: 92%;
  background: var(--stone-deep);
  border-radius: var(--radius);
  content: "";
}

.hero-media img {
  width: 100%;
  min-height: 510px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.trust-list {
  display: grid;
  margin: 42px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.trust-list li {
  padding: 22px 18px 0 0;
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list strong {
  font-size: 0.92rem;
}

.trust-list span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto clamp(42px, 6vw, 72px);
  text-align: center;
}

.section-heading-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  min-height: 280px;
  padding: 30px 26px;
  background: var(--paper);
  border: 1px solid rgba(216, 210, 200, 0.84);
  border-radius: 16px;
}

.product-number {
  display: inline-block;
  margin-bottom: 68px;
  color: var(--accent-dark);
  font-family: Georgia, serif;
  font-size: 1.05rem;
}

.product-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.notice-card {
  display: flex;
  margin-top: 22px;
  padding: clamp(28px, 5vw, 54px);
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  background: var(--stone-deep);
  border-radius: var(--radius);
}

.notice-card > div:first-child {
  max-width: 680px;
}

.notice-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.notice-card p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.applications-block {
  display: grid;
  margin-top: clamp(62px, 9vw, 110px);
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(38px, 7vw, 90px);
}

.applications-intro h3 {
  font-size: clamp(2rem, 3.4vw, 3.15rem);
}

.applications-intro p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.applications-grid {
  border-top: 1px solid var(--line);
}

.applications-grid article {
  display: grid;
  padding: 24px 0;
  grid-template-columns: minmax(180px, 0.72fr) 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.applications-grid h4,
.applications-grid p {
  margin: 0;
}

.applications-grid h4 {
  font-size: 0.98rem;
}

.applications-grid p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.split-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(48px, 8vw, 110px);
}

.feature-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 22px;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.feature-list li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.8rem;
}

.feature-list strong {
  display: block;
  margin-bottom: 3px;
}

.feature-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.photo-pair {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.photo-pair picture:first-child {
  transform: translateY(-30px);
}

.photo-pair img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  counter-reset: process;
}

.process-grid li {
  min-height: 300px;
  padding: 30px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.process-grid li > span {
  display: inline-block;
  margin-bottom: 74px;
  color: var(--accent-dark);
  font-family: Georgia, serif;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.delivery-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 9vw, 120px);
}

.delivery-media {
  display: block;
  justify-self: center;
}

.delivery-media img {
  width: min(100%, 460px);
  max-height: 680px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.delivery-copy h2 {
  max-width: 680px;
}

.delivery-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
}

.simple-list {
  display: flex;
  margin: 28px 0 34px;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.simple-list li {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.84rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 110px);
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 2px;
  color: var(--accent-dark);
  content: "+";
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding: 0 42px 24px 0;
  color: var(--ink-soft);
}

.contact-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--stone) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 22px;
}

.contact-card,
.map-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(23, 32, 25, 0.06);
}

.contact-card {
  padding: clamp(28px, 5vw, 50px);
}

.contact-label {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-value {
  display: inline-block;
  margin-bottom: 26px;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  text-decoration: none;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.contact-details {
  display: grid;
  margin-top: 42px;
  padding-top: 28px;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  border-top: 1px solid var(--line);
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.map-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
}

.map-card iframe {
  width: 100%;
  min-height: 460px;
  flex: 1;
  border: 0;
}

.map-link {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 750;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #111713;
  font-size: 0.8rem;
}

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

.footer-inner p {
  margin: 0;
}

.mobile-contact-bar {
  display: none;
}

:focus-visible {
  outline: 3px solid rgba(196, 122, 50, 0.7);
  outline-offset: 3px;
}

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

  .hero-grid,
  .split-layout,
  .delivery-grid,
  .contact-grid,
  .editorial-grid,
  .applications-block,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .editorial-heading,
  .faq-heading {
    position: static;
  }

  .hero-media {
    max-width: 760px;
  }

  .hero-media img {
    min-height: 0;
  }

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

  .material-points,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li {
    min-height: auto;
  }

  .process-grid li > span {
    margin-bottom: 38px;
  }

  .split-layout {
    gap: 80px;
  }

  .photo-pair {
    max-width: 760px;
  }

  .delivery-media {
    justify-self: start;
  }

  .delivery-media img {
    width: min(100%, 520px);
    max-height: 620px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: 66px;
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .header-call {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }

  .hero-grid {
    gap: 46px;
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .button-row .button {
    width: 100%;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .trust-list li {
    display: grid;
    padding-top: 14px;
    grid-template-columns: 110px 1fr;
    border-bottom: 1px solid var(--line);
  }

  .hero-media::before {
    right: -8px;
    bottom: -10px;
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

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

  .material-points {
    grid-template-columns: 1fr;
  }

  .material-points article > span {
    margin-bottom: 32px;
  }

  .product-card {
    min-height: auto;
  }

  .product-number {
    margin-bottom: 38px;
  }

  .notice-card {
    align-items: stretch;
    flex-direction: column;
  }

  .applications-grid article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .button-row-compact {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .photo-pair {
    gap: 8px;
  }

  .photo-pair picture:first-child {
    transform: translateY(-16px);
  }

  .delivery-media img {
    max-height: 540px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 440px;
  }

  .map-card iframe {
    min-height: 380px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 62px;
    grid-template-columns: repeat(3, 1fr);
    color: var(--white);
    background: var(--forest);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 -10px 28px rgba(17, 23, 19, 0.22);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.72rem;
    font-weight: 750;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
