:root {
  --color-ink: #292724;
  --color-muted: #6d675f;
  --color-paper: #fbfaf7;
  --color-white: #ffffff;
  --color-brand: #8a552b;
  --color-brand-dark: #583116;
  --color-gold: #c69b62;
  --color-line: #e7dfd5;
  --shadow-soft: 0 20px 60px rgba(45, 31, 20, 0.12);
  --radius: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

body.admin-bar .site-header {
  top: 32px;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0 0 0.55em;
  color: var(--color-ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  margin: 0 0 1.35em;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  color: var(--color-white);
  background: var(--color-brand-dark);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(88, 49, 22, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 32px;
}

.site-brand img {
  width: 112px;
  max-height: 78px;
  object-fit: contain;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-block;
  color: #3d3833;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--color-brand);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item a::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 0;
  color: var(--color-ink);
  background: transparent;
  font: inherit;
  font-weight: 700;
}

.nav-toggle__icon {
  display: grid;
  gap: 4px;
}

.nav-toggle__icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 92px));
  overflow: hidden;
  place-items: center;
  background-color: #fff;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.2)), url("../images/hero-bread.jpg");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  right: 4%;
  bottom: 4%;
  width: 190px;
  height: 148px;
  content: "";
  opacity: 0.42;
  background: url("../images/grain-decoration.png") center / contain no-repeat;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 80px 110px;
  text-align: center;
}

.hero__sign {
  width: clamp(190px, 23vw, 300px);
  margin: 0 auto 22px;
}

.hero h1 {
  max-width: 1050px;
  margin-inline: auto;
  letter-spacing: -0.035em;
}

.hero p {
  margin-bottom: 28px;
  color: #696058;
  font-size: clamp(1.05rem, 2.4vw, 1.7rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid var(--color-brand);
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-brand);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--color-brand-dark);
}

.button--light {
  border-color: var(--color-white);
  color: var(--color-brand-dark);
  background: var(--color-white);
}

.home-content {
  overflow: hidden;
}

.history-section {
  position: relative;
  padding: clamp(80px, 10vw, 150px) 20px;
  background: var(--color-white);
}

.history-section::before,
.history-section::after {
  position: absolute;
  width: 200px;
  height: 155px;
  content: "";
  opacity: 0.28;
  background: url("../images/grain-decoration.png") center / contain no-repeat;
}

.history-section::before {
  top: 40px;
  right: 3vw;
}

.history-section::after {
  bottom: 40px;
  left: 2vw;
  transform: rotate(180deg);
}

.history-section__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 850px);
  margin-inline: auto;
  text-align: center;
}

.history-section .eyebrow,
.eyebrow {
  margin-bottom: 12px;
  color: var(--color-brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.history-section p {
  color: var(--color-muted);
}

.story-image {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
}

.story-image img {
  width: 100%;
  max-height: 650px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.award-section {
  padding: clamp(65px, 8vw, 110px) 20px;
  background: #f4eee7;
}

.award-section__inner {
  display: grid;
  align-items: center;
  width: min(100%, var(--container));
  margin-inline: auto;
  gap: clamp(35px, 6vw, 90px);
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.award-section img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.award-section p {
  color: var(--color-muted);
}

.home-cta {
  padding: clamp(55px, 7vw, 90px) 0;
  color: var(--color-white);
  background: var(--color-brand-dark);
}

.home-cta h2,
.home-cta .eyebrow {
  color: var(--color-white);
}

.home-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.home-cta__inner p:last-child {
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  padding: clamp(90px, 13vw, 170px) 0;
  overflow: hidden;
  color: var(--color-white);
  background: linear-gradient(90deg, rgba(43, 22, 9, 0.9), rgba(43, 22, 9, 0.48)), url("../images/garlic.jpg") center 58% / cover;
}

.page-hero::after {
  position: absolute;
  right: 7vw;
  bottom: -30px;
  width: 220px;
  height: 172px;
  content: "";
  opacity: 0.3;
  background: url("../images/grain-decoration.png") center / contain no-repeat;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.page-hero .eyebrow {
  color: var(--color-white);
}

.page-hero p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 1.15rem;
}

.page-hero--compact {
  padding-block: 75px;
}

.contact-section,
.entry-content {
  padding-block: clamp(65px, 8vw, 110px);
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: clamp(35px, 7vw, 90px);
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
}

.contact-details h2 {
  margin-top: 1.2em;
  font-size: 1.65rem;
}

.contact-details h2:first-child {
  margin-top: 0;
}

.contact-details a {
  color: var(--color-brand-dark);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-form-card {
  padding: clamp(28px, 5vw, 55px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: block;
  margin-bottom: 7px;
  color: #4a433c;
  font-size: 0.92rem;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #d8cec3;
  border-radius: 10px;
  color: var(--color-ink);
  background: #fdfcfb;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-brand);
  outline: 3px solid rgba(138, 85, 43, 0.14);
}

.form-trap {
  position: absolute;
  left: -9999px;
}

.form-notice {
  padding: 12px 15px;
  border-radius: 10px;
  font-weight: 700;
}

.form-notice--success {
  color: #185b38;
  background: #e4f5eb;
}

.form-notice--error {
  color: #7e2525;
  background: #f9e4e4;
}

.entry-content {
  max-width: 850px;
}

.not-found {
  min-height: 60vh;
  padding-block: 120px;
  text-align: center;
}

.site-footer {
  color: var(--color-white);
  background: #1d1713;
}

.site-footer__overlay {
  background: linear-gradient(rgba(25, 14, 7, 0.75), rgba(25, 14, 7, 0.86)), url("../images/footer-bread.png") center / cover no-repeat;
}

.site-footer__grid {
  display: grid;
  padding-block: 70px;
  gap: clamp(30px, 5vw, 75px);
  grid-template-columns: repeat(3, 1fr);
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--color-gold);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer address,
.site-footer p,
.site-footer li {
  font-size: 0.94rem;
  font-style: normal;
}

.site-footer a {
  color: var(--color-white);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin-bottom: 7px;
}

.site-footer__bottom {
  padding: 18px 0;
  color: #b9afa8;
  background: #151210;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 8px 20px 24px;
    border-bottom: 1px solid var(--color-line);
    background: var(--color-white);
    box-shadow: 0 18px 35px rgba(45, 31, 20, 0.1);
  }

  .site-nav--open {
    display: block;
  }

  .site-nav__list {
    align-items: stretch;
    gap: 0;
    flex-direction: column;
  }

  .site-nav a {
    display: block;
    padding: 12px 0;
  }

  .site-nav a::after {
    display: none;
  }

  .award-section__inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .home-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header__inner {
    min-height: 76px;
  }

  .site-brand img {
    width: 84px;
    max-height: 64px;
  }

  .nav-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .hero {
    min-height: 620px;
    background-position: 58% center;
  }

  .hero::after,
  .history-section::before,
  .history-section::after {
    width: 120px;
    height: 95px;
  }

  .history-section {
    padding-inline: 14px;
  }

  .story-image {
    width: calc(100% - 28px);
  }

  .award-section {
    padding-inline: 14px;
  }

  .contact-form-card {
    padding: 24px 18px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
