/* ============================================================
   GemLight — Global Stylesheet
   Light aquamarine theme: deep ink on very light aqua-white
   Accent: aquamarine #46B5C0 / mist #DFF1F3 / lagoon #55727C
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #F4FAFA;
  color: #15303A;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #46B5C0;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #15303A;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: #15303A;
  margin: 0 0 16px 0;
  font-weight: 700;
}

p {
  margin: 0 0 16px 0;
}

button {
  font-family: inherit;
}

/* ============ Utility ============ */

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

.eyebrow {
  display: inline-block;
  background-color: #46B5C0;
  color: #15303A;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}

.section-heading {
  font-size: 40px;
  letter-spacing: -0.5px;
}

.section-kicker {
  color: #55727C;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background-color: #46B5C0;
  color: #15303A;
}

.btn-primary:hover {
  background-color: #35A3AE;
  color: #15303A;
}

.btn-outline {
  background-color: transparent;
  color: #46B5C0;
  border: 1px solid #46B5C0;
}

.btn-outline:hover {
  background-color: #46B5C0;
  color: #15303A;
}

.btn-ink {
  background-color: #15303A;
  color: #F4FAFA;
}

.btn-ink:hover {
  background-color: #0F232B;
  color: #F4FAFA;
}

/* ============ Giant Wordmark Navigation ============ */

.giant-nav {
  background-color: #F4FAFA;
  border-bottom: 1px solid #C9E6E9;
  position: sticky;
  top: 0;
  z-index: 100;
}

.giant-nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px 14px 24px;
}

.giant-nav .nav-brand {
  display: block;
  font-size: 64px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  color: #46B5C0;
  text-decoration: none;
}

.giant-nav .nav-brand:hover {
  color: #35A3AE;
}

.giant-nav .nav-row {
  margin-top: 14px;
  text-align: right;
}

.giant-nav .nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 28px;
}

.giant-nav .nav-links a {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #55727C;
  font-weight: 600;
  padding-bottom: 6px;
  position: relative;
}

.giant-nav .nav-links a:hover {
  color: #15303A;
}

.giant-nav .nav-links a.active {
  color: #15303A;
}

.giant-nav .nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 2px;
  background-color: #46B5C0;
}

.giant-nav .nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid #C9E6E9;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  color: #15303A;
  font-size: 20px;
  line-height: 1;
}

/* ============ Hero — Giant Background Word ============ */

.word-hero {
  position: relative;
  overflow-x: hidden;
  background-color: #F4FAFA;
}

.word-hero .word-hero-mark {
  position: absolute;
  top: 20px;
  right: -40px;
  font-size: 200px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 8px;
  color: #DFF1F3;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.word-hero .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 24px 120px 24px;
}

.word-hero .hero-eyebrow {
  display: inline-block;
  background-color: #46B5C0;
  color: #15303A;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.word-hero .hero-title {
  font-size: 62px;
  line-height: 1.05;
  color: #15303A;
  max-width: 760px;
  margin-bottom: 26px;
  letter-spacing: -1px;
}

.word-hero .hero-sub {
  font-size: 19px;
  color: #55727C;
  max-width: 640px;
  margin-bottom: 38px;
}

.word-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ Magazine Collage ============ */

.magazine-collage {
  background-color: #F4FAFA;
  padding: 96px 0;
}

.magazine-collage .collage-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.magazine-collage .collage-intro {
  max-width: 520px;
  color: #55727C;
  font-size: 17px;
}

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

.collage-grid .tile {
  background-color: #EDF7F8;
  border: 1px solid #C9E6E9;
  border-radius: 16px;
  padding: 36px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.collage-grid .tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px #C9E6E9;
}

.collage-grid .tile-large {
  grid-column: span 3;
}

.collage-grid .tile-small {
  grid-column: span 2;
}

.tile .tile-diamond {
  width: 24px;
  height: 24px;
  background-color: #46B5C0;
  transform: rotate(45deg);
  margin-bottom: 22px;
  border-radius: 4px;
}

.tile .tile-title {
  font-size: 22px;
  color: #15303A;
  margin-bottom: 12px;
}

.tile .tile-text {
  color: #55727C;
  font-size: 15px;
}

/* ============ Metric Band ============ */

.metric-band {
  background-color: #46B5C0;
  padding: 72px 0;
}

