:root {
  --gold: #b79028;
  --navy: #03314b;
  --charcoal: #1c1c1c;
  --ink: #121111;
  --muted: #6b6f7f;
  --soft: #f6f9fd;
  --pale: #f0f4fa;
  --line: #dce5f2;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(3, 49, 75, 0.12);
  --font-main: "Nunito Sans", Arial, sans-serif;
  --font-alt: "Ubuntu", "Nunito Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.section-inner {
  width: min(1170px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  min-height: 112px;
  padding: 28px max(28px, calc((100vw - 1140px) / 2));
  background: transparent;
  color: var(--white);
  backdrop-filter: none;
}

.brand img {
  width: 214px;
  height: auto;
  object-fit: contain;
}

.footer-brand img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  font-weight: 600;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border: 0;
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(183, 144, 40, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: #a47f1f;
  box-shadow: 0 18px 34px rgba(183, 144, 40, 0.32);
  transform: translateY(-1px);
}

.header-button {
  min-width: 142px;
  min-height: 56px;
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink) url("assets/images/wallpapers/6878d53457dd60f1fd82184b.png") center top / cover no-repeat;
  color: var(--white);
}

.hero {
  min-height: 548px;
  padding: 118px 0 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(420px, 1fr);
  gap: 74px;
  align-items: end;
}

.hero-copy {
  align-self: center;
  padding: 24px 0 82px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--font-alt);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(44px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.22;
}

.hero-lines {
  display: grid;
  gap: 0;
  max-width: 640px;
  margin: 14px 0 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.28;
}

.hero-lines p {
  margin: 0;
}

.hero-portrait {
  align-self: end;
}

.hero-portrait img {
  width: min(100%, 525px);
  margin: 0 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.32));
}

.hero-button {
  gap: 8px;
  min-width: 226px;
  min-height: 56px;
  border-radius: 8px;
}

.hero-button span {
  font-size: 18px;
  line-height: 1;
}

.hero-star {
  position: absolute;
  z-index: 1;
  width: 62px;
  height: 62px;
  object-fit: contain;
  opacity: 0.9;
  pointer-events: none;
  transform: rotate(var(--scroll-rotate, 0deg));
  transform-origin: center;
  will-change: transform;
}

.hero-star-left {
  left: auto;
  right: max(32px, calc((100vw - 1120px) / 2 + 2px));
  top: auto;
  bottom: 62px;
  width: 82px;
  height: 82px;
}

.section-compact {
  padding: 0;
}

.as-seen {
  min-height: 174px;
  display: flex;
  align-items: center;
  background: #eef3fb;
}

.as-seen .section-inner {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 42px;
  align-items: center;
  width: min(890px, calc(100% - 40px));
}

.as-seen h2 {
  margin: 0;
  color: #202124;
  font-family: var(--font-main);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.press-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px;
  align-items: center;
}

.press-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
}

