:root {
  --bg: #f7f3ee;
  --bg-soft: #fffdf9;
  --surface: #ffffff;
  --surface-alt: #f1e8dd;
  --primary: #26736e;
  --primary-dark: #174d49;
  --accent: #d7b98d;
  --text: #1f2a24;
  --muted: #5d6d65;
  --border: rgba(31, 42, 36, 0.08);
  --shadow: 0 24px 48px rgba(31, 42, 36, 0.08);
  --radius: 26px;
  --bs-primary: #26736e;
  --bs-primary-rgb: 38, 115, 110;
  --bs-secondary: #d7b98d;
  --bs-body-bg: #f7f3ee;
  --bs-body-color: #1f2a24;
  --bs-link-color: #26736e;
  --bs-link-hover-color: #174d49;
  --bs-border-radius: 1rem;
}

* {
  box-sizing: border-box;
}

:root {
  scroll-behavior: auto;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow.accent {
  color: #a67342;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: inherit;
  line-height: 1.1;
  color: var(--text);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  margin-bottom: 1rem;
}

p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(247, 243, 238, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  color: var(--text);
}

.brand-mark {
  width: 150px;
  height: 94px;
  display: block;
  object-fit: contain;
  object-position: left center;
  border-radius: 12px;
}

.brand-lockup {
  display: none;
}

.brand-text {
  font-size: 1.1rem;
}

.brand-tagline {
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-weight: 600;
}

.main-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-light));
  color: white;
  box-shadow: 0 16px 30px rgba(var(--theme-primary-rgb), 0.22);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(31, 42, 36, 0.14);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.4);
  padding: 0.75rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  padding: 4.5rem 0 4rem;
  background: radial-gradient(circle at top left, rgba(215, 185, 141, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.lead {
  max-width: 620px;
  font-size: 1.12rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.trust-list li::before {
  content: "\2713";
  color: var(--primary);
  margin-right: 0.4rem;
}

.hero-visual {
  position: relative;
  padding: 1rem 0 0 1.5rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-main {
  max-width: 480px;
  margin-left: auto;
}

.card-main img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.badge {
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
  z-index: 1;
}

.card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.2rem 1.3rem 1.4rem;
}

.card-copy strong {
  font-size: 1.1rem;
}

.card-copy span {
  color: var(--muted);
}

.floating-tag {
  position: absolute;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  color: var(--primary-dark);
}

.tag-one {
  left: 0;
  bottom: 7rem;
}

.tag-two {
  right: 0.5rem;
  bottom: 1.5rem;
}

.intro-section {
  padding-top: 2rem;
}

.intro-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 2vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 35px rgba(31, 42, 36, 0.04);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.feature-grid,
.testimonial-grid,
.product-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 35px rgba(31, 42, 36, 0.04);
}

.icon {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 1.5rem;
  background: rgba(var(--theme-primary-rgb), 0.08);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.catalog-section {
  background: rgba(255, 255, 255, 0.4);
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-item {
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 18px 35px rgba(31, 42, 36, 0.04);
}

.product-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.product-body {
  padding: 1.4rem 1.3rem 1.6rem;
}

.tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--primary);
}

.product-body h3 {
  font-size: 1.8rem;
  margin-bottom: 0.35rem;
}

.stats-section {
  padding-top: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  background: linear-gradient(135deg, #244e3c, #2d6a4f 60%, #3d8b63);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem;
  box-shadow: var(--shadow);
}

.stats-grid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem;
  color: rgba(255, 255, 255, 0.92);
}

.stats-grid strong {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  color: #fff;
}

.stats-grid span {
  font-size: 0.96rem;
  opacity: 0.9;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.story-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.8rem;
  color: var(--text);
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  color: var(--primary);
  margin-right: 0.7rem;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial {
  margin: 0;
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 18px 35px rgba(31, 42, 36, 0.04);
  color: var(--text);
  font-size: 1.05rem;
}

.testimonial footer {
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 700;
}

.cta-section {
  padding-top: 2rem;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, var(--surface-alt), var(--theme-tint));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 3rem);
  box-shadow: 0 18px 35px rgba(31, 42, 36, 0.04);
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.2);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-banner {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.1), rgba(215, 185, 141, 0.12));
}