.metric-band .metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-band .metric {
  text-align: center;
  padding: 0 24px;
  border-left: 1px solid #F4FAFA;
}

.metric-band .metric:first-child {
  border-left: none;
}

.metric-band .metric-num {
  font-size: 58px;
  font-weight: 800;
  color: #15303A;
  line-height: 1.05;
  margin-bottom: 6px;
}

.metric-band .metric-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #15303A;
}

/* ============ Statement Band ============ */

.statement-band {
  background-color: #DFF1F3;
  padding: 88px 0;
}

.statement-band .statement-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.statement-band .statement-line {
  font-size: 30px;
  line-height: 1.3;
  color: #15303A;
  max-width: 860px;
  margin-bottom: 18px;
  font-weight: 700;
}

.statement-band .statement-note {
  font-size: 17px;
  color: #55727C;
  max-width: 720px;
}

/* ============ CTA Band ============ */

.cta-band {
  background-color: #46B5C0;
  padding: 84px 0;
}

.cta-band .cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band .cta-title {
  font-size: 36px;
  color: #15303A;
  margin-bottom: 10px;
}

.cta-band .cta-note {
  font-size: 17px;
  color: #15303A;
}

/* ============ Link Row Footer ============ */

.link-row-footer {
  background-color: #F4FAFA;
  border-top: 1px solid #C9E6E9;
  padding: 40px 24px 44px 24px;
}

.link-row-footer .footer-links {
  text-align: center;
  margin-bottom: 18px;
}

.link-row-footer .footer-links a {
  color: #55727C;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 12px;
  position: relative;
}

.link-row-footer .footer-links a:hover {
  color: #15303A;
}

.link-row-footer .footer-links a + a::before {
  content: "\2022";
  color: #C9E6E9;
  position: absolute;
  left: -17px;
  top: 0;
  font-size: 14px;
}

.link-row-footer .footer-legal {
  text-align: center;
  color: #55727C;
  font-size: 13px;
}

.link-row-footer .footer-legal a {
  color: #55727C;
}

.link-row-footer .footer-legal a:hover {
  color: #15303A;
}

/* ============ Secondary Pages: Services / Contact ============ */

.page-hero {
  position: relative;
  overflow-x: hidden;
  background-color: #F4FAFA;
  padding: 90px 0 96px 0;
  border-bottom: 1px solid #C9E6E9;
}

.page-hero .page-hero-mark {
  position: absolute;
  top: 8px;
  right: -30px;
  font-size: 150px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 6px;
  color: #DFF1F3;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.page-hero .page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero .page-hero-title {
  font-size: 52px;
  color: #15303A;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.page-hero .page-hero-sub {
  font-size: 18px;
  color: #55727C;
  max-width: 680px;
}

.page-hero .page-hero-eyebrow {
  display: inline-block;
  background-color: #46B5C0;
  color: #15303A;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

/* ---- Services page ---- */

.services-band {
  background-color: #F4FAFA;
  padding: 96px 0;
}

.services-band:nth-of-type(even) {
  background-color: #EDF7F8;
}

.services-band .service-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

.services-band .service-index {
  font-size: 72px;
  font-weight: 800;
  color: #46B5C0;
  line-height: 1;
  margin-bottom: 8px;
}

.services-band .service-label {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #55727C;
  font-weight: 600;
}

.services-band .service-title {
  font-size: 32px;
  color: #15303A;
  margin-bottom: 20px;
}

.services-band .service-text p {
  color: #55727C;
  font-size: 17px;
}

.services-band .service-list {
  margin: 20px 0 0 0;
  padding: 0;
  list-style: none;
}

.services-band .service-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: #55727C;
  font-size: 15px;
  border-bottom: 1px solid #C9E6E9;
}

.services-band .service-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 19px;
  width: 12px;
  height: 12px;
  background-color: #46B5C0;
  transform: rotate(45deg);
  border-radius: 2px;
}

.process-band {
  background-color: #DFF1F3;
  padding: 96px 0;
}

.process-band .process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.process-band .process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.process-band .step {
  background-color: #F4FAFA;
  border: 1px solid #C9E6E9;
  border-radius: 14px;
  padding: 26px 22px;
}

