/* =========================================================
   WAY2AGRIBUSINESS — GLOBAL LAYOUT
   Header + Footer + Typography

   Clean production version — mobile responsive
   ========================================================= */


/* =========================================================
   GLOBAL DESIGN TOKENS
   ========================================================= */

:root {

  /* BRAND */
  --primary: #1A5C28;
  --primary-dark: #103B1A;
  --primary-light: #2F7440;

  /* AGRICULTURAL NEUTRALS */
  --background: #F4F1E8;
  --surface: #E8E9DD;
  --surface-soft: #EEF0E7;
  --surface-green: #DDE8D8;
  --surface-green-strong: #C3D6BC;

  /* TEXT */
  --foreground: #17251A;
  --muted: #5E685F;

  /* STRUCTURE */
  --border: #CDD3C8;

  /* ACCENT */
  --gold: #C89418;
  --gold-soft: #E7D39A;

  /* DARK */
  --dark: #142A18;
  --footer-bg: #0A1F0D;

  /* WHITE */
  --white: #FFFFFF;

  /* TYPOGRAPHY */
  --font-heading:
    'IBM Plex Sans',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;

  --font-body:
    'IBM Plex Sans',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;

  /* WEIGHTS */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* FONT SIZES */
  --text-hero: clamp(2.75rem, 4.8vw, 4.5rem);

  --text-h1: clamp(2.5rem, 4.2vw, 4rem);
  --text-h2: clamp(2rem, 3.2vw, 3rem);
  --text-h3: clamp(1.5rem, 2.2vw, 2rem);
  --text-h4: 1.375rem;
  --text-h5: 1.125rem;
  --text-h6: 1rem;

  --text-lead: 1.25rem;
  --text-body-lg: 1.125rem;
  --text-body: 1rem;
  --text-body-sm: 0.9375rem;

  --text-nav: 0.9375rem;
  --text-button: 0.9375rem;
  --text-label: 0.8125rem;
  --text-caption: 0.8125rem;

  /* LINE HEIGHTS */
  --leading-tight: 1.1;
  --leading-heading: 1.2;
  --leading-body: 1.6;
  --leading-relaxed: 1.75;

  /* LAYOUT */
  --header-h: 74px;
  --header-h-mobile: 64px;
}


/* =========================================================
   RESET / BASE
   ========================================================= */

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

html {
  margin: 0;
  padding: 0;

  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;

  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  line-height: var(--leading-body);

  color: var(--foreground);
  background: var(--background);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  overflow-x: hidden;
}

/* Locks page scroll while the mobile menu is open (toggled via JS) */
body.mobile-menu-open {
  overflow: hidden;
}

a {
  font-family: inherit;
  text-decoration: none;
}

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

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


/* =========================================================
   GLOBAL HEADINGS
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;

  font-family: var(--font-heading);
  color: var(--foreground);
}

h1 {
  font-size: var(--text-h1);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-tight);
}

h2 {
  font-size: var(--text-h2);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-heading);
}

h3 {
  font-size: var(--text-h3);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-heading);
}

h4 {
  font-size: var(--text-h4);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-heading);
}

h5 {
  font-size: var(--text-h5);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-heading);
}

h6 {
  font-size: var(--text-h6);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-heading);
}

p {
  margin-top: 0;

  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  line-height: var(--leading-body);
}


/* =========================================================
   TYPOGRAPHY UTILITIES
   ========================================================= */

.text-lead {
  font-size: var(--text-lead);
  font-weight: var(--weight-medium);
  line-height: var(--leading-relaxed);
}

.text-large {
  font-size: var(--text-body-lg);
}

.text-small {
  font-size: var(--text-body-sm);
}

.text-label {
  font-size: var(--text-label);
  font-weight: var(--weight-semibold);
  line-height: 1.4;
}

.text-caption {
  font-size: var(--text-caption);
  line-height: 1.4;
}


/* =========================================================
   SITE SHELL
   ========================================================= */

.site-shell {
  display: flex;
  flex-direction: column;

  min-height: 100vh;
  min-height: 100dvh;
}

.main-content {
  flex: 1 0 auto;

  padding-top: 0;
  margin-top: 0;

  /* prevents any wide child (table, image, embed) from forcing horizontal scroll on mobile */
  max-width: 100vw;
  overflow-x: hidden;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(244, 241, 232, 0.88);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: 100%;
  max-width: 1320px;

  margin: 0 auto;
  padding: 14px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  min-height: var(--header-h);
}


/* =========================================================
   LOGO
   ========================================================= */

.site-logo {
  display: inline-flex;
  align-items: center;

  flex-shrink: 0;

  text-decoration: none;

  position: relative;
  z-index: 1002;
}

.site-logo__image {
  display: block;

  width: auto;
  height: 46px;

  transition: transform 0.25s ease;
}

