:root {
  --forest: #253b2d;
  --forest-soft: #35513e;
  --sage: #738561;
  --sage-text: #526144;
  --sage-pale: #dfe5d9;
  --cream: #fbf8f2;
  --linen: #f1e8dc;
  --blush: #e7a0aa;
  --blush-pale: #f6dfe2;
  --ink: #1f2a22;
  --muted: #59645c;
  --white: #fffdf9;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 76px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

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

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

.skip-link {
  background: var(--white);
  color: var(--forest);
  left: 16px;
  padding: 10px 15px;
  position: fixed;
  top: -60px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  align-items: center;
  background: rgba(251, 248, 242, 0.94);
  border-bottom: 1px solid rgba(37, 59, 45, 0.12);
  display: flex;
  height: 76px;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.mini-brand {
  align-items: center;
  display: flex;
  gap: 11px;
  line-height: 1;
}

.mini-brand strong,
.mini-brand small {
  display: block;
}

.mini-brand strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-brand small {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  margin-top: 5px;
  text-transform: uppercase;
}

.mini-bloom {
  background: var(--blush);
  border-radius: 62% 38% 55% 45%;
  display: block;
  height: 22px;
  position: relative;
  transform: rotate(-8deg);
  width: 18px;
}

.mini-bloom::after {
  background: var(--forest-soft);
  content: "";
  height: 12px;
  left: 8px;
  position: absolute;
  top: 19px;
  transform: rotate(8deg);
  width: 2px;
}

nav {
  align-items: center;
  display: flex;
  font-size: 0.77rem;
  font-weight: 700;
  gap: clamp(16px, 3vw, 36px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a {
  border-bottom: 1px solid transparent;
  padding: 8px 0;
}

nav a:hover,
nav a:focus-visible {
  border-bottom-color: var(--forest);
}

.nav-cta {
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--white);
  padding: 11px 19px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--forest-soft);
  border-color: var(--forest-soft);
}

.hero {
  background: var(--forest);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: calc(100vh - 76px);
  overflow: hidden;
  position: relative;
}

.hero::before {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  height: 520px;
  left: -360px;
  position: absolute;
  top: 14%;
  width: 520px;
}

.hero-copy {
  align-self: center;
  padding: clamp(68px, 10vw, 136px) clamp(28px, 7vw, 112px);
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--sage-text);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--blush);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.5rem, 6.6vw, 7.4rem);
  margin-bottom: 28px;
  max-width: 760px;
}

h1 em {
  color: var(--blush);
  font-weight: 400;
}

.hero-lede {
  color: rgba(255, 253, 249, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.85;
  max-width: 610px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 20px;
  justify-content: center;
  letter-spacing: 0.05em;
  min-height: 52px;
  padding: 0 25px;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--blush);
  color: var(--forest);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f0b2ba;
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.open-note {
  align-items: center;
  color: rgba(255, 253, 249, 0.68);
  display: flex;
  font-size: 0.78rem;
  gap: 10px;
  margin: 31px 0 0;
}

.open-note span {
  background: #9fbd91;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(159, 189, 145, 0.1);
  height: 7px;
  width: 7px;
}

.hero-art {
  align-items: center;
  background: var(--sage);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  overflow: hidden;
  padding: 48px;
  position: relative;
}

.hero-art::before,
.hero-art::after {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
  position: absolute;
}

.hero-art::before {
  height: 82%;
  width: 82%;
}

.hero-art::after {
  height: 66%;
  width: 66%;
}

.logo-frame {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 680px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.logo-frame img {
  height: auto;
  transform: scale(1.23);
  width: 100%;
}

.logo-frame picture {
  display: block;
  width: 100%;
}

.section-shell {
  margin: 0 auto;
  max-width: 1440px;
  padding: clamp(88px, 10vw, 154px) clamp(22px, 6vw, 90px);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr minmax(280px, 0.58fr);
  margin-bottom: 58px;
}

.section-heading h2,
.story-copy h2 {
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 4px;
}

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

.drink-card {
  background: var(--white);
  border: 1px solid rgba(37, 59, 45, 0.1);
  min-height: 310px;
  padding: clamp(25px, 3vw, 42px);
  position: relative;
}

.drink-card::after {
  background: var(--blush);
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 220ms ease;
  width: 100%;
}

.drink-card:hover::after {
  transform: scaleX(1);
}

.drink-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.drink-card-top > span {
  color: #995d67;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.drink-card-top small {
  color: #526144;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drink-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
  font-weight: 500;
  line-height: 1.08;
  margin: 65px 0 21px;
}

.drink-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.house-espresso {
  padding-top: 0;
}

.house-espresso-inner {
  border-top: 1px solid rgba(37, 59, 45, 0.14);
  display: grid;
  gap: clamp(32px, 6vw, 88px);
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  padding-top: clamp(48px, 7vw, 88px);
}

.house-espresso h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  margin: 0;
}

.house-espresso-copy {
  max-width: 72ch;
}

.house-espresso-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.house-espresso-copy p:first-child {
  margin-top: 0;
}

.house-espresso-copy p:last-child {
  margin-bottom: 0;
}

.menu-section {
  background: var(--sage-pale);
  border-bottom: 1px solid rgba(37, 59, 45, 0.12);
  border-top: 1px solid rgba(37, 59, 45, 0.12);
}

.menu-intro {
  align-items: end;
  display: grid;
  gap: clamp(45px, 8vw, 120px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  padding-bottom: 72px;
}

.menu-intro h2,
.flavor-block h2,
.customize-block h2 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  margin: 0;
}

.menu-intro-copy > p {
  color: var(--muted);
  line-height: 1.85;
}

.text-link {
  border-bottom: 1px solid var(--forest);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 18px;
  letter-spacing: 0.1em;
  padding: 5px 0;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  border-bottom-color: #995d67;
  color: #7c4650;
}

.menu-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  padding-bottom: clamp(88px, 10vw, 150px);
  padding-top: 0;
}

