:root {
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --color-paper: #f5f1eb;
  --color-ink: #1f1f1f;
  --color-gold: #b5964a;
  --color-warm: #403f3c;
  --color-panel: #2b2c2f;
  --color-panel-light: #35363b;
  --color-panel-soft: #44454c;
  --color-border: rgba(255, 255, 255, 0.08);
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: #f6f2ea;
  color: #2b2318;
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

.global-bg {
  position: fixed;
  inset: 0;
  background-image: url('/assets/images/hero-meat.jpg');
  background-size: cover;
  background-position: center top;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
}

.topline {
  background: rgb(101, 101, 101);
  color: rgb(174, 154, 100);
  font-size: 0.85rem;
  text-align: center;
  padding: 0;
  font-style: italic;
  line-height: 1.4;
}

.topline a {
  color: inherit;
  text-decoration: none;
}

.topline p {
  margin: 0;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1rem, 5vw, 4rem);
  background: #fff;
  color: var(--color-ink);
  border-bottom: 1px solid #e5dfd5;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.brand a {
  text-decoration: none;
  color: inherit;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: block;
  height: 60px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 130;
}

.nav-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-ink);
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

.main-nav .nav-item {
  position: relative;
}

.main-nav .sub-nav {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(50, 50, 50, 0.92);
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  min-width: 140px;
  text-transform: uppercase;
  z-index: 200;
}

.main-nav .sub-nav a {
  color: #f0ede6;
  border: none;
  padding: 0;
  letter-spacing: 0.2em;
}

.main-nav .has-children:hover .sub-nav,
.main-nav .has-children:focus-within .sub-nav {
  display: flex;
}

.main-nav .sub-nav a[aria-current="page"] {
  color: var(--color-gold);
}

.main-nav a[aria-current="page"] {
  border-color: var(--color-ink);
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 120;
  }

  .section.dark {
    background-attachment: scroll;
    background-size: contain;
    background-position: center center;
    min-height: 450px;
    padding: 4rem 1.5rem;
    margin: 6rem 0;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 1.5rem 2rem;
    gap: 1.5rem;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 120;
  }

  .main-nav .nav-item {
    width: 100%;
  }

  .main-nav .sub-nav {
    position: static;
    display: flex !important;
    background: transparent;
    padding: 0.5rem 0 0 0;
    box-shadow: none;
    gap: 0.35rem;
  }

  .main-nav .sub-nav a {
    color: var(--color-ink);
  }

  .nav-open .main-nav {
    display: flex;
  }

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

  .nav-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }

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