.page-banner h1 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.contact-banner h1 {
  white-space: nowrap;
  font-size: clamp(2rem, 5vw, 4rem);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.category-card {
  display: block;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 35px rgba(31, 42, 36, 0.04);
  color: inherit;
}

.category-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.category-body {
  padding: 1.4rem 1.35rem 1.6rem;
}

.category-body h3 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.category-body p {
  margin-bottom: 0.9rem;
}

.category-body span {
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
}

.product-page-section {
  padding-top: 2rem;
}

.product-list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-section {
  padding-top: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.6rem;
  align-items: start;
}

.contact-card,
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 35px rgba(31, 42, 36, 0.04);
}

.contact-card {
  padding: 2rem;
}

.contact-card h2 {
  margin-bottom: 1.2rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 42, 36, 0.12);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: #fff;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.5rem;
}

.info-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.1rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .intro-box,
  .story-grid,
  .cta-box,
  .contact-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .feature-grid,
  .product-grid,
  .testimonial-grid,
  .stats-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .card-main img {
    height: 420px;
  }

  .cta-box {
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 5rem 0;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .brand-mark {
    width: 128px;
    height: 84px;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }

}

/* Refined, locally hosted Bootstrap theme */
:root {
  --bg: #f8f6f0;
  --bg-soft: #fffdf8;
  --surface: #fffefa;
  --surface-alt: #eee9dc;
  --primary: #26736e;
  --primary-dark: #174d49;
  --accent: #d8b775;
  --text: #202a23;
  --muted: #66736b;
  --border: rgba(32, 42, 35, 0.1);
  --shadow: 0 24px 60px rgba(32, 42, 35, 0.1);
  --radius: 24px;
  --bs-primary: #26736e;
  --bs-primary-rgb: 38, 115, 110;
  --bs-secondary: #d8b775;
  --bs-body-bg: #f8f6f0;
  --bs-body-color: #202a23;
  --bs-link-color: #26736e;
  --bs-link-hover-color: #174d49;
  --theme-primary: #26736e;
  --theme-primary-dark: #174d49;
  --theme-primary-light: #41928b;
  --theme-primary-rgb: 38, 115, 110;
  --theme-tint: #e2efeb;
  --theme-highlight: #c4dfd7;
  --theme-link-highlight: #cce5dc;
}

body {
  background:
    radial-gradient(ellipse at 92% 3%, rgba(216, 183, 117, 0.12), transparent 26rem),
    var(--bg);
  --primary: var(--theme-primary);
  --primary-dark: var(--theme-primary-dark);
  --bs-primary: var(--theme-primary);
  --bs-primary-rgb: var(--theme-primary-rgb);
  --bs-link-color: var(--theme-primary);
  --bs-link-hover-color: var(--theme-primary-dark);
}

.site-header {
  background: rgba(248, 246, 240, 0.96);
  box-shadow: 0 6px 24px rgba(32, 42, 35, 0.04);
}

.nav-wrap {
  min-height: 86px;
}

.brand-mark {
  width: 138px;
  height: 86px;
}

.main-nav a {
  font-size: 0.94rem;
}

.main-nav a::after {
  bottom: -0.55rem;
  height: 3px;
  border-radius: 999px;
}

.btn {
  min-height: 50px;
  padding: 0.85rem 1.55rem;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-light));
  box-shadow: 0 12px 24px rgba(var(--theme-primary-rgb), 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--theme-primary-dark), var(--theme-primary));
  box-shadow: 0 16px 28px rgba(var(--theme-primary-rgb), 0.26);
}

