* {
  box-sizing: border-box;
}

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

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

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

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

#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;
}

#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;
}

.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;
  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 > 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 > img {
  transform: scale(1.25);
}

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

.chef-award {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #b8c2b4;
}

.chef-award > span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #657a68;
  padding-top: 4px;
}

.award-title {
  font-weight: 600;
  margin: 0 0 8px;
}

.award-description {
  font-size: 14px !important;
  margin: 0 !important;
  color: #657a68;
}

@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: 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 {
    position: relative;
    flex-direction: row;
    align-items: center;
    padding: 24px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    border: 0;
    background: none;
    color: #26332a;
    font-size: 28px;
    cursor: pointer;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 24px;
    width: auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    padding: 20px;
    margin: 0;
    background-color: #f8f7f2;
  }

  nav ul.open {
    display: flex;
  }

  #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;
  }
}
