/* Oasis Global Trading — design tokens from oasistrade.com */
:root {
  --color-primary: #009c4e;
  --color-primary-bright: #42b920;
  --color-primary-light: #87be4e;
  --color-accent: #f1cb00;
  --color-muted: #c7d2e9;
  --color-dark: #111111;
  --color-dark-soft: #1a1a1a;
  --color-text: #222222;
  --color-text-muted: #555555;
  --color-surface: #f0f0f0;
  --color-white: #ffffff;
  --color-border: rgba(17, 17, 17, 0.12);

  --font-sans: "Bai Jamjuree", "Segoe UI", sans-serif;
  --max-width: 1160px;
  --header-height: 84px;
  --radius: 4px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-dark);
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section--surface {
  background: var(--color-surface);
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section--dark.section--contact {
  padding-bottom: 0;
}

.section--contact-light {
  padding-bottom: 0;
  background: var(--color-white);
  color: var(--color-text);
}

.section--contact-light .section__title,
.section--contact-light h2,
.section--contact-light h3 {
  color: var(--color-dark);
}

.section--contact-light .contact-detail a,
.section--contact-light .contact-details a,
.section--contact-light .contact-detail__icon {
  color: var(--color-primary);
}

.section--contact-light .contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.section--contact-light .form-note {
  color: var(--color-text-muted);
}

.section--contact-light .form-field label {
  color: var(--color-text);
}

.section--contact-light .form-field input,
.section--contact-light .form-field select,
.section--contact-light .form-field textarea {
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-dark);
}

.section--contact-light .form-field input::placeholder,
.section--contact-light .form-field textarea::placeholder {
  color: rgba(34, 34, 34, 0.45);
}

.section--contact-light .form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--color-white);
  background-image:
    linear-gradient(45deg, transparent 50%, #555 50%),
    linear-gradient(135deg, #555 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

.section--contact-light .form-field input:focus,
.section--contact-light .form-field select:focus,
.section--contact-light .form-field textarea:focus {
  border-color: var(--color-primary);
  background-color: var(--color-white);
  outline: none;
}

.section--contact-light .form-field select:focus {
  background-image:
    linear-gradient(45deg, transparent 50%, #555 50%),
    linear-gradient(135deg, #555 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.section--contact-light .form-status {
  color: var(--color-primary);
}

.section--contact-light .map-band {
  border-top: 1px solid var(--color-border);
}

.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: 0.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-top: 0;
  margin-bottom: 1rem;
}

#about .section__title {
  font-size: clamp(2.55rem, 5vw, 3.5rem);
}

.section__intro {
  max-width: 42rem;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

#about .section__intro {
  max-width: none;
}

#about .section__intro + .section__intro {
  margin-top: 0.7rem;
}

.section--dark .section__intro {
  color: rgba(255, 255, 255, 0.78);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(17, 17, 17, 0.8);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.site-header__inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--color-accent);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  color: var(--color-white) !important;
  transition: background var(--transition), border-color var(--transition);
}

.nav__cta:hover,
.nav__cta:focus-visible {
  background: var(--color-primary-bright);
  border-color: var(--color-primary-bright);
  color: var(--color-white) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-primary-bright);
  color: var(--color-white);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-primary);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.btn--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn--dark:hover,
.btn--dark:focus-visible {
  background: var(--color-primary);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(clamp(34rem, 78vh, 46rem) + 100px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 2rem) 0 3.25rem;
  color: var(--color-white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0d1a12;
}

.hero__media img,
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero__video {
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero__video.is-ready {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.35) 0%, rgba(17, 17, 17, 0.72) 55%, rgba(17, 17, 17, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 156, 78, 0.28), transparent 55%);
}

.hero__layout {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
  display: grid;
  gap: 3.25rem;
  align-items: start;
}

.hero__content {
  max-width: min(100%, 56rem);
}

.hero__brand {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.35rem, 4.8vw, 4rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 1.12;
}

.hero__line {
  display: block;
  white-space: nowrap;
}

.hero__lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Hero product pins — horizontal line through circles */
.hero-pins {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.75rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.5rem 0 0.25rem;
}

.hero-pins__line {
  position: absolute;
  left: 50%;
  width: 100vw;
  top: 95px; /* vertical center of 190px circles */
  height: 2px;
  background: rgba(211, 215, 218, 0.9);
  z-index: 0;
  transform: translateX(-50%);
}

.hero-pins__line::before,
.hero-pins__line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d3d7da;
  transform: translateY(-50%);
}

.hero-pins__line::before {
  left: 0;
}

.hero-pins__line::after {
  right: 0;
}