.btn-secondary {
  background: color-mix(in srgb, var(--bg-soft) 72%, transparent);
  border-color: rgba(var(--theme-primary-rgb), 0.2);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(216, 183, 117, 0.22), transparent 30rem),
    linear-gradient(135deg, #f7f4e9 0%, #fbfaf5 54%, #edf3e9 100%);
}

.hero-grid {
  min-height: 490px;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-copy {
  max-width: 650px;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(var(--theme-primary-rgb), 0.12);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-soft) 78%, transparent);
  letter-spacing: 0.11rem;
}

.hero-copy .eyebrow::before {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 6.2vw, 5.3rem);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.hero-copy .lead {
  max-width: 570px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}

.hero-actions {
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.trust-list {
  gap: 0.7rem 1.15rem;
  font-size: 0.91rem;
}

.hero-visual {
  padding: 0.5rem 0 0.5rem 1.1rem;
}

.card-main {
  max-width: 450px;
  border: 8px solid rgba(255, 254, 250, 0.92);
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(32, 42, 35, 0.2);
}

.card-main img {
  height: clamp(400px, 43vw, 540px);
}

.card-main::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(15, 29, 20, 0.76));
  content: "";
  pointer-events: none;
}

.card-main .badge {
  top: 1.35rem;
  left: 1.35rem;
  padding: 0.58rem 1rem;
  color: var(--primary-dark);
}

.card-main .card-copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3.5rem 1.5rem 1.5rem;
  color: #fff;
}

.card-main .card-copy strong {
  font-size: 1.25rem;
}

.card-main .card-copy span {
  color: rgba(255, 255, 255, 0.82);
}

.floating-tag {
  border: 1px solid rgba(var(--theme-primary-rgb), 0.08);
  box-shadow: 0 16px 35px rgba(32, 42, 35, 0.14);
}

.tag-two {
  right: -0.25rem;
  bottom: 2rem;
}

.section {
  padding-top: clamp(4.5rem, 7vw, 6.5rem);
  padding-bottom: clamp(4.5rem, 7vw, 6.5rem);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.25rem;
}

.section-heading h2,
.intro-box h2,
.cta-box h2 {
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.intro-section,
.product-page-section,
.contact-section {
  padding-top: clamp(3.5rem, 6vw, 5rem);
}

.intro-box,
.feature-card,
.testimonial,
.contact-card,
.info-card {
  border-color: rgba(32, 42, 35, 0.08);
  box-shadow: 0 14px 38px rgba(32, 42, 35, 0.055);
}

.intro-box {
  padding: clamp(1.6rem, 4vw, 3.2rem);
  border-radius: 30px;
}

.feature-card,
.testimonial {
  border-radius: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover,
.testimonial:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--theme-primary-rgb), 0.2);
  box-shadow: 0 22px 46px rgba(32, 42, 35, 0.1);
}

.category-card,
.product-item {
  border-color: rgba(32, 42, 35, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(32, 42, 35, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.category-card:hover,
.category-card:focus-visible,
.product-item:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--theme-primary-rgb), 0.22);
  box-shadow: 0 24px 50px rgba(32, 42, 35, 0.13);
}

.category-card img,
.product-item img {
  transition: transform 350ms ease;
}

.category-card:hover img,
.product-item:hover img {
  transform: scale(1.035);
}

.category-body,
.product-body {
  padding: 1.5rem 1.45rem 1.7rem;
}

.category-body h3,
.product-body h3 {
  letter-spacing: -0.035em;
}

.tag {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(var(--theme-primary-rgb), 0.08);
  letter-spacing: 0.07rem;
}

.stats-grid {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(ellipse at 90% 0%, rgba(216, 183, 117, 0.2), transparent 24rem),
    linear-gradient(120deg, var(--theme-primary-dark), var(--theme-primary) 65%, var(--theme-primary-light));
}

.stats-grid div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.page-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 6.5rem) 0 clamp(3.5rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse at 90% 5%, rgba(216, 183, 117, 0.22), transparent 26rem),
    linear-gradient(120deg, var(--theme-primary-dark), var(--theme-primary) 68%, var(--theme-primary-light));
}