.hero {
  background: transparent;
  color: var(--color-ink);
  padding: clamp(8rem, 18vw, 14rem) clamp(1.5rem, 6vw, 4rem) clamp(3rem, 10vw, 6rem);
  text-align: left;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.hero-panel {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.85);
  padding: clamp(0rem, 0vw, 0.6rem) clamp(1.1rem, 2vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  color: #2f2418;
  text-align: left;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.9rem;
  color: #ae9a64;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
  color: #ae9a64;
}

.highlight-heading {
  display: inline;
  background: rgba(255, 255, 255, 0.65);
  padding: 0.18em 0.5em 0.1em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  text-shadow: 0 6px 18px rgba(255, 255, 255, 0.45);
  color: #ae9a64;
}

.highlight-heading--caps {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.section h2,
.section h3,
main h2,
main h3 {
  font-family: 'Montserrat', 'Work Sans', sans-serif;
  font-weight: 600;
  color: #ae9a64;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-heading .highlight-heading,
.floating-panel h2.highlight-heading,
.floating-panel h3.highlight-heading {
  font-family: 'Montserrat', 'Work Sans', sans-serif;
  font-weight: 700;
}

.section h2.highlight-heading,
.section h3.highlight-heading,
.section-heading .highlight-heading,
.floating-panel h2.highlight-heading,
.floating-panel h3.highlight-heading {
  font-family: 'Montserrat', 'Work Sans', sans-serif;
  font-weight: 700;
}

.hero-lead {
  font-size: 1.1rem;
  color: #4b3f32;
}

.page-content {
  background: transparent;
  color: var(--color-ink);
}

.section {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(242, 239, 233, 0.95);
}

.section.dark {
  background-color: #fff;
  background-image: url('/assets/images/kuh-bg.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 500px;
  padding-top: 6rem;
  padding-bottom: 6rem;
  margin: 11.25rem 0;
  text-align: center;
  color: #111;
  border: none;
}

.section.dark p:not(.quote-heading),
.section.dark li,
.section.dark .quote {
  color: #111;
  font-weight: 600;
}

.section.darker {
  background: #151515;
  color: #f5f1eb;
}

.section h2 {
  font-family: 'Montserrat', 'Work Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-top: 0;
  color: var(--color-warm);
}

.section.dark h2,
.section.darker h2 {
  color: #ae9a64;
}

.section h3 {
  font-family: 'Montserrat', 'Work Sans', sans-serif;
  font-weight: 600;
  margin-top: 2rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-warm);
}

.section.dark h3,
.section.darker h3 {
  color: #ae9a64;
}

.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 1.5rem;
  border-radius: 8px;
  background: #fff;
  color: var(--color-ink);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 35px rgba(15, 15, 15, 0.1);
}

.card.dark {
  background: var(--color-panel);
  color: #eee;
  border: 1px solid var(--color-border);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-card {
  position: relative;
  min-height: 320px;
  border-radius: 0;
  overflow: hidden;
  background: #222;
  display: block;
  color: #fff;
  text-decoration: none;
  border: none;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
  transition: transform 0.35s ease;
  z-index: 0;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.45) 75%);
  z-index: 1;
}

.service-card span {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fef9ee;
  text-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.service-card:hover::before {
  transform: scale(1.05);
}

.card img {
  border-radius: 8px;
  margin-bottom: 1rem;
}

.btn,
.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid transparent;
  margin-top: 1rem;
}

.btn-primary {
  background: var(--color-gold);
  color: #1a1205;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}

.quote-heading {
  font-family: 'Montserrat', 'Work Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #ae9a64;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.section-motto {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.section-motto .quote {
  font-family: var(--font-body);
  color: #111;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 780px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-row .feature-card {
  background: #a2a2a22e;
  color: #2b2b2b;
  padding: 2rem;
  border-radius: 0;
  border: 1px solid var(--color-border);
}

.feature-card strong {
  display: block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery figure {
  background: var(--color-panel-light);
  padding: 1rem;
  border-radius: 10px;
  color: #eee;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.timeline div {
  background: var(--color-panel-light);
  padding: 1rem;
  border-radius: 8px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.team-card h4 {
  margin-bottom: 0.3rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  padding-top: 10px;
  padding-bottom: 10px;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-family: inherit;
}

textarea {
  min-height: 140px;
}

.section-overlay input,
.section-overlay textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.section-overlay label {
  color: #f7f0de;
}

.section-plain {
  background: transparent;
  border: none;
}

.floating-panel {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0;
  padding: clamp(0rem, 0vw, 0.6rem) clamp(1.1rem, 2vw, 1.6rem);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  margin: 0 auto 2.5rem;
  color: #2f2418;
  width: min(760px, 100%);
}

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto 1rem;
  text-align: center;
}

.floating-panel h2,
.floating-panel h3 {
  color: #3f331f;
}

.floating-panel h2.highlight-heading,
.floating-panel h3.highlight-heading,
.section-heading .highlight-heading {
  color: #ae9a64;
}

.floating-panel p {
  color: #4b3f32;
}

.floating-panel label {
  color: #4a3c29;
}

.floating-panel input,
.floating-panel textarea {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(73, 53, 32, 0.2);
  color: #2d2418;
}

.floating-panel .btn-primary {
  box-shadow: 0 12px 25px rgba(174, 154, 100, 0.35);
}

.site-footer {
  background: rgb(50, 50, 50);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem clamp(1rem, 6vw, 4rem);
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(3rem, 14vw, 10rem);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.footer-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 700;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


.partner-logos {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  background: #fff;
  border-radius: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.partner-logos img {
  height: 80px;
  width: auto;
  filter: grayscale(1) brightness(1.15);
  opacity: 0.85;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.partner-logos img:hover {
  opacity: 1;
  filter: grayscale(0.2) brightness(1.1);
}

.footer-meta {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

@media (max-width: 700px) {
  .main-nav {
    justify-content: center;
  }

  .site-header {
    justify-content: center;
    gap: 1rem;
  }
}
.section-overlay {
  background: rgba(5, 5, 5, 0.65);
  color: #fbf7eb;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.section-overlay h2,
.section-overlay h3 {
  color: #f2e3bb;
}

.section-overlay p {
  color: rgba(255, 255, 255, 0.9);
}
