* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f8f7f2;
  color: #26332a;
}

picture {
  display: block;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 20px 40px;
}

.nav-brand {
  flex-shrink: 0;
  margin: 0.83em 0;
  font-size: 1.5em;
  font-weight: 700;
  white-space: nowrap;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

nav ul a {
  display: block;
  min-height: 48px;
  padding: 12px 0;
  line-height: 24px;
  white-space: nowrap;
}

nav ul a:hover,
nav ul a:active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

nav a:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid #26332a;
  outline-offset: 4px;
}

nav a[href="#contact"] {
  font-weight: 600;
}

#home {
  min-height: 70vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 60px;
  align-items: center;
  gap: 60px;
}

#home h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1;
  max-width: 700px;
  margin: 0 0 20px;
}

#home p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 650px;
  margin: 0;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.food-feature {
  position: relative;
  margin: 0;
}

.feature-caption {
  --caption-fade: clamp(36px, 4vw, 48px);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: 0;
  padding: var(--caption-fade) clamp(16px, 2vw, 24px) clamp(16px, 2vw, 24px);
  border-radius: 0 0 4px 4px;
  background: linear-gradient(
    to bottom,
    rgba(38, 51, 42, 0),
    rgba(38, 51, 42, 0.76) var(--caption-fade),
    rgba(38, 51, 42, 0.86)
  );
  color: #f8f7f2;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.35;
}

#about {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  grid-template-areas:
    "heading portrait"
    "copy portrait";
  column-gap: clamp(40px, 5vw, 80px);
  padding: 120px 60px 60px;
  max-width: 1320px;
  margin: 0 auto;
}

.about-heading {
  grid-area: heading;
}

.about-copy {
  grid-area: copy;
  min-width: 0;
}

.about-portrait {
  grid-area: portrait;
  align-self: center;
  min-width: 0;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #657a68;
  margin-bottom: 20px;
}

#about h2 {
  font-size: 44px;
  line-height: 1.2;
  margin: 0 0 30px;
}

#about p {
  font-size: 18px;
  line-height: 1.7;
}

#about .about-intro {
  font-size: 22px;
}

#services {
  padding: 120px 120px 60px;
  background-color: #eef1e9;
}

#services > h2,
#services > .section-label {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.service {
  padding: 40px;
  border-top: 1px solid #b8c2b4;
}

.service h3 {
  font-size: 24px;
  margin: 0 0 20px;
}

.service p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

#services > h2 {
  font-size: 44px;
  margin-top: 0;
  margin-bottom: 0;
}

#menus {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 120px 60px;
  max-width: 1320px;
  margin: 0 auto;
}

.menus-text {
  flex: 1;
}

.menus-image {
  flex: 1;
}

.menus-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

#menus h2 {
  font-size: 44px;
  margin: 0 0 30px;
}

#menus p {
  font-size: 18px;
  line-height: 1.7;
}

#cta {
  padding: 140px 60px;
  text-align: center;
  background-color: #26332a;
  color: #f8f7f2;
}

#cta .section-label {
  color: #b8c2b4;
}

#cta h2 {
  font-size: 52px;
  line-height: 1.15;
  max-width: 750px;
  margin: 0 auto 25px;
}

#cta > p:not(.section-label) {
  font-size: 18px;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 40px;
}

.cta-button {
  display: inline-block;
  padding: 16px 30px;
  border: 1px solid #f8f7f2;
  color: #f8f7f2;
  text-decoration: none;
  font-weight: 600;
}

#contact {
  display: flex;
  gap: 100px;
  padding: 120px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-intro {
  flex: 1;
}

.contact-details {
  flex: 1;
}

#contact h2 {
  font-size: 44px;
  line-height: 1.2;
  margin: 0 0 30px;
}

.contact-intro > p:not(.section-label) {
  font-size: 18px;
  line-height: 1.7;
  max-width: 650px;
}

.contact-heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #657a68;
}