.page-banner::after {
  position: absolute;
  right: -8rem;
  bottom: -14rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 2.5rem rgba(255, 255, 255, 0.035), 0 0 0 5rem rgba(255, 255, 255, 0.025);
  content: "";
  pointer-events: none;
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner .eyebrow {
  color: var(--theme-highlight);
}

.page-banner h1 {
  max-width: 18ch;
  color: #fffdf8;
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.page-banner p:not(.eyebrow) {
  max-width: 56ch;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-banner h1 {
  max-width: none;
  font-size: clamp(2rem, 5vw, 4rem);
}

.contact-card,
.info-card {
  border-radius: 24px;
}

.info-card ul {
  gap: 0.85rem;
}

.site-footer {
  padding: 2.25rem 0;
  border-top: 1px solid rgba(var(--theme-primary-rgb), 0.1);
  background: #f0eee5;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary);
}

.brand-note-section {
  padding-top: 1rem;
}

.brand-note {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 2.5rem;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(ellipse at 95% 10%, rgba(216, 183, 117, 0.2), transparent 22rem),
    linear-gradient(120deg, var(--theme-primary-dark), var(--theme-primary) 68%, var(--theme-primary-light));
  box-shadow: var(--shadow);
  color: #fffdf8;
}

.brand-note h2 {
  max-width: 12ch;
  margin-bottom: 0;
  color: #fffdf8;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.05em;
}

.brand-note .eyebrow {
  color: var(--theme-highlight);
}

.brand-note-copy p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.brand-note-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--theme-link-highlight);
  font-weight: 700;
}

.brand-note-link span {
  transition: transform 180ms ease;
}

.brand-note-link:hover span,
.brand-note-link:focus-visible span {
  transform: translateX(4px);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(216, 183, 117, 0.9);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .hero-grid {
    min-height: 0;
    gap: 2rem;
  }

  .brand-note {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 7vw, 4rem);
  }

  .product-grid,
  .product-list-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid div:nth-child(3) {
    border-left: 0;
  }

  .stats-grid div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .tag-two {
    right: 0;
  }
}

@media (max-width: 520px) {
  .nav-wrap {
    min-height: 76px;
  }

  .brand-mark {
    width: 118px;
    height: 76px;
  }

  .hero {
    padding: 3.5rem 0 4rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 3.6rem);
  }

  .hero-visual {
    padding-left: 0;
    padding-bottom: 1rem;
  }

  .card-main {
    max-width: none;
  }

  .card-main img {
    height: min(112vw, 440px);
  }

  .floating-tag {
    font-size: 0.72rem;
    padding: 0.65rem 0.95rem;
  }

  .product-grid,
  .product-list-grid,
  .category-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .stats-grid {
    padding: 1.3rem 0.75rem;
  }

  .page-banner {
    padding: 4rem 0 3.5rem;
  }

  .contact-banner h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.catalog-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: -0.5rem 0 3rem;
}

.catalog-nav a {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(var(--theme-primary-rgb), 0.16);
  border-radius: 999px;
  background: var(--surface);
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.catalog-nav a:hover,
.catalog-nav a:focus-visible {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.catalog-category {
  padding-top: 1rem;
  scroll-margin-top: 110px;
}

.catalog-category + .catalog-category {
  margin-top: clamp(3.5rem, 6vw, 5rem);
  padding-top: clamp(3rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}

.catalog-category .section-heading {
  margin-bottom: 1.6rem;
}

.contact-heading {
  margin-bottom: 1.5rem;
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius);
}

.contact-heading h2 {
  margin: 0;
  color: #fffdf8;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.05em;
}

.contact-heading .eyebrow {
  color: var(--theme-highlight);
}

.contact-heading p:not(.eyebrow) {
  margin-bottom: 0;
}

#about,
#products,
#contact {
  scroll-margin-top: 110px;
}