.press-logos img {
  width: 100%;
  max-width: 155px;
  max-height: 58px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.press-logos a:hover img {
  opacity: 0.82;
  transform: translateY(-1px);
}

.about,
.services-intro,
.service-cards,
.testimonials,
.faq,
.contact {
  padding: 96px 0;
}

.about {
  position: relative;
  overflow: hidden;
  background:
    url("assets/images/wallpapers/as-seen-on-logo-2-r1200.webp") right 10% top 26px / min(520px, 36vw) auto no-repeat,
    var(--white);
}

.about::after {
  content: "";
  position: absolute;
  right: min(8vw, 110px);
  top: 110px;
  width: 112px;
  height: 112px;
  background: url("assets/images/wallpapers/Background-start.png") center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.about-heading {
  position: relative;
  z-index: 1;
  margin: 0 auto 38px;
  text-align: center;
}

.about-heading h2 {
  margin: 0;
  color: #202124;
  font-family: var(--font-main);
  font-size: clamp(38px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
}

.about-heading p {
  margin: 8px 0 0;
  color: var(--gold);
  font-family: var(--font-main);
  font-size: clamp(42px, 4.3vw, 50px);
  font-weight: 800;
  line-height: 1.1;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(400px, 1fr);
  gap: 72px;
  align-items: center;
  width: min(1030px, 100%);
  margin: 0 auto;
}

.about-image {
  overflow: visible;
  background: transparent;
  border-radius: 8px;
  box-shadow: none;
  transform: translate(34px, -18px);
}

.about-image img {
  width: 112%;
  max-width: none;
  aspect-ratio: 1.06;
  object-fit: contain;
  object-position: center;
}

.split-intro h2,
.testimonials h2,
.contact h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: var(--font-alt);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.14;
}

.about-copy p,
.split-intro p,
.contact-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.about-copy p {
  font-size: 19px;
  line-height: 1.58;
}

.services-intro {
  position: relative;
  overflow: hidden;
  padding: 84px 0 48px;
  background: var(--ink);
  color: var(--white);
}

.services-heading {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  text-align: center;
}

.services-heading h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: clamp(42px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.1;
}

.services-heading h2 span {
  color: var(--gold);
}

.services-heading p {
  max-width: 960px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 21px;
  line-height: 1.48;
}

.services-star {
  position: absolute;
  left: max(26px, calc((100vw - 1040px) / 2));
  top: 102px;
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: 0.85;
  transform: rotate(var(--scroll-rotate, 0deg));
  transform-origin: center;
  pointer-events: none;
}

.service-cards {
  padding: 36px 0 98px;
  background: var(--ink);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: min(1190px, calc(100% - 40px));
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 330px;
  padding: 30px 18px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.service-card h3 {
  margin: 0 0 10px;
  color: #202124;
  font-family: var(--font-main);
  font-size: 29px;
  font-weight: 800;
  line-height: 1.22;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.42;
}

.statement {
  padding: 52px 0 86px;
  text-align: center;
}

.statement.section-dark {
  background: var(--ink);
}

.statement h2 {
  max-width: 980px;
  margin: 0 auto;
  color: var(--gold);
  font-family: var(--font-main);
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.25;
  text-transform: capitalize;
}

.testimonials {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  padding: 30px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.featured-testimonial {
  background: var(--navy);
  color: var(--white);
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.featured-testimonial p {
  color: rgba(255, 255, 255, 0.78);
}

.testimonial-card h3 {
  margin: 28px 0 6px;
  color: var(--gold);
  font-family: var(--font-alt);
  font-size: 24px;
}

.testimonial-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
}

.testimonial-meta img {
  width: 58px;
  height: auto;
  object-fit: contain;
}

.faq {
  background: #eef3fb;
}

.faq h2 {
  margin: 0 0 54px;
  color: #202124;
  font-family: var(--font-main);
  font-size: clamp(38px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
}

.faq h2 span {
  color: var(--gold);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: min(1140px, 100%);
  margin: 0 auto;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  overflow: hidden;
  background: #f6f9fd;
  border-radius: 8px;
  border: 1px solid transparent;
}

details[open] {
  border-color: rgba(183, 144, 40, 0.28);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 15px 16px;
  color: #022b42;
  background: #f6f9fd;
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--white);
  background: #03314b;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

details[open] summary {
  color: #022b42;
  background: #f6f9fd;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 16px 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.contact {
  position: relative;
  overflow: visible;
  padding-bottom: 0;
  background: var(--white);
  color: var(--charcoal);
}

.contact .section-inner {
  width: min(920px, calc(100% - 40px));
}

.contact-panel {
  position: relative;
  z-index: 1;
  padding: 52px 26px 0;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 22px;
  margin-bottom: -150px;
}

.contact-copy {
  width: min(780px, 100%);
  margin: 0 auto 34px;
}

.contact h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-main);
  font-size: clamp(38px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.22;
}

.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.35;
}

.embedded-form {
  width: min(650px, 100%);
  height: 770px;
  margin: 0 auto;
}

.embedded-form iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-star {
  position: absolute;
  z-index: 0;
  right: max(28px, calc((100vw - 1120px) / 2 - 128px));
  bottom: 170px;
  width: 78px;
  height: 78px;
  object-fit: contain;
  pointer-events: none;
  transform: rotate(var(--scroll-rotate, 0deg));
  transform-origin: center;
  transition: transform 0.08s linear;
}

.contact-star-soft {
  right: max(112px, calc((100vw - 1120px) / 2 - 28px));
  bottom: 202px;
  width: 52px;
  height: 52px;
  opacity: 0.16;
}

.contact-star-gold {
  opacity: 0.88;
}

.site-footer {
  padding: 190px 0 58px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  text-align: left;
}

.site-footer .footer-brand {
  justify-self: center;
}

.site-footer .footer-brand img {
  width: 94px;
  height: auto;
  object-fit: contain;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
}

.social-links img {
  width: 32px;
  height: 32px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .header-button {
    justify-self: end;
  }

  .about-grid,
  .split-intro,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
    padding-top: 112px;
  }

  .hero-grid {
    grid-template-columns: minmax(230px, 0.72fr) minmax(360px, 1fr);
    gap: 38px;
  }

  .hero-copy {
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-portrait img {
    width: min(430px, 100%);
  }

  .about-image {
    display: none;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .testimonial-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .section-inner {
    width: min(100% - 32px, 1170px);
  }

  .site-header {
    position: sticky;
    min-height: 76px;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 10px 16px;
    background: rgba(18, 17, 17, 0.94);
    backdrop-filter: blur(16px);
  }

  .brand img {
    width: 148px;
    height: auto;
  }

  .footer-brand img {
    width: 148px;
    height: auto;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 22px;
    background: rgba(18, 17, 17, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
  }

  .header-button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    background-position: center top;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-copy {
    order: 1;
    padding: 22px 0 22px;
  }

  .hero-portrait {
    order: 2;
  }

  .hero h1 {
    font-size: 39px;
    line-height: 1.18;
  }

  .hero-lines {
    font-size: 18px;
  }

  .hero-portrait img {
    width: min(360px, 100%);
    max-height: 430px;
    margin: 0 auto;
    object-fit: contain;
  }

  .hero-star-left {
    left: auto;
    right: 18px;
    top: auto;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .as-seen .section-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .as-seen {
    min-height: auto;
    padding: 30px 0;
  }

  .press-logos {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .press-logos a {
    min-height: 54px;
  }

  .press-logos img {
    max-width: 150px;
    max-height: 48px;
    margin: 0 auto;
  }

  .about,
  .testimonials,
  .faq,
  .contact {
    padding: 64px 0;
  }

  .about-grid,
  .split-intro,
  .faq-grid,
  .contact-grid {
    gap: 32px;
  }

  .faq h2 {
    margin-bottom: 30px;
    font-size: 34px;
  }

  summary {
    font-size: 17px;
  }

  .contact .section-inner {
    width: min(100% - 32px, 920px);
  }

  .contact {
    padding-bottom: 0;
  }

  .contact-panel {
    padding: 36px 18px 0;
    border-width: 2px;
    border-radius: 18px;
    margin-bottom: -112px;
  }

  .contact-copy {
    margin-bottom: 24px;
  }

  .contact-copy p {
    font-size: 18px;
  }

  .embedded-form {
    height: 850px;
  }

  .contact-star {
    right: 16px;
    bottom: 90px;
    width: 52px;
    height: 52px;
  }

  .contact-star-soft {
    right: 72px;
    bottom: 112px;
    width: 36px;
    height: 36px;
  }

  .about {
    background:
      url("assets/images/wallpapers/as-seen-on-logo-2-r1200.webp") right -120px top 16px / 360px auto no-repeat,
      var(--white);
  }

  .about::after {
    right: 12px;
    top: 96px;
    width: 76px;
    height: 76px;
  }

  .about-heading {
    margin-bottom: 30px;
  }

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

  .about-copy {
    order: 2;
  }

  .about-image {
    order: 1;
    width: min(420px, 100%);
    margin: 0 auto;
  }

  .split-intro h2,
  .testimonials h2,
  .contact h2 {
    font-size: 34px;
  }

  .services-intro {
    padding: 58px 0 30px;
  }

  .services-heading h2 {
    font-size: 38px;
  }

  .services-heading p {
    font-size: 18px;
  }

  .services-star {
    left: 18px;
    top: 44px;
    width: 46px;
    height: 46px;
    opacity: 0.72;
  }

  .service-cards {
    padding: 28px 0 58px;
  }

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

  .service-card {
    display: flex;
    min-height: auto;
    padding: 30px 20px;
  }

  .service-card img {
    width: 78px;
    height: 78px;
    margin: 0 0 18px;
  }

  .service-card h3 {
    font-size: 26px;
  }

  .statement {
    padding: 34px 0 58px;
  }

  .statement h2 {
    font-size: 31px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
  }

  .site-footer {
    padding: 132px 0 46px;
  }

  .site-footer p {
    order: 2;
    text-align: center;
  }

  .site-footer .footer-brand {
    order: 1;
  }

  .social-links {
    order: 3;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-lines {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .service-card {
    grid-template-columns: 74px 1fr;
    padding: 16px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  summary {
    padding: 18px;
    font-size: 16px;
  }

  details p {
    padding: 0 18px 18px;
  }
}
