:root {
  --ink: #16120f;
  --muted: #6f655e;
  --paper: #fffaf3;
  --cream: #f7efe3;
  --clay: #8f4f2e;
  --copper: #c47a3d;
  --moss: #536b45;
  --teal: #1f6f6a;
  --line: rgba(22, 18, 15, .12);
  --shadow: 0 20px 60px rgba(27, 18, 11, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: inherit;
}

a:hover,
a:focus {
  color: var(--copper);
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-nav.navbar {
  min-height: 76px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 250, 243, 0.85);
  box-shadow: 0 4px 30px rgba(27, 18, 11, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: all 0.3s ease;
}

.site-nav .container {
  position: relative;
}

.site-nav .navbar-brand {
  height: 76px;
  padding: 16px 15px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 22px;
  transition: transform 0.3s ease;
}

.site-nav .navbar-brand:hover {
  transform: scale(1.05);
}

.site-nav .logo-brand {
  display: flex;
  align-items: center;
  width: auto;
  padding: 8px 15px;
}

.site-nav .logo-brand img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-nav .navbar-toggle {
  margin-top: 21px;
  border-color: transparent;
  background: rgba(143, 79, 46, 0.1);
  border-radius: 6px;
  transition: background 0.3s ease;
}

.site-nav .navbar-toggle:hover, .site-nav .navbar-toggle:focus {
  background: rgba(143, 79, 46, 0.2) !important;
}

.site-nav .navbar-toggle .icon-bar {
  background: var(--clay);
  transition: all 0.2s;
}

.site-nav .navbar-nav > li > a {
  padding-top: 28px;
  padding-bottom: 27px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.site-nav .navbar-nav > li > a:hover {
  color: var(--copper);
  transform: translateY(-2px);
  background: transparent;
}

.site-nav .navbar-nav > .active > a,
.site-nav .navbar-nav > .active > a:hover,
.site-nav .navbar-nav > .active > a:focus {
  background: transparent;
  color: var(--clay);
}

.site-nav .navbar-nav > li > a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 5px;
  background: var(--copper);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.site-nav .navbar-nav > .active > a:after,
.site-nav .navbar-nav > li > a:hover:after {
  width: 22px;
}

.hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 10, 7, .78), rgba(14, 10, 7, .44) 52%, rgba(14, 10, 7, .16));
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 19px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffd2a7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

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

.btn-teeb,
.btn-teeb-ghost {
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: .2px;
}

.btn-teeb {
  border: 1px solid var(--copper);
  background: var(--copper);
  color: #fff;
}

.btn-teeb:hover,
.btn-teeb:focus {
  background: #a9612e;
  color: #fff;
}

.btn-teeb-ghost {
  border: 1px solid rgba(255, 255, 255, .56);
  color: #fff;
}

.btn-teeb-ghost:hover,
.btn-teeb-ghost:focus {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.quick-strip {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.quick-strip .inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-item {
  min-height: 112px;
  padding: 25px 28px;
  border-right: 1px solid var(--line);
}

.quick-item:last-child {
  border-right: 0;
}

.quick-item strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.quick-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: var(--cream);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section h2,
.split-copy h2 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-head p,
.split-copy p,
.feature-card p,
.product-card p,
.contact-card p {
  color: var(--muted);
}

.product-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card,
.feature-card,
.contact-card,
.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(27, 18, 11, .08);
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.full-image-grid .product-card img {
  height: auto;
  object-fit: contain;
  background: #fff;
}

.product-card .body,
.feature-card,
.contact-card,
.form-panel {
  padding: 28px;
}

.product-card h3,
.feature-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
}

.feature-card {
  min-height: 245px;
}

.feature-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(31, 111, 106, .1);
  color: var(--teal);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split img {
  width: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.stat {
  padding: 18px;
  border-left: 3px solid var(--copper);
  background: rgba(255, 255, 255, .7);
}

.stat strong {
  display: block;
  font-size: 24px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.story-block {
  max-width: 900px;
  margin: 0 auto;
}

.story-block p {
  color: var(--muted);
  font-size: 18px;
}

.inline-image {
  margin: 6px 26px 18px 0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(27, 18, 11, .12);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
}

.contact-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.contact-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.form-control {
  min-height: 48px;
  border-color: var(--line);
  border-radius: 4px;
  box-shadow: none;
}

textarea.form-control {
  min-height: 138px;
}

.form-control:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(196, 122, 61, .14);
}

.notice {
  padding: 16px 18px;
  margin-bottom: 22px;
  border-radius: 6px;
  background: rgba(83, 107, 69, .12);
  color: #2d4b28;
  font-weight: 700;
}

.site-footer {
  padding: 16px 0;
  background: #15110e;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
}

.site-footer .footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.site-footer strong {
  display: block;
  color: #fff;
  font-size: 16px;
}

.site-footer p {
  margin: 4px 0 0;
}

@media (max-width: 991px) {
  .hero h1,
  .page-hero h1 {
    font-size: 50px;
  }

  .quick-strip {
    margin-top: 0;
  }

  .quick-strip .container {
    width: 100%;
    padding: 0;
  }

  .quick-strip .inner,
  .product-grid,
  .feature-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  .site-nav .navbar-brand {
    font-size: 21px;
  }

  .site-nav .navbar-collapse {
    border-color: var(--line);
  }

  .site-nav .navbar-nav > li > a {
    padding: 13px 15px;
  }

  .site-nav .navbar-nav > .active > a:after {
    display: none;
  }

  .hero {
    min-height: 320px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .hero p,
  .page-hero p {
    font-size: 17px;
  }

  .section {
    padding: 60px 0;
  }

  .section h2,
  .split-copy h2 {
    font-size: 32px;
  }

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