@font-face {
  font-family: "Gotham Rounded";
  src: url("assets/fonts/gotham-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("assets/fonts/gotham-book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("assets/fonts/gotham-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("assets/fonts/gotham-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f7f0df;
  --cream-strong: #fff9ef;
  --brown: #4a3523;
  --brown-soft: #6d5947;
  --brown-deep: #2f2116;
  --clay: #d97d58;
  --clay-soft: #f0ceb8;
  --sage: #a9bb96;
  --sage-soft: #dfe8d4;
  --sage-deep: #6f8260;
  --line: rgba(98, 117, 84, 0.18);
  --white: #fffdf8;
  --focus-ring: rgba(217, 125, 88, 0.48);
  --shadow-soft: 0 24px 70px rgba(58, 39, 24, 0.08);
  --shadow-strong: 0 30px 80px rgba(38, 25, 15, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::view-transition-group(root) {
  animation-duration: 0s;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}

::view-transition-old(root) {
  z-index: 1;
}

::view-transition-new(root) {
  z-index: 2;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --dark-bg: #131916;
  --dark-bg-soft: #1a221e;
  --dark-surface: rgba(27, 35, 31, 0.94);
  --dark-surface-strong: rgba(18, 24, 22, 0.9);
  --dark-surface-sage: rgba(38, 50, 43, 0.94);
  --dark-surface-warm: rgba(59, 42, 33, 0.9);
  --dark-copy: rgba(255, 249, 239, 0.8);
  --dark-copy-muted: rgba(255, 249, 239, 0.64);
  --dark-line: rgba(223, 232, 212, 0.12);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Gotham Rounded", "Trebuchet MS", sans-serif;
  color: var(--brown);
  background:
    linear-gradient(180deg, #fbfaf2 0%, #e8f0df 38%, #edf3e6 62%, #f6efe0 100%),
    radial-gradient(circle at top left, rgba(240, 206, 184, 0.24), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(169, 187, 150, 0.34), transparent 24%);
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background:
    radial-gradient(circle at 15% 10%, rgba(240, 206, 184, 0.42), transparent 18%),
    radial-gradient(circle at 88% 78%, rgba(169, 187, 150, 0.42), transparent 18%);
}

.site-header,
.site-footer,
main {
  position: relative;
}

.site-header {
  z-index: 30;
  padding: 1rem 0 0;
}

main,
.site-footer {
  z-index: 1;
}

.nav-shell {
  position: relative;
  z-index: 31;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(223, 232, 212, 0.2), rgba(255, 249, 239, 0));
}

.brand-mark img,
.footer-brand img {
  width: clamp(5.8rem, 10vw, 7rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.nav-tools,
.nav-buttons {
  display: flex;
  align-items: center;
}

.nav-tools {
  gap: 0.85rem;
  margin-left: auto;
}

.nav-buttons {
  gap: 0.7rem;
}

.site-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a,
.footer-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.site-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 1px;
  background: var(--sage-deep);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  opacity: 0.8;
}

.site-nav a:focus-visible,
.footer-nav a:focus-visible,
.button:focus-visible,
.menu-toggle:focus-visible,
.theme-toggle:focus-visible,
.scroll-top:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brown);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.theme-toggle::before {
  content: none;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
}

.theme-toggle-art {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
}

.theme-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform-origin: center;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    color 220ms ease;
}

.theme-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.theme-icon-sun {
  color: var(--clay);
  opacity: 1;
  transform: scale(0.96) rotate(0deg);
}

.theme-icon-moon {
  color: var(--sage-deep);
  opacity: 0;
  transform: scale(0.45) rotate(-12deg);
}

html[data-theme="dark"] .theme-icon-sun {
  color: var(--clay-soft);
  opacity: 0;
  transform: scale(0.45) rotate(18deg);
}

html[data-theme="dark"] .theme-icon-moon {
  color: #dbe4f3;
  opacity: 1;
  transform: scale(0.96) rotate(0deg);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(223, 232, 212, 0.5), rgba(255, 255, 255, 0.48));
  color: var(--brown);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.section {
  padding: 7.5rem 0;
}

@media (min-width: 641px) {
  .section {
    padding: 6rem 0;
  }

  .story.section {
    padding-bottom: 3.25rem;
  }

  .founder.section {
    padding-top: 2rem;
  }

  .experience.section {
    padding-bottom: 4.5rem;
  }

  .visit.section {
    padding-top: 4.5rem;
  }
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clay);
}

.eyebrow-light {
  color: rgba(255, 249, 239, 0.68);
}

.hero {
  padding: 2rem 0 4rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 0 0;
}

.hero-copy h1,
.intro-card h2,
.story-main h2,
.menu-header h2,
.experience-copy h2,
.visit-copy h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.07em;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 6.8vw, 6.2rem);
  line-height: 0.92;
}