.service-area-heading {
  margin: 30px 0 0;
  padding-top: 30px;
  border-top: 1px solid #b8c2b4;
}

.contact-pricing {
  margin-top: 30px;
}

.contact-pricing p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
  background-color: #26332a;
  color: #f8f7f2;
}

footer p {
  margin: 0;
  font-size: 14px;
}

.menu-toggle {
  display: none;
}

#home .hero-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #657a68;
  margin: 0 0 20px;
}

#about p {
  margin-top: 0;
  margin-bottom: 24px;
}

#about .section-label {
  margin-bottom: 20px;
}

#process {
  padding: 120px 60px;
  max-width: 1320px;
  margin: 0 auto;
}

#process > h2 {
  font-size: 44px;
  margin: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.process-step {
  border-top: 1px solid #b8c2b4;
  padding-top: 30px;
}

.process-step span {
  font-size: 13px;
  font-weight: 600;
  color: #657a68;
  letter-spacing: 2px;
}

.process-step h3 {
  font-size: 22px;
  margin: 20px 0 15px;
}

.process-step p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

#dietary {
  padding: 120px 60px;
  background-color: #eef1e9;
}

.dietary-content {
  max-width: 1200px;
  margin: 0 auto;
}

#dietary h2 {
  font-size: 44px;
  line-height: 1.2;
  margin: 0 0 30px;
}

.dietary-intro,
.dietary-invitation {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.dietary-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 40px;
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.dietary-options li {
  padding: 20px 0;
  border-top: 1px solid #b8c2b4;
  font-size: 18px;
  line-height: 1.6;
}

.dietary-note {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.contact-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.contact-services span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 10px 14px;
  border: 1px solid #b8c2b4;
  font-size: 14px;
  text-align: center;
}

.inquiry-form {
  margin-top: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #b8c2b4;
  background-color: transparent;
  color: #26332a;
  font: inherit;
}

.form-group textarea {
  resize: vertical;
}

.form-button {
  padding: 16px 30px;
  border: none;
  background-color: #26332a;
  color: #f8f7f2;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-honeypot {
  display: none;
}

.conditional-field {
  display: none;
}

.conditional-field.show {
  display: flex;
}

.form-message {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.photo-band {
  padding: 0 60px 120px;
}

.photo-band-services {
  background-color: #eef1e9;
}

#gallery {
  padding: 120px 60px;
  background-color: #eef1e9;
}

.gallery-heading {
  max-width: 1200px;
  margin: 0 auto 50px;
}

#gallery h2 {
  font-size: 44px;
  margin: 0 0 20px;
}

.gallery-heading > p:not(.section-label) {
  font-size: 18px;
  line-height: 1.7;
  max-width: 650px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  grid-auto-flow: dense;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-tile {
  position: relative;
  margin: 0;
  min-width: 0;
  min-height: 0;
  /* Preserve the original 389.33px by 320px standard tile proportions. */
  aspect-ratio: 73 / 60;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-tile > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-tile.gallery-wide {
  grid-column: span 2;
  aspect-ratio: auto;
}

.gallery-tile.gallery-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-zoom > picture > img {
  transform: scale(var(--gallery-zoom, 1.25));
}

.gallery-zoom-subtle {
  --gallery-zoom: 1.1;
}

.gallery-focus-left > picture > img {
  object-position: left center;
  transform-origin: left center;
}

.gallery-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(
    to bottom,
    rgba(38, 51, 42, 0),
    rgba(38, 51, 42, 0.76) 40px,
    rgba(38, 51, 42, 0.86)
  );
  color: #f8f7f2;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .gallery-caption {
    padding: 32px 12px 12px;
    background: linear-gradient(
      to bottom,
      rgba(38, 51, 42, 0),
      rgba(38, 51, 42, 0.76) 32px,
      rgba(38, 51, 42, 0.86)
    );
    font-size: 14px;
  }
}

.chef-award {
  grid-column: 1 / -1;
  min-width: 0;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid #b8c2b4;
}

