:root {
  --brown: #4e2e1c;
  --brown-deep: #351909;
  --cream: #f2f0ed;
  --cream-soft: #fbf7f1;
  --white: #ffffff;
  --gold: #d4af37;
  --gold-soft: #d4c5a0;
  --taupe: #a39289;
  --ganache: #182d36;
  --ink: #27170f;
  --muted: rgba(78, 46, 28, 0.72);
  --line: rgba(78, 46, 28, 0.18);
  --dark-line: rgba(212, 175, 55, 0.32);
  --shadow: 0 22px 70px rgba(53, 25, 9, 0.14);
  --heading: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Merriweather", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brown);
  background: var(--cream);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.75;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(242, 240, 237, 0.9), rgba(242, 240, 237, 0.95)),
    url("assets/wallpaper.jpg") center top / 980px auto repeat;
}

a {
  color: inherit;
}

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

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(78, 46, 28, 0.14);
  background: rgba(251, 247, 241, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--brown);
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: #8b6d2f;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid rgba(78, 46, 28, 0.2);
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--brown);
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(191, 164, 111, 0.24);
  cursor: pointer;
}

.button:hover {
  background: var(--brown);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--brown);
  color: var(--white);
}

.button.light {
  border-color: rgba(242, 240, 237, 0.36);
  color: var(--cream);
}

.button.light:hover {
  background: var(--cream);
  color: var(--brown);
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown-deep);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(53, 25, 9, 0.86), rgba(53, 25, 9, 0.58) 45%, rgba(53, 25, 9, 0.28)),
    url("assets/hero.jpg") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(242, 240, 237, 0.54);
  outline: 1px solid rgba(212, 175, 55, 0.42);
  outline-offset: -9px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 112px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: var(--heading);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 8vw, 92px);
}

h2 {
  font-size: clamp(32px, 4.6vw, 56px);
}

h3 {
  font-size: 22px;
}

.hero p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(20px, 2vw, 25px);
  font-style: italic;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.intro {
  background: rgba(255, 255, 255, 0.76);
}

.intro p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(19px, 2vw, 22px);
}

.intro p + p {
  margin-top: 14px;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.intro-copy {
  text-align: left;
}

.intro-eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--brown);
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.shop-proof {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(78, 46, 28, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(53, 25, 9, 0.12);
}

.shop-proof img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.shop-proof figcaption {
  display: block;
  margin-top: 10px;
  color: rgba(78, 46, 28, 0.72);
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.intro-eyebrow + p {
  margin-top: 0;
}

.heritage-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(520px, 76%);
  margin: 46px auto 0;
}

.heritage-divider::before,
.heritage-divider::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.heritage-divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.heritage-divider span {
  width: 8px;
  height: 8px;
  background: #a4d4e4;
  border: 1px solid rgba(78, 46, 28, 0.28);
  transform: rotate(45deg);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.partner-card p {
  grid-column: 2;
  margin: 12px 0 0;
  color: var(--muted);
}

.partner-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0;
  color: #e0c77b;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-icon path:first-child {
  fill: rgba(224, 199, 123, 0.08);
}

.dark-section {
  position: relative;
  overflow: hidden;
  background: var(--ganache);
  color: var(--cream);
}

.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(24, 45, 54, 0.9), rgba(24, 45, 54, 0.94)),
    url("assets/wallpaper.jpg") center / 900px auto repeat;
  opacity: 0.7;
}

.dark-section .container {
  position: relative;
  z-index: 1;
}

.dark-section h2 {
  color: #e0c77b;
}

.dark-section .section-heading p,
.dark-section p {
  color: rgba(242, 240, 237, 0.78);
}

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

.partner-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 18px;
  align-items: start;
  min-height: 218px;
  padding: 26px 22px;
  border: 1px solid rgba(212, 175, 55, 0.44);
  background: rgba(53, 25, 9, 0.24);
  text-align: left;
}

.partner-card h3 {
  align-self: start;
  margin-top: 2px;
  line-height: 1.02;
}

.about-band {
  background: var(--cream-soft);
}

.about-panel,
.starter-panel {
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 34px;
  padding: 38px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.about-panel p {
  margin: 0;
  font-size: 21px;
}

.starter-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  padding: clamp(28px, 5vw, 48px);
}

.starter-eyebrow {
  margin: 0 0 12px;
  color: #8b6d2f;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.starter-copy h2 {
  color: var(--brown);
  font-size: clamp(30px, 4vw, 46px);
}