.hero-lede,
.story-main p,
.menu-header p,
.menu-card p,
.experience-copy p,
.experience-panel p,
.visit-copy p {
  margin: 0;
  color: var(--brown-soft);
  line-height: 1.8;
}

.hero-lede {
  max-width: 33rem;
  margin-top: 1.5rem;
  font-size: 1.04rem;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, var(--sage-deep), #607250);
  box-shadow: 0 18px 34px rgba(96, 114, 80, 0.24);
}

.button-secondary {
  color: var(--brown);
  background: linear-gradient(180deg, rgba(169, 187, 150, 0.34), rgba(255, 255, 255, 0.68));
  border-color: rgba(98, 117, 84, 0.2);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-meta article {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(98, 117, 84, 0.18);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(169, 187, 150, 0.24), rgba(255, 255, 255, 0.46));
}

.meta-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
}

.hero-meta p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--brown);
}

.hero-stage {
  height: 100%;
  min-height: 45rem;
}

.stage-card {
  position: relative;
  height: 100%;
  min-height: 45rem;
  overflow: hidden;
  padding: 2rem;
  border-radius: 2.25rem;
  background:
    linear-gradient(140deg, rgba(74, 53, 35, 0.95) 0%, rgba(98, 117, 84, 0.96) 58%, rgba(123, 146, 106, 0.98) 100%),
    radial-gradient(circle at top right, rgba(240, 206, 184, 0.14), transparent 20%);
  box-shadow: var(--shadow-strong);
}

.stage-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: url("assets/images/pattern-transparent.png") center / 30rem;
}

.stage-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(223, 232, 212, 0.32);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(223, 232, 212, 0.18), rgba(255, 249, 239, 0.06));
  color: rgba(255, 249, 239, 0.84);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-logo {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(66%, 27rem);
  max-height: calc(100% - 15rem);
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.18));
}

.stage-caption {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 1;
  max-width: 16rem;
  padding: 1.15rem;
  border: 1px solid rgba(223, 232, 212, 0.24);
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(169, 187, 150, 0.24), rgba(255, 249, 239, 0.08));
  backdrop-filter: blur(10px);
}

.caption-label,
.panel-label {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.caption-label {
  color: var(--clay-soft);
}

.stage-caption p:last-child {
  margin: 0;
  color: rgba(255, 249, 239, 0.84);
  line-height: 1.7;
}

.intro-band {
  padding-bottom: 2rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 1rem;
}

.intro-card {
  padding: 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(223, 232, 212, 0.16), rgba(255, 255, 255, 0));
}

.intro-card h2 {
  max-width: 11ch;
  font-size: clamp(2.2rem, 4.6vw, 4.7rem);
  line-height: 0.96;
}

.intro-card-accent {
  display: flex;
  align-items: end;
  justify-content: end;
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(169, 187, 150, 0.32), rgba(255, 255, 255, 0.36));
}

.intro-card-accent p {
  max-width: 22rem;
  margin: 0;
  color: var(--brown-soft);
  line-height: 1.8;
}

.story-top {
  display: grid;
  gap: 1rem;
}

.story-top {
  grid-template-columns: 0.38fr 1fr;
}

.story-aside,
.story-main {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(223, 232, 212, 0.18), rgba(255, 255, 255, 0.46));
  box-shadow: var(--shadow-soft);
}

.story-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  min-height: 24rem;
  background: linear-gradient(180deg, rgba(169, 187, 150, 0.3), rgba(255, 255, 255, 0.52));
}

.story-aside-icon {
  width: 4.5rem;
  height: auto;
}

.story-note {
  margin: 0;
  max-width: 12rem;
  color: var(--brown-soft);
  line-height: 1.75;
}

.story-main h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: 0.95;
}

.story-main p + p {
  margin-top: 1rem;
}