#about .award-label,
.winning-menu-heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.6;
  color: #26332a;
  margin: 0 0 20px;
}

.award-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 40px;
  align-items: start;
}

.award-story h3 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  max-width: 15ch;
}

#about .award-story p {
  margin: 0;
  max-width: 65ch;
}

.winning-menu-heading {
  margin-top: 40px;
}

.winning-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.winning-dish {
  min-width: 0;
  margin: 0;
}

.winning-dish img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.winning-dish figcaption {
  padding-top: 20px;
}

.winning-dish h5 {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 10px;
}

#about .winning-dish p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

#about .award-closing {
  max-width: 70ch;
  margin: 36px 0 0;
}

@media (max-width: 768px) {
  .chef-award {
    margin-top: 32px;
    padding-top: 32px;
  }

  .award-story {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  #about .award-story p,
  #about .award-closing {
    font-size: 16px;
  }

  .winning-menu-heading {
    margin-top: 32px;
  }

  .winning-menu {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .winning-dish {
    display: grid;
    grid-template-columns: clamp(96px, 28vw, 144px) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
  }

  .winning-dish img {
    aspect-ratio: 1;
  }

  .winning-dish figcaption {
    padding-top: 0;
  }

  .winning-dish h5 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  #about .winning-dish p {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  #about {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "heading"
      "portrait"
      "copy";
    max-width: 900px;
  }

  .about-portrait {
    width: 100%;
    max-width: 560px;
    margin: 8px auto 40px;
  }
}

@media (max-width: 960px) {
  nav {
    position: relative;
    z-index: 10;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: none;
    color: #26332a;
    font-family: inherit;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }

  .menu-toggle:hover,
  .menu-toggle[aria-expanded="true"] {
    background-color: rgba(38, 51, 42, 0.08);
  }

  .menu-toggle:active {
    background-color: rgba(38, 51, 42, 0.14);
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 40px;
    right: 40px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    /* The percentage is the navigation's height, leaving room below the panel. */
    max-height: calc(100vh - 100% - 16px);
    max-height: calc(100dvh - 100% - 16px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background-color: #26332a;
    color: #f8f7f2;
    border: 1px solid rgba(248, 247, 242, 0.18);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 6px 16px rgba(38, 51, 42, 0.12);
  }

  nav ul.open {
    display: flex;
    animation: navigation-panel-in 150ms ease-out;
  }

  nav li + li {
    border-top: 1px solid rgba(248, 247, 242, 0.16);
  }

  nav ul a {
    padding: 12px 16px;
  }

  nav ul a:hover,
  nav ul a:focus-visible {
    background-color: rgba(248, 247, 242, 0.08);
    text-decoration: none;
  }

  nav ul a:active {
    background-color: rgba(248, 247, 242, 0.14);
    text-decoration: none;
  }

  nav ul a:focus-visible {
    outline-color: #f8f7f2;
    outline-offset: -2px;
  }
}

@keyframes navigation-panel-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  nav ul.open {
    animation: none;
  }
}

