@charset "UTF-8";
/* style.scss */
/* _base.scss */
/* Variables */
:root {
  --primary-color: #b8860b;
  --primary-hover: #000000;
  --accent-color: #f5a623;
  --shadow-light: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.1);
  --focus-outline: 2px solid var(--primary-color);
  --background-color: #ffffff;
  --text-color: #222;
}

/* Reset + Box sizing */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  background: var(--background-color);
}

/* Headings */
h1, h2, h3 {
  font-weight: 700;
  color: var(--primary-color);
}

/* =========================
   _layout-corporate.scss
   Corporate layout: header, footer, containers
========================= */
/* -------------------------
   Variables
------------------------- */
:root {
  --gold: #d4af37;
  --gold-dark: #b8860b;
  --shadow-light: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.15);
  --focus-outline: 2px solid var(--gold);
}

/* -------------------------
   Reset & base
------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

/* -------------------------
   Header / Top Bar
------------------------- */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: 100vw;
  overflow-x: hidden;
  /* Logo area */
  /* Right side */
}
@media (max-width: 768px) {
  .top-bar {
    padding: 1rem;
  }
}
.top-bar .logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .top-bar .logo-area {
    width: 100%;
  }
}
.top-bar .logo-area .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 0.4rem;
}
.top-bar .logo-area .logo-link:hover, .top-bar .logo-area .logo-link:focus {
  color: var(--gold);
}
.top-bar .logo-area .logo {
  height: 48px;
}
@media (max-width: 768px) {
  .top-bar .logo-area .logo {
    height: 36px;
    width: 100%;
  }
}
.top-bar .logo-area .logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1a1a;
  white-space: nowrap;
  position: relative;
  /* Very small phones (iPhone SE, etc.) */
}
@media (max-width: 768px) {
  .top-bar .logo-area .logo-text {
    font-size: 0;
  }
  .top-bar .logo-area .logo-text::after {
    content: "Gold Pearl";
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
  }
}
.top-bar .logo-area .menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gold);
  margin-left: auto;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .top-bar .logo-area .menu-toggle {
    display: block;
  }
}
.top-bar .top-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .top-bar .top-right {
    width: 100%;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.top-bar .top-right .main-nav {
  display: flex;
  gap: 2rem;
}
.top-bar .top-right .main-nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.95rem;
}
.top-bar .top-right .main-nav a:hover, .top-bar .top-right .main-nav a:focus-visible {
  color: var(--gold);
  outline: var(--focus-outline);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .top-bar .top-right .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 1rem;
  }
  .top-bar .top-right .main-nav.open {
    display: flex;
  }
}
.top-bar .top-right .cta-button {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.top-bar .top-right .cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}
.top-bar .top-right .cta-button:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .top-bar .top-right .cta-button {
    display: none;
  }
}

/* -------------------------
   Footer
------------------------- */
.site-footer {
  background: #000;
  color: #fff;
  padding: 2rem 2rem 1rem;
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .site-footer .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
.site-footer .footer-legal {
  max-width: 1200px;
  margin: 0.5rem auto 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
  color: #ccc;
  text-align: left;
}
@media (max-width: 768px) {
  .site-footer .footer-legal {
    text-align: center;
  }
}

/* -------------------------
   Accessibility
------------------------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* _components.scss */
/* Corporate Call-to-Action Button */
.cta-button {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-block;
  border: none;
}
.cta-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-light);
}
.cta-button:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* Corporate Promise/Feature Card */
.promise-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--background-color);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s;
  border-top: 4px solid transparent;
}
.promise-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--primary-color);
}
.promise-item:focus-within {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* Pages */
/* =========================
   index.scss - Organisations Landing
========================= */
/* Import base, components, layout */
/* _base.scss */
/* Variables */
:root {
  --primary-color: #b8860b;
  --primary-hover: #000000;
  --accent-color: #f5a623;
  --shadow-light: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.1);
  --focus-outline: 2px solid var(--primary-color);
  --background-color: #ffffff;
  --text-color: #222;
}

/* Reset + Box sizing */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  background: var(--background-color);
}

/* Headings */
h1, h2, h3 {
  font-weight: 700;
  color: var(--primary-color);
}

/* _components.scss */
/* Corporate Call-to-Action Button */
.cta-button {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-block;
  border: none;
}
.cta-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-light);
}
.cta-button:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* Corporate Promise/Feature Card */
.promise-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--background-color);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s;
  border-top: 4px solid transparent;
}
.promise-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--primary-color);
}
.promise-item:focus-within {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* =========================
   _layout-corporate.scss
   Corporate layout: header, footer, containers
========================= */
/* -------------------------
   Variables
------------------------- */
:root {
  --gold: #d4af37;
  --gold-dark: #b8860b;
  --shadow-light: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.15);
  --focus-outline: 2px solid var(--gold);
}

