:root {
  --plum: #9f3c91;
  --deep-plum: #452060;
  --midnight: #291546;
  --ink: #070c1d;
  --burgundy: #3d1430;
  --rose-dark: #632240;
  --rose: #913a52;
  --salmon: #bc5960;
  --gold: #e2b570;
  --yellow: #eee98a;
  --lime: #b7d974;
  --sage: #5da75d;
  --teal-dark: #39755c;
  --forest: #285454;
  --navy: #1f394d;
  --indigo: #191b3f;
  --ocean: #192d50;
  --slate: #286080;
  --teal: #3fa0a4;
  --aqua: #86e0ce;
  --mist: #e3f5f1;
  --powder: #81afb5;
  --steel: #446374;
  --charcoal: #32495f;
  --dark-navy: #182e41;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--ink);
  color: var(--mist);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(7, 12, 29, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(134, 224, 206, 0.12);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--aqua);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--powder);
  text-decoration: none;
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--aqua);
}

.nav-cta {
  background: var(--rose);
  color: var(--mist) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--salmon) !important;
  color: var(--ink) !important;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 5rem 5rem;
  position: relative;
  overflow: hidden;
}

/* diagonal colour slab */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 65%;
  height: 120%;
  background: linear-gradient(
    135deg,
    var(--ocean) 0%,
    var(--forest) 50%,
    var(--teal-dark) 100%
  );
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

/* noise texture overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  margin-left: 8rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  border-left: 3px solid var(--rose);
  padding-left: 0.8rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--mist);
  margin-bottom: 1.8rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--powder);
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--aqua);
  color: var(--aqua);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.15s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--aqua);
  color: var(--ink);
  transform: translateY(-2px);
}

/* hero illustration side */
.hero-art {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem 0 2rem;
}

.hero-art svg {
  width: min(420px, 90%);
  filter: drop-shadow(0 30px 60px rgba(63, 160, 164, 0.25));
}

/* ── TRUST STRIP ─────────────────────────────────────── */
.trust-strip {
  background: var(--ocean);
  border-top: 1px solid rgba(134, 224, 206, 0.15);
  border-bottom: 1px solid rgba(134, 224, 206, 0.15);
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aqua);
}

.trust-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── SECTION COMMON ──────────────────────────────────── */
section {
  padding: 6rem 5rem;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--mist);
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: italic;
  color: var(--aqua);
}

.section-body {
  font-size: 1rem;
  color: var(--powder);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}

/* ── SERVICES ────────────────────────────────────────── */
#services {
  background: var(--midnight);
}

.services-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--ink);
  border: 1px solid rgba(134, 224, 206, 0.1);
  border-radius: 8px;
  padding: 2rem;
  transition:
    border-color 0.25s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--plum));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  border-color: rgba(134, 224, 206, 0.3);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mist);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.7;
}

/* ── ABOUT / MISSION ─────────────────────────────────── */
#about {
  background: linear-gradient(
    135deg,
    var(--burgundy) 0%,
    var(--deep-plum) 100%
  );
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text .section-title {
  color: var(--yellow);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-row {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.value-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(226, 181, 112, 0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  text-align: right;
}

.value-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.value-content p {
  font-size: 0.9rem;
  color: rgba(227, 245, 241, 0.75);
  line-height: 1.7;
}

/* ── TESTIMONIALS ────────────────────────────────────── */
#testimonials {
  background: var(--ink);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials-header .section-body {
  margin: 0 auto;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--dark-navy);
  border: 1px solid rgba(134, 224, 206, 0.08);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(63, 160, 164, 0.12);
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--powder);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  padding-top: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--mist);
}

.author-loc {
  font-size: 0.78rem;
  color: var(--steel);
}

/* ── CONTACT ─────────────────────────────────────────── */
#contact {
  background: linear-gradient(180deg, var(--ink) 0%, var(--indigo) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--powder);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(134, 224, 206, 0.15);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--mist);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--aqua);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group select option {
  margin: 40px;
  background: #452060;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--steel);
}

.form-submit {
  background: var(--rose);
  color: var(--mist);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--salmon);
  transform: translateY(-2px);
}

.contact-info {
  padding-top: 1rem;
}

.contact-info .section-body {
  margin-bottom: 2.5rem;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-detail strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.info-detail span {
  font-size: 0.95rem;
  color: var(--powder);
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(134, 224, 206, 0.1);
  padding: 2.5rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--steel);
  margin-top: 0.2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--steel);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--aqua);
}

.pride-bar {
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    #e40303,
    #ff8c00,
    #ffed00,
    #008026,
    #004dff,
    #750787,
    #613915,
    #000000,
    #73d7ee,
    #ffafc8,
    #ffffff,
    #ffafc8,
    #73d7ee,
    #000000,
    #613915
  );
}

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-text > * {
  animation: fadeUp 0.7s ease both;
}

.hero-eyebrow {
  animation-delay: 0.1s;
}
.hero h1 {
  animation-delay: 0.2s;
}
.hero-sub {
  animation-delay: 0.35s;
}
.hero-actions {
  animation-delay: 0.5s;
}

.hero-art svg {
  animation: floatY 5s ease-in-out infinite;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }
  nav ul {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 4rem;
  }
  .hero::before {
    display: none;
  }
  .hero-text {
    margin-top: 3rem;
    margin-left: 0;
  }
  section {
    padding: 4rem 2rem;
  }
  #about,
  #contact {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 2rem 2rem;
  }
  .trust-strip {
    gap: 1.5rem;
    padding: 1rem 1.5rem;
  }
}
