:root {
  --navy: #1c2740;
  --navy-deep: #12182a;
  --gold: #c9a227;
  --gold-soft: #e8d48a;
  --cream: #f6f0e6;
  --paper: #fffdf9;
  --ink: #2a241c;
  --muted: #6b645a;
  --line: #e4dccf;
  --terra: #b55239;
  --shadow: 0 18px 40px rgba(18, 24, 42, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--navy-deep);
  color: #f4efe4;
  font-size: 0.88rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.topbar a:hover {
  color: var(--gold-soft);
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.brand h1,
.brand .brand-name {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.brand p {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--navy);
}

.nav a:hover,
.nav a.active {
  background: var(--navy);
  color: #fff;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 4px auto;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: end stretch;
  color: #fff;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 24, 42, 0.82) 0%, rgba(18, 24, 42, 0.35) 58%, rgba(18, 24, 42, 0.18) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 72px 0;
  max-width: 640px;
}

.eyebrow {
  display: inline-block;
  background: rgba(201, 162, 39, 0.18);
  border: 1px solid rgba(201, 162, 39, 0.5);
  color: var(--gold-soft);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h2,
.page-hero h2,
.section-title {
  font-family: "Fraunces", serif;
  font-weight: 650;
  line-height: 1.15;
}

.hero h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  margin-bottom: 14px;
}

.hero p {
  font-size: 1.08rem;
  max-width: 48ch;
  color: #efe8d8;
  margin-bottom: 24px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-gold:hover {
  background: #d8b33a;
}

.btn-outline {
  border-color: #fff;
  color: #fff;
}

.btn-outline:hover,
.btn-navy:hover {
  background: #fff;
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 32px;
}

.section-title {
  font-size: 2rem;
  color: var(--navy);
}

.lede {
  color: var(--muted);
  max-width: 52ch;
}

.brands {
  background: var(--navy);
  color: #efe8d8;
  padding: 28px 0;
}

.brand-track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
}

.brand-pill {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.grid-3,
.grid-4,
.product-grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.product-card,
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-card img,
.feature-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #efe8d8;
}

.card-body,
.product-card .card-body {
  padding: 18px;
}

.product-card h3,
.card h3,
.info-card h3 {
  font-family: "Fraunces", serif;
  color: var(--navy);
  margin-bottom: 6px;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 700;
  margin-bottom: 8px;
}

.bulk {
  background: linear-gradient(135deg, var(--navy) 0%, #31436b 100%);
  color: #fff;
}

.bulk .container {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: center;
}

.bulk h2 {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 56px 0 48px;
}

.page-hero p {
  color: #d9d2c4;
  max-width: 60ch;
  margin-top: 10px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.about-panel,
.contact-form,
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-success {
  display: none;
  background: #e8f5e9;
  color: #1b5e20;
  padding: 12px 14px;
  border-radius: 12px;
}

.form-success.show {
  display: block;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.site-footer {
  background: var(--navy-deep);
  color: #ddd6c8;
  padding: 48px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.site-footer h3,
.site-footer .brand-name {
  font-family: "Fraunces", serif;
  color: #fff;
  margin-bottom: 10px;
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 92px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    flex-direction: column;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .grid-3,
  .grid-4,
  .product-grid,
  .split,
  .bulk .container,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 62vh;
  }
}
