:root {
  --ink: #211812;
  --muted: #6a5a50;
  --paper: #fffaf3;
  --white: #ffffff;
  --line: #eadbca;
  --brown: #965728;
  --brown-dark: #4d2516;
  --teal: #126a6d;
  --teal-soft: #e4f2ef;
  --rose: #b96571;
  --rose-soft: #fff0f1;
  --gold: #d7a73f;
  --shadow: 0 22px 58px rgba(33, 24, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 5vw;
  background: rgba(255, 250, 243, 0.94);
  border-bottom: 1px solid rgba(234, 219, 202, 0.9);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--brown-dark);
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.is-active {
  color: var(--teal);
}

.hero {
  min-height: 76svh;
  display: grid;
  align-items: center;
  padding: 78px 5vw 70px;
  background:
    linear-gradient(90deg, rgba(33, 24, 18, 0.86), rgba(150, 87, 40, 0.56), rgba(255, 250, 243, 0.12)),
    url("brand/brownandbusy-background.webp") center / cover no-repeat;
}

.hero-content {
  width: min(720px, 100%);
  color: var(--white);
}

.hero-logo {
  width: min(220px, 46vw);
  margin-bottom: 26px;
  border-radius: 8px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.94rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f7d487;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
}

h1 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.7rem;
  font-weight: 700;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  line-height: 1.72;
}

.hero-lede {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.38rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
}

.button.secondary {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.hero .button.secondary {
  color: var(--white);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.section,
.notice-band,
.site-footer {
  padding: 78px 5vw;
}

.notice-band {
  background: var(--teal-soft);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.notice-grid,
.split,
.connect-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.notice-grid p,
.prose p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.prose {
  display: grid;
  gap: 16px;
}

.signature {
  color: var(--rose) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem !important;
  font-weight: 700;
}

.color-wash {
  background: linear-gradient(180deg, var(--white), var(--teal-soft));
}

.rose-wash {
  background: linear-gradient(180deg, var(--white), var(--rose-soft));
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.media-layout.reverse {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
}

.media-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.media-copy .button,
.prose .button {
  justify-self: start;
  margin-top: 8px;
}

.feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image.logo-art {
  object-fit: contain;
  background: var(--white);
}

.feature-image.product {
  aspect-ratio: 1.15 / 1;
  object-position: center;
}

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

.image-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(33, 24, 18, 0.1);
}

.card-grid,
.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.info-card,
.article-card {
  min-height: 206px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.info-card h3,
.article-card h2 {
  color: var(--ink);
}

.info-card p,
.article-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.image-card {
  overflow: hidden;
  padding: 0;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card h3,
.image-card p {
  padding-right: 24px;
  padding-left: 24px;
}

.image-card h3 {
  margin-top: 22px;
}

.image-card p {
  padding-bottom: 24px;
}

.wide-card {
  grid-column: 1 / -1;
}

.boutique-grid .info-card:nth-child(1),
.rose-card {
  border-color: rgba(185, 101, 113, 0.28);
  background: var(--rose-soft);
}

.boutique-grid .info-card:nth-child(2),
.teal-card {
  border-color: rgba(18, 106, 109, 0.28);
  background: var(--teal-soft);
}

.boutique-grid .info-card:nth-child(3),
.gold-card {
  border-color: rgba(215, 167, 63, 0.35);
  background: #fff7d9;
}

.story-band {
  background: var(--rose-soft);
  border-top: 1px solid rgba(185, 101, 113, 0.16);
  border-bottom: 1px solid rgba(185, 101, 113, 0.16);
}

.connect-section {
  background: var(--white);
}

.connect-grid {
  align-items: center;
}

.connect-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
}

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

.footer-grid p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  text-decoration: none;
}

.page-hero {
  padding: 92px 5vw 70px;
  background:
    linear-gradient(135deg, rgba(228, 242, 239, 0.96), rgba(255, 240, 241, 0.78)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.62fr);
  gap: 44px;
  align-items: center;
}

.page-hero h1 {
  color: var(--ink);
  font-size: 4rem;
}

.page-lede {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-stack {
  display: grid;
  gap: 18px;
}

.hero-bake-art {
  display: block;
  width: 100%;
  aspect-ratio: 7 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(33, 24, 18, 0.12);
}

.quick-panel {
  padding: 26px;
  border: 1px solid rgba(18, 106, 109, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(33, 24, 18, 0.08);
}

.quick-panel h2 {
  font-size: 1.45rem;
}

.quick-panel p,
.quick-panel li {
  color: var(--muted);
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 2px;
  background: var(--brown);
}

.callout {
  padding: 34px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
}

.callout .section-kicker,
.callout p {
  color: rgba(255, 255, 255, 0.9);
}

.callout h2 {
  color: var(--white);
}

.resource-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.resource-row:first-child {
  padding-top: 0;
}

.resource-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.resource-row p {
  margin: 10px 0 0;
  color: var(--muted);
}

.product-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.article-card {
  min-height: 0;
  padding: 30px;
}

.article-card time {
  display: block;
  margin-bottom: 12px;
  color: var(--rose);
  font-weight: 900;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.social-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.social-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .notice-grid,
  .split,
  .connect-grid,
  .media-layout,
  .media-layout.reverse,
  .footer-grid,
  .page-hero .section-inner,
  .page-grid,
  .product-strip,
  .resource-row {
    grid-template-columns: 1fr;
  }

  .connect-actions {
    justify-content: flex-start;
  }

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

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

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding: 12px 20px;
  }

  .site-nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 6px;
    font-size: 0.88rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 42px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
  }

  .footer-links a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
  }

  .plain-list a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
  }

  .hero {
    min-height: 70svh;
    padding: 54px 20px 50px;
  }

  .hero-logo {
    width: 164px;
  }

  h1 {
    font-size: 2.72rem;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .section,
  .notice-band,
  .site-footer,
  .page-hero {
    padding: 54px 20px;
  }

  .button {
    width: 100%;
  }

  .info-card {
    min-height: 0;
  }

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