/* =========================================================
   Emminger Hof – Onepager
   Keine externen Fonts, Tracker oder Bibliotheken.
   Zentrale Farben und Größen können hier angepasst werden.
   ========================================================= */

:root {
  --cream: #f7f1e6;
  --cream-deep: #eee2cf;
  --paper: #fffdf8;
  --green: #173d33;
  --green-2: #245447;
  --green-3: #d9e4dd;
  --wine: #823630;
  --gold: #b58a43;
  --ink: #202822;
  --muted: #667068;
  --line: rgba(23, 61, 51, 0.16);
  --white: #ffffff;
  --shadow-sm: 0 8px 28px rgba(23, 61, 51, 0.08);
  --shadow-md: 0 20px 60px rgba(23, 61, 51, 0.14);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --header-height: 82px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--green);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--white);
  background: var(--wine);
}

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

.section {
  padding: clamp(82px, 9vw, 136px) 0;
}

.section-tinted {
  background: var(--cream);
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: #e7c98f;
}

.lead {
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 22px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.contact-details a:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(181, 138, 67, 0.55);
  outline-offset: 4px;
}

.button-primary {
  color: var(--white);
  background: var(--wine);
  box-shadow: 0 10px 24px rgba(130, 54, 48, 0.24);
}

.button-primary:hover {
  background: #702d28;
  box-shadow: 0 14px 30px rgba(130, 54, 48, 0.30);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(15, 39, 33, 0.18);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(15, 39, 33, 0.38);
}

.button-light {
  color: var(--green);
  background: var(--cream);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.button-light:hover {
  background: var(--white);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.86rem;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--wine);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(130, 54, 48, 0.35);
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

/* Header */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(12, 34, 28, 0.75), rgba(12, 34, 28, 0.28));
  transition: height 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  height: 70px;
  color: var(--green);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 8px 30px rgba(23, 61, 51, 0.10);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 1.42rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  margin-top: 6px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.main-nav > a:not(.button) {
  position: relative;
  padding: 8px 0;
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a.is-active:not(.button)::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle .nav-line {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  min-height: min(920px, 100svh);
  overflow: hidden;
  align-items: center;
  color: var(--white);
  background: var(--green);
}

.hero-picture,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  overflow: hidden;
}

.hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 31, 25, 0.84) 0%, rgba(10, 31, 25, 0.62) 43%, rgba(10, 31, 25, 0.20) 76%, rgba(10, 31, 25, 0.08) 100%),
    linear-gradient(0deg, rgba(10, 31, 25, 0.48), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 110px;
}

.hero-eyebrow {
  color: #f0d69e;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 26px;
  color: var(--white);
  text-wrap: balance;
}

.hero h1 span {
  color: #f1d59c;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.5;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(11, 33, 27, 0.28);
  backdrop-filter: blur(8px);
}

.scroll-hint {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-hint svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Status */

.status-bar {
  position: relative;
  z-index: 5;
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.status-grid > div {
  display: flex;
  min-height: 128px;
  padding: 30px 38px;
  gap: 18px;
  align-items: center;
  border-right: 1px solid var(--line);
}

.status-grid > div:last-child {
  border-right: 0;
}

.status-icon {
  display: grid;
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--green);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 800;
}

.status-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.status-grid strong {
  color: var(--green);
  font-size: 1rem;
}

/* Intro */

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.section-copy p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.signature-block {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.signature-line {
  width: 56px;
  height: 1px;
  background: var(--gold);
}

.signature-block p {
  margin: 0;
  color: var(--green) !important;
  line-height: 1.4;
}

.signature-block small {
  color: var(--muted);
}

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

.feature-visual::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -24px;
  width: 62%;
  height: 62%;
  content: "";
  border: 1px solid rgba(181, 138, 67, 0.35);
  border-radius: var(--radius-lg);
}

.feature-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 54%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.feature-visual figcaption {
  position: absolute;
  right: -22px;
  bottom: -22px;
  display: flex;
  max-width: 300px;
  padding: 20px 24px;
  flex-direction: column;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--wine);
  box-shadow: var(--shadow-sm);
}

.feature-visual figcaption span {
  margin-bottom: 5px;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.feature-visual figcaption strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.25;
}

/* Cuisine and food gallery */

.cuisine-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(181, 138, 67, 0.11), transparent 29%),
    var(--paper);
}