@media (max-width: 768px) {
  #home {
    display: block;
    padding: 60px 24px;
  }

  .hero-text {
    display: block;
    width: 100%;
  }

  .hero-image {
    display: block;
    width: 100%;
    margin-top: 40px;
  }

  .hero-image img {
    display: block;
    width: 100%;
    max-width: none;
    height: 400px;
    object-fit: cover;
  }

  nav {
    padding: 24px;
  }

  nav ul {
    left: 24px;
    right: 24px;
  }

  #home h1 {
    font-size: 44px;
  }

  #home p {
    font-size: 18px;
  }

  #services {
    padding: 80px 24px 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  #services > h2 {
    font-size: 36px;
  }

  .service {
    padding: 30px 0;
  }

  #about {
    padding: 80px 24px 40px;
  }

  #about h2 {
    font-size: 36px;
  }

  #about .about-intro {
    font-size: 20px;
  }

  #menus {
    display: block;
    padding: 80px 24px;
  }

  .menus-text,
  .menus-image {
    width: 100%;
  }

  .menus-image {
    margin-top: 40px;
  }

  .menus-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  #menus h2 {
    font-size: 36px;
  }

  #cta {
    padding: 90px 24px;
  }

  #cta h2 {
    font-size: 40px;
  }

  #contact {
    display: block;
    padding: 80px 24px;
  }

  #contact h2 {
    font-size: 36px;
  }

  .contact-details {
    margin-top: 50px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 40px 24px;
  }

  #process {
    padding: 80px 24px;
  }

  #process > h2 {
    font-size: 36px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .process-step {
    padding: 30px 0;
  }

  #dietary {
    padding: 80px 24px;
  }

  #dietary h2 {
    font-size: 36px;
  }

  .dietary-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    margin: 32px 0;
  }

  .dietary-options li {
    padding: 16px 0;
    font-size: 16px;
  }

  .photo-band {
    padding: 0 24px 80px;
  }

  #gallery {
    padding: 80px 24px;
  }

  .gallery-heading {
    margin-bottom: 32px;
  }

  #gallery h2 {
    font-size: 36px;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
    grid-auto-flow: row;
  }

  .gallery-tile.gallery-wide,
  .gallery-tile.gallery-tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 73 / 60;
  }
}

@media (max-width: 480px) {
  .about-portrait {
    max-width: clamp(220px, 64vw, 260px);
  }
}

/* G-Bar: scoped styles keep the chef content and inquiry form independent. */
#gbar {
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 60px;
}

.gbar-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.gbar-name {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3px;
}

.gbar-label {
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 2px;
}

#gbar-heading {
  max-width: 18ch;
  margin: 0;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
}

.gbar-story p,
.gbar-process-copy p {
  max-width: 65ch;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.7;
}

.gbar-story p:last-child,
.gbar-process-copy p:last-child {
  margin-bottom: 0;
}

.gbar-standards {
  margin: 64px 0;
  padding: 32px 0;
  border-top: 1px solid #b8c2b4;
  border-bottom: 1px solid #b8c2b4;
}

.gbar-standards h3,
#gbar-process-heading,
#gbar-inquiry-heading {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

.gbar-standards > p {
  max-width: 75ch;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}

.gbar-attributes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 32px;
  max-width: 960px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.gbar-attributes li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.gbar-attributes li::before {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 1px;
  background-color: #657a68;
}

.gbar-section-heading {
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 2px;
}

.gbar-flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 32px;
}

.gbar-flavor {
  min-width: 0;
  padding-top: 24px;
  border-top: 1px solid #b8c2b4;
}

/* Optional real product photography can be inserted before each flavor title. */
.gbar-flavor-media {
  margin: 0 0 20px;
}

.gbar-flavor-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.gbar-flavor h4 {
  min-height: 2.6em;
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.gbar-flavor-description {
  min-height: 3.3em;
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.65;
}

.gbar-ingredients summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  padding: 10px 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  list-style: none;
  cursor: pointer;
}

.gbar-ingredients summary::-webkit-details-marker {
  display: none;
}

