* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
  --ink: #241915;
  --muted: #6f625b;
  --soft: #9c8f85;
  --paper: #fbfaf7;
  --panel: #f3efe8;
  --line: #ddd5ca;
  --accent: #8f4f2b;
  --accent-dark: #603721;
  --green: #4f7a55;
  --shadow: 0 14px 34px rgba(36,25,21,0.08);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  overflow-x: hidden;
}
.page-loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(251,250,247,0.96);
  opacity: 1;
  pointer-events: none;
  transition: opacity 280ms ease-out, visibility 280ms ease-out;
}
.page-loader.is-hidden { visibility: hidden; opacity: 0; }
.tea-loader { position: relative; width: 52px; height: 58px; }
.tea-loader-cup {
  position: absolute;
  bottom: 4px;
  left: 7px;
  width: 34px;
  height: 25px;
  overflow: visible;
  border: 2px solid var(--accent-dark);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: #fffaf0;
  animation: tea-cup-settle 900ms ease-in-out infinite;
}
.tea-loader-cup::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -2px;
  width: 34px;
  border-top: 2px solid var(--accent-dark);
  border-radius: 50%;
}
.tea-loader-cup::after {
  content: '';
  position: absolute;
  top: 4px;
  right: -13px;
  width: 11px;
  height: 12px;
  border: 2px solid var(--accent-dark);
  border-left: 0;
  border-radius: 0 8px 8px 0;
}
.tea-loader-cup span {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 22px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.tea-loader-steam {
  position: absolute;
  bottom: 34px;
  width: 7px;
  height: 18px;
  border-left: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: tea-steam 1.2s ease-in-out infinite;
}
.tea-loader-steam--one { left: 18px; }
.tea-loader-steam--two { left: 31px; animation-delay: 360ms; }
@keyframes tea-cup-settle { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(2px); } }
@keyframes tea-steam { 0% { transform: translateY(5px) translateX(0); opacity: 0; } 35% { opacity: 0.8; } 100% { transform: translateY(-12px) translateX(3px); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .tea-loader-cup, .tea-loader-steam { animation: none; }
  .tea-loader-steam { display: none; }
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251,250,247,0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav-logo, .footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img, .footer-logo img { width: 42px; height: 42px; object-fit: contain; }
.nav-logo-text, .footer-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
}
.nav-logo-text span {
  display: block;
  margin-top: 3px;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
}
.nav-links a:hover { background: var(--panel); color: var(--ink); }
.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.hero-photo { position: relative; width: 100%; height: 100%; min-height: 560px; object-fit: cover; order: 2; }
.hero-overlay { display: none; }
.hero-content {
  order: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  padding: 96px 48px 72px max(48px, calc((100vw - 1120px) / 2));
}
.hero-heading {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 5.8rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.98;
  color: var(--ink);
}
.hero-heading strong { display: block; font-weight: 600; color: var(--accent-dark); }
.hero-sub { max-width: 440px; margin: 28px 0 0; color: var(--muted); font-size: 1.02rem; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 34px; }
.btn-hero, .cf-submit, .apply-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--accent-dark);
  border-radius: 6px;
  background: var(--accent-dark);
  color: #fff;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.btn-hero:hover, .cf-submit:hover, .apply-submit:hover { background: var(--ink); border-color: var(--ink); }
