/* =========================================================================
   PLATINUM CATERING — STYLESHEET (full redesign)
   Brand colors:
     --ink: #2A2E32     (primary text / dark elements)
     --lime: #8FB638    (accent)
     --bg: #FFFFFF      (main background)
     --bg-soft: #F7F8F4 (subtle section background)
   Typography: Archivo (display, bold grotesque, sharp and professional)
               + Inter (body, workhorse sans)
   ========================================================================= */

:root {
  --ink: #2A2E32;
  --lime: #8FB638;
  --lime-deep: #6f8f28;
  --bg: #FFFFFF;
  --bg-soft: #F7F8F4;
  --border: rgba(42, 46, 50, 0.12);
  --border-strong: rgba(42, 46, 50, 0.22);
  --ink-80: rgba(42, 46, 50, 0.8);
  --ink-65: rgba(42, 46, 50, 0.65);
  --ink-45: rgba(42, 46, 50, 0.45);
  --header-height: 92px;
  --max-width: 1360px;
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------------------------------------------------------------
   Reset
------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font-family: inherit; background: none; border: none; }
mark { background: none; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------------------------------------------------------------
   Focus states
------------------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 1px;
}

/* -------------------------------------------------------------------------
   Layout helpers
------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
section { position: relative; }
.section-pad { padding: 148px 0; }
@media (max-width: 900px) {
  .section-pad { padding: 100px 0; }
}
@media (max-width: 560px) {
  .section-pad { padding: 78px 0; }
}

[id] { scroll-margin-top: calc(var(--header-height) + 16px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--lime);
  display: inline-block;
  border-radius: 2px;
}
.eyebrow--light { color: var(--lime); }

.section-head { max-width: 780px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.section-lede {
  margin-top: 24px;
  font-size: 1.12rem;
  color: var(--ink-65);
  max-width: 640px;
  line-height: 1.7;
}
.section-head--center .section-lede { margin-left: auto; margin-right: auto; }

.accent { color: var(--lime); }
mark.accent-mark {
  position: relative;
  font-style: italic;
  font-weight: 800;
  color: var(--lime-deep);
  white-space: nowrap;
  padding: 0 0.06em;
}

/* -------------------------------------------------------------------------
   Scroll reveal
------------------------------------------------------------------------- */
/* Visible by default (progressive enhancement / no-JS / no-scroll safe).
   JS only adds ".reveal-armed" right before observing, so real users and
   any non-interactive render (crawlers, screenshots, slow JS) always see
   full content. */
[data-reveal].reveal-armed {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].reveal-armed.is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* -------------------------------------------------------------------------
   Buttons & links
------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  min-height: 44px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background-color 0.3s var(--ease-soft), color 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
  white-space: nowrap;
}
.btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 0 rgba(143,182,56,0);
}
.btn-primary:hover { background: var(--lime-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(111,143,40,0.55); }
.btn-lg { padding: 18px 38px; font-size: 0.98rem; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
  transform-origin: left;
  transition: opacity 0.3s var(--ease-soft);
}
.link-arrow:hover::after { opacity: 1; background: var(--lime); }
.link-arrow .arrow { display: inline-block; transition: transform 0.35s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(5px); }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease-soft), background-color 0.4s var(--ease-soft);
}
#site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.96);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 32px;
}
.nav-bar__logo { display: flex; align-items: center; gap: 10px; }
.nav-bar__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.nav-bar__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-bar__links a {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  position: relative;
  padding: 10px 2px;
}
.nav-bar__links a span { position: relative; }
.nav-bar__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-bar__links a:hover::after { transform: scaleX(1); }
.nav-bar__cta { display: flex; align-items: center; gap: 22px; }
.nav-bar__cta .btn { padding: 12px 24px; font-size: 0.82rem; }

.nav-toggle {
  display: none;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: transform 0.3s var(--ease-soft), opacity 0.3s var(--ease-soft);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(42, 46, 50, 0.5);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-soft);
}
body.nav-open .nav-scrim { opacity: 1; pointer-events: auto; }

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 86vw);
  background: var(--ink);
  color: #fff;
  z-index: 101;
  padding: 108px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