.hero-pin {
  position: relative;
  z-index: 1;
  display: block;
  flex-shrink: 0;
  width: 190px;
  color: var(--color-white);
  text-decoration: none;
  transition: transform var(--transition);
}

.hero-pin:hover,
.hero-pin:focus-visible {
  transform: translateY(-4px);
}

.hero-pin__media {
  display: block;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  background: var(--color-surface);
  clip-path: circle(50%);
  -webkit-clip-path: circle(50%);
  transform: translateZ(0);
}

.hero-pin__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hero-pin:hover .hero-pin__media img,
.hero-pin:focus-visible .hero-pin__media img {
  transform: scale(1.06);
}

.hero-pin__label {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-pin {
    animation: hero-pin-float 5.5s ease-in-out infinite;
  }

  .hero-pin:nth-child(3) {
    animation-delay: 0.45s;
  }

  .hero-pin:nth-child(4) {
    animation-delay: 0.9s;
  }

  @keyframes hero-pin-float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }

  .hero-pin:hover,
  .hero-pin:focus-visible {
    animation-play-state: paused;
    transform: translateY(-4px);
  }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: stretch;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 100%;
  min-height: 520px;
}

.about-gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--color-surface);
}

.about-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.about-gallery__item:hover img {
  transform: scale(1.04);
}

.about-gallery__item--fertilizer {
  grid-column: 1;
  grid-row: 1 / 3;
}

.about-gallery__item--urea {
  grid-column: 2;
  grid-row: 1;
}

.about-gallery__item--vessel {
  grid-column: 2;
  grid-row: 2;
}

.about-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-copy > * + * {
  margin-top: 1.5rem;
}

.about-copy .section__eyebrow + .section__title {
  margin-top: 0.15rem;
}

.about-copy .section__intro + .section__intro {
  margin-top: 0.7rem;
}

.category-block {
  padding: 1.35rem 0;
  border-top: 1px solid var(--color-border);
}

.category-block h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  color: var(--color-primary);
}

.category-block p,
.category-block li {
  color: var(--color-text-muted);
}

.category-block ul {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.45rem;
}

.category-block li {
  position: relative;
  padding-left: 1.1rem;
}

.category-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-primary-bright);
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.75rem;
}

.benefit-card {
  background: var(--color-white);
  padding: 2rem 1.75rem;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-card__icon {
  width: auto;
  height: auto;
  margin-bottom: 1.35rem;
  display: block;
  background: none;
  border: 0;
  border-radius: 0;
}

.benefit-card__icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.benefit-card p {
  color: var(--color-text-muted);
}

/* Products accordion */
.products-header {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.75rem;
  max-width: 48rem;
}

.products-accordion {
  display: grid;
  gap: 0.85rem;
}

.product-acc {
  border-radius: 10px;
  background: #f3f5f7;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.product-acc__trigger {
  position: relative;
  display: grid;
  grid-template-columns: minmax(140px, 42%) 1fr auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 96px;
  padding: 0 1.25rem 0 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--color-dark);
}

.product-acc__preview {
  position: relative;
  height: 96px;
  overflow: hidden;
}

.product-acc__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-acc__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 35%, #f3f5f7 92%);
  pointer-events: none;
}

.product-acc__title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.product-acc__arrow {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.product-acc__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--color-primary);
  border-bottom: 1.5px solid var(--color-primary);
  transform: translate(-70%, -50%) rotate(-45deg);
}

.product-acc.is-open .product-acc__arrow {
  transform: rotate(90deg);
}

.product-acc.is-open .product-acc__arrow::before {
  border-color: var(--color-primary);
}

.product-acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  border-top: 1px solid transparent;
  background: #fff;
  transition: grid-template-rows 0.4s ease, border-color 0.3s ease;
}

.product-acc.is-open .product-acc__panel {
  grid-template-rows: 1fr;
  border-top-color: rgba(0, 156, 78, 0.18);
}

.product-acc__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.product-acc__content {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.1fr;
  gap: 1.75rem;
  padding: 0 1.5rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.35s ease, padding 0.35s ease;
}

.product-acc.is-open .product-acc__content {
  padding: 1.5rem;
  opacity: 1;
  transform: none;
}

.product-acc__media {
  border-radius: 8px;
  overflow: hidden;
  min-height: 260px;
  background: var(--color-surface);
}

.product-acc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