.story-main p:last-child {
  max-width: 36rem;
}

.section-dark {
  background: linear-gradient(135deg, rgba(74, 53, 35, 0.96) 0%, rgba(98, 117, 84, 0.96) 56%, rgba(123, 146, 106, 0.98) 100%);
  color: var(--white);
}

.founder {
  padding-top: 3rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.founder-portrait {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 39rem;
  padding: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(223, 232, 212, 0.2), rgba(255, 255, 255, 0.52));
  box-shadow: var(--shadow-soft);
}

.founder-portrait-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 1.55rem;
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.98), rgba(228, 236, 219, 0.9));
}

.founder-portrait-frame::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(74, 53, 35, 0.12));
  z-index: 1;
}

.founder-portrait-frame::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(98, 117, 84, 0.08);
  z-index: 2;
}

.founder-photo {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.founder-portrait-brand .founder-portrait-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(74, 53, 35, 0.94), rgba(111, 130, 96, 0.98));
}

.founder-portrait-brand .founder-portrait-frame::before {
  inset: 0;
  height: auto;
  background: radial-gradient(circle at top right, rgba(240, 206, 184, 0.18), transparent 28%);
}

.founder-stage-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: url("assets/images/pattern-transparent.png") center / 28rem;
}

.founder-stage-icon {
  position: relative;
  z-index: 1;
  width: min(42%, 14rem);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.16));
}

.founder-plaque {
  position: absolute;
  right: 1.8rem;
  bottom: 1.8rem;
  z-index: 2;
  width: min(22rem, calc(100% - 3.6rem));
  padding: 1.4rem 1.6rem;
  border-radius: 1.5rem;
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 20px 34px rgba(74, 53, 35, 0.2);
}

.founder-plaque h3,
.founder-plaque p {
  margin: 0;
}

.founder-plaque h3 {
  font-size: clamp(1.12rem, 1.55vw, 1.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.founder-plaque p {
  margin-top: 0.5rem;
  color: rgba(255, 249, 239, 0.82);
  font-size: 0.84rem;
  line-height: 1.55;
}

.founder-copy {
  padding: 0.5rem 0;
}

.founder-copy-wide {
  grid-column: 1 / -1;
  max-width: 54rem;
  margin: 0 auto;
}

.founder-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.founder-heading h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.founder-heading img {
  width: 4.5rem;
  margin-top: 0.4rem;
}

.founder-copy p {
  margin: 0;
  color: var(--brown);
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
  line-height: 1.85;
}

.founder-copy p + p {
  margin-top: 1rem;
}

.craft-detail {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(98, 117, 84, 0.14);
  border-radius: 1.45rem;
  background: linear-gradient(180deg, rgba(223, 232, 212, 0.28), rgba(255, 255, 255, 0.62));
  box-shadow: 0 18px 36px rgba(74, 53, 35, 0.06);
}

.craft-detail h3 {
  margin: 0.2rem 0 0.55rem;
  color: var(--brown);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.craft-detail p {
  font-size: 1rem;
  line-height: 1.75;
}


.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.founder-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(98, 117, 84, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(223, 232, 212, 0.34), rgba(255, 255, 255, 0.62));
  color: var(--brown);
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(74, 53, 35, 0.05);
}

.menu-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 23rem);
  gap: 2rem;
  align-items: end;
}

.menu-header h2 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.92;
}

.menu-header p {
  color: rgba(255, 249, 239, 0.72);
}

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

.menu-card {
  min-height: 18.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(223, 232, 212, 0.18);
  border-radius: 1.9rem;
  background: linear-gradient(180deg, rgba(223, 232, 212, 0.1), rgba(255, 249, 239, 0.06));
  backdrop-filter: blur(6px);
}

.menu-card-bright-text p {
  color: rgba(255, 249, 239, 0.96);
}

.menu-card p {
  font-size: 1rem;
  line-height: 1.65;
}

.menu-type {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(223, 232, 212, 0.14);
  color: rgba(255, 249, 239, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-card h3 {
  margin: 0.9rem 0 1rem;
  font-size: 1.55rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--white);
}

.menu-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  gap: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 249, 239, 0.12);
}

.menu-list li span:first-child {
  color: var(--white);
  font-weight: 500;
}

.menu-list li span:last-child {
  color: rgba(255, 249, 239, 0.68);
  font-size: 0.94rem;
}