body.nav-open .nav-drawer { transform: translateX(0); }
.nav-drawer a {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  display: block;
  padding: 6px 0;
  color: #fff;
}
.nav-drawer .btn { margin-top: 16px; width: 100%; }
.nav-drawer-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 100px;
}

@media (max-width: 900px) {
  .nav-bar__links { display: none; }
  .nav-bar__cta .btn { display: none; }
  .nav-toggle { display: flex; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: clamp(640px, 100vh, 960px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  padding: 132px 32px 64px;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,15,16,0.7) 0%, rgba(14,15,16,0.52) 38%, rgba(14,15,16,0.93) 100%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 90% at 50% 20%, rgba(0,0,0,0.08) 0%, rgba(8,9,10,0.4) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 0;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 36px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 9px 18px 9px 14px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(143,182,56,0.25);
}
.hero__headline {
  font-family: var(--display);
  max-width: 1240px;
  width: 100%;
  text-align: center;
}
.hero__line {
  display: block;
  text-align: center;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.hero__line--light { font-weight: 300; font-style: italic; color: rgba(255,255,255,0.86); }
.hero__line--bold { font-weight: 800; }
.hero__mark {
  display: block;
  color: var(--lime);
  margin-left: 0;
  margin-top: 0.08em;
}
.hero__sub {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 36px auto 0;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero__actions .link-arrow { color: #fff; }

.hero__scroll-cue {
  position: absolute;
  left: 32px;
  bottom: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero__scroll-cue .line {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
.hero__scroll-cue .line::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 40%;
  background: var(--lime);
  animation: scrollCue 2.4s var(--ease-soft) infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(280%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-cue .line::after { animation: none; }
}

@media (max-width: 720px) {
  .hero { min-height: auto; padding: 112px 20px 48px; }
  .hero__scroll-cue { display: none; }
}

/* =========================================================================
   BRAND TICKER
   ========================================================================= */
.ticker {
  background: var(--ink);
  overflow: hidden;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}
.ticker__set {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}
.ticker__track span {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
}
.ticker__sep { color: var(--lime); font-size: 0.9rem; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* =========================================================================
   OUR STORY
   ========================================================================= */
.story { background: var(--bg); }
.story__top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 88px;
  align-items: start;
}
.story__heading {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-top: 4px;
}
.story__copy {
  margin-top: 32px;
}
.story__copy p {
  color: var(--ink-65);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.story__copy p:last-child { margin-bottom: 0; }

.story__figure {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
  border-radius: 22px;
}
.story__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-soft);
}
.story__figure:hover img { transform: scale(1.045); }
.story__figure-caption {
  position: absolute;
  left: 0; bottom: 0;
  padding: 26px 28px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, rgba(42,46,50,0) 0%, rgba(20,22,24,0.78) 100%);
  width: 100%;
}

@media (max-width: 900px) {
  .story__top { grid-template-columns: 1fr; gap: 48px; }
  .story__figure { order: -1; aspect-ratio: 16/10; }
}

/* Press marquee — fills full width, one line on desktop */
.press {
  margin-top: 120px;
}
.press__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-45);
  text-align: center;
  margin-bottom: 40px;
}
.press__marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.press-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: clamp(12px, 3vw, 40px);
  width: 100%;
}
.press-row__item {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: var(--ink-45);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.3s var(--ease-soft);
  flex: 1 1 0;
  text-align: center;
}
.press-row__item:hover { color: var(--ink); }

@media (max-width: 860px) {
  .press-row {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 24px;
  }
  .press-row__item {
    flex: 0 1 auto;
    font-size: 1.2rem;
    padding: 0 16px;
  }
}

/* Capabilities — bold modern card grid */
.capabilities {
  margin-top: 120px;
}
.capabilities__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.capabilities__head .eyebrow { justify-content: center; }
.capabilities__head h3 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.capability-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.capability {
  padding: 38px 30px;
  border-radius: 20px;
  background: var(--bg-soft);
  transition: background-color 0.35s var(--ease-soft), transform 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft);
  position: relative;
}
.capability:hover {
  background: var(--ink);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(42,46,50,0.35);
}
.capability:hover h4,
.capability:hover p { color: #fff; }
.capability:hover p { color: rgba(255,255,255,0.7); }
.capability:hover .capability__num { color: var(--lime); }
.capability__num {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--lime-deep);
  letter-spacing: 0.05em;
  font-family: var(--sans);
  margin-bottom: 26px;
}
.capability h4 {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  transition: color 0.35s var(--ease-soft);
}
.capability p {
  font-size: 0.93rem;
  color: var(--ink-65);
  line-height: 1.6;
  transition: color 0.35s var(--ease-soft);
}

