@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/inter-500.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/inter-600.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/inter-700.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/inter-800.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/inter-900.ttf") format("truetype");
}

:root {
  --teal: #306060;
  --teal-dark: #223f3f;
  --teal-soft: #e9f1ef;
  --gold: #d09858;
  --gold-dark: #ab763f;
  --coral: #b86856;
  --sage: #6f8a72;
  --ink: #1f2b2b;
  --muted: #617070;
  --line: #dfe5e2;
  --paper: #fbfbf7;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(31, 43, 43, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

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

.announcement-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 8px 5vw;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 24px;
  min-height: 86px;
  padding: 12px 5vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(31, 43, 43, 0.1);
  backdrop-filter: blur(12px);
}

#about,
#menu,
#contact,
#qr {
  scroll-margin-top: 128px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 96px;
}

.brand-mark {
  width: 82px;
  height: auto;
}

.top-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.top-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  border-radius: var(--radius);
  border-bottom: 2px solid transparent;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.top-nav a.is-active {
  color: var(--teal);
  border-color: var(--gold);
  outline: none;
}

.language-switcher {
  position: relative;
  justify-self: end;
}

.language-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font: inherit;
  color: var(--ink);
  background: #f5f7f4;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
}

.language-toggle:hover,
.language-toggle:focus-visible,
.language-switcher.is-open .language-toggle {
  border-color: rgba(48, 96, 96, 0.35);
  box-shadow: 0 10px 26px rgba(31, 43, 43, 0.1);
  outline: none;
}

.language-switcher svg {
  width: 15px;
  height: 15px;
  transition: transform 0.18s ease;
}

.language-switcher.is-open svg {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  width: 190px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(31, 43, 43, 0.16);
}

.language-menu[hidden] {
  display: none;
}

.language-menu a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  color: var(--ink);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
}

.language-menu a:hover,
.language-menu a:focus-visible {
  color: var(--teal);
  background: rgba(208, 152, 88, 0.12);
  outline: none;
}

.language-menu a.is-active {
  color: var(--white);
  background: var(--teal);
}

.language-flag {
  font-size: 1.08rem;
  line-height: 1;
}

.language-name {
  flex: 1;
}

.language-code {
  min-width: 24px;
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 800;
  text-align: right;
}

.hero-section {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 64px 5vw;
  background: var(--teal-dark);
}

.hero-photo,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 31, 31, 0.84) 0%, rgba(16, 31, 31, 0.52) 45%, rgba(16, 31, 31, 0.18) 100%),
    linear-gradient(0deg, rgba(48, 96, 96, 0.22), rgba(208, 152, 88, 0.14));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.45fr);
  align-items: center;
  gap: 44px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy h1,
.section-heading h2,
.admin-section-heading h1,
.admin-section-heading h2,
.simple-page h1 {
  margin: 0;
  color: var(--teal-dark);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy h1 {
  color: var(--white);
  font-size: 4.35rem;
  font-weight: 700;
}

.hero-text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  max-width: 600px;
}

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

.hero-logo-wrap {
  width: min(300px, 100%);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 32px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.hero-logo-wrap img {
  width: min(240px, 100%);
  filter: drop-shadow(0 18px 26px rgba(48, 96, 96, 0.12));
}

.page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 86px 5vw 54px;
  color: var(--white);
  background: var(--teal-dark);
}

.page-hero-photo,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-page-hero .page-hero-photo {
  object-position: center 60%;
}

.workshop-page-hero .page-hero-photo,
.contact-page-hero .page-hero-photo {
  object-position: center center;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 31, 31, 0.86), rgba(16, 31, 31, 0.45)),
    linear-gradient(0deg, rgba(48, 96, 96, 0.18), rgba(208, 152, 88, 0.18));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.page-hero-inner h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: 3.35rem;
  line-height: 1.03;
  font-weight: 700;
}

.page-hero-inner p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button svg,
.icon-button svg,
.contact-card svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
}

.button-secondary {
  background: var(--white);
  color: var(--teal-dark);
  border: 1px solid rgba(48, 96, 96, 0.22);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
}

.button-ghost {
  background: transparent;
  color: var(--teal-dark);
  border: 1px solid rgba(48, 96, 96, 0.18);
}

.featured-section,
.collection-section,
.menu-section,
.qr-section,
.contact-section,
.workshop-preview-section,
.workshop-list-section,
.workshop-detail-section {
  padding: 64px 5vw;
}

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

.collection-section {
  background: var(--paper);
}

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

.qr-section {
  background: var(--teal-dark);
  color: var(--white);
}

.qr-section .section-heading h2,
.qr-section .section-heading p:not(.eyebrow) {
  color: var(--white);
}

.qr-section .eyebrow {
  color: var(--gold);
}

.contact-section {
  background: var(--paper);
}

.workshop-preview-section,
.workshop-list-section {
  background: var(--white);
}

.workshop-detail-section {
  background: var(--paper);
}

.compact-section {
  padding-top: 24px;
}

.section-heading {
  width: min(1040px, 100%);
  margin: 0 auto 32px;
  display: grid;
  gap: 10px;
}

