@layer reset, base, components, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  body, h1, h2, h3, p, figure { margin: 0; }
  button, input { font: inherit; }
  button, a, input { -webkit-tap-highlight-color: transparent; }
  button { cursor: pointer; }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  button { color: inherit; }
  [hidden] { display: none !important; }
}

@layer base {
  :root { --cream: #f7f3e9; --paper: #fffdf7; --ink: #32291f; --muted: #6e665b; --orange: #a44425; --line: #dcd5c8; --serif: Georgia, 'Times New Roman', serif; --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
  html { scroll-behavior: smooth; scroll-padding-top: 110px; }
  body { background: var(--cream); color: var(--ink); font-family: var(--sans); font-size: 15px; line-height: 1.6; }
  ::selection { background: #e9b88e; color: var(--ink); }
  :focus-visible { outline: 2px solid var(--orange); outline-offset: 5px; }
  h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.06; }
  h1 { font-size: clamp(68px, 7.3vw, 112px); letter-spacing: -.055em; }
  h2 { font-size: clamp(42px, 4.6vw, 66px); letter-spacing: -.045em; }
  h3 { font-size: 27px; letter-spacing: -.025em; }
  em { color: var(--orange); font-weight: 400; }
  p { color: var(--muted); }
  .icon { width: 22px; height: 22px; flex-shrink: 0; vertical-align: middle; }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
  .section-pad { padding: 100px max(5.6vw, calc((100vw - 1440px) / 2)); }
  .eyebrow { color: var(--ink); font-size: 10px; font-weight: 600; letter-spacing: .18em; line-height: 1.6; text-transform: uppercase; margin-bottom: 23px; }
  .button { display: inline-flex; justify-content: center; align-items: center; gap: 27px; min-height: 54px; border: 1px solid var(--orange); padding: 14px 25px; border-radius: 99px; background: var(--orange); color: #fff9ee; font-size: 12px; font-weight: 500; line-height: 1.4; transition: background .2s, transform .2s; }
  .button:hover { background: #85351c; transform: translateY(-2px); }
  .button .icon { width: 18px; height: 18px; }
  .button-small { min-height: 44px; padding: 11px 20px; gap: 18px; }
  .button-cream { background: var(--cream); color: var(--ink); border-color: var(--cream); }
  .button-cream:hover { background: #eadfc8; }
  .text-link { display: inline-flex; align-items: center; gap: 20px; font-size: 12px; font-weight: 500; padding: 9px 0; border-bottom: 1px solid currentColor; line-height: 1.4; }
  .text-link .icon { width: 17px; height: 17px; transition: transform .2s; }
  .text-link:hover .icon { transform: translateX(4px); }
  .fine-print { font-size: 11px; line-height: 1.7; }
}

@layer components {
  .loading-mark { width: 38px; height: 38px; border: 2px solid var(--line); border-top-color: var(--orange); border-radius: 50%; margin: 25vh auto; animation: rotate 1s linear infinite; }
  @keyframes rotate { to { transform: rotate(360deg); } }
  .skip-link { position: fixed; left: 15px; top: -100px; padding: 15px; background: var(--paper); z-index: 100; }
  .skip-link:focus { top: 10px; }
  .site-header { position: sticky; top: 0; z-index: 30; background: var(--cream); border-bottom: 1px solid var(--line); }
  .header-inner { height: 100px; max-width: 1600px; margin: auto; padding: 0 4.2%; display: flex; justify-content: space-between; align-items: center; gap: 28px; }
  .brand { display: block; position: relative; width: 180px; height: 88px; overflow: hidden; flex-shrink: 0; }
  .brand img { width: 160px; height: 160px; max-width: none; position: absolute; top: -32px; left: 10px; }
  .desktop-nav { display: flex; gap: clamp(20px, 2.8vw, 45px); margin-left: auto; margin-right: auto; }
  .desktop-nav a { font-size: 11px; position: relative; padding: 12px 0; white-space: nowrap; }
  .desktop-nav a::after { content: ''; position: absolute; bottom: 5px; left: 0; right: 0; height: 1px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
  .desktop-nav a:hover::after, .desktop-nav a[aria-current]::after { transform: scaleX(1); }
  .header-actions { display: flex; align-items: center; gap: 25px; }
  .language-picker { position: relative; }
  .language-trigger { border: 0; background: transparent; padding: 12px 0; display: flex; align-items: center; gap: 8px; font-size: 11px; }
  .language-trigger .icon { width: 17px; height: 17px; }
  .language-trigger .icon:last-child { width: 12px; }
  .language-options { position: absolute; right: -15px; top: 48px; width: 170px; padding: 7px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 10px 30px #32291f12; border-radius: 12px; }
  .language-options button { display: flex; width: 100%; justify-content: space-between; background: transparent; border: 0; border-radius: 7px; padding: 11px; text-align: left; font-size: 13px; }
  .language-options button:hover, .language-options button[aria-checked=true] { background: #eee7da; }
  .mobile-toggle { display: none; padding: 10px; background: transparent; border: 0; }
  .mobile-nav { padding: 10px 6% 24px; border-top: 1px solid var(--line); }
  .mobile-nav > a { display: flex; padding: 14px 0; }
  .hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 650px; max-width: 1600px; margin: auto; }
  .hero-copy { padding: 66px 6.5% 32px 11.2%; display: flex; flex-direction: column; align-items: flex-start; }
  .hero .eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 27px; }
  .tiny-star { color: var(--orange); font-size: 22px; line-height: 1; }
  .hero h1 { margin-left: -5px; }
  .hero-description { max-width: 340px; font-size: 13px; line-height: 1.9; margin-top: 25px; }
  .hero-actions { display: flex; gap: 26px; align-items: center; margin-top: 30px; }
  .hero-actions .text-link { font-size: 11px; border: 0; }
  .hero-discover { display: flex; align-items: center; gap: 14px; font-size: 8px; letter-spacing: .17em; margin-top: auto; padding-top: 43px; }
  .circle-arrow { border: 1px solid #cfc7b8; border-radius: 50%; padding: 10px; }
  .circle-arrow .icon { width: 14px; height: 14px; transform: rotate(90deg); display: block; }
  .hero-visual { position: relative; min-height: 650px; background: #332319; }
  .hero-visual > img { width: 100%; height: 100%; position: absolute; object-fit: cover; }
  .hero-visual::after { content: ''; position: absolute; inset: 60% 0 0; background: linear-gradient(transparent, #20190bb8); pointer-events: none; }
  .artisan-seal { position: absolute; z-index: 2; top: 35px; left: -56px; width: 112px; height: 112px; background: #e9bc76; color: #5f3a19; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; outline: 1px dashed #a37841; outline-offset: -9px; transform: rotate(-12deg); box-shadow: 0 3px 15px #25170b1a; }
  .artisan-seal span { font-size: 8px; letter-spacing: .13em; }
  .artisan-seal .icon { width: 38px; height: 38px; stroke-width: .9; }
  .photo-caption { position: absolute; z-index: 1; bottom: 32px; left: 34px; right: 34px; color: #fffaf0; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
  .photo-caption strong { display: block; font-family: var(--serif); font-size: 25px; font-weight: 400; }
  .photo-caption small { font-size: 10px; color: #e0d5c3; }
  .photo-index { font-size: 9px; letter-spacing: .15em; white-space: nowrap; padding-bottom: 4px; }
  .ribbon { background: #ece5d6; border-bottom: 1px solid var(--line); display: flex; align-items: center; overflow: hidden; }
  .ribbon-window { flex: 1; min-width: 0; overflow: hidden; }
  .ribbon-track { display: flex; width: max-content; animation: ribbon-scroll 32s linear infinite; }
  .ribbon-group { display: flex; flex-shrink: 0; align-items: center; justify-content: space-around; min-width: 100vw; gap: 40px; padding: 23px 20px; }
  .ribbon-group span { font-family: var(--serif); font-size: 18px; white-space: nowrap; font-style: italic; }
  .ribbon-group .icon { color: var(--orange); width: 15px; height: 15px; }
  .ribbon-toggle { display: grid; place-items: center; flex-shrink: 0; width: 44px; height: 44px; margin: 0 12px; border: 1px solid #b9aa93; border-radius: 50%; background: transparent; }
  .ribbon-toggle .icon { width: 17px; height: 17px; }
  .ribbon[data-paused=true] .ribbon-track { animation-play-state: paused; }
  @keyframes ribbon-scroll { to { transform: translateX(-50%); } }
  @media (hover: hover) { .ribbon:hover .ribbon-track { animation-play-state: paused; } }
  .section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 48px; }
  .section-intro { max-width: 310px; padding-bottom: 4px; }
  .section-intro p { font-size: 13px; margin-bottom: 17px; }
  .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .feature-image { display: block; position: relative; overflow: hidden; background: #e5dbc9; aspect-ratio: 1.12; }
  .feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
  .feature-image:hover img { transform: scale(1.045); }
  .feature-number { position: absolute; top: 17px; left: 17px; color: var(--ink); background: var(--cream); width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; font-size: 9px; }
  .image-arrow { display: grid; place-items: center; position: absolute; bottom: 17px; right: 17px; width: 40px; height: 40px; color: var(--ink); background: var(--cream); border-radius: 50%; }
  .image-arrow .icon { width: 18px; }
  .feature-card h3 { margin-top: 24px; font-size: clamp(23px, 2.1vw, 31px); }
  .feature-card p { font-size: 12px; line-height: 1.85; margin: 14px 0 12px; max-width: 340px; }
  .feature-card .text-link { border-bottom: 0; color: var(--orange); }
  .story { background: #eee8db; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 9%; }
  .story-visual { position: relative; margin-right: 20px; }
  .story-visual > img { width: 100%; height: 530px; object-fit: cover; }
  .year-stamp { position: absolute; bottom: -25px; right: -35px; background: var(--cream); padding: 23px 25px; width: 180px; text-align: center; transform: rotate(-5deg); box-shadow: 0 3px 14px #39281809; }
  .year-stamp strong { display: block; font: italic 57px/1.2 var(--serif); color: var(--orange); }
  .year-stamp span { display: block; font-size: 7px; letter-spacing: .15em; margin-top: 8px; }
  .story-copy > p:not(.eyebrow) { font-size: 13px; line-height: 1.95; margin-top: 22px; }
  .recognition { display: flex; gap: 17px; align-items: center; border-top: 1px solid #d5ccbc; margin-top: 30px; padding-top: 24px; }
  .recognition > .icon { color: var(--orange); width: 35px; height: 35px; }
  .recognition small { font-size: 9px; display: block; color: var(--muted); }
  .recognition strong { display: block; font-family: var(--serif); font-size: 21px; font-weight: 400; }
  .recognition span { display: block; font-size: 9px; letter-spacing: .07em; }
  .recognition-link { margin-left: auto; padding: 12px; }
  .occasion { background: var(--orange); color: var(--cream); display: grid; grid-template-columns: .7fr 1.3fr; gap: 8%; align-items: center; }
  .occasion .eyebrow, .occasion em { color: #f9d7ac; }
  .occasion h2 { font-size: clamp(39px, 4vw, 61px); }
  .occasion p:not(.eyebrow) { color: #f0d9c9; font-size: 13px; line-height: 1.9; max-width: 500px; margin: 25px 0; }
  .occasion-art { position: relative; text-align: center; transform: rotate(-8deg); }
  .occasion-art > .icon { width: 220px; height: 220px; stroke-width: .65; color: #edc595; }
  .occasion-art > span { position: absolute; font-size: 55px; right: 15px; top: -30px; color: #edc595; }
  .visit { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7%; align-items: center; }
  .visit-heading > p:not(.eyebrow) { font-size: 13px; max-width: 330px; margin: 23px 0; }
  .visit h2 { font-size: clamp(43px, 4.2vw, 60px); }
  .visit-details { display: grid; grid-template-columns: 1fr; gap: 29px; }
  .visit h3 { font-family: var(--sans); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 19px; }
  .visit-address { display: grid; grid-template-columns: 1fr 1fr; column-gap: 30px; }
  .visit-address > h3 { grid-column: 1; }
  .address-link { font-size: 14px; display: flex; align-items: center; gap: 15px; grid-column: 1; }
  .address-link .icon { width: 16px; }
  .contact-lines { grid-column: 2; grid-row: 1 / 3; }
  .contact-lines > a { display: block; font-size: 15px; }
  .contact-lines .email-link { font-size: 10px; margin-top: 8px; overflow-wrap: anywhere; }
  .hours { border-top: 1px solid var(--line); padding-top: 26px; }
  .hours dl { margin: 0 0 17px; }
  .hours dl > div { display: flex; justify-content: space-between; padding: 6px 0; font-size: 12px; }
  .hours dd { margin: 0; white-space: nowrap; }
  .site-footer { padding-top: 47px; padding-bottom: 25px; background: #eae3d5; }
  .footer-top { display: grid; grid-template-columns: 1.4fr 1fr .7fr; gap: 50px; padding-bottom: 40px; }
  .footer-top .brand { margin-left: -7px; }
  .footer-top > div > p:not(.eyebrow) { max-width: 235px; font-size: 11px; margin-top: 13px; }
  .footer-nav { padding-top: 23px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; font-size: 12px; }
  .footer-social { padding-top: 23px; }
  .footer-social .eyebrow { margin-bottom: 16px; }
  .social-link { display: flex; gap: 11px; font-size: 12px; align-items: center; margin-bottom: 12px; }
  .social-link .icon { width: 16px; height: 16px; }
  .social-link > .icon:last-of-type { margin-left: 10px; width: 12px; }
  .footer-bottom { border-top: 1px solid #d1c7b6; padding-top: 24px; display: flex; gap: 25px; justify-content: space-between; align-items: center; font-size: 9px; color: var(--muted); }
  .privacy-button { border: 0; background: transparent; text-decoration: underline; font-size: 11px; padding: 10px 0; }
  .image-note { font-size: 8px; margin-top: 22px; }
  .privacy-dialog { width: min(550px, 90vw); border: 1px solid var(--line); background: var(--cream); color: var(--ink); padding: 45px 35px 35px; }
  .privacy-dialog::backdrop { background: #211b14a6; backdrop-filter: blur(3px); }
  .privacy-dialog h2 { font-size: 40px; margin-bottom: 20px; }
  .privacy-dialog p { font-size: 13px; margin-top: 20px; overflow-wrap: anywhere; }
  .privacy-dialog a { text-decoration: underline; }
  .dialog-close { position: absolute; right: 12px; top: 12px; background: transparent; border: 0; padding: 8px; }
  .menu-hero { position: relative; background: #eee8db; padding-top: 65px; padding-bottom: 58px; overflow: hidden; }
  .menu-hero h1 { font-size: clamp(65px, 7vw, 100px); position: relative; z-index: 1; }
  .menu-hero > p:last-of-type { max-width: 465px; margin-top: 25px; font-size: 13px; position: relative; z-index: 1; }
  .menu-doodle { position: absolute; right: 12%; top: 90px; transform: rotate(-20deg); color: #b86e45; }
  .menu-doodle .icon { width: 240px; height: 240px; stroke-width: .7; }
  .menu-section { padding-top: 40px; padding-bottom: 55px; }
  .menu-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 25px; padding-bottom: 23px; border-bottom: 1px solid var(--line); }
  .category-filters { display: flex; gap: 7px; flex-wrap: wrap; }
  .filter-button { border: 1px solid var(--line); border-radius: 30px; padding: 11px 19px; background: transparent; font-size: 12px; transition: background .2s, color .2s; }
  .filter-button[aria-pressed=true] { background: var(--ink); color: var(--cream); border-color: var(--ink); }
  .filter-button:hover:not([aria-pressed=true]) { background: #ebe3d4; }
  .search-box { display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #a89c88; padding: 10px 0; width: 240px; flex-shrink: 0; }
  .search-box .icon { width: 17px; height: 17px; }
  .search-box input { min-width: 0; width: 100%; background: transparent; color: var(--ink); border: 0; padding: 3px; font-size: 12px; }
  .search-box input::placeholder { color: var(--muted); opacity: 1; }
  .results-count { font-size: 10px; padding: 19px 0; }
  .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px; }
  .product-card { display: flex; flex-direction: column; border-bottom: 1px solid var(--line); }
  .product-image { position: relative; aspect-ratio: 1.5; overflow: hidden; background: #e9dfce; }
  .product-image > img { width: 100%; height: 100%; object-fit: cover; }
  .coffee-crop > img { object-position: 70% 20%; transform: scale(1.9); transform-origin: 75% 20%; }
  .product-category { position: absolute; top: 14px; left: 14px; background: var(--cream); padding: 5px 12px; border-radius: 30px; font-size: 9px; }
  .product-illustration { display: grid; place-items: center; height: 100%; background: radial-gradient(circle at center, #f4edde, #e6d9c4); color: #9c633d; }
  .product-illustration .icon { width: 97px; height: 97px; stroke-width: .8; transform: rotate(-10deg); }
  .product-info { padding: 23px 0 20px; flex: 1; display: flex; flex-direction: column; align-items: flex-start; }
  .product-title { display: flex; width: 100%; align-items: start; justify-content: space-between; gap: 12px; }
  .product-title h2 { font-size: 24px; letter-spacing: -.025em; }
  .product-price { font-size: 11px; font-weight: 500; white-space: nowrap; color: var(--orange); padding-top: 4px; }
  .product-info p { font-size: 12px; margin: 13px 0 18px; }
  .product-info .text-link { font-size: 10px; color: var(--orange); border: 0; margin-top: auto; }
  .menu-notes { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px; max-width: 860px; }
  .menu-notes p { font-size: 10px; margin-bottom: 9px; }
  .menu-notes p:last-child { font-size: 9px; }
  .menu-contact { padding: 45px 5.6%; background: #eee8db; display: flex; gap: 35px; justify-content: space-between; align-items: center; }
  .menu-contact h2 { font-size: 35px; }
  .menu-contact p { font-size: 12px; margin-top: 10px; }
  .empty-results { grid-column: 1 / -1; text-align: center; padding: 60px 20px; }
  .empty-results > .icon { width: 40px; height: 40px; color: var(--orange); }
  .empty-results p { margin: 20px 0; }
  .not-found { min-height: 60vh; }
  .not-found h1 { font-size: 65px; max-width: 800px; margin-bottom: 40px; }
  .load-error { padding: 20vh 8%; text-align: center; }
  .load-error p { margin-bottom: 20px; }
  .error-toast { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 100; padding: 15px 25px; background: var(--ink); color: var(--cream); box-shadow: 0 5px 30px #0002; max-width: 90vw; font-size: 13px; }
}

@layer responsive {
  @media (min-width: 1600px) { .hero-copy { padding-left: 90px; } }
  @media (max-width: 1150px) {
    .header-inner { gap: 20px; padding: 0 4%; }
    .brand { width: 150px; }
    .brand img { width: 150px; height: 150px; top: -28px; left: 0; }
    .header-actions { gap: 18px; }
    .desktop-nav { gap: 22px; }
    .hero-copy { padding-top: 52px; }
    .hero, .hero-visual { min-height: 600px; }
    .hero h1 { font-size: 8vw; }
    .hero-actions { gap: 17px; flex-wrap: wrap; }
    .artisan-seal { width: 95px; height: 95px; left: -47px; top: 23px; }
    .artisan-seal .icon { width: 30px; height: 30px; }
    .artisan-seal span { font-size: 7px; }
    .visit { grid-template-columns: .85fr 1.15fr; gap: 5%; }
    .visit-address { display: block; }
    .contact-lines { margin-top: 24px; }
    .menu-toolbar { flex-wrap: wrap; }
    .search-box { margin-left: auto; }
    .product-title { flex-direction: column; gap: 4px; }
    .menu-doodle { right: 6%; opacity: .6; }
  }
  @media (max-width: 900px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: block; }
    .header-actions { margin-left: auto; }
    .header-inner { height: 88px; }
    .section-pad { padding: 72px 6%; }
    .hero-copy { padding: 45px 8% 28px 12%; }
    .hero .eyebrow { font-size: 8px; letter-spacing: .11em; gap: 7px; }
    .hero-description { font-size: 12px; }
    .hero-actions .text-link { font-size: 10px; }
    .hero-actions .button { font-size: 11px; padding: 13px 19px; gap: 16px; }
    .hero, .hero-visual { min-height: 590px; }
    .artisan-seal { top: 23px; width: 84px; height: 84px; left: -30px; }
    .artisan-seal span { font-size: 6px; }
    .photo-caption { left: 23px; right: 23px; bottom: 25px; }
    .photo-caption strong { font-size: 21px; }
    .photo-index { display: none; }
    .section-heading { gap: 35px; }
    .section-intro { max-width: 240px; }
    .feature-grid { gap: 20px; }
    .feature-card h3 { font-size: 24px; }
    .feature-image { aspect-ratio: .85; }
    .story { gap: 7%; }
    .story-visual { margin-right: 0; }
    .story-visual > img { height: 500px; }
    .story-copy h2 { font-size: 43px; }
    .year-stamp { width: 145px; right: -20px; padding: 19px; }
    .year-stamp strong { font-size: 47px; }
    .occasion { grid-template-columns: .5fr 1fr; gap: 6%; }
    .occasion-art > .icon { width: 160px; height: 160px; }
    .occasion-art > span { font-size: 35px; right: 0; }
    .visit { grid-template-columns: 1fr 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-doodle .icon { width: 170px; height: 170px; }
    .menu-hero { padding-top: 50px; padding-bottom: 45px; }
    .menu-section { padding-top: 30px; }
    .menu-toolbar { gap: 20px; }
    .search-box { width: 100%; }
    .footer-top { gap: 30px; }
  }
  @media (max-width: 650px) {
    html { scroll-padding-top: 85px; }
    .header-inner { height: 82px; padding: 0 5%; gap: 12px; }
    .brand { width: 140px; height: 78px; }
    .brand img { width: 140px; height: 140px; top: -28px; }
    .header-actions { gap: 19px; }
    .header-order { display: none; }
    .language-trigger { gap: 6px; }
    .mobile-toggle { padding: 10px 0 10px 5px; }
    .hero { display: flex; flex-direction: column; }
    .hero-copy { padding: 40px 7% 35px; }
    .hero .eyebrow { font-size: 9px; letter-spacing: .14em; margin-bottom: 23px; }
    .hero h1 { font-size: clamp(67px, 13.7vw, 88px); letter-spacing: -.05em; }
    .hero-description { max-width: 360px; font-size: 13px; margin-top: 22px; }
    .hero-actions { margin-top: 24px; gap: 24px; }
    .hero-actions .button { font-size: 12px; padding: 14px 23px; }
    .hero-actions .text-link { font-size: 11px; }
    .hero-discover { display: none; }
    .hero-visual { min-height: 0; height: 480px; }
    .hero-visual > img { object-position: 50% 54%; }
    .artisan-seal { left: auto; right: 22px; top: -42px; width: 98px; height: 98px; }
    .artisan-seal span { font-size: 7px; }
    .artisan-seal .icon { width: 34px; height: 34px; }
    .photo-caption { left: 26px; right: 26px; }
    .photo-caption strong { font-size: 25px; }
    .photo-caption small { font-size: 10px; }
    .photo-index { display: block; }
    .section-pad { padding: 62px 7%; }
    .eyebrow { font-size: 9px; letter-spacing: .15em; margin-bottom: 20px; }
    h2 { font-size: 43px; }
    .section-heading { display: block; margin-bottom: 32px; }
    .section-intro { max-width: 100%; margin-top: 23px; }
    .section-intro p { max-width: 350px; font-size: 13px; }
    .feature-grid { grid-template-columns: 1fr; gap: 37px; }
    .feature-image { aspect-ratio: 1.18; }
    .feature-card h3 { font-size: 30px; margin-top: 22px; }
    .feature-card p { font-size: 13px; margin: 12px 0 8px; max-width: none; }
    .story { grid-template-columns: 1fr; gap: 64px; }
    .story-visual { margin-right: 13px; }
    .story-visual > img { height: 410px; }
    .year-stamp { width: 154px; right: -15px; }
    .story-copy h2 { font-size: 46px; }
    .story-copy > p:not(.eyebrow) { font-size: 13px; }
    .occasion { display: block; overflow: hidden; position: relative; }
    .occasion-art { position: absolute; right: -25px; top: 23px; opacity: .15; }
    .occasion-art > .icon { width: 190px; height: 190px; }
    .occasion > div:last-child { position: relative; }
    .occasion h2 { font-size: 41px; }
    .occasion p:not(.eyebrow) { font-size: 13px; }
    .occasion .button { font-size: 11px; gap: 17px; }
    .visit { grid-template-columns: 1fr; gap: 43px; }
    .visit h2 { font-size: 46px; }
    .visit-address { display: grid; gap: 0 25px; }
    .contact-lines { margin-top: 0; }
    .visit h3 { font-size: 9px; }
    .address-link { font-size: 12px; }
    .address-link .icon { display: none; }
    .contact-lines > a { font-size: 14px; }
    .contact-lines .email-link { font-size: 10px; }
    .hours dl > div { font-size: 13px; padding: 7px 0; }
    .site-footer { padding-top: 35px; padding-bottom: 25px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px 23px; padding-bottom: 30px; }
    .footer-top > div:first-child { grid-column: 1 / -1; }
    .footer-top > div > p:not(.eyebrow) { max-width: 270px; }
    .footer-nav, .footer-social { padding-top: 0; }
    .footer-nav { font-size: 11px; gap: 17px; }
    .footer-bottom { flex-wrap: wrap; gap: 15px; font-size: 8px; }
    .footer-bottom > span:nth-child(2) { order: 3; width: 100%; }
    .image-note { font-size: 8px; }
    .menu-hero { padding-top: 43px; padding-bottom: 38px; }
    .menu-hero h1 { font-size: clamp(54px, 12vw, 76px); }
    .menu-hero > p:last-of-type { font-size: 13px; margin-top: 22px; }
    .menu-doodle { right: -35px; top: 65px; opacity: .12; }
    .menu-doodle .icon { width: 220px; height: 220px; }
    .menu-section { padding-top: 27px; padding-bottom: 35px; }
    .category-filters { gap: 7px; }
    .filter-button { font-size: 11px; padding: 10px 15px; min-height: 42px; }
    .menu-toolbar { gap: 17px; padding-bottom: 15px; }
    .search-box { padding-top: 3px; }
    .search-box input { font-size: 16px; }
    .product-grid { gap: 27px; grid-template-columns: 1fr; }
    .product-image { aspect-ratio: 1.5; }
    .product-title { flex-direction: row; }
    .product-title h2 { font-size: 26px; }
    .product-info { padding-top: 20px; }
    .product-info p { font-size: 13px; }
    .product-info .text-link { font-size: 11px; }
    .menu-contact { display: block; padding: 38px 7%; }
    .menu-contact h2 { font-size: 32px; }
    .menu-contact .button { margin-top: 24px; }
    .not-found h1 { font-size: 48px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .ribbon-track { width: 100%; }
    .ribbon-group { min-width: 0; width: 100%; flex-wrap: wrap; gap: 16px 28px; padding: 20px; }
    .ribbon-group span { white-space: normal; text-align: center; }
    .ribbon-group[aria-hidden], .ribbon-toggle { display: none; }
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
  }
}