.cuisine-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(46px, 7vw, 92px);
  align-items: start;
}

.cuisine-copy {
  position: sticky;
  top: 112px;
}

.cuisine-copy p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.cuisine-points {
  display: grid;
  gap: 0;
  margin: 30px 0 26px;
  border-top: 1px solid var(--line);
}

.cuisine-points span {
  position: relative;
  padding: 15px 0 15px 28px;
  color: var(--green);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 750;
}

.cuisine-points span::before {
  position: absolute;
  top: 21px;
  left: 2px;
  width: 9px;
  height: 9px;
  content: "";
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.gallery-note {
  padding-left: 15px;
  border-left: 3px solid rgba(181, 138, 67, 0.45);
  font-size: 0.76rem;
  line-height: 1.55;
}

.food-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 16px;
}

.food-tile {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-3);
  box-shadow: var(--shadow-sm);
}

.food-tile-featured {
  grid-row: span 2;
}

.food-tile-wide {
  grid-column: span 2;
}

.food-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.35s ease;
}

.food-tile-featured img {
  object-position: center 46%;
}

.food-tile:hover img {
  transform: scale(1.035);
  filter: saturate(1.03);
}

.food-tile figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 48px 20px 18px;
  flex-direction: column;
  color: var(--white);
  background: linear-gradient(transparent, rgba(8, 26, 21, 0.84));
  line-height: 1.3;
}

.food-tile figcaption strong {
  font-family: var(--serif);
  font-size: 1.08rem;
}

.food-tile figcaption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
}

/* Section heading */

.section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

/* Offer cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.offer-card {
  display: grid;
  min-height: 300px;
  overflow: hidden;
  grid-template-columns: 44% 56%;
  border: 1px solid rgba(23, 61, 51, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.offer-image {
  min-height: 100%;
  overflow: hidden;
  background: var(--green-3);
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-card:hover .offer-image img {
  transform: scale(1.035);
}

.offer-body {
  position: relative;
  display: flex;
  padding: 34px 30px;
  flex-direction: column;
  justify-content: center;
}

.card-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(23, 61, 51, 0.18);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 800;
}

.offer-body h3 {
  margin-bottom: 13px;
}

.offer-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

/* Celebration */

.celebration {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}

.celebration h2 {
  color: var(--white);
}

.celebration-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.35) 0 1px, transparent 1.5px),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,.28) 0 1px, transparent 1.5px);
  background-size: 34px 34px, 46px 46px;
}

.celebration-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.celebration-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255,255,255,.78);
  font-size: 1.07rem;
}

.fact-panel {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
}

.fact {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.fact:nth-child(2n) {
  border-right: 0;
}

.fact:nth-last-child(-n+2) {
  border-bottom: 0;
}

.fact strong {
  display: block;
  margin-bottom: 8px;
  color: #f0d49c;
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.1;
}

.fact span {
  color: rgba(255,255,255,.75);
  font-size: 0.88rem;
}

/* Values */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.values-grid article {
  padding: 36px 30px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.value-mark {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  place-items: center;
  color: var(--wine);
  border: 1px solid rgba(130, 54, 48, 0.22);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.values-grid h3 {
  margin-bottom: 12px;
}

.values-grid p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Project timeline */

.project-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 31px;
  bottom: 31px;
  left: 31px;
  width: 1px;
  content: "";
  background: rgba(23, 61, 51, 0.2);
}

.timeline li {
  position: relative;
  display: grid;
  min-height: 92px;
  padding: 14px 18px 14px 0;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: center;
}

.timeline li > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(23, 61, 51, 0.25);
  border-radius: 50%;
  background: var(--cream);
  font-family: var(--serif);
  font-weight: 800;
}

.timeline li.complete > span,
.timeline li.active > span {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.timeline li.active > span {
  box-shadow: 0 0 0 7px rgba(181, 138, 67, 0.18);
}

.timeline strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Jobs */

.jobs {
  color: var(--white);
  background: var(--wine);
}

.jobs-inner {
  display: flex;
  min-height: 250px;
  padding-block: 50px;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.jobs h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.jobs p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,255,255,.82);
}

/* Contact */

.contact {
  background:
    radial-gradient(circle at 12% 20%, rgba(181, 138, 67, 0.10), transparent 32%),
    var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  font-style: normal;
}

.contact-details a {
  display: flex;
  max-width: 430px;
  padding: 16px 0;
  gap: 16px;
  align-items: flex-start;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--green);
}

