:root {
  --paper: #f3efe6;
  --paper-deep: #e7e0d1;
  --ink: #1e2a24;
  --muted: #626b63;
  --pine: #244235;
  --pine-deep: #172e25;
  --moss: #929e7b;
  --clay: #a7553b;
  --line: rgba(30, 42, 36, 0.22);
  --light-line: rgba(243, 239, 230, 0.25);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1440px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

picture {
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 239, 230, 0.96);
}

.header-inner {
  width: min(100%, var(--max));
  min-height: 6.25rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) auto minmax(14rem, 1fr);
  align-items: center;
  gap: 2rem;
}

.wordmark {
  justify-self: start;
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.05;
}

.wordmark > span {
  font-family: var(--serif);
  font-size: 1.35rem;
}

.wordmark small {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.5vw, 2.75rem);
}

.desktop-nav a,
.header-order {
  position: relative;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.language-switcher button {
  min-width: 2.5rem;
  min-height: 2.75rem;
  border: 0;
  padding: 0.4rem 0.2rem;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
}

.header-order {
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.24rem;
}

.hero {
  width: min(100%, var(--max));
  min-height: min(49rem, calc(100svh - 6.25rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 6.5rem) var(--gutter) clamp(3rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(23rem, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.hero-copy {
  padding-top: 1rem;
}

.eyebrow {
  margin: 0 0 1.45rem;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 13ch;
  margin-bottom: 2.1rem;
  font-size: clamp(3.3rem, 6.8vw, 7.4rem);
}

h2 {
  margin-bottom: 1.75rem;
  font-size: clamp(2.65rem, 5vw, 5.6rem);
}

.hero-intro {
  max-width: 30rem;
  margin-bottom: 2.5rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.4;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}

.button {
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  min-width: 12.5rem;
  padding: 1rem 1.4rem;
  background: var(--pine);
  color: var(--paper);
  transition: background-color 160ms ease;
}

.button-primary:hover {
  background: var(--pine-deep);
}

.button-text {
  border-bottom: 1px solid currentColor;
  min-height: 2.75rem;
  padding: 0.6rem 0 0.35rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 34rem;
  justify-self: end;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: 2.25rem;
  right: -1.75rem;
  bottom: -1.75rem;
  left: 2.25rem;
  border: 1px solid var(--moss);
  content: "";
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 52% center;
  border-radius: 50% 50% 0 0 / 28% 28% 0 0;
}

.hero-visual figcaption {
  position: absolute;
  right: -1rem;
  bottom: 1.5rem;
  max-width: 12rem;
  border-left: 2px solid var(--clay);
  padding: 0.65rem 1rem;
  background: var(--paper);
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.3;
}

.section-pad {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
}

.intro {
  width: min(100%, var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 4.5rem minmax(18rem, 1.1fr) minmax(18rem, 0.75fr);
  gap: clamp(2rem, 6vw, 7rem);
}

.section-number {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.intro h2 {
  margin-bottom: 0;
}

.intro-copy {
  align-self: end;
  max-width: 31rem;
  padding-bottom: 0.45rem;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.about-visual {
  grid-column: 2 / -1;
  width: 100%;
  margin: clamp(2rem, 5vw, 4.5rem) 0 0;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 843 / 534;
  object-fit: cover;
  object-position: center;
}

.cafe-section {
  background: var(--pine);
  color: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
}

.cafe-gallery {
  position: relative;
  width: min(100%, 50rem);
  min-height: 46rem;
}

.cafe-gallery figure {
  margin: 0;
}

.gallery-main {
  width: 61%;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-food {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  border: 0.75rem solid var(--pine);
}

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

.gallery-detail {
  position: absolute;
  top: 1.75rem;
  right: 2%;
  width: 31%;
  border: 0.65rem solid var(--pine);
}

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

.cafe-copy {
  max-width: 34rem;
}

.cafe-copy h2 {
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.cafe-copy > p:not(.eyebrow) {
  max-width: 30rem;
  margin-bottom: 2.2rem;
  color: rgba(243, 239, 230, 0.76);
  font-size: 1.05rem;
}

.text-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.3rem;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link.light {
  color: var(--paper);
}

.award-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) var(--gutter);
  display: grid;
  grid-template-columns: minmax(8rem, 11rem) minmax(18rem, 1fr) minmax(18rem, 0.7fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
}

.award-certificate {
  width: 100%;
  max-width: 11rem;
  margin: 0;
}

.award-certificate img {
  width: 100%;
  aspect-ratio: 1240 / 1754;
  object-fit: contain;
}

.award-copy .eyebrow {
  margin-bottom: 0.8rem;
}

.award-copy h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.05;
}

.award-note {
  max-width: 27rem;
  margin: 0;
  color: var(--muted);
}

.reviews-section {
  border-top: 1px solid var(--line);
}

.reviews-heading {
  width: min(100%, 48rem);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.reviews-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.reviews-grid {
  width: min(100%, calc(var(--max) - (2 * var(--gutter))));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-item {
  min-width: 0;
  min-height: 20rem;
  margin: 0;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
}

.review-item + .review-item {
  border-left: 1px solid var(--line);
}

.review-rating {
  margin-bottom: 1.5rem;
  color: var(--clay);
}

.review-stars {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.review-item > p {
  margin: 0 0 2.5rem;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.45;
}

.review-item footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.review-item cite {
  color: var(--ink);
  font-style: normal;
  font-weight: 750;
}

.reviews-action {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
}

.groups-section {
  border-top: 1px solid var(--line);
  display: block;
  text-align: center;
}

.groups-copy {
  max-width: 48rem;
  margin: 0 auto;
}

.groups-copy > p:not(.eyebrow) {
  max-width: 29rem;
  margin-right: auto;
  margin-bottom: 2.2rem;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.groups-visuals {
  width: min(100%, 40rem);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.groups-visual {
  width: 100%;
  margin: 0;
}

.groups-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.visit-section {
  padding: clamp(5rem, 9vw, 9rem) var(--gutter) clamp(4rem, 7vw, 7rem);
  background: var(--pine-deep);
  color: var(--paper);
}

.visit-heading,
.visit-grid {
  width: min(100%, calc(var(--max) - (2 * var(--gutter))));
  margin-right: auto;
  margin-left: auto;
}

.visit-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.1fr 0.9fr;
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.visit-heading .eyebrow {
  align-self: start;
}

.visit-heading h2 {
  max-width: 11ch;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.visit-sign {
  width: 100%;
  max-width: 30rem;
  justify-self: end;
  margin: 0 0 clamp(3rem, 6vw, 5.5rem);
}

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

.visit-grid {
  border-top: 1px solid var(--light-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.visit-item {
  min-height: 15rem;
  padding: 2.2rem clamp(1.5rem, 3vw, 3rem) 0 0;
}

.visit-item + .visit-item {
  border-left: 1px solid var(--light-line);
  padding-left: clamp(1.5rem, 3vw, 3rem);
}

.visit-item h3 {
  margin-bottom: 1.35rem;
  color: var(--moss);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visit-item address,
.visit-item p,
.email-link {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-style: normal;
  line-height: 1.55;
}

.visit-item address {
  margin-bottom: 1.5rem;
}

.visit-item p {
  max-width: 19rem;
  margin-bottom: 0;
}

.email-link,
.hours-link {
  color: inherit;
  text-decoration: none;
}

.email-link {
  overflow-wrap: anywhere;
}

.hours-link {
  text-decoration: underline;
  text-decoration-color: rgba(246, 242, 232, 0.45);
  text-underline-offset: 0.2em;
}

.site-footer {
  padding: clamp(4rem, 8vw, 7.5rem) var(--gutter) 2rem;
}

.footer-main,
.footer-bottom {
  width: min(100%, calc(var(--max) - (2 * var(--gutter))));
  margin-right: auto;
  margin-left: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: end;
  gap: 3rem;
}

.footer-wordmark {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-decoration: none;
}

.footer-main > p {
  max-width: 19rem;
  margin-bottom: 0;
  color: var(--muted);
}

.footer-bottom {
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.75fr);
    gap: 3rem;
  }

  .intro {
    grid-template-columns: 3rem 1fr 0.8fr;
    gap: 2.5rem;
  }

  .cafe-section {
    gap: 4rem;
  }

  .cafe-gallery {
    min-height: 34rem;
  }

  .award-section {
    grid-template-columns: 9rem 1fr 0.7fr;
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .groups-copy {
    max-width: 38rem;
  }

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

  .review-item {
    min-height: 0;
  }

  .review-item + .review-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .visit-item {
    min-height: 0;
    padding: 2rem 0;
  }

  .visit-item + .visit-item {
    border-top: 1px solid var(--light-line);
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 5rem;
  }

  .header-inner {
    min-height: 5rem;
  }

  .header-order {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 3.75rem;
    grid-template-columns: 1fr;
    gap: 4.25rem;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3.4rem, 14vw, 5.4rem);
  }

  .hero-visual {
    width: min(88%, 28rem);
    justify-self: center;
  }

  .hero-visual::before {
    top: 1.5rem;
    right: -1.2rem;
    bottom: -1.2rem;
    left: 1.5rem;
  }

  .hero-visual figcaption {
    right: -0.75rem;
  }

  .intro {
    grid-template-columns: 2rem 1fr;
  }

  .intro-copy {
    grid-column: 2;
  }

  .about-visual {
    grid-column: 2;
  }

  .cafe-section {
    grid-template-columns: 1fr;
  }

  .cafe-gallery {
    width: min(100%, 38rem);
    min-height: auto;
    padding-bottom: 30%;
  }

  .cafe-copy {
    max-width: 38rem;
  }

  .award-section {
    grid-template-columns: 8rem 1fr;
  }

  .award-note {
    grid-column: 2;
  }

  .visit-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .visit-sign {
    max-width: 36rem;
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-order {
    justify-self: start;
  }
}

@media (max-width: 500px) {
  :root {
    --gutter: 1.25rem;
  }

  .wordmark > span {
    font-size: 1.12rem;
  }

  .wordmark small {
    font-size: 0.52rem;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-primary {
    width: 100%;
  }

  .hero-visual {
    width: calc(100% - 1.25rem);
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .intro-heading,
  .intro-copy,
  .about-visual {
    grid-column: 1;
  }

  .section-number {
    display: none;
  }

  .cafe-gallery {
    padding-bottom: 35%;
  }

  .gallery-main {
    width: 72%;
  }

  .gallery-food {
    width: 60%;
  }

  .gallery-detail {
    top: 1rem;
    width: 36%;
  }

  .award-section {
    grid-template-columns: 1fr;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
    text-align: center;
  }

  .award-certificate {
    width: 10rem;
    justify-self: center;
  }

  .award-note {
    grid-column: 1;
  }

  .groups-visuals {
    width: min(100%, 19rem);
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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