/* -------------------------
   Reset & base
------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

/* -------------------------
   Header / Top Bar
------------------------- */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: 100vw;
  overflow-x: hidden;
  /* Logo area */
  /* Right side */
}
@media (max-width: 768px) {
  .top-bar {
    padding: 1rem;
  }
}
.top-bar .logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .top-bar .logo-area {
    width: 100%;
  }
}
.top-bar .logo-area .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 0.4rem;
}
.top-bar .logo-area .logo-link:hover, .top-bar .logo-area .logo-link:focus {
  color: var(--gold);
}
.top-bar .logo-area .logo {
  height: 48px;
}
@media (max-width: 768px) {
  .top-bar .logo-area .logo {
    height: 36px;
    width: 100%;
  }
}
.top-bar .logo-area .logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1a1a;
  white-space: nowrap;
  position: relative;
  /* Very small phones (iPhone SE, etc.) */
}
@media (max-width: 768px) {
  .top-bar .logo-area .logo-text {
    font-size: 0;
  }
  .top-bar .logo-area .logo-text::after {
    content: "Gold Pearl";
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
  }
}
.top-bar .logo-area .menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gold);
  margin-left: auto;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .top-bar .logo-area .menu-toggle {
    display: block;
  }
}
.top-bar .top-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .top-bar .top-right {
    width: 100%;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.top-bar .top-right .main-nav {
  display: flex;
  gap: 2rem;
}
.top-bar .top-right .main-nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.95rem;
}
.top-bar .top-right .main-nav a:hover, .top-bar .top-right .main-nav a:focus-visible {
  color: var(--gold);
  outline: var(--focus-outline);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .top-bar .top-right .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 1rem;
  }
  .top-bar .top-right .main-nav.open {
    display: flex;
  }
}
.top-bar .top-right .cta-button {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.top-bar .top-right .cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}
.top-bar .top-right .cta-button:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .top-bar .top-right .cta-button {
    display: none;
  }
}

/* -------------------------
   Footer
------------------------- */
.site-footer {
  background: #000;
  color: #fff;
  padding: 2rem 2rem 1rem;
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .site-footer .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
.site-footer .footer-legal {
  max-width: 1200px;
  margin: 0.5rem auto 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
  color: #ccc;
  text-align: left;
}
@media (max-width: 768px) {
  .site-footer .footer-legal {
    text-align: center;
  }
}

/* -------------------------
   Accessibility
------------------------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* -------------------------
   Hero Section
------------------------- */
.page-home .hero {
  min-height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url("../images/herobanner.webp") center/cover;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  color: white;
  padding: 0 15rem;
}
.page-home .hero .hero-content {
  max-width: 600px;
  text-align: left;
}
.page-home .hero .hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: white;
}
.page-home .hero .hero-content .hero-stat {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 1.5rem;
}
.page-home .hero .hero-content .cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
}
@media (max-width: 1024px) {
  .page-home .hero {
    padding: 0 3rem;
  }
}
@media (max-width: 768px) {
  .page-home .hero {
    padding: 0 2rem;
    text-align: center;
    justify-content: center;
    background-attachment: scroll;
  }
}

/* -------------------------
   Benefits Section
------------------------- */
.benefits {
  padding: 4rem 2rem;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
.benefits h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  text-align: center;
}
.benefits .intro {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
  text-align: center;
}
.benefits ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
.benefits ul li {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}
.benefits ul li::before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* -------------------------
   Pilot Program Section
------------------------- */
.pilot {
  background: #f2f2f2;
  padding: 4rem 2rem;
  width: 100%;
}
.pilot .section-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.pilot .section-inner h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.pilot .section-inner p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.pilot .section-inner .cta-button {
  display: inline-block;
  margin: 1.5rem auto 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.pilot .section-inner .cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* -------------------------
   Contact Section
------------------------- */
.contact {
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.contact .section-inner h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  text-align: center;
}
.contact .section-inner form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.contact .section-inner form label {
  font-weight: 600;
  font-size: 0.95rem;
}
.contact .section-inner form input,
.contact .section-inner form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  width: 100%;
}
.contact .section-inner form input:focus,
.contact .section-inner form textarea:focus {
  outline: var(--focus-outline);
  border-color: var(--primary-color);
}
.contact .section-inner form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact .section-inner form button {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.contact .section-inner form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* -------------------------
   Footer tweaks
------------------------- */
.site-footer {
  padding: 2rem 2rem 1rem;
}

/* -------------------------
   Responsive tweaks
------------------------- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
    max-width: 90%;
  }
  .benefits,
  .pilot,
  .contact {
    padding: 2rem 1rem;
  }
  /* ✅ MOBILE CHECKMARK SPACING FIX */
  .benefits ul {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .benefits ul li {
    padding-left: 2rem;
  }
  .benefits ul li::before {
    left: 0.25rem;
  }
  .contact form {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .contact form {
    padding: 1.5rem 1rem;
  }
}/*# sourceMappingURL=style.css.map */