.process-band .step-num {
  font-size: 30px;
  font-weight: 800;
  color: #46B5C0;
  margin-bottom: 8px;
}

.process-band .step-title {
  font-size: 17px;
  color: #15303A;
  margin-bottom: 8px;
}

.process-band .step-text {
  font-size: 14px;
  color: #55727C;
}

/* ---- Contact page ---- */

.contact-band {
  background-color: #F4FAFA;
  padding: 96px 0;
}

.contact-band .contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.contact-form {
  background-color: #EDF7F8;
  border: 1px solid #C9E6E9;
  border-radius: 18px;
  padding: 40px;
}

.contact-form .form-field {
  margin-bottom: 22px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #15303A;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #C9E6E9;
  border-radius: 10px;
  background-color: #F4FAFA;
  color: #15303A;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #46B5C0;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .form-note {
  font-size: 13px;
  color: #55727C;
  margin-top: 12px;
}

.contact-form .form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  display: none;
}

.contact-form .form-status.ok {
  display: block;
  background-color: #DFF1F3;
  color: #15303A;
  border: 1px solid #46B5C0;
}

.contact-form .form-status.err {
  display: block;
  background-color: #EDF7F8;
  color: #15303A;
  border: 1px solid #46B5C0;
}

.contact-info .info-card {
  background-color: #EDF7F8;
  border: 1px solid #C9E6E9;
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 24px;
}

.contact-info .info-card-title {
  font-size: 18px;
  color: #15303A;
  margin-bottom: 12px;
}

.contact-info .info-card p {
  color: #55727C;
  font-size: 15px;
  margin-bottom: 8px;
}

.contact-info .info-card a {
  color: #46B5C0;
  font-weight: 600;
}

.faq-band {
  background-color: #DFF1F3;
  padding: 96px 0;
}

.faq-band .faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-list {
  max-width: 760px;
  margin-top: 36px;
}

.faq-item {
  background-color: #F4FAFA;
  border: 1px solid #C9E6E9;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow-x: hidden;
}

.faq-item .faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 700;
  color: #15303A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item .faq-question::after {
  content: "+";
  font-size: 22px;
  color: #46B5C0;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  display: none;
  padding: 0 22px 20px 22px;
  color: #55727C;
  font-size: 15px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============ Scroll Reveal ============ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============ Responsive ============ */

@media (max-width: 900px) {
  .word-hero .word-hero-mark {
    font-size: 120px;
    right: -20px;
  }

  .collage-grid .tile-large,
  .collage-grid .tile-small {
    grid-column: span 3;
  }

  .metric-band .metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .metric-band .metric:nth-child(3) {
    border-left: none;
  }

  .process-band .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-band .service-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-band .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .giant-nav .nav-brand {
    font-size: 34px;
    letter-spacing: 2px;
  }

  .giant-nav .nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .giant-nav .nav-toggle {
    display: block;
  }

  .giant-nav .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0 6px 0;
    width: 100%;
  }

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

  .word-hero .hero-inner {
    padding: 64px 24px 72px 24px;
  }

  .word-hero .word-hero-mark {
    font-size: 64px;
    right: -10px;
    top: 30px;
  }

  .word-hero .hero-title {
    font-size: 38px;
  }

  .word-hero .hero-sub {
    font-size: 17px;
  }

  .section-heading {
    font-size: 30px;
  }

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

  .collage-grid .tile-large,
  .collage-grid .tile-small {
    grid-column: span 1;
  }

  .metric-band .metrics {
    grid-template-columns: 1fr;
  }

  .metric-band .metric {
    border-left: none;
    border-top: 1px solid #F4FAFA;
    padding: 28px 0;
  }

  .metric-band .metric:first-child {
    border-top: none;
    padding-top: 0;
  }

  .metric-band .metric-num {
    font-size: 44px;
  }

  .statement-band .statement-line {
    font-size: 24px;
  }

  .cta-band .cta-title {
    font-size: 28px;
  }

  .link-row-footer .footer-links a {
    display: inline-block;
    margin: 6px 10px;
  }

  .link-row-footer .footer-links a + a::before {
    display: none;
  }

  .page-hero .page-hero-title {
    font-size: 36px;
  }

  .page-hero .page-hero-mark {
    font-size: 80px;
  }

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

  .contact-form {
    padding: 26px;
  }
}
