:root {
  --green-900: #062f20;
  --green-800: #07462d;
  --green-650: #0d6943;
  --gold-600: #c9972b;
  --gold-500: #dfb64a;
  --stone-950: #151a17;
  --stone-800: #2d342f;
  --stone-600: #68736b;
  --stone-200: #dfe4de;
  --stone-100: #f4f6f2;
  --paper: #ffffff;
  --terra: #ae5d37;
  --shadow: 0 18px 46px rgba(8, 28, 19, 0.14);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--stone-950);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 10px clamp(20px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(6, 47, 32, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

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

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.1;
  color: var(--green-900);
  text-transform: uppercase;
}

.brand small {
  color: var(--gold-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 10px;
  border-radius: var(--radius);
  color: var(--stone-800);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green-900);
  background: rgba(201, 151, 43, 0.13);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  color: #fff;
  background: var(--green-900);
  box-shadow: 0 10px 22px rgba(6, 47, 32, 0.16);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--green-900);
}

.hero,
.page-hero {
  --hero-image: url("../images/real-bento-hero.png");
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--green-900);
}

.hero {
  min-height: clamp(620px, calc(82vh - 76px), 860px);
  display: flex;
  align-items: center;
}

.page-hero {
  min-height: clamp(420px, 46vh, 620px);
  display: flex;
  align-items: end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(4, 21, 14, 0.88) 0%, rgba(4, 21, 14, 0.69) 34%, rgba(4, 21, 14, 0.19) 72%), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero .hero-bg {
  background-image: linear-gradient(90deg, rgba(4, 21, 14, 0.9) 0%, rgba(4, 21, 14, 0.68) 42%, rgba(4, 21, 14, 0.22) 100%), var(--hero-image);
}

.materials-hero {
  --hero-image: url("../images/materials-showroom.png");
}

.services-hero {
  --hero-image: url("../images/services-worksite.png");
}

.storage-hero {
  --hero-image: url("../images/warehousing-storage.png");
}

.import-hero {
  --hero-image: url("../images/port-logistics.png");
}

.contact-hero {
  --hero-image: url("../images/delivery-worksite.png");
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  z-index: -1;
  background: linear-gradient(90deg, var(--gold-600), var(--green-650), var(--terra));
}

.hero-content,
.page-hero-content {
  width: var(--container);
  margin: 0 auto;
}

.hero-content {
  max-width: 760px;
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  padding: 72px 0 86px;
}

.page-hero-content {
  max-width: 820px;
  padding: 74px 0 58px;
  margin-left: max(20px, calc((100vw - 1180px) / 2));
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 930px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(3.2rem, 9vw, 7.7rem);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
}

.hero-lead,
.page-hero p:not(.eyebrow) {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

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

.btn-primary {
  color: #fff;
  background: var(--green-650);
  box-shadow: 0 16px 34px rgba(6, 47, 32, 0.2);
}

.btn-primary:hover {
  background: var(--green-800);
}

.btn-secondary {
  color: var(--green-900);
  background: #fff;
  border-color: rgba(6, 47, 32, 0.16);
}

.btn-secondary.dark {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
}

.section {
  padding: clamp(62px, 8vw, 104px) 0;
}

.muted,
.intro-band {
  background: var(--stone-100);
}

.intro-band {
  padding: 44px 0;
  border-bottom: 1px solid var(--stone-200);
}

.intro-grid,
.split-grid,
.strip-grid,
.process-grid,
.service-matrix,
.details-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.align-start {
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.split-copy h2,
.visual-copy h2,
.map-copy h2,
.cta-inner h2,
.process-grid h2,
.service-matrix h2,
.contact-card h2,
.contact-form h2,
.details-grid h2 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-grid p:last-child,
.text-stack p,
.split-copy p,
.section-heading + p {
  margin: 0;
  color: var(--stone-600);
  font-size: 1.05rem;
}

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

.section-heading.compact {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.photo-grid.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.photo-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone-100);
  border: 1px solid rgba(6, 47, 32, 0.12);
  box-shadow: var(--shadow);
}

.photo-card.small {
  min-height: 250px;
}

.photo-card img,
.media-tile img,
.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.photo-card img,
.media-tile img {
  object-fit: cover;
}

.photo-card figcaption,
.media-tile figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(6, 47, 32, 0.82);
  box-shadow: 0 14px 30px rgba(6, 47, 32, 0.2);
}

.photo-card figcaption strong,
.media-tile figcaption strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.photo-card figcaption span,
.media-tile figcaption span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
}

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

.media-tile {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone-100);
  box-shadow: 0 12px 30px rgba(8, 28, 19, 0.1);
}

.media-tile.tall {
  min-height: 390px;
}

.media-tile::after,
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 47, 32, 0) 44%, rgba(6, 47, 32, 0.72) 100%);
  pointer-events: none;
}

.media-tile figcaption,
.photo-card figcaption {
  z-index: 1;
}

.visual-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.visual-split.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.visual-copy {
  display: grid;
  gap: 18px;
}

.visual-copy p {
  margin: 0;
  color: var(--stone-600);
  font-size: 1.05rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.stat-row div {
  padding: 16px;
  border-left: 3px solid var(--gold-600);
  background: var(--stone-100);
  border-radius: var(--radius);
}

.stat-row strong {
  display: block;
  color: var(--green-900);
  font-size: 1.3rem;
  line-height: 1;
}

.stat-row span {
  display: block;
  margin-top: 6px;
  color: var(--stone-600);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-card,
.contact-card,
.contact-form {
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(6, 47, 32, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 28, 19, 0.07);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 1.28rem;
  line-height: 1.2;
}

.feature-card p {
  margin: 0;
  color: var(--stone-600);
}

.feature-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--green-800);
  font-weight: 900;
  border-bottom: 2px solid var(--gold-600);
}