@media (max-width: 900px) {
  .capability-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .capability-list { grid-template-columns: 1fr; }
}

/* =========================================================================
   BRANDS
   ========================================================================= */
.brands { background: var(--bg-soft); }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.brand-card {
  background: var(--bg);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft);
  box-shadow: 0 1px 0 var(--border);
}
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -30px rgba(42,46,50,0.3);
}
.brand-card__body {
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.brand-card__name {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
}
.brand-card__desc {
  font-size: 0.94rem;
  color: var(--ink-65);
  flex: 1;
  line-height: 1.65;
}
.brand-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: auto;
  padding-top: 8px;
  align-self: flex-start;
  position: relative;
  color: var(--lime-deep);
}
.brand-card__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%;
  height: 1px;
  background: var(--lime-deep);
  opacity: 0.4;
  transition: opacity 0.3s var(--ease-soft);
}
.brand-card__link:hover::after { opacity: 1; }
.brand-card__arrow { transition: transform 0.35s var(--ease); display: inline-block; }
.brand-card__link:hover .brand-card__arrow { transform: translateX(5px); }

@media (max-width: 980px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .brand-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   GALLERY
   ========================================================================= */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.gallery-item {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
  border-radius: 20px;
}
.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-soft);
}
.gallery-item:hover .gallery-item__img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  pointer-events: none;
}

@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.contact__grain {
  opacity: 0.35;
}
.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 72px;
  align-items: start;
}
.contact__info h2 {
  font-family: var(--display);
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
}
.contact__info .section-lede { margin-top: 24px; color: rgba(255,255,255,0.68); }
.contact__meta {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__meta-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 6px;
}
.contact__meta a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}
.contact__meta a:hover { color: var(--lime); }

form#inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 26px;
  background: #fff;
  color: var(--ink);
  border-radius: 26px;
  padding: 48px;
  position: relative;
  z-index: 1;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.5);
}
.field { display: flex; flex-direction: column; gap: 10px; position: relative; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-80);
}
.field .req { color: var(--lime-deep); margin-left: 3px; }
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 0.96rem;
  padding: 13px 16px;
  min-height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color 0.25s var(--ease-soft), background-color 0.25s var(--ease-soft);
  appearance: none;
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 14px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--lime);
  background: #fff;
  outline: none;
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b5482f;
}
.field-error {
  font-size: 0.78rem;
  color: #b5482f;
  min-height: 1em;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
}
.form-status {
  grid-column: 1 / -1;
  font-size: 0.95rem;
  padding: 20px 22px;
  border-radius: 14px;
}
.form-status:empty { display: none; }
.form-status--success {
  background: rgba(143, 182, 56, 0.12);
  border-left: 3px solid var(--lime);
  color: var(--ink);
}
.form-status--error {
  background: rgba(181, 72, 47, 0.06);
  border-left: 3px solid rgba(181, 72, 47, 0.5);
  color: var(--ink);
}

@media (max-width: 980px) {
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  form#inquiry-form { grid-template-columns: 1fr; padding: 30px; border-radius: 20px; }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.9);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand__name {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 12px;
  transition: color 0.25s var(--ease-soft);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .footer__top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
}

/* -------------------------------------------------------------------------
   Utility
------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
