:root {
  --color-bg: #f2f1f5;
  --color-text: #111111;
  --color-deep-blue: #2f3ccd;
  --color-navy: #242c93;
  --color-accent: #f28a1e;
  --color-white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(242, 241, 245, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* slightly more left padding in header so logo isn't glued to edge */
.site-header .container {
  padding-left: 2rem;
  padding-right: 1.5rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-wordmark {
  display: flex;
  align-items: baseline;
}

.logo-main,
.logo-o {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.logo-o {
  color: var(--color-accent);
}

.logo-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.15rem;
  color: #555;
}

.nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  color: #444;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background-color: var(--color-deep-blue);
  color: var(--color-white);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-navy), var(--color-deep-blue));
}

.hero-bg-layer::before,
.hero-bg-layer::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  transform-origin: center;
}

.hero-bg-layer::before {
  width: 160%;
  height: 60%;
  top: -10%;
  left: -30%;
  transform: rotate(-7deg);
}

.hero-bg-layer::after {
  width: 140%;
  height: 50%;
  bottom: -20%;
  right: -20%;
  transform: rotate(8deg);
}

.hero-inner {
  position: relative;
  padding: 5rem 0 4rem;
  z-index: 1;
}

.hero-text {
  max-width: 580px;
}

.hero h1 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(2.1rem, 3vw + 1rem, 3rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 540px;
  margin: 0 0 1.75rem;
  color: #e4e8ff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.08s ease;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #111;
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background-color: #ff9a32;
  border-color: #ff9a32;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: #f5f5f5;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

/* Sections */

.section {
  padding: 4.5rem 0;
}

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

.section-contrast {
  background-color: #ffffff;
}

.section h2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 620px;
  margin-bottom: 2.5rem;
  color: #555;
}

/* Grid */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.card {
  background-color: #ffffff;
  border-radius: 1.2rem;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.section-contrast .card {
  background: linear-gradient(145deg, #ffffff, #f7f7fb);
}

.card h3 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

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

.card ul li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-deep-blue);
}

/* Regions */

.region-card {
  border-top: 3px solid var(--color-deep-blue);
}

/* Partnership / Asia sourcing */

.partnership-list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.1rem;
}

.partnership-list li {
  margin-bottom: 0.35rem;
}

/* Clients */

.section-clients {
  padding-bottom: 2.2rem; /* slightly tighter to contact */
}

.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.clients-logos img {
  max-width: 100%;
  height: auto;
  opacity: 0.95;
}

/* Contact */

.section-contact {
  padding-top: 3rem; /* reduce gap above contact */
}

.contact-card {
  background-color: #ffffff;
  border-radius: 1.2rem;
  padding: 1.7rem 1.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  max-width: 480px;
}

.contact-name {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.2rem;
}

.contact-note {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: #666;
}

.contact-email {
  margin-top: 0.9rem;
  font-size: 0.9rem;
}

.at-text {
  padding: 0 0.1rem;
}

.contact-card a {
  color: var(--color-deep-blue);
  text-decoration: none;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-form label {
  font-size: 0.85rem;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.75rem;
  border: 1px solid #ddd;
  padding: 0.55rem 0.75rem;
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-deep-blue);
  border-color: var(--color-deep-blue);
}

.contact-form button {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* Footer */

.site-footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 1.5rem 0;
  font-size: 0.8rem;
}

.footer-inner {
  text-align: center;
}

/* Responsive */

/* Cookie / consent banner */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.97);
  color: #e5e7eb;
  padding: 0.9rem 0;
  font-size: 0.85rem;
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.cookie-inner p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

.btn-small {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}

@media (max-width: 700px) {
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}


@media (max-width: 900px) {
  .nav {
    display: none; /* simple: hide nav on small screens */
  }

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

  .hero-inner {
    padding: 4.25rem 0 3.25rem;
  }

  .hero {
    min-height: 70vh;
  }

  .site-header .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 0.5rem 0;
  }

  .hero-text {
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card {
    padding: 1.4rem 1.3rem;
  }
}