.product-acc__copy {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.product-acc__subtitle {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.product-acc__copy h3 {
  font-size: 1.45rem;
  color: var(--color-primary);
}

.product-acc__copy > p {
  color: var(--color-text-muted);
}

.product-acc__points {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.product-acc__points h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--color-dark);
}

.product-acc__points p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.about-copy .section__intro {
  margin-bottom: 1.5rem;
}

.home-about {
  align-items: center;
}

.home-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.home-facts li {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 0 0.9rem 1.1rem;
  border-left: 3px solid var(--color-primary);
}

.home-facts strong {
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.1;
  color: var(--color-primary);
}

.home-facts span {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.home-about .about-gallery {
  min-height: 360px;
  height: 360px;
}

.home-products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.home-product {
  display: block;
  color: inherit;
  transition: transform 0.25s ease;
}

.home-product:hover,
.home-product:focus-visible {
  transform: translateY(-4px);
}

.home-product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--color-surface);
}

.home-product h3 {
  margin-top: 0.9rem;
  font-size: 1rem;
  text-align: center;
  color: var(--color-dark);
}

.home-products.products-accordion {
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 2.5rem;
}

.page-home #contact {
  display: none;
}

.products-page {
  padding-bottom: 0;
}

.products-page__intro {
  max-width: 48rem;
  margin-bottom: 2.75rem;
  color: var(--color-text-muted);
  text-align: center;
}

.products-page .product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 480px;
  padding-block: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.products-page .product-row:nth-child(even) {
  background: var(--color-surface);
}

.products-page .product-row--media-left .product-row__media {
  order: 1;
}

.products-page .product-row--media-left .product-row__copy {
  order: 2;
  padding-right: max(1.5rem, calc((100vw - var(--max-width)) / 2));
}

.products-page .product-row--media-right .product-row__media {
  order: 2;
}

.products-page .product-row--media-right .product-row__copy {
  order: 1;
  padding-left: max(1.5rem, calc((100vw - var(--max-width)) / 2));
}

.products-page .product-row__media {
  position: relative;
  align-self: stretch;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  background: var(--color-surface);
}

.products-page .product-row__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.products-page .product-row__copy {
  display: grid;
  gap: 0.55rem;
  align-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-inline: clamp(1.35rem, 4vw, 3.25rem);
}

.products-page .product-row__copy > span {
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-page .product-row__copy h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.products-page .product-row__copy > p,
.products-page .product-row__points p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.products-page .product-row__points {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.1rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--color-border);
}

.products-page .product-row__points h3 {
  margin-bottom: 0.1rem;
  color: var(--color-primary);
  font-size: 0.9rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-detail {
  margin: 0;
}

.contact-detail a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-accent);
  font-weight: 600;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.contact-detail__icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: var(--color-accent);
}

.contact-details a {
  color: var(--color-accent);
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

.map-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 3.5rem;
  height: min(52vh, 460px);
  min-height: 320px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #e8eef2;
  z-index: 1;
}

.map-band iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.75rem;
  border-radius: var(--radius);
}

.contact-form-wrap h3 {
  margin-bottom: 0.35rem;
}

.form-note {
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  font: inherit;
  transition: border-color var(--transition), background var(--transition);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-field select option {
  color: var(--color-dark);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary-bright);
  background: rgba(255, 255, 255, 0.1);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-status {
  font-size: 0.9rem;
  color: var(--color-accent);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #b42318;
}

.form-field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Privacy page */
.page-hero {
  padding: calc(var(--header-height) + 3.5rem) 0 3rem;
  background:
    linear-gradient(135deg, rgba(0, 156, 78, 0.92), rgba(17, 17, 17, 0.92)),
    url("../assets/images/hero.jpg") center/cover;
  color: var(--color-white);
}

.page-hero h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero__eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero__lead {
  max-width: 42rem;
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.product-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-page-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  box-shadow: var(--shadow);
}

.product-page-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.product-page-card__copy {
  padding: 1.5rem;
}

.product-page-card__copy span {
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-page-card__copy h2 {
  margin: 0.45rem 0 0.7rem;
  font-size: 1.35rem;
}

.product-page-card__copy p {
  color: var(--color-text-muted);
}

.more-products {
  padding-top: 4rem;
}

.more-products__intro {
  max-width: 46rem;
  margin-bottom: 2.25rem;
}

.more-products__intro .section__title {
  margin-bottom: 0.75rem;
}

.more-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.more-product {
  padding: 1.6rem 1.5rem;
  background: var(--color-white);
  border-top: 3px solid var(--color-primary);
}

.more-product h3 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.more-product p {
  color: var(--color-text-muted);
}

.career-panel {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 2rem;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.career-panel h2 {
  margin-bottom: 0.8rem;
}

.career-panel p {
  max-width: 44rem;
  color: var(--color-text-muted);
}

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

.privacy-content {
  max-width: 46rem;
}

.privacy-content > * + * {
  margin-top: 2rem;
}

.privacy-content h2 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.privacy-content p {
  color: var(--color-text-muted);
  white-space: pre-line;
}

.privacy-content a {
  color: var(--color-primary);
  font-weight: 600;
}

.privacy-content a:hover {
  text-decoration: underline;
}

.legal-hub {
  max-width: 900px;
  display: grid;
  gap: 1.25rem;
}

.legal-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 156, 78, 0.22);
}

.legal-card:first-child {
  padding-top: 0;
}

.legal-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-card__copy {
  min-width: 0;
  flex: 1;
}

.legal-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  color: var(--color-ink, #111);
}

.legal-card p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 42rem;
}