.menu-card-feature {
  position: relative;
  background:
    linear-gradient(180deg, rgba(169, 187, 150, 0.42), rgba(240, 206, 184, 0.14)),
    rgba(255, 249, 239, 0.05);
}

.menu-card-feature p {
  color: rgba(255, 249, 239, 0.82);
}

.menu-card-note {
  background:
    linear-gradient(180deg, rgba(223, 232, 212, 0.18), rgba(255, 249, 239, 0.08)),
    rgba(255, 249, 239, 0.06);
}

.menu-card-note p + p {
  margin-top: 1rem;
}

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

.experience-copy,
.experience-quote,
.experience-panel {
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(223, 232, 212, 0.22), rgba(255, 255, 255, 0.52));
  box-shadow: var(--shadow-soft);
}

.experience-copy {
  grid-column: span 2;
}

.experience-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 0.94;
}

.experience-copy p:last-child {
  margin-top: 1.2rem;
  max-width: 36rem;
}

.combo-options {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.combo-options div {
  display: grid;
  gap: 0.22rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(98, 117, 84, 0.12);
}

.combo-options strong {
  font-size: 1rem;
  font-weight: 500;
}

.combo-options span {
  color: var(--brown-soft);
  line-height: 1.6;
}

.experience-quote {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: start;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(169, 187, 150, 0.52), rgba(255, 255, 255, 0.64));
}

.experience-quote p {
  margin: 0;
  font-size: clamp(1.02rem, 1.95vw, 1.45rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.panel-label {
  color: var(--clay);
}

.experience-panel h3 {
  margin: 0 0 0.85rem;
  font-size: 1.6rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

@media (min-width: 1101px) {
  .experience-panel.wide {
    grid-column: span 2;
  }
}

.experience-panel-pattern {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 21rem;
  background: linear-gradient(135deg, rgba(74, 53, 35, 0.92), rgba(111, 130, 96, 0.98));
}

.pattern-circle {
  position: absolute;
  inset: auto auto 1.5rem 1.5rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: url("assets/images/pattern-transparent.png") center / cover;
  opacity: 0.12;
}

.experience-panel-pattern img {
  position: relative;
  z-index: 1;
  width: min(10rem, 68%);
}

.visit-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid rgba(98, 117, 84, 0.18);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(169, 187, 150, 0.3), rgba(255, 255, 255, 0.46));
}

.visit-copy {
  max-width: 44rem;
}

.visit-copy h2 {
  max-width: 15ch;
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  line-height: 0.95;
}

.visit-copy p {
  margin-top: 1rem;
}

.visit-details {
  color: var(--brown);
  font-style: normal;
  font-weight: 500;
  line-height: 1.95;
}

.visit-details a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.visit-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  color: var(--brown);
  font-weight: 500;
  text-decoration: none;
}

.visit-map-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid rgba(98, 117, 84, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.72), rgba(223, 232, 212, 0.48));
  box-shadow: 0 10px 24px rgba(74, 53, 35, 0.08);
}

.visit-map-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visit-map-link:hover,
.visit-map-link:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.site-footer {
  padding: 0 0 2rem;
}

.scroll-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(58, 39, 24, 0.14);
  color: var(--brown);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.94);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  transform: translateY(-2px) scale(1);
  box-shadow: 0 22px 48px rgba(58, 39, 24, 0.18);
}

.scroll-top-ring,
.scroll-top-arrow {
  position: absolute;
  inset: 0;
}

.scroll-top-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.scroll-top-track,
.scroll-top-progress {
  fill: none;
  stroke-width: 2.6;
}

.scroll-top-track {
  stroke: rgba(98, 117, 84, 0.14);
}

.scroll-top-progress {
  stroke: var(--clay);
  stroke-linecap: round;
  stroke-dasharray: 138.23;
  stroke-dashoffset: 138.23;
  transition: stroke-dashoffset 160ms linear, stroke 180ms ease;
}

.scroll-top-arrow {
  inset: 50%;
  width: 1.15rem;
  height: 1.15rem;
  transform: translate(-50%, -50%);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(223, 232, 212, 0.16), rgba(255, 255, 255, 0));
}

.footer-copy > p,
.footer-copy > span {
  display: block;
}

.footer-copy p {
  margin: 0;
  font-weight: 500;
}

