:root {
  --navy: #1B4B4B;
  --navy-deep: #0F2B2B;
  --slate: #2E7D7D;
  --slate-light: #4D9E9E;
  --grey-light: #E0EDED;
  --grey-mid: #C5DFDF;
  --grey-text: #1E2A2A;
  --white: #FFFFFF;
  --off-white: #F6F9F9;
  --gold-accent: #C9A84C;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TGA NOTICE ── */
.tga-notice {
  background-color: #1B4B4B;
  color: #E0EDED;
  text-align: center;
  padding: 10px 24px;
  font-size: 0.875rem;
  line-height: 1.5;
  border-bottom: 2px solid #2E7D7D;
}

.tga-notice strong {
  color: #ffffff;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #F6F9F9;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: none;
  transition: all 0.3s ease;
}

nav.scrolled {
  height: 62px;
  background: rgba(235,243,243,0.97);
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--slate);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  letter-spacing: -1px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.nav-logo-text span {
  color: var(--grey-text);
  font-weight: 400;
  font-size: 0.85rem;
  display: block;
  letter-spacing: 0.08em;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--slate); }

.nav-links a.nav-active { color: var(--slate); }

.nav-cta {
  background: var(--slate) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  transition: background 0.2s !important;
  text-transform: none !important;
}

.nav-cta:hover { background: var(--slate-light) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,125,125,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,125,125,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,125,125,0.25) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 5% 80px;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,125,125,0.3);
  border: 1px solid rgba(46,125,125,0.5);
  color: var(--grey-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #2E7D7D;
  border-radius: 50%;
  box-shadow: 0 0 8px #2E7D7D;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--grey-mid);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.btn-primary {
  background: var(--white);
  color: var(--navy);
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--grey-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: all 0.25s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

/* ── SECTION SHARED ── */
section { padding: 100px 5%; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title.light { color: var(--white); }
.section-title.center { text-align: center; }

.section-body {
  font-size: 1.05rem;
  color: var(--grey-text);
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px;
}

.section-body.light { color: rgba(255,255,255,0.7); }

.container { max-width: 1200px; margin: 0 auto; }

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--white);
}

.how-it-works .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 72px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--slate), transparent 50%, var(--slate));
  opacity: 0.3;
}

.step {
  padding: 40px 48px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.step p {
  font-size: 0.95rem;
  color: var(--grey-text);
  line-height: 1.75;
  font-weight: 300;
}

/* ── SERVICES ── */
.services {
  background: var(--white);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.services-visual {
  height: 100%;
  min-height: 600px;
  background: #F6F9F9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
}

.services-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: 10px;
  border: 1px solid var(--grey-light);
  transition: all 0.25s;
  cursor: default;
}

.service-item:hover {
  border-color: var(--slate);
  background: var(--off-white);
  transform: translateX(4px);
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.service-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.service-item p {
  font-size: 0.875rem;
  color: var(--grey-text);
  line-height: 1.6;
  font-weight: 300;
}

.buyers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── PRODUCTS ── */
.products {
  background: var(--off-white);
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.products-header {
  text-align: center;
  margin-bottom: 64px;
}

.products-categories {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 0 20px;
}

.products-categories-header {
  text-align: center;
  margin-bottom: 48px;
}

.products-categories-body {
  text-align: center;
  margin: 0 auto;
  max-width: 520px;
}

.product-card--custom {
  border: 1.5px dashed var(--slate);
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--grey-light);
  transition: all 0.3s;
}

.product-card:hover {
  box-shadow: 0 20px 60px rgba(27,75,75,0.12);
  transform: translateY(-6px);
  border-color: var(--slate);
}

.product-card-image {
  height: 200px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.product-card:hover .product-card-image img { opacity: 0.85; }

.product-card-body {
  padding: 28px;
}

.product-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 10px;
  display: block;
}

.product-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}

.product-card-body p {
  font-size: 0.875rem;
  color: var(--grey-text);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}

.product-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.product-link:hover { gap: 10px; color: var(--slate); }

/* ── BUTTONS ── */
.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}

.btn-navy:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

/* ── CONTACT ── */
.contact {
  background: var(--white);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 400;
}

.contact-form {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: 16px;
  padding: 44px;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--slate);
}

.form-group textarea { height: 120px; resize: vertical; }

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232E7D7D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.form-submit:hover {
  background: var(--slate);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  padding: 72px 5% 36px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 36px;
}

.footer-brand .nav-logo-text {
  font-size: 1.3rem;
  margin-bottom: 16px;
  display: block;
  color: #4D9E9E;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: rgba(255,255,255,0.6);
}

.footer-flag {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── DIVIDER ── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--slate);
  border-radius: 2px;
  margin: 20px 0 32px;
}