.contact-details strong {
  color: var(--green);
}

.contact-symbol {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--green);
  font-size: 1.05rem;
}

.privacy-note {
  max-width: 430px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-card {
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(23, 61, 51, 0.08);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading > span {
  color: var(--wine);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 7px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

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

.field {
  margin-bottom: 17px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(23, 61, 51, 0.22);
  border-radius: 10px;
  color: var(--ink);
  background: #fffefa;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  min-height: 50px;
  padding: 10px 13px;
}

.field textarea {
  min-height: 150px;
  padding: 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(181, 138, 67, 0.13);
}

.checkbox {
  display: grid;
  margin: 4px 0 22px;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--wine);
}

.checkbox a {
  color: var(--green);
  font-weight: 800;
}

.form-footnote {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.form-message {
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-message.success {
  color: #155b35;
  border: 1px solid #a9d8bc;
  background: #edf8f1;
}

.form-message.error {
  color: #7a2824;
  border: 1px solid #e3b3ae;
  background: #fff0ef;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.event-fields[hidden] {
  display: none;
}

/* Footer */

.site-footer {
  padding: 58px 0 28px;
  color: rgba(255,255,255,.75);
  background: #102d26;
}

.footer-main {
  display: grid;
  padding-bottom: 40px;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.footer-brand {
  display: flex;
  gap: 13px;
  align-items: center;
}

.footer-brand img {
  width: 54px;
  height: 54px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer-brand strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.footer-brand span {
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-main > p {
  margin: 0;
  color: #e7c98f;
  font-family: var(--serif);
  font-size: 1.05rem;
  text-align: center;
}

.footer-main nav {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-main nav a {
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
}

.footer-main nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  justify-content: space-between;
  font-size: 0.74rem;
}

.mobile-actions {
  display: none;
}

/* Legal and utility pages */

.utility-page {
  min-height: 100vh;
  background: var(--cream);
}

.utility-header {
  padding: 28px 0;
  color: var(--white);
  background: var(--green);
}

.utility-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-header .brand {
  color: var(--white);
}

.utility-header a.back-link {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.utility-main {
  padding: 72px 0 110px;
}

.legal-card {
  max-width: 900px;
  padding: clamp(30px, 6vw, 70px);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.legal-card h1 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.legal-card h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.legal-card h3 {
  margin-top: 26px;
  margin-bottom: 9px;
  font-size: 1.25rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-card a {
  color: var(--wine);
}

.draft-alert {
  padding: 18px 20px;
  margin: 25px 0 35px;
  color: #68302b;
  border: 1px solid #dfb0aa;
  border-radius: 10px;
  background: #fff0ef;
}

.placeholder {
  display: inline-block;
  padding: 1px 5px;
  color: #7d2c27;
  background: #ffe0dc;
  font-weight: 800;
}

.thank-you {
  display: grid;
  min-height: 100vh;
  padding: 40px;
  place-items: center;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(12, 42, 34, 0.84), rgba(12, 42, 34, 0.90)),
    url("../images/emminger-hof-header.jpg") center/cover;
}

.thank-you-card {
  max-width: 680px;
  padding: clamp(38px, 7vw, 72px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.09);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.thank-you-card h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.thank-you-card p {
  color: rgba(255,255,255,.82);
}


.utility-center-logo {
  margin: 0 auto 22px;
}

.eyebrow-centered {
  justify-content: center;
}

.button-row-centered {
  justify-content: center;
}

.food-tile img.is-fallback {
  object-fit: cover;
}

/* Reveal animations */

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}



/* Responsive */

@media (max-width: 1040px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.84rem;
  }

  .split-grid,
  .cuisine-grid,
  .celebration-grid,
  .project-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-grid {
    gap: 70px;
  }

  .feature-visual {
    max-width: 760px;
  }

  .cuisine-copy {
    position: static;
    max-width: 780px;
  }

  .food-gallery {
    max-width: 900px;
  }

  .celebration-copy {
    max-width: 760px;
  }

  .fact-panel {
    max-width: 700px;
  }

  .project-grid {
    gap: 55px;
  }

  .contact-copy {
    max-width: 720px;
  }

  .contact-grid {
    gap: 55px;
  }

  .form-card {
    max-width: 820px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-text strong {
    font-size: 1.25rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 1002;
    display: block;
  }

  .nav-open .nav-toggle .nav-line-1 {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle .nav-line-2 {
    opacity: 0;
  }

  .nav-open .nav-toggle .nav-line-3 {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    padding: 110px 30px 50px;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    color: var(--white);
    background: #102f27;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-open .main-nav {
    transform: translateX(0);
  }

  .main-nav > a:not(.button) {
    padding: 16px 8px;
    border-bottom: 1px solid rgba(255,255,255,.14);
    font-family: var(--serif);
    font-size: 1.6rem;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .nav-cta {
    margin-top: 20px;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .status-grid > div {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .status-grid > div:last-child {
    border-bottom: 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: 280px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .values-grid article {
    max-width: 620px;
    margin-inline: auto;
  }

  .jobs-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-main nav {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 58px;
    font-size: 16px;
  }

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

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: 820px;
  }

  .hero-art {
    object-position: center 56%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 31, 25, 0.88), rgba(10, 31, 25, 0.50)),
      linear-gradient(0deg, rgba(10, 31, 25, 0.55), transparent 55%);
  }

  .hero-content {
    padding-top: 160px;
    padding-bottom: 100px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .hero-lead {
    font-size: 1.18rem;
  }

  .hero .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero .button {
    width: 100%;
  }

  .scroll-hint {
    bottom: 22px;
  }

  .status-grid > div {
    padding: 20px 4px;
  }

  .feature-visual::before {
    display: none;
  }

  .feature-visual figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -16px 14px 0;
  }

  .food-gallery {
    grid-auto-rows: 190px;
    gap: 10px;
  }

  .food-tile-featured {
    grid-row: span 2;
  }

  .food-tile figcaption {
    padding: 38px 13px 12px;
  }

  .food-tile figcaption strong {
    font-size: 0.92rem;
  }

  .food-tile figcaption span {
    display: none;
  }

  .offer-card {
    display: block;
  }

  .offer-image {
    height: 220px;
  }

  .offer-body {
    padding: 30px 24px 32px;
  }

  .fact-panel {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16) !important;
  }

  .fact:last-child {
    border-bottom: 0 !important;
  }

  .project-grid {
    gap: 42px;
  }

  .timeline li {
    grid-template-columns: 54px 1fr;
    gap: 16px;
  }

  .timeline::before {
    left: 26px;
  }

  .timeline li > span {
    width: 52px;
    height: 52px;
  }

  .jobs-inner {
    min-height: 0;
    padding-block: 58px;
    gap: 25px;
  }

  .jobs .button {
    width: 100%;
  }

  .contact-grid {
    gap: 42px;
  }

  .form-card {
    padding: 28px 20px;
    border-radius: var(--radius);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main nav {
    flex-wrap: wrap;
  }

  .footer-bottom {
    gap: 8px;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .mobile-actions {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 58px;
    grid-template-columns: repeat(2, 1fr);
    color: var(--white);
    background: var(--green);
    box-shadow: 0 -8px 25px rgba(0,0,0,.16);
  }

  .mobile-actions a {
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,.16);
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-actions a:last-child {
    border-right: 0;
    background: var(--wine);
  }

  .legal-card {
    padding: 28px 20px;
  }
}



@media (max-width: 460px) {
  .food-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 235px;
  }

  .food-tile-featured,
  .food-tile-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .food-tile figcaption span {
    display: block;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-actions,
  .scroll-hint,
  .button {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .utility-main {
    padding: 30px 0;
  }
}

/* Domain update and mobile hardening - 5 August 2026 */
html,
body {
  overflow-x: hidden;
  overflow-x: clip;
}

h1,
h2,
h3,
.legal-card a,
.legal-card address {
  overflow-wrap: anywhere;
}

@media (max-width: 860px) {
  .feature-visual figcaption {
    right: 0;
  }
}

@media (max-width: 640px) {
  .text-link,
  .footer-main nav a {
    min-height: 44px;
    align-items: center;
  }

  .footer-main nav a {
    display: inline-flex;
  }
}

@media (max-width: 460px) {
  .legal-card h2 {
    font-size: clamp(1.35rem, 6.8vw, 1.55rem);
  }
}