.footer-copy > span {
  margin-top: 0.18rem;
  color: var(--brown-soft);
  font-size: 0.72rem;
  line-height: 1.6;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
}

.footer-meta-line {
  display: inline;
}

.footer-meta-separator {
  display: inline;
}

.footer-copy a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

html[data-theme="dark"] body {
  color: var(--white);
  background:
    linear-gradient(180deg, #131916 0%, #19201c 34%, #212b25 62%, #161c19 100%),
    radial-gradient(circle at top left, rgba(240, 206, 184, 0.12), transparent 26%),
    radial-gradient(circle at 82% 10%, rgba(169, 187, 150, 0.18), transparent 24%);
}

html[data-theme="dark"] body.roasters-page {
  background:
    linear-gradient(180deg, #121816 0%, #18201c 32%, #202824 58%, #141918 100%),
    radial-gradient(circle at top left, rgba(183, 197, 173, 0.16), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(221, 132, 96, 0.12), transparent 20%);
}

html[data-theme="dark"] .page-noise {
  opacity: 0.56;
  background:
    radial-gradient(circle at 15% 10%, rgba(240, 206, 184, 0.16), transparent 18%),
    radial-gradient(circle at 88% 78%, rgba(169, 187, 150, 0.2), transparent 18%);
}

html[data-theme="dark"] .nav-shell,
html[data-theme="dark"] .footer-shell {
  border-color: var(--dark-line);
  background: linear-gradient(180deg, rgba(20, 26, 24, 0.84), rgba(20, 26, 24, 0.04));
}

html[data-theme="dark"] .scroll-top {
  background: rgba(18, 24, 22, 0.82);
  color: var(--white);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] .scroll-top-track {
  stroke: rgba(223, 232, 212, 0.14);
}

html[data-theme="dark"] .scroll-top-progress {
  stroke: var(--clay-soft);
}

html[data-theme="dark"] .brand-mark img,
html[data-theme="dark"] .footer-brand img {
  filter: brightness(0) saturate(100%) invert(96%) sepia(16%) saturate(255%) hue-rotate(320deg) brightness(104%)
    contrast(101%);
}

html[data-theme="dark"] .site-nav a,
html[data-theme="dark"] .footer-nav a,
html[data-theme="dark"] .footer-copy p {
  color: rgba(255, 249, 239, 0.9);
}

html[data-theme="dark"] .footer-copy span {
  color: var(--dark-copy-muted);
}

html[data-theme="dark"] .site-nav a::after,
html[data-theme="dark"] .footer-nav a::after {
  background: rgba(240, 206, 184, 0.88);
}

html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .theme-toggle {
  color: var(--white);
}

html[data-theme="dark"] .button-primary {
  background: linear-gradient(180deg, #8ca47f, #5d7155);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] body.roasters-page .button-primary {
  background: linear-gradient(180deg, #7f9472, #58684f);
}

html[data-theme="dark"] .button-secondary,
html[data-theme="dark"] body.roasters-page .button-secondary {
  color: var(--white);
  background: linear-gradient(180deg, rgba(56, 70, 62, 0.92), rgba(19, 24, 22, 0.92));
  border-color: var(--dark-line);
}

html[data-theme="dark"] .hero-copy h1,
html[data-theme="dark"] .intro-card h2,
html[data-theme="dark"] .story-main h2,
html[data-theme="dark"] .founder-heading h2,
html[data-theme="dark"] .craft-detail h3,
html[data-theme="dark"] .menu-header h2,
html[data-theme="dark"] .experience-copy h2,
html[data-theme="dark"] .visit-copy h2,
html[data-theme="dark"] .roasters-copy h1,
html[data-theme="dark"] .roasters-main h2,
html[data-theme="dark"] .roast-table-header h2,
html[data-theme="dark"] .wholesale-copy h2,
html[data-theme="dark"] .wholesale-panel h3 {
  color: var(--white);
}

html[data-theme="dark"] .hero-lede,
html[data-theme="dark"] .story-note,
html[data-theme="dark"] .story-main p,
html[data-theme="dark"] .founder-copy p,
html[data-theme="dark"] .experience-copy p,
html[data-theme="dark"] .experience-panel p,
html[data-theme="dark"] .visit-copy p,
html[data-theme="dark"] .visit-details,
html[data-theme="dark"] .hero-meta p,
html[data-theme="dark"] .intro-card-accent p,
html[data-theme="dark"] .roasters-lede,
html[data-theme="dark"] .roasters-aside p,
html[data-theme="dark"] .roasters-main > p:last-child,
html[data-theme="dark"] .roasters-stage-note p,
html[data-theme="dark"] .roasters-highlights p,
html[data-theme="dark"] .roasters-principles p:last-child,
html[data-theme="dark"] .wholesale-copy p,
html[data-theme="dark"] .wholesale-points li {
  color: var(--dark-copy);
}

html[data-theme="dark"] .visit-details a,
html[data-theme="dark"] .wholesale-meta a {
  color: var(--white);
}

html[data-theme="dark"] .visit-map-link {
  color: var(--white);
}

html[data-theme="dark"] .visit-map-icon {
  border-color: var(--dark-line);
  background: linear-gradient(180deg, rgba(38, 50, 43, 0.92), rgba(18, 24, 22, 0.92));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .hero-meta article,
html[data-theme="dark"] .intro-card,
html[data-theme="dark"] .story-main,
html[data-theme="dark"] .founder-portrait,
html[data-theme="dark"] .experience-copy,
html[data-theme="dark"] .experience-panel,
html[data-theme="dark"] .visit-shell,
html[data-theme="dark"] body.roasters-page .roasters-highlights article,
html[data-theme="dark"] body.roasters-page .roasters-stage-note,
html[data-theme="dark"] body.roasters-page .roasters-main,
html[data-theme="dark"] body.roasters-page .roasters-principles article,
html[data-theme="dark"] body.roasters-page .wholesale-copy {
  border-color: var(--dark-line);
  background: linear-gradient(180deg, var(--dark-surface), var(--dark-surface-strong));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .intro-card-accent,
html[data-theme="dark"] .experience-quote,
html[data-theme="dark"] .craft-detail,
html[data-theme="dark"] body.roasters-page .roasters-highlights article:nth-child(2),
html[data-theme="dark"] body.roasters-page .roasters-stage-note:nth-child(2),
html[data-theme="dark"] body.roasters-page .roasters-principles article:nth-child(2) {
  border-color: var(--dark-line);
  background: linear-gradient(180deg, var(--dark-surface-warm), var(--dark-surface-strong));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .story-aside,
html[data-theme="dark"] .founder-tags span,
html[data-theme="dark"] body.roasters-page .roasters-aside,
html[data-theme="dark"] body.roasters-page .roasters-highlights article:nth-child(3),
html[data-theme="dark"] body.roasters-page .roasters-stage-note:nth-child(3),
html[data-theme="dark"] body.roasters-page .roasters-principles article:nth-child(3) {
  border-color: var(--dark-line);
  background: linear-gradient(180deg, var(--dark-surface-sage), var(--dark-surface-strong));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .founder-tags span,
html[data-theme="dark"] .wholesale-points li {
  color: rgba(255, 249, 239, 0.86);
}

html[data-theme="dark"] .founder-portrait-frame {
  background: linear-gradient(180deg, rgba(31, 39, 36, 0.98), rgba(17, 22, 20, 0.9));
}

html[data-theme="dark"] .founder-portrait-frame::before {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.46));
}

html[data-theme="dark"] .founder-portrait-frame::after {
  border-color: rgba(223, 232, 212, 0.08);
}

html[data-theme="dark"] .founder-plaque {
  border: 1px solid var(--dark-line);
  background: linear-gradient(180deg, rgba(25, 31, 28, 0.98), rgba(18, 24, 22, 0.98));
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .founder-plaque p {
  color: var(--dark-copy-muted);
}

html[data-theme="dark"] .section-dark,
html[data-theme="dark"] .experience-panel-pattern,
html[data-theme="dark"] body.roasters-page .wholesale-panel {
  background:
    linear-gradient(140deg, rgba(17, 22, 20, 0.98) 0%, rgba(35, 47, 40, 0.96) 58%, rgba(85, 103, 79, 0.88) 100%),
    radial-gradient(circle at top right, rgba(240, 206, 184, 0.12), transparent 24%);
}

html[data-theme="dark"] .menu-card {
  border-color: rgba(223, 232, 212, 0.14);
  background: linear-gradient(180deg, rgba(44, 54, 48, 0.3), rgba(255, 249, 239, 0.06));
}

html[data-theme="dark"] .menu-card-feature,
html[data-theme="dark"] body.roasters-page .roast-card-feature {
  background:
    linear-gradient(180deg, rgba(124, 86, 64, 0.58), rgba(77, 97, 79, 0.28)),
    rgba(255, 249, 239, 0.05);
}

html[data-theme="dark"] .menu-card-note {
  background:
    linear-gradient(180deg, rgba(39, 51, 43, 0.72), rgba(255, 249, 239, 0.05)),
    rgba(255, 249, 239, 0.05);
}

html[data-theme="dark"] .combo-options div {
  border-color: rgba(223, 232, 212, 0.14);
}

html[data-theme="dark"] .combo-options span {
  color: var(--dark-copy);
}

html[data-theme="dark"] body.roasters-page .wholesale-points li {
  border-color: rgba(223, 232, 212, 0.12);
}

html[data-theme="dark"] body.roasters-page .roast-card {
  border-color: rgba(223, 232, 212, 0.14);
  background: linear-gradient(180deg, rgba(44, 54, 48, 0.26), rgba(255, 249, 239, 0.06));
}

body.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

body.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1100px) {
  .hero-shell,
  .intro-grid,
  .menu-header,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    align-items: start;
  }

  .hero-stage,
  .stage-card {
    min-height: 36rem;
  }

  .hero-meta,
  .menu-grid,
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visit-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .experience-copy {
    grid-column: span 2;
  }

  .founder-portrait {
    max-width: 34rem;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
    order: 1;
  }

  .nav-tools {
    gap: 0.7rem;
  }

  .theme-toggle {
    order: 2;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    z-index: 32;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    background: rgba(255, 249, 239, 0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  html[data-theme="dark"] .site-nav {
    border-color: var(--dark-line);
    background: rgba(18, 24, 22, 0.98);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
  }

  .site-nav a {
    width: 100%;
    padding: 0.35rem 0;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .story-top {
    grid-template-columns: 1fr;
  }

  .footer-shell,
  .visit-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 1.25rem, 1220px);
  }

  .scroll-top {
    right: 1rem;
    bottom: 1rem;
    width: 3.25rem;
    height: 3.25rem;
  }

  .section {
    padding: 5.5rem 0;
  }

  .hero {
    padding-top: 1rem;
  }

  .intro-band {
    padding-bottom: 0.75rem;
  }

  .intro-grid,
  .story-top {
    gap: 0.85rem;
  }

  .story.section {
    padding-top: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-meta,
  .menu-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    grid-column: auto;
  }

  .hero-stage,
  .stage-card {
    min-height: 30rem;
  }

  .stage-logo {
    top: 40%;
    width: min(72%, 17rem);
    max-height: calc(100% - 12rem);
  }

  .stage-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .intro-card,
  .story-aside,
  .story-main,
  .menu-card,
  .experience-copy,
  .experience-quote,
  .experience-panel,
  .founder-portrait {
    padding: 1.3rem;
    border-radius: 1.4rem;
  }

  .intro-card h2 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .intro-card-accent {
    align-items: flex-start;
    justify-content: flex-start;
    min-height: auto;
  }

  .intro-card-accent p {
    max-width: none;
  }

  .story-aside {
    min-height: auto;
    align-items: flex-start;
  }

  .story-aside-icon {
    width: 3.8rem;
  }

  .story-note {
    max-width: none;
  }

  .story-main h2 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .founder {
    padding-top: 1.5rem;
  }

  .founder-grid {
    gap: 1rem;
  }

  .founder-portrait {
    min-height: auto;
  }

  .founder-portrait-frame {
    min-height: 24rem;
  }

  .founder-photo {
    min-height: 24rem;
  }

  .founder-plaque {
    right: 1rem;
    bottom: 1rem;
    width: min(16.5rem, calc(100% - 2rem));
    margin-top: 0;
    border-radius: 1.2rem;
  }

  .founder-heading {
    align-items: center;
    margin-bottom: 1rem;
  }

  .founder-heading h2 {
    max-width: none;
    font-size: clamp(2.3rem, 12vw, 3.9rem);
  }

  .founder-heading img {
    width: 3.2rem;
    margin-top: 0;
  }

  .founder-copy p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .site-nav,
  .footer-nav {
    gap: 0.8rem;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .footer-meta-separator {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