.starter-copy p:not(.starter-eyebrow) {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--brown);
  font-size: 19px;
  line-height: 1.72;
}

.starter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.starter-photo {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(78, 46, 28, 0.16);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(53, 25, 9, 0.1);
}

.starter-photo img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: contain;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  background: var(--brown);
  color: var(--cream);
  text-align: center;
}

.wallpaper-band {
  position: relative;
  overflow: hidden;
  background: var(--brown);
  color: var(--cream);
}

.wallpaper-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/wallpaper.jpg") center / cover;
  opacity: 0.12;
  pointer-events: none;
}

.wallpaper-band > * {
  position: relative;
  z-index: 1;
}

.site-footer.wallpaper-band::before {
  background-position: right center;
  transform: scaleX(-1);
}

.footer-mark {
  width: 58px;
  margin: 0 auto 24px;
}

.site-footer p {
  margin: 0;
  color: rgba(242, 240, 237, 0.82);
  font-size: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  text-decoration: none;
}

.page-hero {
  padding: clamp(58px, 8vw, 96px) 0;
  color: var(--cream);
}

.catalog-image-hero {
  position: relative;
  overflow: hidden;
  min-height: max(640px, calc(100svh - 86px));
  display: flex;
  align-items: center;
  background: var(--brown-deep);
}

.catalog-image-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(53, 25, 9, 0.9), rgba(53, 25, 9, 0.66) 44%, rgba(53, 25, 9, 0.34)),
    url("assets/catalog-hero-cafe.jpg") 42% center / cover;
}

.catalog-image-hero::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(242, 240, 237, 0.54);
  outline: 1px solid rgba(212, 175, 55, 0.42);
  outline-offset: -9px;
  pointer-events: none;
}

.catalog-image-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(242, 240, 237, 0.84);
  font-size: 21px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.6fr);
  gap: 34px;
  align-items: start;
}

.panel {
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 42px rgba(53, 25, 9, 0.08);
}

.panel p:first-child {
  margin-top: 0;
}

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

.catalog-hero .actions {
  margin-top: 30px;
}

.catalog-preview-section {
  background: rgba(255, 255, 255, 0.76);
}

.catalog-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 0.86fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.catalog-preview-copy h2 {
  max-width: 620px;
  color: var(--brown);
}

.catalog-preview-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px 0 0;
  font-size: 20px;
}

.collection-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.collection-list li {
  padding-top: 10px;
  border-top: 1px solid rgba(212, 175, 55, 0.42);
}

.catalog-pages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.catalog-page-card {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 52px rgba(53, 25, 9, 0.12);
}

.catalog-page-card.offset {
  margin-top: 0;
}

.catalog-page-card img {
  width: 100%;
  aspect-ratio: 0.773 / 1;
  object-fit: cover;
}

.catalog-path-heading {
  align-items: start;
}

.path-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  gap: 28px;
  align-items: start;
}

.path-panel h3 {
  margin-bottom: 14px;
  color: var(--brown);
  font-size: clamp(26px, 3vw, 36px);
}

.path-panel > p:not(.starter-eyebrow) {
  margin: 0 0 24px;
  font-size: 18px;
}

.faire-panel {
  background: rgba(251, 247, 241, 0.9);
}

.faire-panel .button {
  margin-top: 26px;
}

.lead-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

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

.lead-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(78, 46, 28, 0.24);
  border-radius: 8px;
  background: var(--white);
  color: var(--brown);
  font: inherit;
  font-size: 17px;
}

input:focus {
  outline: 2px solid rgba(212, 175, 55, 0.5);
  outline-offset: 2px;
}