.divider.center { margin: 20px auto 32px; }
.divider.light { background: rgba(255,255,255,0.3); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy-deep);
  padding: 110px 5% 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,125,125,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,125,125,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,125,125,0.2) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.page-orb {
  position: absolute;
  border-radius: 50%;
  background: #2E7D7D;
  pointer-events: none;
  will-change: transform;
}

@keyframes pageOrbDrift1 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(35px, -42px); }
}
@keyframes pageOrbDrift2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-40px, 30px); }
}
@keyframes pageOrbDrift3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-28px, -36px); }
}

/* ── MOBILE NAVIGATION ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── WHY AUSTRALIA ── */
.why-australia-section {
  background: var(--off-white);
  padding: 80px 5%;
}

.why-australia-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.why-australia-body {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 620px;
}

.why-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--grey-light);
  text-align: center;
}

.why-card-bar {
  width: 48px;
  height: 4px;
  background: var(--slate);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--grey-text);
  line-height: 1.7;
  font-weight: 300;
}

.why-australia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}


@media (max-width: 768px) {
  .why-australia-grid {
    grid-template-columns: 1fr;
  }
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #F6F9F9;
    flex-direction: column;
    padding: 8px 0 16px;
    gap: 0;
    box-shadow: 0 8px 32px rgba(27,75,75,0.1);
    border-top: 1px solid var(--grey-light);
  }

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

  .nav-links li {
    padding: 0;
    border-bottom: 1px solid var(--grey-light);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 14px 5%;
    font-size: 0.95rem;
  }

  .nav-cta {
    display: block !important;
    padding: 12px 24px !important;
    text-align: center;
    border-radius: 6px !important;
  }

  .hero-content {
    padding: 130px 5% 80px;
  }

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

  .steps-grid::before {
    display: none;
  }

  .services-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .buyers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

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

@media (max-width: 480px) {
  .buyers-grid {
    grid-template-columns: 1fr;
  }

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

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

/* ── HERO ORBS (index.html) ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: #2E7D7D;
  pointer-events: none;
  will-change: transform;
}
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(40px, -55px); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-50px, 38px); }
}
@keyframes orbDrift3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(30px, 50px); }
}
@keyframes orbDrift4 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-35px, -45px); }
}
@keyframes orbDrift5 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(55px, 30px); }
}
@keyframes orbDrift6 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-28px, 52px); }
}

/* ── CONTACT FORM VALIDATION ── */
.form-group input.field-error,
.form-group textarea.field-error {
  border-color: #E24B4A;
}
.field-error-msg {
  display: none;
  color: #E24B4A;
  font-size: 0.78rem;
  margin-top: 5px;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

/* ── CLIENT CARDS (who-we-serve.html) ── */
.client-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 14px;
  padding: 36px 28px;
  transition: all 0.3s;
}
.client-card:hover {
  box-shadow: 0 16px 48px rgba(27,75,75,0.10);
  border-color: var(--slate);
  transform: translateY(-4px);
}
.client-card-bar {
  width: 40px;
  height: 3px;
  background: var(--slate);
  border-radius: 2px;
  margin-bottom: 24px;
}
.client-card-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.client-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.client-card p {
  font-size: 0.875rem;
  color: var(--grey-text);
  line-height: 1.75;
  font-weight: 300;
}
.client-cta {
  background: var(--navy-deep);
  padding: 88px 5%;
  position: relative;
  overflow: hidden;
}
.client-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,125,125,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,125,125,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.client-cta-glow {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,125,125,0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* ── 404 PAGE ── */
.not-found {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  background: var(--white);
}
.not-found-inner {
  max-width: 520px;
}
.not-found-code {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 700;
  color: var(--slate-light);
  line-height: 1;
  margin: 0 0 20px;
  letter-spacing: -2px;
}
.not-found-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 16px;
}
.not-found-body {
  font-size: 0.975rem;
  color: var(--grey-text);
  line-height: 1.75;
  font-weight: 300;
  margin: 0 0 36px;
}

/* ── PRIVACY / TERMS PAGES ── */
.privacy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 5% 100px;
}
.privacy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 16px;
}
.privacy-content h2:first-of-type {
  margin-top: 0;
}
.privacy-content p {
  font-size: 0.975rem;
  color: var(--grey-text);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}
.privacy-content ul {
  margin: 0 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.privacy-content ul li {
  font-size: 0.975rem;
  color: var(--grey-text);
  line-height: 1.75;
  font-weight: 300;
}
.privacy-meta {
  font-size: 0.85rem;
  color: var(--grey-text);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--grey-light);
}
.privacy-contact-box {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 16px;
}
.privacy-contact-box p {
  margin: 0;
}
.privacy-contact-box a {
  color: var(--navy);
  font-weight: 500;
}