.gbar-ingredients summary::after {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.gbar-ingredients[open] summary::after {
  transform: rotate(225deg);
}

.gbar-ingredients summary:hover {
  background-color: rgba(38, 51, 42, 0.05);
}

.gbar-ingredients summary:active {
  background-color: rgba(38, 51, 42, 0.09);
}

.gbar-ingredient-list {
  margin: 8px 0 0;
  padding: 0 8px 8px;
  list-style: none;
  font-size: 15px;
  line-height: 1.7;
}

.gbar-ingredient-list li {
  display: inline;
}

.gbar-ingredient-list li:not(:last-child)::after {
  content: ", ";
}

.gbar-mini-gallery {
  max-width: 960px;
  margin: 40px auto 0;
}

.gbar-mini-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gbar-mini-gallery-grid picture {
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}

.gbar-mini-gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 640px) {
  .gbar-mini-gallery {
    margin-top: 28px;
  }

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

.gbar-future {
  max-width: 65ch;
  margin-top: 40px;
}

.gbar-future p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.gbar-future .gbar-future-heading {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

#gbar-process {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 40px;
  margin: 64px 0 36px;
  padding: 40px;
  background-color: #eef1e9;
}

.gbar-quote {
  max-width: 65ch;
  margin: 0;
  font-size: 24px;
  line-height: 1.55;
}

.gbar-quote p {
  margin: 0;
}

#gbar-inquiry {
  max-width: 760px;
  margin: 72px auto 0;
  padding-top: 40px;
  border-top: 1px solid #b8c2b4;
}

#gbar-inquiry > p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
}

#gbar-inquiry .gbar-form-note {
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.6;
}

#gbar-inquiry-heading span {
  white-space: nowrap;
}

.gbar-request-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
  margin-bottom: 24px;
}

.gbar-request-paths h4 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.gbar-request-paths p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.gbar-form {
  margin-top: 28px;
}

.gbar-honeypot {
  display: none;
}

.gbar-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}

.gbar-form-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-bottom: 24px;
}

.gbar-form-field label,
.gbar-quantities legend {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.gbar-form-field input,
.gbar-form-field textarea,
.gbar-quantity-row input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 14px;
  border: 1px solid #657a68;
  border-radius: 0;
  background-color: transparent;
  color: #26332a;
  font: inherit;
}

.gbar-form-field textarea {
  resize: vertical;
}

.gbar-quantities {
  min-width: 0;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.gbar-quantities legend {
  padding: 0;
}

.gbar-field-help {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
}

.gbar-quantity-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #b8c2b4;
}

.gbar-quantity-row:first-child {
  border-top: 1px solid #b8c2b4;
}

.gbar-quantity-row label {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 48px;
  font-size: 16px;
  line-height: 1.5;
}

.gbar-quantity-row input {
  padding: 10px 8px;
  text-align: center;
}

.gbar-request-clarification {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
}

.gbar-request-error {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.gbar-request-error:empty {
  margin: 0;
}

.gbar-submit {
  min-height: 48px;
  padding: 16px 30px;
  border: 0;
  background-color: #26332a;
  color: #f8f7f2;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.gbar-submit:hover,
.gbar-submit:active {
  background-color: #394e40;
}

.gbar-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.gbar-ingredients summary:focus-visible,
.gbar-form input:focus-visible,
.gbar-form textarea:focus-visible,
.gbar-submit:focus-visible {
  outline: 2px solid #26332a;
  outline-offset: 3px;
}

.gbar-form-status {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

.gbar-form-status:empty {
  margin: 0;
}

.gbar-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 1099px) {
  .gbar-flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  #gbar {
    padding: 80px 24px;
  }

  .gbar-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  #gbar-heading {
    font-size: 36px;
  }

  .gbar-story p,
  .gbar-process-copy p,
  .gbar-standards > p {
    font-size: 16px;
  }

  .gbar-standards {
    margin: 40px 0;
    padding: 28px 0;
  }

  .gbar-standards h3,
  #gbar-process-heading,
  #gbar-inquiry-heading {
    font-size: 22px;
  }

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

  .gbar-attributes li {
    gap: 8px;
    font-size: 14px;
  }

  .gbar-flavor-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .gbar-flavor {
    padding-top: 20px;
  }

  .gbar-flavor h4,
  .gbar-flavor-description {
    min-height: 0;
  }

  #gbar-process {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin: 40px -24px 28px;
    padding: 32px 24px;
  }

  .gbar-quote {
    font-size: 20px;
  }

  #gbar-inquiry {
    margin-top: 48px;
    padding-top: 32px;
  }
}

@media (max-width: 600px) {
  .gbar-request-paths,
  .gbar-form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}