.centered-heading {
  justify-items: center;
  text-align: center;
}

.centered-heading p:not(.eyebrow) {
  justify-self: center;
}

.section-heading .eyebrow {
  margin-bottom: 0;
}

.section-heading h2 {
  font-size: 2.45rem;
  font-weight: 700;
}

.section-heading p:not(.eyebrow) {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.workshop-preview-section {
  padding-top: 48px;
}

.workshop-preview-section .section-heading,
.workshop-list-section .section-heading {
  width: min(820px, 100%);
}

.feature-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  grid-auto-rows: 420px;
  gap: 18px;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--teal-dark);
}

.feature-card-large {
  grid-row: span 1;
}

.feature-card-photo,
.feature-card-shade {
  position: absolute;
  inset: 0;
}

.feature-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-workshop .feature-card-photo {
  object-position: center 62%;
}

.feature-card-shade {
  background: linear-gradient(180deg, rgba(31, 43, 43, 0.06), rgba(31, 43, 43, 0.76));
}

.feature-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.feature-card-copy span {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
}

.feature-card-copy strong {
  max-width: 440px;
  font-size: 1.55rem;
  line-height: 1.12;
}

.section-action {
  width: min(1120px, 100%);
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
}

.workshop-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.workshop-grid-wide {
  align-items: stretch;
}

.workshop-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  background: var(--teal-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(31, 43, 43, 0.06);
  transition: transform 160ms ease, border-color 160ms ease;
}

.workshop-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(31, 43, 43, 0.04) 0%,
    rgba(31, 43, 43, 0.26) 46%,
    rgba(31, 43, 43, 0.84) 100%
  );
  pointer-events: none;
}

.workshop-card:hover,
.workshop-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(208, 152, 88, 0.58);
  outline: none;
}

.workshop-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-card div {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 8px;
  width: 100%;
  padding: 22px;
}

.workshop-card span {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.26);
}

.workshop-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.16;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
}

.workshop-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.workshop-card small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--white);
  font-weight: 800;
}

.workshop-card small svg {
  width: 16px;
  height: 16px;
}

.workshop-detail-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.workshop-detail-photo {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--teal-dark);
}

.workshop-detail-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.workshop-detail-copy {
  min-width: 0;
  padding: 10px 0;
}

.workshop-detail-copy h1 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 2.7rem;
  line-height: 1.05;
  font-weight: 700;
}

.lead-text {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.workshop-meta {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.workshop-meta div {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.workshop-meta dt {
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.workshop-meta dd {
  margin: 4px 0 0;
  color: var(--teal-dark);
  font-weight: 700;
}

.rich-text {
  color: var(--muted);
  white-space: pre-line;
}

.collection-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  align-items: center;
  gap: 42px;
}

.collection-copy {
  width: min(460px, 100%);
  justify-self: end;
}

.collection-copy h2 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 2.4rem;
  line-height: 1.08;
  font-weight: 700;
}

.collection-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.collection-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.collection-panels article {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--teal-dark);
}

.collection-panels img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.collection-panels h3 {
  position: absolute;
  left: 18px;
  bottom: 16px;
  margin: 0;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow-x: visible;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
}

.category-tab {
  flex: 0 0 auto;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--teal-dark);
  font-weight: 700;
}

.category-tab svg {
  width: 17px;
  height: 17px;
}

.category-tab:hover,
.category-tab:focus-visible,
.category-tab.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  outline: none;
}

.menu-flow {
  width: min(1680px, 100%);
  margin: 0 auto 20px;
  display: grid;
  gap: 12px;
}

.menu-groups {
  width: min(1680px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 42px;
}

.menu-group-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(208, 152, 88, 0.3);
}

.menu-group-heading h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 1.45rem;
}

.menu-group-heading span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 26px;
  align-items: start;
}

.menu-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  padding: 0;
  background: #f7f1ec;
  border: 1px solid #eadfd7;
  border-radius: 24px;
  box-shadow: none;
}

.menu-card-image {
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 0.82;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fbf6f1;
  border-bottom: 0;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.menu-card-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  padding: 18px 16px 10px;
  text-align: center;
  background: #f7f1ec;
}

.menu-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 700;
}

.menu-card p {
  display: none;
}

.menu-card strong {
  color: var(--gold-dark);
  font-size: 0.94rem;
  white-space: normal;
}

.menu-detail {
  display: grid;
  justify-items: center;
  border-top: 0;
  margin: 0 16px 18px;
  padding-top: 0;
}

.menu-detail[open] {
  justify-items: stretch;
}