.nav-links .nav-order-btn {
  display: inline-flex;
  align-items: center;
  height: 36px;
  margin-left: 4px;
  padding: 0 16px;
  border-radius: 6px;
  background: #777a32;
  color: #fffaf0;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 160ms ease-out;
}
.nav-links .nav-order-btn:hover { background: #5d6125; color: #fffaf0; }
.nav-links .nav-order-btn:focus-visible { outline: 3px solid #c6ad43; outline-offset: 2px; }
.photo-strip { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1px; height: 320px; background: var(--line); border-bottom: 1px solid var(--line); }
.strip-item { position: relative; overflow: hidden; background: var(--panel); }
.strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.strip-item:hover img { transform: scale(1.025); }
section { scroll-margin-top: 84px; }
.about, .seasonal, .contact, .visit, .blog-listing-body, .menu-body { padding: 76px 0; }
.about, .contact { background: #fff; }
.seasonal, .menu-body, .blog-listing-body { background: var(--paper); }
.visit { background: var(--panel); }
.about-inner { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 64px; align-items: center; }
.about-kicker, .section-kicker, .post-page-label {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.about-heading, .section-title, .menu-hero-title, .blog-listing-title, .apply-hero-title, .post-page h1 {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
  color: var(--ink);
}
.about-heading, .section-title { font-size: 3rem; }
.about-body p { max-width: 620px; margin: 18px 0 0; color: var(--muted); }
.about-logo { display: flex; align-items: center; justify-content: center; min-height: 220px; border-left: 1px solid var(--line); }
.about-logo img { width: 180px; height: 180px; object-fit: contain; }
.about-story-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}
.about-story-panel { margin: 0; }
.about-story-panel img { width: 100%; height: auto; border-radius: 8px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 28px; }
.cards-grid, .posts-grid, .menu-items-grid, .blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.item-card, .post-card, .menu-item, .blog-listing-card, .contact-form-wrap, .apply-form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.item-card { padding: 24px; }
.item-badge, .post-date, .blc-date, .menu-cat-title, .milk-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.item-name, .post-title, .blc-title, .menu-item-name {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.34rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
.item-desc, .post-excerpt, .blc-excerpt, .menu-item-desc { margin: 10px 0 0; color: var(--muted); font-size: 0.93rem; }
.item-price { margin: 18px 0 0; color: var(--accent-dark); font-weight: 700; }
.seasonal-empty, .blog-empty, .menu-empty, .blog-listing-empty { color: var(--muted); }
.blog { padding: 76px 0; background: #2b211d; }
.blog .section-title { color: #fff; }
.blog .section-kicker, .blog .post-arrow { color: #d8b48d; }
.post-card { display: flex; flex-direction: column; min-height: 230px; padding: 24px; text-decoration: none; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.post-card:hover { background: rgba(255,255,255,0.1); }
.post-title { color: #fff; }
.post-excerpt { color: rgba(255,255,255,0.68); flex: 1; }
.post-date { color: #d8b48d; }
.post-arrow, .blc-arrow, .btn-see-all, .address-line a, .back-link { color: var(--accent); font-size: 0.84rem; font-weight: 700; text-decoration: none; }
.blog-see-all { margin-top: 28px; }
.btn-see-all { color: #d8b48d; }
.contact-inner, .visit-inner { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 52px; align-items: start; }
.contact-sub { margin: 16px 0 0; color: var(--muted); }
.contact-form-wrap { padding: 28px; }
.contact-form, .apply-form { display: grid; gap: 18px; }
.honeypot-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.cf-row, .apply-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group, .apply-field { display: grid; gap: 7px; }
.cf-label, .apply-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}
.cf-input, .form-control {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
}
.cf-input:focus, .form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(143,79,43,0.12); }
.cf-textarea { min-height: 140px; resize: vertical; }
.contact-success, .apply-success { display: flex; align-items: center; gap: 12px; padding: 18px; border: 1px solid #bdd7bf; border-radius: 8px; background: #f3faf4; color: #315f37; }
.hours-table { width: 100%; margin-top: 22px; border-collapse: collapse; background: #fff; border: 1px solid var(--line); }
.hours-table td { padding: 13px 16px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.95rem; }
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table td:first-child { color: var(--ink); font-weight: 700; }
.hours-table tr.today td { background: #f8f1ea; color: var(--accent-dark); }
.closed-cell { color: var(--soft) !important; }
.map-wrap { height: 330px; margin-top: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.85); }
.address-line { margin-top: 16px; color: var(--muted); }
footer { padding: 34px 32px; background: #201815; color: rgba(255,255,255,0.72); }
.footer-inner { width: min(1120px, 100%); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-logo-text { color: #fff; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.72); font-size: 0.86rem; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-copy { margin: 0; color: rgba(255,255,255,0.46); font-size: 0.82rem; }
.menu-hero, .blog-listing-hero, .apply-hero { padding: 98px 0 52px; background: var(--panel); border-bottom: 1px solid var(--line); }
.menu-hero-title, .blog-listing-title, .apply-hero-title { font-size: 4.2rem; }
.blog-listing-sub, .apply-hero-sub, .menu-hero-sub { max-width: 620px; margin: 16px 0 0; color: var(--muted); }
.menu-category { margin-bottom: 46px; }
.menu-cat-header { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.menu-cat-rule { flex: 1; height: 1px; background: var(--line); }
.menu-item { padding: 18px; }
.menu-item-top { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.menu-item-price { color: var(--accent-dark); font-weight: 700; white-space: nowrap; }
.menu-cat-milk, .menu-item-sizes { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }
.milk-tag, .size-tag { display: inline-flex; gap: 6px; padding: 4px 8px; border: 1px solid var(--line); border-radius: 0; background: #fff; color: var(--muted); font-size: 0.78rem; }
.size-tag strong { color: var(--accent-dark); }
.menu-note { color: var(--soft); font-size: 0.86rem; }
.order-category { margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.order-category-summary { margin-bottom: 0; padding: 14px 0; cursor: pointer; list-style: none; }
.order-category-summary::-webkit-details-marker { display: none; }
.order-category-toggle::before { content: '+'; color: var(--accent-dark); font-size: 1.35rem; line-height: 1; }
.order-category[open] .order-category-toggle::before { content: '−'; }
.order-category[open] .order-category-summary { margin-bottom: 14px; }
.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; }
.order-body { padding: 48px 0 76px; background: var(--paper); }
.order-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 32px; align-items: start; }
.order-menu-item { display: flex; flex-direction: column; }
.order-item-actions { display: flex; gap: 8px; margin-top: 18px; }
.order-variation { min-width: 0; flex: 1; padding: 9px 10px; border: 1px solid var(--line); border-radius: 0; background: #fff; color: var(--ink); font: inherit; font-size: 0.84rem; }
.order-add, .checkout-button { border: 0; border-radius: 0; background: #777a32; color: #fffaf0; font: inherit; font-size: 0.84rem; font-weight: 700; cursor: pointer; }
.order-add { padding: 0 14px; }
.order-add:hover, .checkout-button:hover { background: #5d6125; }
.order-add:focus-visible, .checkout-button:focus-visible, .cart-quantity button:focus-visible, .order-variation:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.order-cart { position: sticky; top: 24px; padding: 22px; border: 1px solid var(--line); background: #fff; }
.order-cart h2, .checkout-form h3 { margin: 0; font-family: 'Fraunces', Georgia, serif; color: var(--ink); }
.cart-items { margin: 16px 0; border-top: 1px solid var(--line); }
.cart-empty { margin: 16px 0; color: var(--muted); }
.cart-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.84rem; }
.cart-line strong, .cart-line span { display: block; }
.cart-line span { margin-top: 3px; color: var(--muted); }
.cart-quantity { display: flex; align-items: center; gap: 8px; }
.cart-quantity button { width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 0; background: var(--paper); color: var(--ink); font-size: 1rem; cursor: pointer; }
.cart-totals { margin: 18px 0 22px; }
.cart-total { display: flex; justify-content: space-between; margin: 0; padding: 5px 0; color: var(--muted); }
.cart-total--grand { margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--line); color: var(--accent-dark); }
.checkout-form { display: grid; gap: 8px; border-top: 1px solid var(--line); padding-top: 20px; }
.checkout-form h3 { margin-bottom: 5px; }
.checkout-form label { color: var(--muted); font-size: 0.78rem; font-weight: 700; }
.checkout-form input { min-height: 40px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); font: inherit; }
.fulfillment-choice { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 12px; padding: 0; border: 0; }
.fulfillment-choice label { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border: 1px solid var(--line); background: var(--paper); cursor: pointer; }
.fulfillment-choice input { min-height: auto; margin: 0; accent-color: var(--accent-dark); }
.delivery-details { display: grid; gap: 8px; margin-top: 12px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.delivery-details h3 { margin-bottom: 4px; }
.delivery-details label span { font-weight: 400; }
.delivery-address-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.delivery-address-row > div { display: grid; gap: 8px; }
.delivery-quote-button { min-height: 40px; margin-top: 4px; border: 1px solid var(--accent-dark); border-radius: 0; background: transparent; color: var(--accent-dark); font: inherit; font-size: 0.84rem; font-weight: 700; cursor: pointer; }
.delivery-quote-button:hover { background: var(--panel); }
.delivery-quote-button:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.delivery-quote-button:disabled { cursor: wait; opacity: 0.6; }
.delivery-quote-message { margin: 2px 0 0; color: #315f37; font-size: 0.82rem; line-height: 1.45; }
.payment-section { margin-top: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.payment-section h3 { margin-bottom: 4px; }
.payment-help { margin: 0 0 10px; color: var(--muted); font-size: 0.82rem; line-height: 1.45; }
#card-container { min-height: 88px; padding: 12px; border: 1px solid var(--line); background: #fff; }
.checkout-button { min-height: 44px; margin-top: 10px; padding: 0 14px; }
.checkout-button:disabled { cursor: not-allowed; opacity: 0.5; }
.checkout-error, .order-message { margin: 12px 0 0; padding: 12px; border: 1px solid #d59e8d; background: #fff5f1; color: #8d371d; font-size: 0.88rem; }
.order-message { margin: 0; }
.order-complete { min-height: 62vh; display: grid; place-items: center; padding: 64px 24px; background: var(--panel); }
.order-complete-card { width: min(560px, 100%); padding: 36px; border: 1px solid var(--line); background: #fff; }
.order-complete-card h1 { margin: 0; font-size: clamp(2rem, 5vw, 3rem); }
.order-complete-card p:not(.section-kicker) { color: var(--muted); line-height: 1.6; }
.order-complete-card .btn-hero { margin-top: 12px; }
.blog-listing-count { margin: 24px 0 0; color: var(--accent-dark); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.blog-listing-card { display: flex; flex-direction: column; overflow: hidden; text-decoration: none; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.blog-listing-card:hover { transform: translateY(-3px); border-color: #d7c4b3; box-shadow: var(--shadow); }
.blog-listing-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.blc-img { height: 218px; background: var(--panel); overflow: hidden; }
.blc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.blog-listing-card:hover .blc-img img { transform: scale(1.025); }
.blc-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 24px; }
.blc-title { font-size: 1.52rem; }
.blc-excerpt { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.blc-arrow { margin-top: auto; padding-top: 22px; }
.post-page { width: min(800px, calc(100% - 48px)); margin: 0 auto; padding: 72px 0 88px; }
.post-back-link { display: inline-flex; margin-bottom: 36px; }
.post-page-header { max-width: 760px; }
.post-page h1 { font-size: clamp(2.3rem, 5vw, 4rem); letter-spacing: -0.018em; line-height: 1.06; }
.post-page-dek { max-width: 680px; margin: 20px 0 0; color: var(--muted); font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.15rem, 2.3vw, 1.45rem); line-height: 1.45; }
.post-page-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; color: var(--muted); font-size: 0.9rem; }
.post-hero-img { aspect-ratio: 16 / 8; height: auto; margin: 38px 0 42px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--panel); }
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.post-page-content { max-width: 720px; }
.post-page-content p, .post-page-content li { color: var(--muted); font-size: 1.06rem; line-height: 1.82; }
.post-page-content p { margin: 0 0 1.45em; }
.post-page-content h2, .post-page-content h3 { margin: 2.35em 0 0.65em; font-family: 'Fraunces', Georgia, serif; color: var(--ink); line-height: 1.18; }
.post-page-content h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.post-page-content h3 { font-size: 1.35rem; }
.post-page-content ul, .post-page-content ol { margin: 0.2em 0 1.7em; padding-left: 1.3em; }
.post-page-content li + li { margin-top: 0.5em; }
.post-page-content blockquote { margin: 2em 0; padding: 4px 0 4px 24px; border-left: 3px solid var(--accent); color: var(--ink); font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.25rem, 2.4vw, 1.55rem); line-height: 1.45; }
.post-page-content hr { width: 84px; height: 1px; margin: 2.5em 0; border: 0; background: var(--accent); }
.post-page-footer { margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--line); }
.apply-hero-inner, .apply-form-wrap { width: min(680px, calc(100% - 48px)); margin: 0 auto; }
.apply-form-section { padding: 56px 0 76px; background: var(--paper); }
.apply-form-wrap { padding: 28px; }
.resume-drop-zone { display: grid; justify-items: center; gap: 8px; padding: 28px; border: 1px dashed var(--soft); border-radius: 8px; background: #fff; cursor: pointer; text-align: center; }
.resume-drop-zone:hover, .resume-drop-zone.drag-over { border-color: var(--accent); background: #fcf7f2; }
.resume-drop-zone.has-file { border-color: var(--green); background: #f3faf4; }
.resume-drop-icon { color: var(--accent); font-size: 1.5rem; }
.resume-drop-text { color: var(--ink); font-weight: 700; }
.resume-drop-hint, .apply-label-hint { color: var(--muted); font-size: 0.82rem; font-weight: 400; }
.resume-file-input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.photo-strip--browse {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.photo-strip--browse .strip-item { flex: 0 0 calc(100% / 3.5); scroll-snap-align: start; }
.cakes-strip { margin-top: 1px; }
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.4s ease, transform 0.4s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (max-width: 900px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-photo { order: 1; min-height: 360px; height: 44svh; }
  .hero-content { order: 2; padding: 44px 24px 56px; max-width: none; }
  .about-inner, .contact-inner, .visit-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-logo { border-left: 0; border-top: 1px solid var(--line); padding-top: 28px; }
  .section-head { display: block; }
  .photo-strip { height: 240px; grid-template-columns: 1fr 1fr; }
  .photo-strip .strip-item:last-child { display: none; }
  .photo-strip--browse .strip-item:last-child { display: block; }
  .photo-strip--browse .strip-item { flex-basis: 50%; }
  .footer-inner { align-items: flex-start; }
}
@media (max-width: 620px) {
  .wrap, .post-page, .apply-hero-inner, .apply-form-wrap { width: min(100% - 32px, 1120px); }
  .hero-heading { font-size: 3.2rem; }
  .about-heading, .section-title { font-size: 2.35rem; }
  .menu-hero-title, .blog-listing-title, .apply-hero-title { font-size: 3rem; }
  .post-page { padding-top: 48px; padding-bottom: 64px; }
  .post-back-link { margin-bottom: 28px; }
  .post-hero-img { aspect-ratio: 4 / 3; margin: 28px 0 32px; }
  .post-page-content p, .post-page-content li { font-size: 1rem; }
  .cf-row, .apply-row-2 { grid-template-columns: 1fr; }
  .cards-grid, .posts-grid, .menu-items-grid, .blog-listing-grid { grid-template-columns: 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .order-cart { position: static; }
  .delivery-address-row { grid-template-columns: 1fr; }
  .photo-strip { height: 210px; }
  .photo-strip--browse .strip-item { flex-basis: calc(100% / 1.5); }
  .post-hero-img { height: 250px; }
}