.menu-panel {
  align-self: start;
  background: var(--white);
  border: 1px solid rgba(37, 59, 45, 0.12);
  padding: 0 clamp(22px, 3vw, 38px) 10px;
}

.menu-panel summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 500;
  justify-content: space-between;
  list-style: none;
  min-height: 98px;
}

.menu-panel summary::-webkit-details-marker {
  display: none;
}

.summary-mark {
  border: 1px solid rgba(37, 59, 45, 0.22);
  border-radius: 50%;
  height: 34px;
  position: relative;
  width: 34px;
}

.summary-mark::before,
.summary-mark::after {
  background: var(--forest);
  content: "";
  height: 1px;
  left: 9px;
  position: absolute;
  top: 16px;
  transition: transform 160ms ease;
  width: 14px;
}

.summary-mark::after {
  transform: rotate(90deg);
}

.menu-panel[open] .summary-mark::after {
  transform: rotate(0deg);
}

.menu-panel-note {
  background: var(--blush-pale);
  color: #673c44;
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: -5px 0 27px;
  padding: 7px 10px;
  text-transform: uppercase;
}

.menu-items {
  border-top: 1px solid rgba(37, 59, 45, 0.12);
}

.menu-item {
  border-bottom: 1px solid rgba(37, 59, 45, 0.1);
  padding: 27px 0 29px;
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item-heading {
  align-items: start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.menu-item h3 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.menu-item-heading small {
  color: #7c4650;
  flex-shrink: 0;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.3;
  max-width: 130px;
  text-align: right;
  text-transform: uppercase;
}

.menu-item > p {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: italic;
  margin: 8px 0 0;
}

.price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}

.price-list span {
  background: var(--cream);
  border: 1px solid rgba(37, 59, 45, 0.1);
  color: #3d493f;
  font-size: 0.69rem;
  font-weight: 700;
  padding: 5px 8px;
}

.menu-extras {
  background: var(--forest);
  color: var(--white);
  display: grid;
  gap: clamp(60px, 8vw, 120px);
  grid-template-columns: 1.15fr 0.85fr;
  margin-bottom: clamp(80px, 10vw, 150px);
  padding-bottom: clamp(62px, 7vw, 92px);
  padding-top: clamp(62px, 7vw, 92px);
}

.menu-extras .eyebrow {
  color: var(--blush);
}

.flavor-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 38px;
}

.flavor-cloud span {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 253, 249, 0.86);
  font-size: 0.72rem;
  padding: 8px 13px;
}

.sugar-free {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 32px;
  padding-top: 25px;
}

.sugar-free strong {
  color: var(--blush);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sugar-free p {
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.84rem;
  line-height: 1.8;
  margin: 8px 0 0;
}

.customize-block {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(28px, 4vw, 48px);
}

.customize-block .eyebrow {
  color: #7c4650;
}

.customize-block dl {
  margin: 35px 0 0;
}

.customize-block dl > div {
  border-bottom: 1px solid rgba(37, 59, 45, 0.12);
  display: flex;
  font-size: 0.8rem;
  gap: 18px;
  justify-content: space-between;
  padding: 11px 0;
}

.customize-block dt {
  color: var(--muted);
}

.customize-block dd {
  font-weight: 800;
  margin: 0;
}

.size-note {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.9;
  margin: 28px 0 0;
}

.size-note strong {
  color: var(--forest);
  display: inline-block;
  letter-spacing: 0.08em;
  margin-right: 8px;
  min-width: 38px;
  text-transform: uppercase;
}

.story {
  display: block;
}

.story-copy {
  max-width: 860px;
}

.story-copy h2 {
  margin-bottom: 35px;
}

.story-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.95;
  max-width: 72ch;
}