.fine-print {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.next-steps-panel {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.next-steps-panel h2 {
  max-width: 820px;
  color: var(--brown);
  font-size: clamp(30px, 4vw, 48px);
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 22px;
}

.next-steps-grid p {
  margin: 0;
  color: var(--brown);
  font-size: 19px;
}

@media (min-width: 901px) and (max-width: 1300px) {
  .hero {
    min-height: 650px;
  }

  .hero-content,
  .catalog-image-hero .container {
    width: min(100% - 96px, 1180px);
  }

  .hero-content {
    padding: 78px 0 98px;
  }

  h1 {
    max-width: 720px;
    font-size: clamp(58px, 6vw, 72px);
    line-height: 1.04;
  }

  .hero p {
    max-width: 540px;
    font-size: 23px;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 17px;
  }

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

  .nav {
    gap: 14px;
    font-size: 11px;
  }

  .nav .optional {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero::before {
    background:
      linear-gradient(rgba(53, 25, 9, 0.9), rgba(53, 25, 9, 0.72)),
      url("assets/hero.jpg") center / cover;
  }

  .hero-content,
  .catalog-image-hero .container {
    width: min(100% - 96px, 1180px);
  }

  .hero-content {
    padding: 72px 0 92px;
  }

  h1 {
    max-width: 640px;
    font-size: 58px;
    line-height: 1.04;
  }

  .hero p {
    max-width: 540px;
    font-size: 22px;
  }

  .section-heading,
  .intro-layout,
  .about-panel,
  .starter-panel,
  .catalog-preview-layout,
  .path-grid,
  .next-steps-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 14px;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-preview-layout {
    align-items: start;
  }

  .catalog-pages {
    max-width: 640px;
  }
}

@media (max-width: 620px) {
  .header-inner {
    width: min(100% - 24px, 1180px);
  }

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

  .brand {
    gap: 10px;
    font-size: 15px;
    letter-spacing: 0.1em;
  }

  .nav a:not(.button) {
    display: none;
  }

  .nav {
    gap: 0;
  }

  .button {
    min-height: 44px;
    padding: 11px 14px;
    font-size: 11px;
  }

  .hero {
    min-height: 560px;
  }

  .hero::after {
    inset: 14px 12px;
    outline-offset: -6px;
  }

  .hero-content {
    width: min(100% - 74px, 1180px);
    padding: 58px 0 76px;
  }

  h1 {
    max-width: 292px;
    font-size: 35px;
    line-height: 1.02;
  }

  .hero p {
    max-width: 285px;
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.45;
  }

  .page-hero {
    padding: 46px 0 54px;
  }

  .catalog-image-hero {
    min-height: 560px;
  }

  .catalog-image-hero .container {
    width: min(100% - 72px, 1180px);
  }

  .catalog-image-hero::before {
    background:
      linear-gradient(rgba(53, 25, 9, 0.9), rgba(53, 25, 9, 0.68)),
      url("assets/catalog-hero-cafe.jpg") 43% center / cover;
  }

  .catalog-image-hero::after {
    inset: 14px 12px;
    outline-offset: -6px;
  }

  .page-hero h1 {
    max-width: 300px;
    font-size: 32px;
  }

  .page-hero p {
    max-width: 300px;
    font-size: 18px;
    line-height: 1.62;
  }

  .actions {
    display: grid;
    width: 100%;
    max-width: 238px;
    gap: 10px;
    margin-top: 24px;
  }

  .hero .button {
    width: 100%;
  }

  .intro {
    text-align: left;
  }

  .intro-copy {
    text-align: left;
  }

  .intro p {
    max-width: 330px;
    font-size: 19px;
    line-height: 1.56;
  }

  .intro .container {
    width: min(100% - 36px, 1180px);
  }

  .intro.section {
    padding-top: 46px;
  }

  .intro-layout {
    gap: 22px;
  }

  .intro .heritage-divider {
    display: none;
  }

  .shop-proof img {
    aspect-ratio: 1.12 / 1;
  }

  .shop-proof {
    background: rgba(255, 255, 255, 0.72);
  }

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

  .partner-card {
    min-height: 0;
    padding: 18px 18px 17px;
    align-items: start;
  }

  .partner-icon {
    width: 34px;
    height: 34px;
    margin: 0;
  }

  .partner-card h3 {
    font-size: 18px;
    margin-top: 0;
    padding-top: 4px;
    line-height: 1.12;
  }

  .partner-card p {
    margin-top: 9px;
  }

  .catalog-preview-copy p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.62;
  }

  .collection-list {
    grid-template-columns: 1fr;
    font-size: 11px;
  }

  .catalog-pages {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: start;
  }

  .catalog-page-card {
    padding: 6px;
  }

  .catalog-page-card.offset {
    margin-top: 0;
  }

  .path-panel h3 {
    font-size: 26px;
  }

  .next-steps-grid p {
    font-size: 18px;
    line-height: 1.62;
  }

  .panel,
  .about-panel,
  .starter-panel,
  .next-steps-panel {
    padding: 24px;
  }

  .starter-photo {
    order: -1;
    padding: 8px;
  }

  .starter-copy h2 {
    font-size: 30px;
  }

  .starter-copy p:not(.starter-eyebrow) {
    font-size: 18px;
    line-height: 1.62;
  }

  .starter-actions {
    display: grid;
  }
}