.legal-card .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.page-hero__back {
  color: inherit;
  text-decoration: none;
}

.page-hero__back:hover,
.page-hero__back:focus-visible {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .legal-card {
    flex-direction: column;
    align-items: stretch;
  }

  .legal-card .btn {
    align-self: flex-start;
  }
}

.legal-docs {
  max-width: 900px;
  display: grid;
  gap: 1rem;
}

.legal-doc {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(0, 156, 78, 0.22);
}

.legal-doc:first-child {
  padding-top: 0;
}

.legal-doc:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-doc__copy {
  min-width: 0;
  flex: 1;
}

.legal-doc h2 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  color: var(--color-ink, #111);
}

.legal-doc p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 42rem;
}

.legal-doc .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .legal-doc {
    flex-direction: column;
    align-items: stretch;
  }

  .legal-doc .btn {
    align-self: flex-start;
  }
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.75);
  padding: 2.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.site-footer__brand {
  display: grid;
  gap: 1rem;
}

.site-footer__brand p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-footer a:hover {
  color: var(--color-accent);
}

.site-footer__address strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--color-white);
  font-size: 0.9rem;
}

.site-footer__address p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .product-page-grid {
    grid-template-columns: 1fr;
  }

  .home-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-products.products-accordion {
    grid-template-columns: 1fr;
  }

  .home-about .about-gallery {
    height: auto;
    min-height: 0;
  }

  .products-page .product-row {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 0;
  }

  .products-page .product-row__media {
    min-height: 260px;
  }

  .products-page .product-row__copy,
  .products-page .product-row--media-left .product-row__copy,
  .products-page .product-row--media-right .product-row__copy {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-inline: 1.35rem;
  }

  .products-page .product-row--media-left .product-row__media,
  .products-page .product-row--media-right .product-row__media {
    order: 1;
  }

  .products-page .product-row--media-left .product-row__copy,
  .products-page .product-row--media-right .product-row__copy {
    order: 2;
  }

  .hero__layout {
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 5.4vw, 2.55rem);
  }

  .hero__line {
    white-space: nowrap;
  }

  .hero-pin {
    width: 150px;
  }

  .hero-pin__media {
    width: 150px;
    height: 150px;
  }

  .hero-pins__line {
    top: 75px;
  }

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

  .about-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    min-height: 0;
    height: auto;
    order: -1;
  }

  .about-gallery__item--fertilizer {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .about-gallery__item--urea {
    grid-column: 1;
    grid-row: 2;
  }

  .about-gallery__item--vessel {
    grid-column: 2;
    grid-row: 2;
  }

  .home-facts {
    grid-template-columns: 1fr;
  }

  .more-products-grid {
    grid-template-columns: 1fr;
  }

  .product-acc__content {
    grid-template-columns: 1fr;
  }

  .product-acc__trigger {
    grid-template-columns: minmax(110px, 38%) 1fr auto;
    min-height: 84px;
  }

  .product-acc__preview {
    height: 84px;
  }

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

@media (max-width: 760px) {
  .product-page-card {
    grid-template-columns: 1fr;
  }

  .product-page-card img {
    min-height: 210px;
    max-height: 260px;
  }

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

  .home-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(17, 17, 17, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__cta {
    margin-top: 0.75rem;
    justify-content: center;
  }

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

  .product-acc__title {
    font-size: 0.92rem;
  }

  .hero {
    align-items: center;
    min-height: calc(clamp(30rem, 72vh, 40rem) + 100px);
    padding-bottom: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 6.2vw, 1.85rem);
  }

  .hero-pins {
    gap: 1rem;
  }

  .hero-pin {
    width: 104px;
  }

  .hero-pin__media {
    width: 104px;
    height: 104px;
    border-width: 2px;
  }

  .hero-pins__line {
    top: 52px;
  }

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