.menu-detail summary {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 5px 11px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.menu-detail[open] summary svg {
  transform: rotate(180deg);
}

.menu-detail dl {
  margin: 10px 0 0;
  display: grid;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(48, 96, 96, 0.12);
  border-radius: 14px;
}

.menu-detail div {
  display: grid;
  gap: 3px;
}

.menu-detail dt {
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.menu-detail dd {
  margin: 0;
  color: var(--muted);
}

.empty-state {
  width: min(1120px, 100%);
  margin: 26px auto 0;
  padding: 20px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.qr-layout,
.contact-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.qr-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.qr-code {
  width: 240px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(48, 96, 96, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.qr-code img {
  width: 100%;
  height: 100%;
}

.qr-copy {
  min-width: 0;
}

.qr-copy p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.84);
}

.qr-url {
  overflow-wrap: anywhere;
  font-weight: 700;
}

.contact-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 28px;
}

.location-instagram-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: stretch;
  gap: 24px;
}

.map-panel {
  min-height: 560px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(31, 43, 43, 0.08);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  border: 0;
}

.contact-photo {
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 18px 0;
}

.contact-copy h2 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 2.35rem;
  line-height: 1.08;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  gap: 16px;
}

.contact-card {
  min-height: 118px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(31, 43, 43, 0.06);
}

.contact-card svg {
  width: 26px;
  height: 26px;
  color: var(--gold-dark);
}

.contact-card strong,
.contact-card small {
  display: block;
}

.contact-card strong {
  color: var(--teal-dark);
  font-size: 1.02rem;
}

.contact-card small {
  margin-top: 6px;
  color: var(--muted);
}

.instagram-feed {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(31, 43, 43, 0.06);
}

.instagram-feed-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.instagram-feed-head h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 1.28rem;
  line-height: 1.15;
}

.instagram-feed-head a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.instagram-feed-head svg {
  width: 17px;
  height: 17px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.instagram-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--paper);
  border-radius: var(--radius);
}

.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.instagram-tile:hover img,
.instagram-tile:focus-visible img {
  transform: scale(1.04);
}

.site-footer {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 5vw;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--teal);
  font-weight: 800;
}

.simple-page {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 32px 5vw;
  text-align: center;
}

.simple-logo {
  width: 210px;
}

.simple-page p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

@media (max-width: 820px) {
  #about,
  #menu,
  #contact,
  #qr {
    scroll-margin-top: 210px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    min-height: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand-link {
    grid-column: 1;
    grid-row: 1;
  }

  .announcement-bar {
    flex-direction: column;
    gap: 2px;
  }

  .top-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
    gap: 10px;
    font-size: 0.8rem;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .language-switcher {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .language-menu {
    width: 184px;
  }

  .hero-section {
    min-height: 500px;
    padding-top: 30px;
    padding-bottom: 30px;
    align-items: end;
  }

  .hero-inner,
  .qr-layout,
  .contact-layout,
  .location-instagram-layout,
  .feature-grid,
  .workshop-grid,
  .workshop-detail-layout,
  .collection-section,
  .collection-panels {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .hero-copy h1 {
    font-size: 2.65rem;
  }

  .page-hero {
    min-height: 310px;
    padding-top: 54px;
    padding-bottom: 38px;
  }

  .page-hero-inner h1,
  .workshop-detail-copy h1 {
    font-size: 2.2rem;
  }

  .hero-logo-wrap {
    width: min(150px, 48vw);
    min-height: 150px;
    justify-self: start;
    order: -1;
    padding: 22px;
  }

  .hero-logo-wrap img {
    width: 100%;
  }

  .section-heading h2 {
    font-size: 1.85rem;
  }

  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .featured-section,
  .collection-section,
  .menu-section,
  .qr-section,
  .contact-section,
  .workshop-preview-section,
  .workshop-list-section,
  .workshop-detail-section {
    padding: 58px 5vw;
  }

  .featured-section {
    padding-top: 24px;
  }

  .feature-card-large {
    grid-row: span 1;
  }

  .feature-grid {
    grid-auto-rows: 250px;
  }

  .collection-copy {
    justify-self: start;
  }

  .collection-panels article,
  .collection-panels img,
  .contact-photo,
  .map-panel,
  .map-panel iframe,
  .workshop-detail-photo,
  .workshop-detail-photo img {
    min-height: 300px;
  }

  .qr-code {
    width: min(240px, 100%);
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-actions,
  .button,
  .contact-card {
    width: 100%;
  }

  .hero-section {
    min-height: 500px;
  }

  .feature-card {
    min-height: 240px;
  }

  .instagram-feed-head {
    flex-direction: column;
  }

  .feature-card strong,
  .collection-copy h2,
  .contact-copy h2 {
    font-size: 1.6rem;
  }

  .workshop-meta {
    grid-template-columns: 1fr;
  }

  .menu-groups {
    gap: 30px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
  }

  .menu-card-main {
    gap: 5px;
    padding: 11px 10px 7px;
  }

  .menu-card h4 {
    font-size: 0.93rem;
    line-height: 1.2;
  }

  .menu-card strong {
    font-size: 0.84rem;
  }

  .menu-detail {
    margin: 0 10px 12px;
  }

  .menu-detail summary {
    min-height: 27px;
    padding: 4px 9px;
    font-size: 0.72rem;
  }

  .menu-detail summary svg {
    width: 14px;
    height: 14px;
  }

  .menu-detail dl {
    margin-top: 9px;
    gap: 8px;
    padding: 10px;
    font-size: 0.86rem;
  }

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