.values-list {
  border-top: 1px solid rgba(37, 59, 45, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 22px 38px;
  list-style: none;
  margin: 38px 0 0;
  padding: 25px 0 0;
}

.values-list li {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.values-list li::before {
  color: #995d67;
  content: "\2022";
  margin-right: 9px;
}

.visit {
  background: var(--linen);
  display: grid;
  grid-template-columns: minmax(340px, 0.7fr) minmax(0, 1.3fr);
}

.visit-lead {
  background: var(--forest);
  color: var(--white);
  padding: clamp(70px, 9vw, 130px) clamp(28px, 7vw, 100px);
}

.visit-lead .eyebrow {
  color: var(--blush);
}

.visit-lead h2 {
  font-size: clamp(3rem, 5vw, 5.7rem);
  margin-bottom: 30px;
}

.visit-lead > p:not(.eyebrow) {
  color: rgba(255, 253, 249, 0.75);
  line-height: 1.85;
  max-width: 520px;
}

.visit-lead .button {
  margin-top: 23px;
}

.visit-details {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  padding: clamp(42px, 7vw, 100px) clamp(22px, 5vw, 76px);
}

.visit-details article {
  border-left: 1px solid rgba(37, 59, 45, 0.14);
  padding: 10px clamp(20px, 3vw, 42px);
}

.detail-label {
  color: #7c4650;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 26px;
  text-transform: uppercase;
}

address {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-style: normal;
  line-height: 1.55;
}

.hours-list,
.contact-list {
  margin: 0;
}

.hours-list > div,
.contact-list > div {
  display: flex;
  font-size: 0.77rem;
  gap: 15px;
  justify-content: space-between;
  padding: 5px 0;
}

.hours-list dt,
.contact-list dt {
  color: var(--muted);
}

.hours-list dd,
.contact-list dd {
  font-weight: 700;
  margin: 0;
  text-align: right;
}

.contact-list a {
  border-bottom: 1px solid rgba(37, 59, 45, 0.35);
  color: var(--forest);
}

.contact-list a:hover,
.contact-list a:focus-visible {
  border-bottom-color: #7c4650;
  color: #6d3f48;
}

footer {
  background: var(--forest);
  color: rgba(255, 253, 249, 0.72);
  display: flex;
  font-size: 0.68rem;
  justify-content: space-between;
  letter-spacing: 0.14em;
  padding: 28px clamp(22px, 6vw, 90px);
  text-transform: uppercase;
}

footer a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

footer a:hover,
footer a:focus-visible {
  border-bottom-color: var(--blush);
  color: var(--white);
}

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

:focus-visible {
  outline: 3px solid var(--blush);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 680px;
  }

  .logo-frame {
    width: min(82vw, 620px);
  }

  .section-heading,
  .menu-intro,
  .menu-extras,
  .visit {
    grid-template-columns: 1fr;
  }

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

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

  .drink-card:last-child {
    grid-column: span 2;
  }

  .visit-details {
    grid-template-columns: 1fr 1fr;
  }

  .visit-details article:last-child {
    border-left: 0;
    border-top: 1px solid rgba(37, 59, 45, 0.14);
    grid-column: 1 / -1;
    margin-top: 34px;
    padding-top: 34px;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 68px;
  }

  .mini-brand small {
    display: none;
  }

  nav {
    font-size: 0.65rem;
    gap: clamp(9px, 3vw, 15px);
    letter-spacing: 0.05em;
  }

  nav a {
    padding: 8px 0;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 72px 23px 64px;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    min-height: 380px;
    padding: 18px;
  }

  .hero-art::before {
    height: 88vw;
    width: 88vw;
  }

  .hero-art::after {
    height: 70vw;
    width: 70vw;
  }

  .logo-frame {
    width: min(82vw, 330px);
  }

  .logo-frame img {
    transform: scale(1.08);
  }

  .section-heading {
    gap: 25px;
    margin-bottom: 38px;
  }

  .house-espresso-inner {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .menu-intro {
    gap: 28px;
    padding-bottom: 52px;
  }

  .menu-panel summary {
    min-height: 82px;
  }

  .menu-item-heading {
    display: block;
  }

  .menu-item-heading small {
    display: inline-block;
    margin-top: 7px;
    max-width: none;
    text-align: left;
  }

  .menu-extras {
    margin-left: 14px;
    margin-right: 14px;
  }

  .visit-details {
    grid-template-columns: 1fr;
  }

  .visit-details article,
  .visit-details article:last-child {
    border-left: 0;
    border-top: 1px solid rgba(37, 59, 45, 0.14);
    grid-column: auto;
    margin-top: 28px;
    padding: 30px 3px 0;
  }

  .visit-details article:first-child {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
  }

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

  .drink-card,
  .drink-card:last-child {
    grid-column: auto;
    min-height: 270px;
  }

  .drink-card h3 {
    margin-top: 48px;
  }

  .values-list {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mini-brand {
    gap: 8px;
  }

  .mini-brand strong {
    font-size: 1rem;
  }

  nav a:first-child {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