.card-mark {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(201, 151, 43, 0.16);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split-section {
  background: linear-gradient(90deg, #fff 0%, #fff 50%, var(--stone-100) 50%, var(--stone-100) 100%);
}

.identity-panel {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 32px;
  border-radius: var(--radius);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.98), rgba(244, 246, 242, 0.92));
  border: 1px solid rgba(6, 47, 32, 0.11);
  box-shadow: var(--shadow);
}

.identity-panel img {
  max-width: min(360px, 82%);
}

.split-copy,
.text-stack {
  display: grid;
  gap: 20px;
}

.info-list,
.data-table {
  display: grid;
  gap: 14px;
  margin: 10px 0 0;
}

.info-list div,
.data-table div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(6, 47, 32, 0.12);
}

.info-list dt,
.data-table dt {
  color: var(--stone-600);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-list dd,
.data-table dd {
  margin: 0;
  color: var(--stone-950);
  font-weight: 750;
}

.info-list a,
.data-table a {
  color: var(--green-800);
}

.service-strip {
  color: #fff;
  background: var(--green-900);
}

.service-strip h2 {
  color: #fff;
}

.service-strip .section-kicker,
.cta-section .section-kicker {
  color: var(--gold-500);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: inherit;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--gold-500);
  border-bottom: 3px solid var(--gold-500);
  transform: rotate(-45deg);
}

.check-list.spacious {
  gap: 18px;
}

.cta-section {
  padding: clamp(60px, 7vw, 92px) 0;
  color: #fff;
  background: linear-gradient(135deg, var(--green-900), var(--green-650));
}

.cta-inner {
  max-width: 780px;
}

.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 22px 22px 22px 66px;
  border: 1px solid rgba(6, 47, 32, 0.12);
  border-radius: var(--radius);
  background: #fff;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--green-800);
  font-size: 0.82rem;
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  color: var(--green-900);
}

.steps span {
  color: var(--stone-600);
}

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

.matrix p {
  margin: 0;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--stone-100);
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

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

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

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

label {
  display: grid;
  gap: 8px;
  color: var(--stone-800);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  color: var(--stone-950);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(201, 151, 43, 0.24);
  border-color: var(--gold-600);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-actions .btn {
  min-height: 48px;
  font-size: 0.95rem;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green-800);
  font-weight: 800;
}

.map-section {
  padding-top: 0;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: stretch;
}

.map-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.map-copy p {
  margin: 0;
  color: var(--stone-600);
}

.map-frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(6, 47, 32, 0.13);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 64% 44%, rgba(201, 151, 43, 0.22) 0 8px, transparent 9px),
    linear-gradient(118deg, transparent 0 41%, rgba(255, 255, 255, 0.82) 42% 45%, transparent 46%),
    linear-gradient(32deg, transparent 0 34%, rgba(255, 255, 255, 0.88) 35% 38%, transparent 39%),
    linear-gradient(90deg, rgba(6, 47, 32, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(6, 47, 32, 0.08) 1px, transparent 1px),
    #eef2eb;
  background-size: auto, auto, auto, 54px 54px, 54px 54px, auto;
}

.map-frame iframe {
  position: relative;
  z-index: 1;
  border: 0;
}

.map-label {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  max-width: min(420px, calc(100% - 44px));
  padding: 16px 18px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(6, 47, 32, 0.9);
  box-shadow: 0 18px 34px rgba(6, 47, 32, 0.22);
}

.map-label strong,
.map-label span {
  display: block;
}

.map-label strong {
  line-height: 1.2;
}

.map-label span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.84);
  background: var(--stone-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 34px;
}

.footer-grid img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.94rem;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid a:hover {
  color: var(--gold-500);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    gap: 6px;
    padding: 12px 0 4px;
  }

  .site-header.is-open .header-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    justify-self: start;
  }

  .card-grid.three,
  .card-grid.four,
  .media-gallery,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid,
  .photo-grid.reverse,
  .visual-split,
  .visual-split.reverse,
  .map-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(calc(100vw - 28px), 1180px);
  }

  .site-header {
    min-height: 70px;
    padding: 8px 14px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  .hero {
    min-height: calc(76vh - 70px);
  }

  .hero-bg,
  .page-hero .hero-bg {
    background-image: linear-gradient(90deg, rgba(4, 21, 14, 0.93) 0%, rgba(4, 21, 14, 0.76) 60%, rgba(4, 21, 14, 0.38) 100%), var(--hero-image);
    background-position: 61% center;
  }

  .hero-content,
  .page-hero-content {
    width: var(--container);
    margin: 0 auto;
  }

  .hero-content {
    padding: 54px 0 64px;
  }

  .page-hero-content {
    padding: 56px 0 44px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 8.4vw, 2.65rem);
  }

  .page-hero h1 {
    font-size: clamp(2rem, 8.2vw, 2.75rem);
  }

  .intro-grid,
  .split-grid,
  .strip-grid,
  .process-grid,
  .service-matrix,
  .details-grid,
  .contact-grid,
  .media-gallery,
  .footer-grid,
  .card-grid.three,
  .card-grid.four,
  .form-grid,
  .matrix {
    grid-template-columns: 1fr;
  }

  .split-section {
    background: #fff;
  }

  .identity-panel {
    min-height: 300px;
  }

  .photo-card,
  .photo-card.small,
  .media-tile,
  .media-tile.tall,
  .map-frame {
    min-height: 280px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .contact-card,
  .contact-form {
    padding: 22px;
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .header-cta {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand span {
    max-width: 190px;
  }

  .hero h1,
  .page-hero h1 {
    overflow-wrap: anywhere;
  }

  .section {
    padding: 54px 0;
  }
}