.site-logo:hover .site-logo__image {
  transform: scale(1.03);
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.desktop-nav {
  display: flex;
  align-items: center;

  gap: 4px;
}

.desktop-nav a {
  position: relative;

  display: inline-block;

  padding: 10px 20px;

  color: var(--foreground);

  font-size: var(--text-nav);
  font-weight: var(--weight-medium);
  line-height: 1.4;

  letter-spacing: 0.01em;
  white-space: nowrap;

  transition: color 0.2s ease;
}

.desktop-nav a::after {
  display: none !important;
}

.desktop-nav a:hover {
  color: var(--primary-dark);
}

.desktop-nav a.is-active {
  color: var(--primary);
  font-weight: var(--weight-semibold);
}


/* =========================================================
   HEADER CONTACT CTA
   ========================================================= */

.desktop-nav a.nav-contact {
  margin-left: 10px;
  padding: 10px 24px;

  background: var(--primary);
  color: var(--white);

  border-radius: 0px;

  font-size: var(--text-button);
  font-weight: var(--weight-semibold);

  box-shadow:
    0 4px 14px rgba(26, 92, 40, 0.22);

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.desktop-nav a.nav-contact::after {
  display: none !important;
}

.desktop-nav a.nav-contact:hover {
  background: var(--primary-dark);
  color: var(--white);

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(16, 59, 26, 0.3);
}


/* =========================================================
   MOBILE MENU TOGGLE (hamburger)
   44x44 minimum touch target
   ========================================================= */

.menu-toggle {
  display: none;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;

  width: 44px;
  height: 44px;

  padding: 0;
  margin: 0;

  border: none;
  border-radius: 8px;

  background: transparent;

  cursor: pointer;

  position: relative;
  z-index: 1002;

  -webkit-tap-highlight-color: transparent;

  transition: background 0.2s ease;
}

.menu-toggle:hover {
  background: var(--surface-green);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.menu-toggle span {
  display: block;

  width: 22px;
  height: 2px;

  background: var(--primary-dark);

  border-radius: 2px;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE MENU OVERLAY (dims page behind the panel)
   ========================================================= */

.mobile-menu-overlay {
  display: none;

  position: fixed;
  inset: 0;

  z-index: 998;

  background: rgba(10, 31, 13, 0.42);

  opacity: 0;

  transition: opacity 0.3s ease;

  pointer-events: none;
}

.mobile-menu-overlay.is-open {
  display: block;

 

  pointer-events: auto;
}


/* =========================================================
   MOBILE NAVIGATION PANEL

   Slides down from under the sticky header, scrolls
   internally if the link list is taller than the viewport.
   ========================================================= */

.mobile-menu {
  position: fixed;
  top: var(--header-h-mobile);
  left: 0;
  right: 0;

  z-index: 999;

  max-height: 0;

  overflow: hidden;
  overflow-y: auto;

  -webkit-overflow-scrolling: touch;

  background: var(--background);

  border-bottom: 1px solid var(--border);

  box-shadow: 0 16px 32px rgba(10, 31, 13, 0.16);

  transition: max-height 0.35s ease;
}

.mobile-menu.is-open {
  max-height: calc(100vh - var(--header-h-mobile));
  max-height: calc(100dvh - var(--header-h-mobile));
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;

  padding: 8px 24px 24px;
}

.mobile-menu a {
  display: flex;
  align-items: center;

  min-height: 48px;
  padding: 13px 4px;

  color: var(--foreground);

  border-bottom: 1px solid var(--border);

  font-size: var(--text-body);
  font-weight: var(--weight-medium);
  line-height: 1.4;

  -webkit-tap-highlight-color: transparent;
}

.mobile-menu a::after {
  display: none !important;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--primary);
}

.mobile-menu a.is-active {
  color: var(--primary);
  font-weight: var(--weight-semibold);
}

/* Contact CTA repeated inside the mobile panel, styled like the desktop pill */
.mobile-menu a.nav-contact {
  justify-content: center;

  margin-top: 12px;

  padding: 13px 20px;

  background: var(--primary);
  color: var(--white);

  border: none;
  border-radius: 999px;

  font-weight: var(--weight-semibold);
}

.mobile-menu a.nav-contact:hover {
  background: var(--primary-dark);
  color: var(--white);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  position: relative;

  flex-shrink: 0;

  background: var(--footer-bg);
  color: var(--white);
}


/* =========================================================
   FOOTER TOP ACCENT
   ========================================================= */

.site-footer::before {
  content: '';

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 3px;

  background: var(--primary);
}


/* =========================================================
   FOOTER CONTAINER
   ========================================================= */

.footer-inner {
  width: 100%;
  max-width: 1320px;

  margin: 0 auto;

  padding:
    56px
    32px
    26px;
}


/* =========================================================
   FOOTER GRID

   Brand
   Services
   Company
   Contact
   Office
   ========================================================= */

.footer-grid {
  display: grid;

  grid-template-columns:
    1.35fr
    1.05fr
    1fr
    1.45fr
    1.2fr;

  column-gap: 42px;

  align-items: start;
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.footer-brand-column {
  min-width: 0;

  margin: 0;
  padding: 0;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;

  margin: 0 0 18px;

  color: var(--white);

  text-decoration: none;
}

.footer-brand-name {
  color: var(--white);

  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: var(--weight-bold);
  line-height: 1.15;

  letter-spacing: 0.06em;

  white-space: nowrap;
}

.footer-brand-rule {
  display: none;
}

.footer-brand-subtitle {
  margin-top: 4px;

  color: rgba(255, 255, 255, 0.52);

  font-size: 11px;
  font-weight: var(--weight-semibold);
  line-height: 1.4;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.footer-description {
  max-width: 290px;

  margin: 0;

  color: rgba(255, 255, 255, 0.62);

  font-size: 13px;
  font-weight: var(--weight-regular);
  line-height: 1.7;
}


/* =========================================================
   SOCIAL LINKS
   ========================================================= */

.social-row {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 17px;
}

.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  padding: 0;

  border: none !important;

  background: transparent !important;

  color: rgba(255, 255, 255, 0.62);

  font-size: 15px;
  line-height: 1;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.social-row a::before,
.social-row a::after {
  display: none !important;

  content: none !important;
}

.social-row a:hover {
  color: var(--gold);

  background: transparent !important;

  transform: translateY(-2px);
}


/* =========================================================
   SOCIAL BRAND COLORS
   ========================================================= */

.social-row a[href*="linkedin"] {
  color: #0A66C2;
}

.social-row a[href*="instagram"] {
  color: #E4405F;
}

.social-row a[href*="facebook"] {
  color: #1877F2;
}

.social-row a[href*="youtube"] {
  color: #FF0000;
}


/* =========================================================
   FOOTER COLUMN HEADINGS
   ========================================================= */

.footer-column h3,
.footer-office-column h3,
.footer-location-column h3 {
  margin: 0 0 16px;
  padding: 0;

  color: var(--white);

  font-family: var(--font-heading);

  font-size: 14px;
  font-weight: var(--weight-bold);

  line-height: 1.3;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.footer-column h3::before,
.footer-column h3::after,
.footer-office-column h3::before,
.footer-office-column h3::after,
.footer-location-column h3::before,
.footer-location-column h3::after {
  display: none !important;

  content: none !important;
}


/* =========================================================
   FOOTER LINK COLUMNS
   ========================================================= */

.footer-column > a {
  display: block;

  margin: 0 0 8px;

  padding: 4px 0;

  color: rgba(255, 255, 255, 0.63);

  font-size: 13px;
  font-weight: var(--weight-regular);

  line-height: 1.5;

  text-decoration: none !important;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-column > a::before,
.footer-column > a::after {
  display: none !important;

  content: none !important;
}

.footer-column > a:hover {
  color: var(--white);

  transform: translateX(3px);
}


/* =========================================================
   CONTACT COLUMN
   ========================================================= */

.footer-contact {
  min-width: 0;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;

  gap: 9px;

  margin: 0;
  padding: 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;

  gap: 10px;

  min-width: 0;

  margin: 0 !important;
  padding: 4px 0;

  color: inherit !important;

  text-decoration: none !important;

  transform: none !important;
}

.footer-contact-item:hover {
  color: inherit !important;

  transform: none !important;
}


/* =========================================================
   CONTACT ICON
   ========================================================= */

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 20px;

  width: 20px;
  height: 20px;

  border: none !important;

  background: transparent !important;

  color: var(--gold);

  font-size: 14px;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  border: none !important;

  background: transparent !important;

  transform: scale(1.05);
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.footer-contact-item[href*="wa.me"] .footer-contact-icon {
  color: #25D366 !important;

  border: none !important;

  background: transparent !important;

  box-shadow: none !important;
}

.footer-contact-item[href*="wa.me"]:hover .footer-contact-icon {
  color: #25D366 !important;
}


/* =========================================================
   CONTACT VALUE
   ========================================================= */

.footer-contact-value {
  min-width: 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 13px;
  font-weight: var(--weight-regular);

  line-height: 1.45;

  overflow-wrap: anywhere;

  transition: color 0.2s ease;
}

.footer-contact-item:hover .footer-contact-value {
  color: var(--white);
}


/* =========================================================
   OFFICE COLUMN
   ========================================================= */

.footer-office-column {
  min-width: 0;

  margin: 0;
  padding: 0;
}


/* =========================================================
   OFFICE CONTENT
   ========================================================= */

.footer-office {
  display: flex;
  align-items: flex-start;

  gap: 10px;

  margin: 0;
}

.footer-office-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 20px;

  width: 20px;
  height: 20px;

  border: none !important;

  background: transparent !important;

  color: var(--gold);

  font-size: 14px;
}

.footer-office-content {
  min-width: 0;

  max-width: 225px;
}

.footer-office-content strong {
  display: block;

  margin: 0 0 8px;

  color: rgba(255, 255, 255, 0.86);

  font-size: 12px;
  font-weight: var(--weight-semibold);

  line-height: 1.5;
}

.footer-office-content address {
  margin: 0;

  color: rgba(255, 255, 255, 0.59);

  font-size: 12px;
  font-style: normal;

  line-height: 1.7;
}


/* =========================================================
   GET DIRECTIONS
   ========================================================= */

.footer-directions-button {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  margin-top: 13px;

  padding: 6px 0;

  border: none;

  background: transparent;

  color: rgba(255, 255, 255, 0.76);

  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--weight-medium);
  line-height: 1.4;

  text-decoration: none;

  cursor: pointer;

  transition: color 0.2s ease;
}

.footer-directions-button:hover {
  color: var(--gold-soft);
}


/* =========================================================
   DIRECTIONS ICON
   ========================================================= */

.footer-directions-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 24px;

  width: 24px;
  height: 24px;

  color: var(--gold);
}

.footer-directions-icon iconify-icon {
  display: block;

  width: 24px;
  height: 24px;

  font-size: 24px;
}


/* =========================================================
   DIRECTIONS TEXT
   ========================================================= */

.footer-directions-text {
  flex: 0 1 auto;

  color: inherit;

  line-height: 1.4;

  white-space: nowrap;
}


/* =========================================================
   DIRECTIONS ARROW
   ========================================================= */

.footer-directions-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  margin-left: 1px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 12px;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-directions-button:hover .footer-directions-arrow {
  color: var(--gold-soft);

  transform: translate(2px, -1px);
}


/* =========================================================
   HIDE LEGACY LOCATION COLUMN
   ========================================================= */

.footer-location-column {
  display: none !important;
}


/* =========================================================
   REMOVE FOOTER UNDERLINES
   ========================================================= */

.site-footer a,
.site-footer a:hover,
.site-footer a:focus,
.site-footer a:active {
  text-decoration: none !important;
}

.site-footer a::before,
.site-footer a::after {
  display: none !important;

  content: none !important;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
  margin-top: 38px;

  padding-top: 15px;

  border-top: 1px solid rgba(255, 255, 255, 0.11);

  color: rgba(255, 255, 255, 0.46);

  font-size: 11px;
  font-weight: var(--weight-regular);

  line-height: 1.5;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  gap: 24px;
}

.footer-copyright {
  margin: 0;

  color: rgba(255, 255, 255, 0.46);

  font-size: 11px;
  line-height: 1.5;
}


/* =========================================================
   FOOTER LEGAL LINKS
   ========================================================= */

.footer-bottom-links {
  display: flex;
  align-items: center;

  gap: 16px;

  flex-shrink: 0;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.46);

  font-size: 11px;
  font-weight: var(--weight-regular);

  line-height: 1.5;

  white-space: nowrap;

  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--gold-soft);
}


/* =========================================================
   GLOBAL SECTION OFFSET
   ========================================================= */

section,
[class*="section"] {
  scroll-margin-top: var(--header-h, 74px);
}


/* =========================================================
   FORM CONTROLS

   16px min font-size on inputs prevents iOS Safari from
   auto-zooming the viewport on focus.
   ========================================================= */

input,
select,
textarea {
  width: 100%;

  font-size: max(16px, var(--text-body));

  background: var(--white);

  border: 1px solid var(--border);

  color: var(--foreground);

  font-family: var(--font-body);
  font-weight: var(--weight-regular);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;

  border-color: var(--primary);

  box-shadow:
    0 0 0 3px rgba(26, 92, 40, 0.12);

  background: var(--white);
}


/* =========================================================
   TEXT SELECTION
   ========================================================= */

.section-heading::selection,
.section-title::selection,
h1::selection,
h2::selection,
h3::selection {
  background: var(--gold-soft);
  color: var(--dark);
}


/* =========================================================
   RESPONSIVE BREAKPOINTS

   ≥1150px  full desktop nav
   901–1150 laptop / small desktop — tighter nav spacing
   641–900  tablet — hamburger menu appears
   401–640  large mobile
   ≤400     small mobile
   ========================================================= */


/* =========================================================
   LAPTOP / SMALL DESKTOP
   Desktop nav still shows, just tightened up so it doesn't
   crowd into the logo on 13" laptop widths.
   ========================================================= */

@media (max-width: 1150px) and (min-width: 901px) {

  .header-inner {
    padding-left: 24px;
    padding-right: 24px;

    gap: 16px;
  }

  .desktop-nav a {
    padding: 10px 14px;

    font-size: 0.875rem;
  }

  .desktop-nav a.nav-contact {
    margin-left: 4px;
    padding: 10px 18px;
  }

  .footer-inner {
    padding-left: 28px;
    padding-right: 28px;
  }

  .footer-grid {
    grid-template-columns:
      1.25fr
      1fr
      1fr
      1.3fr;

    column-gap: 30px;

    row-gap: 38px;
  }

  .footer-office-column {
    grid-column: 4;
  }
}


/* =========================================================
   TABLET AND BELOW
   Hamburger takes over from here down.
   ========================================================= */

@media (max-width: 900px) {

  :root {
    --header-h: var(--header-h-mobile);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-inner {
    padding: 10px 24px;

    min-height: var(--header-h-mobile);
  }

  .site-logo__image {
    height: 38px;
  }


  /* FOOTER */

  .footer-inner {
    padding:
      52px
      24px
      26px;
  }

  .footer-grid {
    grid-template-columns:
      1fr
      1fr;

    gap: 36px 32px;
  }

  .footer-brand-column {
    grid-column: 1 / -1;
  }

  .footer-office-column {
    grid-column: auto;
  }

  .footer-description {
    max-width: 420px;
  }
}


/* =========================================================
   LARGE MOBILE
   ========================================================= */

@media (max-width: 640px) {

  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-menu nav {
    padding-left: 20px;
    padding-right: 20px;
  }


  /* FOOTER */

  .footer-inner {
    padding:
      46px
      20px
      22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 29px;
  }

  .footer-brand-column,
  .footer-office-column {
    grid-column: auto;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-office-content {
    max-width: 260px;
  }

  .footer-office {
    gap: 10px;
  }

  .footer-contact-list {
    gap: 10px;
  }

  .footer-bottom {
    margin-top: 30px;
  }

  .footer-bottom-inner {
    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;

    gap: 8px 18px;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

  .header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-logo__image {
    height: 34px;
  }

  .mobile-menu nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-brand-name {
    font-size: 18px;

    letter-spacing: 0.055em;
  }

  .footer-column h3,
  .footer-office-column h3 {
    font-size: 13px;
  }

  .footer-contact-value {
    font-size: 12px;
  }

  .footer-office-content strong,
  .footer-office-content address {
    font-size: 11px;
  }

  .footer-directions-button {
    font-size: 11px;
  }

  .footer-bottom-links a,
  .footer-copyright {
    font-size: 10px;
  }
}


/* =========================================================
   LANDSCAPE PHONES — short viewport height
   Keeps the mobile menu from overflowing above the fold
   on short/landscape screens.
   ========================================================= */

@media (max-height: 480px) and (max-width: 900px) {

  .mobile-menu.is-open {
    max-height: calc(100vh - var(--header-h-mobile));
    overflow-y: auto;
  }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);

  outline-offset: 2px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition-duration: 0.001ms !important;

    animation-duration: 0.001ms !important;

    animation-iteration-count: 1 !important;
  }
}
/* =========================================================
   MOBILE NAVIGATION SIDEBAR

   Opens from the right side instead of dropping full-width.
   Width adapts to content while remaining responsive.
   ========================================================= */

.mobile-menu {
  position: fixed;

  top: var(--header-h-mobile);
  right: 0;
  left: auto;
  bottom: 0;

  z-index: 999;

  width: max-content;
  min-width: 240px;
  max-width: min(85vw, 360px);

  height: calc(100vh - var(--header-h-mobile));
  height: calc(100dvh - var(--header-h-mobile));

  max-height: none;

  overflow-x: hidden;
  overflow-y: auto;

  -webkit-overflow-scrolling: touch;

  background: var(--background);

  border-left: 1px solid var(--border);
  border-bottom: none;

  box-shadow:
    -12px 0 32px rgba(10, 31, 13, 0.16);

  /* Hidden off-screen */
  transform: translateX(100%);

  transition:
    transform 0.35s ease,
    visibility 0.35s ease;

  visibility: hidden;
}

.mobile-menu.is-open {
  /* Full-height sidebar */
  max-height: none;

  transform: translateX(0);

  visibility: visible;
}


/* =========================================================
   MOBILE NAVIGATION LINKS
   ========================================================= */

.mobile-menu nav {
  display: flex;
  flex-direction: column;

  padding: 18px 24px 28px;
}

.mobile-menu a {
  display: flex;
  align-items: center;

  min-height: 48px;

  /*
   * Width follows the longest navigation label.
   * Horizontal padding keeps the text comfortable.
   */
  width: max-content;
  max-width: 100%;

  padding: 13px 4px;

  color: var(--foreground);

  border-bottom: 1px solid var(--border);

  font-size: var(--text-body);
  font-weight: var(--weight-medium);
  line-height: 1.4;

  white-space: nowrap;

  -webkit-tap-highlight-color: transparent;
}

.mobile-menu a::after {
  display: none !important;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--primary);
}

.mobile-menu a.is-active {
  color: var(--primary);

  font-weight: var(--weight-semibold);
}


/* =========================================================
   MOBILE CONTACT CTA
   ========================================================= */

.mobile-menu a.nav-contact {
  justify-content: center;

  width: 100%;

  margin-top: 12px;

  padding: 13px 20px;

  background: var(--primary);
  color: var(--white);

  border: none;
  border-radius: 999px;

  font-weight: var(--weight-semibold);
}

.mobile-menu a.nav-contact:hover,
.mobile-menu a.nav-contact:active {
  background: var(--primary-dark);
  color: var(--white);
}


/* =========================================================
   TABLET / SMALLER SCREENS
   ========================================================= */

@media (max-width: 640px) {

  .mobile-menu {
    min-width: 220px;
    max-width: 82vw;
  }

  .mobile-menu nav {
    padding:
      16px
      20px
      24px;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

  .mobile-menu {
    min-width: 200px;
    max-width: 86vw;
  }

  .mobile-menu nav {
    padding-left: 16px;
    padding-right: 16px;
  }
}


/* =========================================================
   LANDSCAPE PHONES
   ========================================================= */

@media (max-height: 480px) and (max-width: 900px) {

  .mobile-menu {
    height: calc(100vh - var(--header-h-mobile));
    overflow-y: auto;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .mobile-menu {
    transition: none;
  }
}
.desktop-nav a.nav-contact {
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.desktop-nav a.nav-contact:hover {
  background: var(--primary-dark);
  color: var(--white);

  transform: none;

  box-shadow:
    0 8px 20px rgba(16, 59, 26, 0.3);
}
.site-logo__image {
  display: block;

  width: auto;
  height: 46px;

  transition: none;
}

.site-logo:hover .site-logo__image {
  transform: none;
}
/* =========================================================
   MOBILE NAVIGATION SIDEBAR
   ========================================================= */

.mobile-menu {
  position: fixed;

  top: var(--header-h-mobile);
  right: 0;
  bottom: 0;
  left: auto;

  z-index: 999;

  /* Responsive, predictable sidebar width */
  width: min(320px, 82vw);

  height: calc(100vh - var(--header-h-mobile));
  height: calc(100dvh - var(--header-h-mobile));

  overflow-x: hidden;
  overflow-y: auto;

  -webkit-overflow-scrolling: touch;

  background: var(--background);

  border-left: 1px solid var(--border);
  border-bottom: none;

  box-shadow:
    -8px 0 24px rgba(10, 31, 13, 0.10);

  /* Hidden off-screen */
  transform: translateX(100%);

  visibility: hidden;

  transition:
    transform 0.25s ease,
    visibility 0.25s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}


/* =========================================================
   MOBILE NAVIGATION LINKS
   ========================================================= */

.mobile-menu nav {
  display: flex;
  flex-direction: column;

  padding: 18px 24px 28px;
}

.mobile-menu a {
  display: flex;
  align-items: center;

  width: 100%;
  min-height: 48px;

  padding: 13px 4px;

  color: var(--foreground);

  border-bottom: 1px solid var(--border);

  font-size: var(--text-body);
  font-weight: var(--weight-medium);
  line-height: 1.4;

  white-space: nowrap;

  -webkit-tap-highlight-color: transparent;

  transition: color 0.15s ease;
}

.mobile-menu a::after {
  display: none !important;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--primary);
}

.mobile-menu a.is-active {
  color: var(--primary);
  font-weight: var(--weight-semibold);
}


/* =========================================================
   MOBILE CONTACT CTA
   ========================================================= */

.mobile-menu a.nav-contact {
  justify-content: center;

  width: 100%;

  margin-top: 16px;

  padding: 13px 20px;

  background: var(--primary);
  color: var(--white);

  border: none;
  border-radius: 999px;

  font-weight: var(--weight-semibold);

  transition: background 0.2s ease;
}

.mobile-menu a.nav-contact:hover,
.mobile-menu a.nav-contact:active {
  background: var(--primary-dark);
  color: var(--white);

  transform: none;
}


/* =========================================================
   MOBILE WIDTHS
   ========================================================= */

@media (max-width: 640px) {
  .mobile-menu {
    width: min(300px, 82vw);
  }

  .mobile-menu nav {
    padding:
      16px 20px 24px;
  }
}

@media (max-width: 400px) {
  .mobile-menu {
    width: min(280px, 86vw);
  }

  .mobile-menu nav {
    padding-left: 16px;
    padding-right: 16px;
  }
}


/* =========================================================
   LANDSCAPE PHONES
   ========================================================= */

@media (max-height: 480px) and (max-width: 900px) {
  .mobile-menu {
    height: calc(100vh - var(--header-h-mobile));
    overflow-y: auto;
  }
}
/* =========================================================
   LOGO — NO MOTION
   ========================================================= */

.site-logo__image {
  display: block;
  width: auto;
  height: 46px;
}

.site-logo:hover .site-logo__image {
  transform: none;
}


/* =========================================================
   DESKTOP CONTACT CTA — NO MOVEMENT
   ========================================================= */

.desktop-nav a.nav-contact {
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.desktop-nav a.nav-contact:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: none;

  box-shadow:
    0 8px 20px rgba(16, 59, 26, 0.3);
}


/* =========================================================
   MOBILE MENU TOGGLE
   ========================================================= */

.menu-toggle {
  display: none;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;

  width: 44px;
  height: 44px;

  padding: 0;
  margin: 0;

  border: none;
  border-radius: 8px;

  background: transparent;

  cursor: pointer;

  position: relative;
  z-index: 1002;

  -webkit-tap-highlight-color: transparent;
}

.menu-toggle:hover {
  background: var(--surface-green);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.menu-toggle span {
  display: block;

  width: 22px;
  height: 2px;

  background: var(--primary-dark);

  border-radius: 2px;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE MENU OVERLAY
   REMOVED
   ========================================================= */

/*
.mobile-menu-overlay {
  display: none;
}
*/


/* =========================================================
   MOBILE NAVIGATION SIDEBAR
   Simple, stable sidebar.
   No opacity animation.
   No slide/translate animation.
   ========================================================= */

.mobile-menu {
  position: fixed;

  top: var(--header-h-mobile);
  right: 0;
  bottom: 0;
  left: auto;

  z-index: 999;

  width: min(320px, 82vw);

  height: calc(100vh - var(--header-h-mobile));
  height: calc(100dvh - var(--header-h-mobile));

  overflow-x: hidden;
  overflow-y: auto;

  -webkit-overflow-scrolling: touch;

  background: var(--background);

  border-left: 1px solid var(--border);

  box-shadow:
    -8px 0 24px rgba(10, 31, 13, 0.10);

  /*
   * Hidden using display instead of transform.
   * This avoids the sliding-in animation.
   */
  display: none;
}

.mobile-menu.is-open {
  display: block;
}


/* =========================================================
   MOBILE NAVIGATION LINKS
   ========================================================= */

.mobile-menu nav {
  display: flex;
  flex-direction: column;

  padding: 18px 24px 28px;
}

.mobile-menu a {
  display: flex;
  align-items: center;

  width: 100%;
  min-height: 48px;

  padding: 13px 4px;

  color: var(--foreground);

  border-bottom: 1px solid var(--border);

  font-size: var(--text-body);
  font-weight: var(--weight-medium);
  line-height: 1.4;

  white-space: nowrap;

  -webkit-tap-highlight-color: transparent;

  transition: color 0.15s ease;
}

.mobile-menu a::after {
  display: none !important;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--primary);
}

.mobile-menu a.is-active {
  color: var(--primary);
  font-weight: var(--weight-semibold);
}


/* =========================================================
   MOBILE CONTACT CTA
   ========================================================= */

.mobile-menu a.nav-contact {
  justify-content: center;

  width: 100%;

  margin-top: 16px;

  padding: 13px 20px;

  background: var(--primary);
  color: var(--white);

  border: none;
  border-radius: 999px;

  font-weight: var(--weight-semibold);

  transition: background 0.2s ease;
}

.mobile-menu a.nav-contact:hover,
.mobile-menu a.nav-contact:active {
  background: var(--primary-dark);
  color: var(--white);

  transform: none;
}


/* =========================================================
   MOBILE WIDTHS
   ========================================================= */

@media (max-width: 900px) {

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-inner {
    padding: 10px 24px;
    min-height: var(--header-h-mobile);
  }

  .site-logo__image {
    height: 38px;
  }
}

@media (max-width: 640px) {

  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-menu {
    width: min(300px, 82vw);
  }

  .mobile-menu nav {
    padding:
      16px 20px 24px;
  }
}

@media (max-width: 400px) {

  .header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-logo__image {
    height: 34px;
  }

  .mobile-menu {
    width: min(280px, 86vw);
  }

  .mobile-menu nav {
    padding-left: 16px;
    padding-right: 16px;
  }
}


/* =========================================================
   FOOTER — NO TRANSLATE / NO MOVEMENT
   ========================================================= */

/* Footer links only change color */
.footer-column > a {
  transition: color 0.2s ease;
}

.footer-column > a:hover {
  color: var(--white);
  transform: none;
}


/* Social icons — color only */
.social-row a {
  transition: color 0.2s ease;
}

.social-row a:hover {
  color: var(--gold);
  background: transparent !important;
  transform: none;
}


/* Contact icons — no scale */
.footer-contact-icon {
  transition: color 0.2s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  border: none !important;
  background: transparent !important;
  transform: none;
}


/* Contact text — color only */
.footer-contact-value {
  transition: color 0.2s ease;
}

.footer-contact-item:hover .footer-contact-value {
  color: var(--white);
}


/* Directions button — color only */
.footer-directions-button {
  transition: color 0.2s ease;
}

.footer-directions-button:hover {
  color: var(--gold-soft);
}


/* Directions arrow — NO movement */
.footer-directions-arrow {
  transition: color 0.2s ease;
}

.footer-directions-button:hover .footer-directions-arrow {
  color: var(--gold-soft);
  transform: none;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}
header {
  border-bottom: 2px solid #1b5e20;
}
.desktop-nav {
  display: flex;
  align-items: center;

  gap: 0px;
}

.desktop-nav a {
  position: relative;

  display: inline-block;

  padding: 10px 14px;

  color: var(--foreground);

  font-size: var(--text-nav);
  font-weight: var(--weight-medium);
  line-height: 1.4;

  letter-spacing: 0.01em;
  white-space: nowrap;

  transition: color 0.2s ease;
}
/* =========================================================
   FOOTER TYPOGRAPHY — TOKENIZED
   Replaces hardcoded px sizes with the global --text-* scale
   so footer text scales with user font-size settings and
   stays proportionate to the rest of the page.
   ========================================================= */

.footer-brand-name {
  font-size: var(--text-h5);
}

.footer-column h3,
.footer-office-column h3,
.footer-location-column h3 {
  font-size: var(--text-label);
}

.footer-description {
  font-size: var(--text-caption);
}

.footer-column > a {
  font-size: var(--text-caption);
}

.footer-contact-value {
  font-size: var(--text-caption);
}

.footer-office-content strong {
  font-size: var(--text-caption);
}

.footer-office-content address {
  font-size: var(--text-caption);
}

.footer-directions-button {
  font-size: var(--text-caption);
}

.footer-brand-subtitle {
  font-size: var(--text-caption);
}

.footer-bottom,
.footer-copyright,
.footer-bottom-links a {
  font-size: var(--text-caption);
}


/* =========================================================
   SMALL MOBILE — keep footer proportional, don't dip below
   the token floor even at narrow widths
   ========================================================= */

@media (max-width: 400px) {

  .footer-brand-name {
    font-size: var(--text-body-lg);
  }

  .footer-column h3,
  .footer-office-column h3 {
    font-size: var(--text-label);
  }

  .footer-contact-value,
  .footer-office-content strong,
  .footer-office-content address,
  .footer-directions-button,
  .footer-bottom-links a,
  .footer-copyright {
    font-size: var(--text-caption);
  }
}
/* =========================================================
   SOCIAL ICONS
   Original brand colours • Minimal • No movement
   ========================================================= */

.social-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 0;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;

  border: none !important;
  background: transparent !important;
  box-shadow: none !important;

  font-size: 17px;
  line-height: 1;

  text-decoration: none !important;

  transition: opacity 0.2s ease;
}

.social-row a::before,
.social-row a::after {
  display: none !important;
  content: none !important;
}

/* =========================================================
   ORIGINAL SOCIAL BRAND COLOURS
   ========================================================= */

.social-row a[href*="facebook"] {
  color: #1877F2 !important;
}

.social-row a[href*="instagram"] {
  color: #E4405F !important;
}

.social-row a[href*="youtube"] {
  color: #FF0000 !important;
}

.social-row a[href*="linkedin"] {
  color: #0A66C2 !important;
}

.social-row a[href*="twitter"],
.social-row a[href*="x.com"] {
  color: #FFFFFF !important;
}

/* =========================================================
   HOVER — NO MOVEMENT
   ========================================================= */

.social-row a:hover,
.social-row a:focus-visible {
  opacity: 0.75;
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
}

/* =========================================================
   ICONIFY
   ========================================================= */

.social-row iconify-icon {
  display: block;
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 1;
}

/* X / LinkedIn slightly tighter */
.social-row a[href*="x.com"] iconify-icon,
.social-row a[href*="twitter"] iconify-icon,
.social-row a[href*="linkedin"] iconify-icon {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {
  .social-row {
    gap: 17px;
    margin-top: 17px;
  }
}
/* =========================================================
   FINAL MOBILE NAVIGATION
   Single source of truth
   ========================================================= */

@media (max-width: 900px) {

    /* Hide desktop navigation */
    .desktop-nav {
        display: none !important;
    }

    /* Show hamburger */
    .menu-toggle {
        display: flex !important;
    }

    /* Mobile sidebar */
    .mobile-menu {
        position: fixed !important;
        top: var(--header-h-mobile) !important;
        right: 0 !important;
        left: auto !important;
        bottom: 0 !important;

        width: min(320px, 82vw) !important;
        height: calc(100vh - var(--header-h-mobile)) !important;
        height: calc(100dvh - var(--header-h-mobile)) !important;

        display: none !important;

        overflow-x: hidden !important;
        overflow-y: auto !important;

        background: var(--background) !important;
        border-left: 1px solid var(--border) !important;
        border-bottom: none !important;

        box-shadow: -8px 0 24px rgba(10, 31, 13, 0.10) !important;

        z-index: 999 !important;

        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-height: none !important;
    }

    /* OPEN STATE */
    .mobile-menu.is-open {
        display: block !important;
    }

    /* Menu contents */
    .mobile-menu nav {
        display: flex !important;
        flex-direction: column !important;
        padding: 18px 24px 28px !important;
    }

    /* Menu links */
    .mobile-menu a {
        display: flex !important;
        align-items: center !important;

        width: 100% !important;
        min-height: 48px !important;

        padding: 13px 4px !important;

        color: var(--foreground) !important;

        border-bottom: 1px solid var(--border) !important;

        font-size: var(--text-body) !important;
        font-weight: var(--weight-medium) !important;
        line-height: 1.4 !important;

        white-space: nowrap !important;

        text-decoration: none !important;
    }

    .mobile-menu a:last-child {
        border-bottom: none !important;
    }

    .mobile-menu a:hover,
    .mobile-menu a:active,
    .mobile-menu a.is-active {
        color: var(--primary) !important;
    }

    /* Contact */
    .mobile-menu a.nav-contact {
        justify-content: center !important;

        width: 100% !important;

        margin-top: 16px !important;

        padding: 13px 20px !important;

        background: var(--primary) !important;
        color: var(--white) !important;

        border: none !important;
        border-radius: 0 !important;

        font-weight: var(--weight-semibold) !important;
    }

    .mobile-menu a.nav-contact:hover,
    .mobile-menu a.nav-contact:active {
        background: var(--primary-dark) !important;
        color: var(--white) !important;
    }
}


/* =========================================================
   MOBILE WIDTHS
   ========================================================= */

@media (max-width: 640px) {

    .mobile-menu {
        width: min(300px, 82vw) !important;
    }

    .mobile-menu nav {
        padding: 16px 20px 24px !important;
    }
}

@media (max-width: 400px) {

    .mobile-menu {
        width: min(280px, 86vw) !important;
    }

    .mobile-menu nav {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}
/* =========================================================
   HEADER — HIDE ON SCROLL DOWN / SHOW ON SCROLL UP
   ========================================================= */

.site-header {
  transition: transform 0.25s ease;
  will-change: transform;
}

.site-header.header--hidden {
  transform: translateY(-100%);
}

/* Never hide while the mobile menu is open */
body.mobile-menu-open .site-header {
  transform: translateY(0) !important;
}
/* =========================================================
   HEADER LINKS — NEVER UNDERLINED
   Hard override in case any page-level CSS re-introduces
   underlines on nav/logo/contact links.
   ========================================================= */

.site-header a,
.site-header a:link,
.site-header a:visited,
.site-header a:hover,
.site-header a:focus,
.site-header a:active {
  text-decoration: none !important;
}