@font-face {
  font-family: "Manrope";
  src: url("/static/fonts/manrope-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 800;
}

:root {
  --navy: #090909;
  --navy-2: #050505;
  --ink: #17172b;
  --muted: #66645f;
  --orange: #fa6400;
  --orange-dark: #e85d00;
  --ivory: #f5f3ef;
  --white: #fff;
  --line: rgba(23, 23, 43, .13);
  --soft-shadow: 0 18px 55px rgba(20, 18, 15, .09);
  --card-radius: 12px;
  --font-display: "Manrope", Arial, sans-serif;
}

.sg-hero > picture,
.sg-office-cta > picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.sg-office-cta > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sg-editorial-image > picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* Editorial blog and service enquiry */
.service-footer-form {
  min-height: 470px;
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(255,255,255,.14);
  background: #121212;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-footer-form-head { max-width: 560px; margin-bottom: 34px; }
.service-footer-form .eyebrow { color: var(--orange); }
.service-footer-form h3 {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: .94;
}
.service-footer-form-head p:last-child { margin: 0; color: rgba(255,255,255,.62); }
.service-footer-form form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.service-footer-form label { display: grid; gap: 8px; color: rgba(255,255,255,.65); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.service-footer-form label:nth-of-type(3) { grid-column: 1 / -1; }
.service-footer-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 0;
  outline: 0;
  background: #0a0a0a;
  color: #fff;
  font: inherit;
}
.service-footer-form input:focus { border-color: var(--orange); }
.service-footer-form button { grid-column: 1 / -1; justify-self: start; margin-top: 8px; }

.blog-index-hero {
  position: relative;
  min-height: min(840px, calc(100svh - 96px));
  display: flex;
  align-items: flex-end;
  padding: clamp(130px, 14vw, 210px) 0 clamp(72px, 8vw, 118px);
  overflow: hidden;
  background: #080808;
  color: #fff;
}
.blog-index-hero::after, .article-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8, 8, 8, .9) 0%, rgba(8, 8, 8, .76) 55%, rgba(8, 8, 8, .68) 100%), linear-gradient(0deg, rgba(8, 8, 8, .7), rgba(8, 8, 8, .12) 58%);
}
.blog-hero-image, .article-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-hero-image { object-position: center 48%; }
.article-hero-image { object-position: center 46%; }
.blog-index-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(240px, .55fr); gap: 8vw; align-items: end; }
.blog-index-hero h1 {
  max-width: 940px;
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 9.5rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.blog-index-hero h1 em { color: var(--orange); font-style: normal; }
.blog-index-hero-aside, .blog-index-intro { padding: 0 0 10px 28px; border-left: 1px solid rgba(255,255,255,.28); }
.blog-index-intro > span { display: block; margin-bottom: 14px; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.blog-index-hero-aside p, .blog-index-intro p { margin: 0; color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.65; }

/* Focused About and Contact pages */
.about-page [data-reveal], .blog-page [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}
.about-simple-hero {
  position: relative;
  min-height: min(760px, calc(100svh - 96px));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(170px, 18vw, 250px) 0 clamp(70px, 8vw, 110px);
  background: #090909;
  color: #fff;
}
.about-simple-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(5,5,5,.7);
}
.about-simple-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.about-simple-hero-inner { position: relative; z-index: 2; }
.about-simple-hero h1 {
  max-width: 970px;
  margin: 18px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7.2vw, 7.6rem);
  font-weight: 500;
  line-height: .9;
  text-wrap: balance;
}
.about-simple-hero-inner > p:last-child {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.65;
  text-wrap: pretty;
}
.about-story, .about-markets, .about-faq, .about-enquiry { padding: clamp(80px, 9vw, 132px) 0; }
.about-story { background: #f4f0e8; }
.about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}
.about-story h2, .about-section-heading h2, .about-faq h2 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.7vw, 5.4rem);
  font-weight: 500;
  line-height: .92;
  text-wrap: balance;
}
.about-story h2 { max-width: 720px; }
.about-story-copy { align-self: stretch; display: flex; flex-direction: column; justify-content: center; max-width: 680px; padding-left: clamp(28px, 3.5vw, 56px); border-left: 1px solid #d4ccc2; }
.about-story-copy p, .about-section-heading > p, .about-faq header > p:last-child {
  margin: 0;
  color: #68625b;
  font-size: 17px;
  line-height: 1.75;
  text-wrap: pretty;
}
.about-story-copy p + p { margin-top: 24px; }
.about-markets { background: #0a0a0a; color: #fff; }
.about-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .5fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 46px;
}
.about-markets .about-section-heading > p { color: rgba(255,255,255,.55); }
.about-market-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.16); }
.about-market-grid article { min-height: 340px; padding: clamp(34px, 5vw, 70px); border-right: 1px solid rgba(255,255,255,.16); }
.about-market-grid article:last-child { border-right: 0; }
.about-market-grid span { color: var(--orange); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.about-market-grid h3 { margin: 80px 0 18px; font-size: clamp(2rem, 3.2vw, 3.5rem); line-height: 1; }
.about-market-grid p { max-width: 560px; margin: 0; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.7; text-wrap: pretty; }
.about-faq { background: #0a0a0a; color: #fff; }
.about-faq-layout { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); gap: clamp(50px, 9vw, 150px); align-items: start; }
.about-faq header { position: sticky; top: 130px; }
.about-faq header > p:last-child { max-width: 470px; margin-top: 24px; color: rgba(255,255,255,.55); }
.about-faq-list { border-top: 1px solid rgba(255,255,255,.2); }
.about-faq-list details { border-bottom: 1px solid rgba(255,255,255,.2); }
.about-faq-list summary {
  min-height: 90px;
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  list-style: none;
}
.about-faq-list summary::-webkit-details-marker { display: none; }
.about-faq-list summary span { color: var(--orange); font-size: 22px; text-align: center; }
.about-faq-list details[open] summary span { transform: rotate(45deg); }
.about-faq-list details p { max-width: 760px; margin: -8px 0 30px; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.75; text-wrap: pretty; }
.about-enquiry { padding: 0; background: #0a0a0a; color: #fff; }
.about-enquiry .footer-cta { min-height: 760px; padding-block: clamp(76px, 9vw, 132px); }
.about-enquiry .footer-cta-copy h2 { text-wrap: balance; }
.about-enquiry .service-footer-form { border-color: rgba(255,255,255,.18); }
.about-orange-cta { padding: clamp(64px, 7vw, 104px) 0; background: var(--orange); color: #fff; }
.about-orange-cta-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: clamp(48px, 8vw, 120px); align-items: end; }
.about-orange-cta .eyebrow { color: rgba(255,255,255,.72); }
.about-orange-cta h2 { max-width: 820px; margin: 14px 0 0; font-family: var(--font-display); font-size: clamp(3rem, 5.2vw, 5.8rem); font-weight: 500; line-height: .92; text-wrap: balance; }
.about-orange-cta-action { max-width: 470px; }
.about-orange-cta-action p { margin: 0 0 28px; color: rgba(255,255,255,.88); font-size: 16px; line-height: 1.7; text-wrap: pretty; }
.about-orange-cta .btn { border-color: #fff; background: #fff; color: #111; box-shadow: none; }
.about-orange-cta .btn:hover { border-color: #111; background: #111; color: #fff; }
.contact-hero { position: relative; }
.contact-roadmap { background: #f4f0e8; }
.contact-methods { background: #0a0a0a; }
.contact-methods address { color: rgba(255,255,255,.7); font-style: normal; font-size: 14px; line-height: 1.65; }
.blog-index-content { padding: clamp(80px, 10vw, 150px) 0; background: #f4f0e8; }
.blog-index-bar { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 42px; }
.blog-index-bar h2 { margin: 6px 0 0; font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 4.8rem); font-weight: 400; line-height: .95; }
.blog-index-count, .blog-index-bar > span { flex: none; color: #726b62; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.blog-feature-card { display: grid; grid-template-columns: 1.16fr .84fr; min-height: 590px; background: #fff; color: #111; }
.blog-index-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.blog-index-grid .blog-feature-card { grid-template-columns: 1fr; min-height: 690px; overflow: hidden; }
.blog-index-grid .blog-feature-media { min-height: 280px; }
.blog-index-grid .blog-feature-card > article { min-width: 0; padding: 34px; justify-content: flex-start; }
.blog-index-grid .blog-feature-card h3 { margin: 22px 0 16px; font-size: clamp(1.65rem, 2.3vw, 2.45rem); line-height: 1.03; }
.blog-index-grid .blog-feature-card article > p { margin-bottom: 28px; font-size: 15px; }
.blog-index-grid .blog-card-footer { margin-top: auto; }
.blog-feature-media { position: relative; min-height: 520px; overflow: hidden; background: #171717; }
.blog-feature-media picture { position: absolute; inset: 0; display: block; }
.blog-feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.blog-feature-card:hover .blog-feature-media img { transform: scale(1.035); }
.blog-feature-media > span { position: absolute; top: 24px; left: 24px; padding: 8px 10px; background: #0a0a0a; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.blog-feature-number { position: absolute; left: 26px; bottom: 22px; color: #fff; font-family: var(--font-display); font-size: 5rem; line-height: 1; text-shadow: 0 2px 24px rgba(0,0,0,.3); }
.blog-feature-copy, .blog-feature-card > article { padding: clamp(38px, 5vw, 76px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.blog-feature-meta, .article-meta { display: flex; flex-wrap: wrap; gap: 9px 18px; color: #756d63; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.blog-feature-copy h3, .blog-feature-card h3 { margin: 26px 0 20px; font-size: clamp(2.6rem, 4.3vw, 5rem); font-weight: 500; line-height: .94; letter-spacing: -.045em; }
.blog-feature-copy > p, .blog-feature-card article > p { margin: 0 0 32px; color: #635d56; font-size: 17px; line-height: 1.72; }
.blog-card-meta, .blog-card-footer { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #756d63; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.blog-card-footer { margin-top: auto; padding-top: 24px; border-top: 1px solid #ddd6cb; }
.blog-card-footer strong { color: #111; }
.blog-index-cta { padding: clamp(76px, 8vw, 116px) 0; border-top: 1px solid #d8cec2; background: #e9e1d6; color: #151515; }
.blog-index-cta .shell {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.2fr) minmax(300px, .72fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.blog-index-cta-marker { align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; padding: 4px 24px 4px 0; border-right: 1px solid #cfc3b6; color: #756d64; }
.blog-index-cta-marker span { font-size: 10px; font-weight: 700; text-transform: uppercase; }
.blog-index-cta-marker b { color: var(--orange); font-family: var(--font-display); font-size: 2.25rem; font-weight: 500; }
.blog-index-cta h2 { max-width: 760px; margin: 12px 0 0; font-family: var(--font-display); font-size: clamp(3rem, 5vw, 5.6rem); font-weight: 500; line-height: .94; text-wrap: balance; }
.blog-index-cta-action { max-width: 480px; }
.blog-index-cta-action p { margin: 0 0 28px; color: #655f58; font-size: 16px; line-height: 1.7; text-wrap: pretty; }
.blog-index-cta-action .btn { background: var(--orange); color: #fff; }

.article-hero {
  position: relative;
  padding: clamp(180px, 18vw, 250px) 0 90px;
  overflow: hidden;
  background: #080808;
  color: #fff;
}
.article-hero::after { background: linear-gradient(90deg, rgba(8, 8, 8, .92) 0%, rgba(8, 8, 8, .78) 58%, rgba(8, 8, 8, .62) 100%), linear-gradient(0deg, rgba(8, 8, 8, .74), rgba(8, 8, 8, .16) 60%); }
.article-hero-inner { position: relative; z-index: 2; max-width: 1180px; }
.article-hero h1 { max-width: 1040px; margin: 24px 0 32px; font-family: var(--font-display); font-size: clamp(3.8rem, 7.4vw, 8.1rem); font-weight: 400; line-height: .88; letter-spacing: -.05em; }
.article-hero .article-meta { color: rgba(255,255,255,.58); }
.article-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 46px; color: rgba(255,255,255,.48); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.article-breadcrumb a:hover { color: var(--orange); }
.article-hero-lede { max-width: 760px; margin: 0 0 34px; color: rgba(255,255,255,.66); font-size: 18px; line-height: 1.65; }
.article-byline { display: flex; align-items: center; gap: 15px; }
.article-byline .article-author-mark { width: 50px; height: 50px; font-size: 18px; }
.article-byline strong, .article-byline small { display: block; }
.article-byline small { margin-top: 4px; color: rgba(255,255,255,.5); font-size: 11px; }
.article-reading-section { padding: clamp(74px, 9vw, 140px) 0; background: #f7f4ee; color: #151515; }
.article-layout { display: grid; grid-template-columns: 180px minmax(0, 720px) minmax(260px, 330px); gap: clamp(30px, 4vw, 66px); align-items: start; }
.article-toc, .article-enquiry { position: sticky; top: 118px; }
.article-toc strong, .article-toc > span { display: block; margin-bottom: 19px; color: #8c8378; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.article-toc a { display: block; padding: 9px 0; border-bottom: 1px solid #ddd6cb; color: #4e4943; font-size: 13px; line-height: 1.35; }
.article-toc a:hover { color: var(--orange); }
.article-body { min-width: 0; font-size: 18px; line-height: 1.82; }
.article-body .article-lead { margin: 0 0 60px; font-family: var(--font-display); font-size: clamp(1.8rem, 2.4vw, 2.7rem); line-height: 1.25; }
.article-body section { scroll-margin-top: 110px; padding: 56px 0; border-top: 1px solid #d8d0c5; }
.article-body section:first-of-type { padding-top: 0; border-top: 0; }
.article-body h2 { margin: 0 0 25px; font-family: var(--font-display); font-size: clamp(2.35rem, 3.7vw, 4.25rem); font-weight: 400; line-height: .98; letter-spacing: -.03em; }
.article-body h3 { margin: 34px 0 10px; font-size: 1.15rem; line-height: 1.35; }
.article-body p { margin: 0 0 22px; color: #48433d; }
.article-body ul, .article-body ol { margin: 20px 0 25px; padding-left: 22px; color: #48433d; }
.article-body li { margin: 11px 0; }
.article-section-number { display: block; margin-bottom: 16px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.article-checklist { list-style: none; padding-left: 0 !important; }
.article-checklist li { position: relative; padding: 18px 18px 18px 50px; border-top: 1px solid #d8d0c5; }
.article-checklist li::before { content: "✓"; position: absolute; top: 17px; left: 12px; color: var(--orange); font-weight: 900; }
.article-callout { margin: 34px 0; padding: 30px 34px; border-left: 5px solid #111; background: var(--orange); color: #111; }
.article-callout > span { display: block; margin-bottom: 8px; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.article-callout p:last-child { margin-bottom: 0; color: inherit; }
.article-requirements, .article-steps, .article-benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 30px 0; background: #d9d1c7; border: 1px solid #d9d1c7; }
.article-benefit-grid { grid-template-columns: repeat(3, 1fr); }
.article-requirements > div, .article-steps > div, .article-benefit-grid > div { padding: 25px; background: #fff; }
.article-requirements b, .article-steps b { display: block; margin-bottom: 7px; }
.article-requirements > div { display: grid; grid-template-columns: 32px 1fr; gap: 12px; }
.article-requirements > div > b { color: var(--orange); font-size: 11px; }
.article-requirements p, .article-benefit-grid p { margin: 8px 0 0; font-size: 14px; line-height: 1.55; }
.article-process { padding-left: 0 !important; list-style: none; }
.article-process li { display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding: 25px 0; border-top: 1px solid #d8d0c5; }
.article-process li > span { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-process p { margin: 7px 0 0; }
.article-inline-cta { margin: 20px 0 55px; padding: 30px; display: flex; align-items: center; justify-content: space-between; gap: 22px; background: #111; color: #fff; }
.article-inline-cta h3 { margin: 6px 0 0; font-size: 1.35rem; }
.article-inline-cta span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.article-after-list { padding-left: 0 !important; list-style: none; }
.article-after-list li { padding: 23px 0; border-top: 1px solid #d8d0c5; }
.article-after-list p { margin: 6px 0 0; }
.article-faq details { border-top: 1px solid #d8d0c5; }
.article-faq details:last-child { border-bottom: 1px solid #d8d0c5; }
.article-faq summary { cursor: pointer; padding: 20px 36px 20px 0; font-weight: 700; list-style: none; }
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq details p { padding-right: 28px; }
.article-sources { font-size: 14px; }
.article-sources a { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid #d8d0c5; }
.article-sources a:hover { color: var(--orange); }
.article-author { display: grid; grid-template-columns: 68px 1fr; gap: 18px; align-items: center; margin-top: 54px; padding-top: 30px; border-top: 1px solid #d8d0c5; }
.article-author-mark { width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center; background: #111; color: var(--orange); font-family: var(--font-display); font-size: 25px; }
.article-author p { margin: 3px 0 0; font-size: 14px; }
.article-author-card { display: grid; grid-template-columns: 68px 1fr; gap: 18px; align-items: start; margin-top: 54px; padding-top: 30px; border-top: 1px solid #d8d0c5; }
.article-author-card small { color: #8c8378; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.article-author-card h3 { margin: 5px 0 6px; }
.article-author-card p { margin: 0; font-size: 14px; }
.article-enquiry { padding: 28px; background: #101010; color: #fff; }
.article-enquiry h3, .article-enquiry h2 { margin: 10px 0 9px; font-size: 2.25rem; font-weight: 500; line-height: 1; }
.article-enquiry > p, .article-enquiry > div > p:not(.eyebrow) { margin: 0 0 22px; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.5; }
.article-enquiry form { display: grid; gap: 10px; }
.article-enquiry label { display: grid; gap: 6px; color: rgba(255,255,255,.58); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.article-enquiry input { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 0; background: #080808; color: #fff; font: inherit; }
.article-enquiry button { width: 100%; margin-top: 4px; }
.article-related, .article-service-link { display: block; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.75); font-size: 12px; }
.article-service-link span, .article-service-link strong, .article-service-link i { display: block; }
.article-service-link span { margin-bottom: 7px; color: var(--orange); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.article-service-link i { margin-top: 12px; color: rgba(255,255,255,.48); font-style: normal; }

@media (max-width: 1100px) {
  .blog-index-grid { grid-template-columns: 1fr 1fr; }
  .blog-index-grid .blog-feature-card:last-child { grid-column: 1 / -1; }
  .article-layout { grid-template-columns: 150px minmax(0, 1fr); }
  .article-enquiry { position: static; grid-column: 2; max-width: 520px; }
}
@media (max-width: 820px) {
  .blog-index-grid { grid-template-columns: 1fr; }
  .blog-index-grid .blog-feature-card:last-child { grid-column: auto; }
  .blog-index-hero-grid, .blog-feature-card { grid-template-columns: 1fr; }
  .blog-index-hero-aside { max-width: 540px; margin-top: 32px; }
  .blog-feature-media { min-height: 410px; }
  .blog-index-cta .shell { grid-template-columns: 70px 1fr; align-items: start; }
  .blog-index-cta-action { grid-column: 2; }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
  .article-toc strong { grid-column: 1 / -1; }
  .article-enquiry { grid-column: 1; }
  .article-benefit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .service-footer-form { min-height: auto; padding: 54px 22px; }
  .service-footer-form form { grid-template-columns: 1fr; }
  .service-footer-form label:nth-of-type(3), .service-footer-form button { grid-column: 1; }
  .blog-index-hero { padding-top: 150px; }
  .blog-index-hero h1 { font-size: clamp(4rem, 22vw, 6.3rem); }
  .blog-index-bar { align-items: flex-start; flex-direction: column; }
  .blog-feature-media { min-height: 300px; }
  .blog-feature-copy { padding: 34px 24px 42px; }
  .blog-index-cta .shell { grid-template-columns: 1fr; }
  .blog-index-cta-marker { min-height: 54px; flex-direction: row; align-items: center; padding: 0 0 16px; border-right: 0; border-bottom: 1px solid #cfc3b6; }
  .blog-index-cta-action { grid-column: 1; }
  .blog-index-cta h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .article-hero { padding-top: 150px; }
  .article-hero h1 { font-size: clamp(3.4rem, 16vw, 5.25rem); }
  .article-toc { grid-template-columns: 1fr; }
  .article-body { font-size: 17px; }
  .article-body section { padding: 44px 0; }
  .article-requirements, .article-steps, .article-benefit-grid { grid-template-columns: 1fr; }
  .article-callout { padding: 25px 22px; }
  .article-inline-cta { align-items: flex-start; flex-direction: column; }
  .article-process li { grid-template-columns: 1fr; gap: 8px; }
}

html { overflow-x: clip; background: var(--ivory); }
body { color: var(--ink); background: var(--ivory); font-family: "Manrope", Arial, sans-serif; }
h1, h2, h3, strong, button, .btn { font-family: "Manrope", Arial, sans-serif; }
h1 { font-weight: 620; letter-spacing: -.042em; }
h2 { font-weight: 520; letter-spacing: -.04em; }
h3 { font-weight: 650; letter-spacing: -.025em; }
em { color: var(--orange); font-style: normal; }

.shell { width: min(1180px, calc(100% - 80px)); }
.section { padding-block: 118px; }

.announcement {
  position: relative;
  z-index: 101;
  height: 30px;
  color: rgba(255,255,255,.76);
  background: #080808;
  font-size: 10px;
  letter-spacing: .03em;
}

.trust-utility { display: block; }
.mobile-contact-strip { display: none; }
.trust-utility-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.trust-utility a { transition: color 180ms ease; }
.trust-utility a:hover { color: #fff; }
.trust-utility-reviews {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.trust-utility-reviews img { width: 15px; height: 15px; }
.trust-utility-reviews span { color: var(--orange); }
.trust-utility-reviews strong { color: #fff; font-size: inherit; }
.trust-utility-contact {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.global-business-strip-inner {
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.66);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.global-business-strip-left { display: flex; align-items: center; gap: 16px; }
.global-business-strip-left > span { display: inline-flex; align-items: center; }
.global-business-contact { flex-shrink: 0; text-transform: none; letter-spacing: .03em; font-weight: 500; }
.global-business-experience, .global-business-route strong { color: #fff; }
.global-business-icon { gap: 12px; color: var(--orange); }
.global-business-icon::before { width: 1px; height: 13px; content: ""; background: rgba(255,255,255,.3); }
.global-business-icon svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.global-business-route { gap: 10px; }
.global-business-route i { width: 30px; height: 1px; background: var(--orange); }

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(5,5,5,.24);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}
.floating-whatsapp svg { width: 32px; height: 32px; fill: currentColor; stroke: none; }
.floating-whatsapp:hover { background: #20bd5a; box-shadow: 0 14px 34px rgba(5,5,5,.3); transform: translateY(-3px); }
.floating-whatsapp:focus-visible { outline-color: #25d366; }

.site-header,
.site-header.is-scrolled {
  position: fixed;
  top: 30px;
  right: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  min-height: 82px;
  grid-template-columns: 180px 1fr auto;
  gap: 34px;
  padding: 10px max(40px, calc((100vw - 1180px) / 2));
  border: 0;
  border-radius: 0;
  background: rgba(255,255,255,.97);
  box-shadow: 0 5px 22px rgba(20,18,15,.06);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled { top: 0; min-height: 72px; box-shadow: 0 8px 30px rgba(20,18,15,.1); }
.brand { width: 132px; }
.brand img { width: 100%; height: auto; }
.mega-nav { gap: clamp(22px, 3vw, 44px); }
.mega-nav > a, .nav-item > a { min-height: 48px; font-size: 14px; font-weight: 650; }
.mega-nav > a, .nav-item > a { position: relative; }
.mega-nav > a::after, .nav-item > a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms ease;
}
.mega-nav > a:hover::after, .nav-item:hover > a::after { transform: scaleX(1); transform-origin: left; }
.nav-panel { top: calc(100% + 6px); border: 0; border-radius: 14px; box-shadow: var(--soft-shadow); }
.nav-panel a { padding: 10px 14px; border-radius: 9px; font-size: 13px; }
.nav-panel a:hover { color: var(--orange); background: #fff5ed; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.site-search-trigger,
.site-search-close {
  display: grid;
  place-items: center;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}
.site-search-trigger {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: color 250ms ease, border-color 250ms ease, background 250ms ease, transform 250ms ease;
}
.site-search-trigger svg,
.site-search-field svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.site-search-trigger:hover {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
  transform: translateY(-2px);
}

.site-search {
  inset: 0;
  z-index: 250;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: clamp(24px, 7vh, 72px) 24px;
  border: 0;
  color: var(--ink);
  background: rgba(9, 8, 7, .78);
  backdrop-filter: blur(12px);
}
.site-search::backdrop { background: transparent; }
.site-search[open] { display: grid; align-items: start; }
.site-search-panel {
  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  margin-inline: auto;
  overflow: auto;
  border-radius: 24px;
  background: #f7f3ed;
  box-shadow: 0 30px 100px rgba(0,0,0,.3);
  animation: site-search-enter 280ms cubic-bezier(.2,.8,.2,1) both;
}
.site-search-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 52px) clamp(24px, 6vw, 64px) 28px;
}
.site-search-head > div > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.site-search-head h2 {
  max-width: 680px;
  margin-top: 10px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
}
.site-search-close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease;
}
.site-search-close:hover { color: #fff; border-color: var(--orange); background: var(--orange); transform: rotate(6deg); }
.site-search-field {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-inline: clamp(24px, 6vw, 64px);
  padding: 4px 0 14px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
}
.site-search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
}
.site-search-field input::-webkit-search-cancel-button { display: none; }
.site-search-field input::placeholder { color: #79746e; opacity: 1; }
.site-search-field kbd {
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #77716a;
  background: #fff;
  font: 700 9px/1 Manrope, Arial, sans-serif;
  letter-spacing: .08em;
}
.site-search-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(24px, 6vw, 64px) 12px;
  color: #77716a;
  font-size: 11px;
}
.site-search-meta p { margin: 0; color: var(--ink); font-weight: 700; }
.site-search-results {
  display: grid;
  padding: 0 clamp(24px, 6vw, 64px) clamp(30px, 5vw, 56px);
}
.site-search-result {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 82px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: color 240ms ease, padding 240ms ease;
}
.site-search-result:first-child { border-top: 1px solid var(--line); }
.site-search-result small {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.site-search-result strong { font-size: clamp(15px, 2vw, 18px); font-weight: 650; }
.site-search-result span { color: var(--orange); font-size: 18px; transition: transform 240ms ease; }
.site-search-result:hover,
.site-search-result:focus-visible { padding-inline: 12px; color: var(--orange); }
.site-search-result:hover span,
.site-search-result:focus-visible span { transform: translate(4px, -2px); }
.site-search-empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  color: #77716a;
  text-align: center;
}

@keyframes site-search-enter {
  from { opacity: 0; transform: translateY(-18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.btn, .header-cta {
  min-height: 54px;
  padding: 15px 28px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--orange);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(250,100,0,.18);
}
.btn:hover, .header-cta:hover { color: #fff; border-color: var(--orange-dark); background: var(--orange-dark); }
.btn:active, .header-cta:active { transform: translateY(1px) scale(.985); }
.btn.light { color: var(--ink); background: #fff; }
.btn.light:hover { color: #fff; background: var(--orange); }
.btn.ghost { border: 1px solid rgba(255,255,255,.55); color: #fff; background: transparent; box-shadow: none; }
.sg-text-link, .text-link, .p-dark-link, .p-quiet-link { font-size: 13px; }
.sg-label, .svc-kicker, .eyebrow, .service-index, .p-kicker { font-size: 11px; letter-spacing: .12em; }

/* Hero */
.sg-hero, .sg-hero-content { min-height: 720px; }
.sg-hero { margin-top: 0; background: #080808; }
.sg-hero-content { padding-top: 150px; padding-bottom: 90px; align-items: center; }
.sg-hero-shade {
  background: linear-gradient(90deg, rgba(5,5,5,.9) 0%, rgba(5,5,5,.64) 47%, rgba(5,5,5,.2) 78%, rgba(5,5,5,.34) 100%);
}
.sg-hero-copy { max-width: 720px; }
.sg-hero-copy h1 { margin: 22px 0 26px; font-size: clamp(3.4rem, 5vw, 5.2rem); line-height: 1.03; font-weight: 620; }
.sg-hero-copy > p:not(.sg-label) { max-width: 650px; font-size: 18px; line-height: 1.65; }
.sg-actions { gap: 24px; }
.sg-hero-marker { bottom: 120px; }
.sg-hero-foot { min-height: 58px; font-size: 9px; }

/* Trust strip */
.sg-proof {
  position: relative;
  z-index: 3;
  margin-top: 0;
  background: transparent;
}
.sg-proof-grid {
  grid-template-columns: 1fr 1fr 1fr 1.15fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: #fff;
  box-shadow: 0 20px 55px rgba(20,18,15,.1);
}
.sg-proof-grid > * { min-height: 140px; padding: 28px 30px; }
.sg-proof-grid strong { font-size: 34px; font-weight: 700; font-variant-numeric: tabular-nums; }
.sg-proof-grid span { font-size: 12px; }
.sg-proof-grid > a { color: #fff; background: var(--orange); }
.sg-proof-grid > a span { color: rgba(255,255,255,.75); }
.sg-proof-grid > .sg-proof-route {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: space-between;
  gap: 13px;
  overflow: hidden;
  padding: 22px 26px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.18), transparent 28%),
    var(--orange);
}
.sg-proof-route::before {
  position: absolute;
  z-index: -1;
  right: -54px;
  bottom: -82px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  content: "";
  transition: transform 650ms cubic-bezier(.22,1,.36,1);
}
.sg-proof-route:hover::before { transform: scale(1.18); }
.sg-proof-route-head,
.sg-proof-route-track {
  display: flex;
  align-items: center;
}
.sg-proof-route-head {
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.sg-proof-route-head span { color: rgba(255,255,255,.72); font-size: 9px; font-weight: 700; }
.sg-proof-route-head i { font-size: 15px; font-style: normal; transition: transform 350ms ease; }
.sg-proof-route:hover .sg-proof-route-head i { transform: translate(3px,-3px); }
.sg-proof-route-track { gap: 10px; }
.sg-proof-route-track b {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 50%;
  font-size: 9px;
}
.sg-proof-route-track > span {
  position: relative;
  height: 1px;
  flex: 1;
  overflow: hidden;
  background: rgba(255,255,255,.3);
}
.sg-proof-route-track > span::after {
  position: absolute;
  inset: 0;
  background: #fff;
  content: "";
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform 700ms cubic-bezier(.22,1,.36,1);
}
.sg-proof-route:hover .sg-proof-route-track > span::after { transform: scaleX(1); }
.sg-proof-route-copy { display: grid; gap: 2px; }
.sg-proof-grid .sg-proof-route-copy strong { color: #fff; font-size: 18px; line-height: 1.1; }
.sg-proof-route-copy small { color: rgba(255,255,255,.7); font-size: 10px; }

/* Founder routes */
.sg-desk { background: var(--ivory); }
.sg-desk-grid { grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.sg-desk-intro h2, .sg-section-heading h2, .sg-packages h2, .sg-faq h2,
.p-latest-head h2, .p-contact-copy h2 { font-size: clamp(2.7rem, 4vw, 4.5rem); line-height: 1.04; }
.sg-audience-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; border: 0; }
.sg-audience-list a {
  min-height: 230px;
  grid-template-columns: 28px 1fr 20px;
  align-content: start;
  padding: 30px;
  border: 0;
  border-radius: var(--card-radius);
  background: #fff;
  box-shadow: 0 10px 35px rgba(20,18,15,.065);
}
.sg-audience-list a p { grid-column: 2 / 4; margin-top: 25px; }
.sg-audience-list h3 { font-size: 23px; }
.sg-audience-list a:hover { color: #fff; background: var(--orange); }
.sg-audience-list a:hover p, .sg-audience-list a:hover span { color: rgba(255,255,255,.82); }

/* Image-led split section */
.sg-editorial { min-height: 700px; grid-template-columns: .46fr .54fr; background: #090909; }
.sg-editorial-image-main { min-height: 700px; }
.sg-editorial-copy { padding: clamp(70px, 8vw, 130px); border: 0; }
.sg-editorial-copy h2 { font-size: clamp(3rem, 4.6vw, 5rem); font-weight: 700; }
.sg-editorial-copy > p:not(.sg-label) { color: rgba(255,255,255,.7); font-size: 16px; }
.sg-editorial-notes { margin-block: 32px; }
.sg-editorial-notes span { border-color: rgba(255,255,255,.14); font-size: 14px; }

/* Light service catalogue between the two dark sections. */
.sg-services { overflow: hidden; color: var(--ink); background: #f7f6f2; }
.sg-services::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  content: "";
  opacity: .24;
  background:
    radial-gradient(circle at 74% 18%, rgba(250,100,0,.32) 0 2px, transparent 3px),
    linear-gradient(135deg, transparent 0 62%, rgba(26,26,46,.08) 62% 62.4%, transparent 62.4%),
    linear-gradient(90deg, #f7f6f2 0%, rgba(247,246,242,.45) 55%, transparent 100%);
  background-size: 42px 42px, 100% 100%, 100% 100%;
}
.sg-services .shell { position: relative; z-index: 1; }
.sg-services-intro { align-items: center; margin-bottom: 62px; }
.sg-services-intro h2 { color: var(--ink); font-size: clamp(2.8rem,4.3vw,4.8rem); font-weight: 700; }
.sg-services-intro > div:last-child > p { color: var(--muted); font-size: 15px; }
.sg-service-groups { grid-template-columns: repeat(3,1fr); gap: 20px; }
.sg-service-group { overflow: hidden; border: 1px solid var(--line); border-radius: var(--card-radius); background: #fff; box-shadow: 0 12px 40px rgba(20,18,15,.06); }
.sg-service-group-label { padding: 24px; border: 0; border-bottom: 1px solid var(--line); }
.sg-service-group-label strong { color: var(--ink); font-size: 13px; }
.sg-service-group > div:last-child > a { min-height: 152px; padding: 25px; border-color: var(--line); color: var(--ink); }
.sg-service-group h3 { font-size: 18px; }
.sg-service-group p { color: var(--muted); font-size: 13px; }
.sg-service-group a:hover { color: #fff; background: var(--orange); }
.sg-service-group a:hover p, .sg-service-group a:hover > span, .sg-service-group a:hover > i { color: rgba(255,255,255,.8); }

/* Regional image CTA */
.sg-route { color: #fff; background: #111; }
.sg-route-grid { min-height: 690px; }
.sg-route-copy h2 { color: #fff; font-size: clamp(3rem,5vw,5rem); font-weight: 700; }
.sg-route-copy > p:not(.sg-label) { color: rgba(255,255,255,.68); font-size: 16px; }
.sg-route-copy .btn.light { color: var(--ink); background: #fff; }
.sg-route-copy .btn.light:hover { color: #fff; background: var(--orange); }
.sg-route-key { color: rgba(255,255,255,.5); }
.sg-route-key b { color: var(--orange); }
.sg-route-visual { position: relative; overflow: hidden; border-radius: 28px; background: #090909; box-shadow: 0 28px 80px rgba(0,0,0,.28); }
.route-globe { border-radius: 50%; }
.sg-route-visual .route-status,
.sg-route-visual .route-city { display: none; }
.sg-route-expansion-label,
.sg-route-company {
  position: absolute;
  z-index: 8;
  color: #fff;
  background: rgba(5,5,5,.86);
  backdrop-filter: blur(10px);
}
.sg-route-expansion-label {
  top: 8%;
  left: 50%;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}
.sg-route-expansion-label span { margin-inline: 7px; color: var(--orange); }
.sg-route-company {
  width: min(230px,42%);
  padding: 14px 16px;
  border-left: 2px solid var(--orange);
  font-size: 12px;
  line-height: 1.45;
}
.sg-route-company-uae { top: 39%; left: 2%; }
.sg-route-company-singapore { right: 2%; bottom: 25%; }

/* Process and packages */
.sg-method, .p-latest-blogs { background: var(--ivory); }
.sg-method-list { grid-template-columns: repeat(5,minmax(0,1fr)); gap: 18px; }
.sg-method-list li {
  min-height: 360px;
  padding: 28px;
  border: 0;
  border-radius: var(--card-radius);
  background: #fff;
  box-shadow: 0 12px 40px rgba(20,18,15,.065);
}
.sg-method-list li:hover { color: #fff; background: var(--orange); }
.sg-method-list li:hover p, .sg-method-list li:hover span, .sg-method-list li:hover i { color: rgba(255,255,255,.82); }
.sg-method-list h3 { margin-top: 54px; font-size: 28px; }
.sg-method-list h3 + p { margin-top: 10px; }
.sg-method-list i { margin-top: auto; padding-top: 16px; }

.sg-packages { color: #fff; background: #090909; }
.sg-packages::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px,calc(100% - 80px));
  height: 1px;
  content: "";
  background: linear-gradient(90deg,transparent,#fa6400,transparent);
  transform: translateX(-50%);
}
.sg-packages-grid { display: block; }
.sg-packages header {
  position: static;
  max-width: 1180px;
  margin: 0 auto 56px;
  text-align: left;
}
.sg-packages header h2 { margin: 20px 0 24px; color: #fff; }
.sg-packages header > p:last-child { max-width: 620px; color: rgba(255,255,255,.62); }
.sg-package-table {
  grid-template-columns: minmax(0,1.6fr) minmax(360px,.85fr);
  grid-template-rows: repeat(3,1fr);
  gap: 12px;
  border: 0;
}
.sg-package-table > a {
  position: relative;
  overflow: hidden;
  min-height: 164px;
  display: grid;
  grid-template-columns: 42px minmax(0,1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 26px;
  row-gap: 14px;
  padding: 28px 30px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  color: #fff;
  background: #151515;
  box-shadow: none;
}
.sg-package-table > a > span:first-child {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.sg-package-table > a > div { grid-column: 2; grid-row: 1; }
.sg-package-table > a > ul {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sg-package-table > a > ul li::before { margin-right: 8px; color: #fa6400; content: "·"; }
.sg-package-table > a > strong { grid-column: 3; grid-row: 1 / 3; white-space: nowrap; }
.sg-package-table > a:not(:first-child)::after {
  position: absolute;
  inset: 18px auto 18px 0;
  width: 3px;
  border-radius: 0 4px 4px 0;
  content: "";
  background: #fa6400;
  transform: scaleY(0);
  transition: transform 420ms cubic-bezier(.22,1,.36,1);
}
.sg-package-table > a:first-child {
  grid-column: 2;
  grid-row: 1 / 4;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px;
  border-color: #fa6400;
  background: #fa6400;
}
.sg-package-table > a:not(:first-child) { grid-column: 1; }
.sg-package-table > a:first-child > span:first-child { flex: 0 0 auto; margin-bottom: 72px; border-color: rgba(255,255,255,.5); }
.sg-package-table > a:first-child > div { margin-top: auto; }
.sg-package-table > a:first-child > ul {
  width: 100%;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.28);
}
.sg-package-table > a:first-child > strong {
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.28);
}
.sg-package-table small, .sg-package-table ul { color: rgba(255,255,255,.56); }
.sg-package-table > a > strong { color: #fff; }
.sg-package-table > a:not(:first-child):hover { color: #111; border-color: #f3efe9; background: #f3efe9; transform: translateX(8px); }
.sg-package-table > a:not(:first-child):hover ul,
.sg-package-table > a:not(:first-child):hover small { color: rgba(17,17,17,.58); }
.sg-package-table > a:not(:first-child):hover > strong { color: #111; }
.sg-package-table > a:not(:first-child):hover > span:first-child { color: #fff; border-color: #fa6400; background: #fa6400; }
.sg-package-table > a:not(:first-child):hover::after { transform: scaleY(1); }
.sg-package-table > a:first-child:hover { filter: brightness(1.07); transform: translateY(-6px); }
.sg-package-table h3 { font-size: 24px; }

/* FAQ */
.sg-faq { background: #f3efe9; }
.sg-faq-tabs { overflow: hidden; grid-template-columns: repeat(5,minmax(0,1fr)); border: 0; border-radius: 999px; background: #fff; box-shadow: 0 10px 35px rgba(20,18,15,.06); }
.sg-faq-tabs button { min-height: 62px; border: 0; border-radius: 999px; background: transparent; font-size: 12px; }
.sg-faq-tabs button[aria-selected="true"] { color: #fff; background: var(--orange); }
.sg-faq-interface { gap: 30px; }
.sg-faq-questions { overflow: hidden; border: 0; border-radius: var(--card-radius); background: #fff; box-shadow: var(--soft-shadow); }
.sg-faq-questions button { padding: 21px 24px; }
.sg-faq-answers > [role="tabpanel"] { min-height: 430px; border-radius: var(--card-radius); background: var(--orange); box-shadow: 0 22px 60px rgba(250,100,0,.22); }
.sg-faq-answers > [role="tabpanel"]::before { content: "Expert Answer"; }
.sg-faq-answers { overflow: hidden; border-radius: var(--card-radius); perspective: 1000px; }
.sg-faq-answers > [role="tabpanel"].answer-in {
  transform-origin: right center;
  animation: faq-answer-card-in 720ms cubic-bezier(.22,1,.36,1) both;
}
.sg-faq-answers > [role="tabpanel"].answer-in::before {
  animation: faq-answer-label-in 560ms cubic-bezier(.22,1,.36,1) 100ms both;
}
.sg-faq-answers > [role="tabpanel"].answer-in p {
  animation: faq-answer-copy-in 680ms cubic-bezier(.22,1,.36,1) 150ms both;
}
.sg-faq-questions button,
.sg-faq-questions button > i { transition: color 350ms ease, background-color 450ms ease, transform 450ms cubic-bezier(.22,1,.36,1); }
.sg-faq-questions button[aria-selected="true"] > i { transform: rotate(180deg); }

.sg-office-contact {
  max-width: 980px;
  display: grid;
  grid-template-columns: 1.5fr .72fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.sg-office-contact-item {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: rgba(255,255,255,.78);
  background: rgba(5,5,5,.38);
}
.sg-office-contact-item svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.sg-office-contact-item div { min-width: 0; display: grid; gap: 5px; }
.sg-office-contact-item strong {
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
}
.sg-office-contact-item :where(address,span) {
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.6;
}
.sg-office-contact-item:is(a):hover { border-color: var(--orange); }
.sg-office-cta .sg-office-contact + .sg-actions { margin-top: 24px; }

/* Full-bleed office CTA: the image stays behind every content element. */
.sg-office-cta {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 112px 0;
  background: #050505;
}
.sg-office-cta > picture {
  position: absolute;
  inset: 0;
  min-height: 100%;
}
.sg-office-cta > picture img { object-position: center; }
.sg-office-cta > .sg-office-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.9) 0%, rgba(5,5,5,.7) 45%, rgba(5,5,5,.46) 72%, rgba(5,5,5,.62) 100%),
    linear-gradient(0deg, rgba(5,5,5,.68), transparent 58%);
}
.sg-office-cta > .shell {
  position: relative;
  z-index: 2;
  width: min(1280px, 100% - 72px);
  max-width: 1280px;
  margin-inline: auto;
  padding: 0;
}
.sg-office-cta h2 {
  max-width: 760px;
  font-size: clamp(3.4rem, 5.2vw, 5.8rem);
  line-height: 1;
}
.sg-office-cta .sg-office-contact { max-width: 980px; }

@media (max-width: 1180px) {
  .sg-office-cta {
    min-height: 700px;
    padding: 92px 0;
  }
  .sg-office-cta > picture { min-height: 100%; height: 100%; }
  .sg-office-cta > .sg-office-shade { height: 100%; }
  .sg-office-cta > .shell { width: min(100% - 44px, 900px); }
  .sg-office-contact { grid-template-columns: 1.4fr .8fr 1fr; }
}

@media (max-width: 720px) {
  .sg-office-cta { min-height: 760px; padding: 76px 0; }
  .sg-office-cta > picture { min-height: 100%; height: 100%; }
  .sg-office-cta > picture img { object-position: 58% center; }
  .sg-office-cta > .sg-office-shade {
    height: 100%;
    background: linear-gradient(90deg, rgba(5,5,5,.9), rgba(5,5,5,.65));
  }
  .sg-office-cta > .shell { width: calc(100% - 36px); }
  .sg-office-cta h2 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .sg-office-contact { grid-template-columns: 1fr; }
}

@keyframes faq-answer-card-in {
  from { opacity: 0; clip-path: inset(0 0 0 22% round var(--card-radius)); transform: translate3d(74px,0,0) rotateY(-5deg) scale(.97); }
  to { opacity: 1; clip-path: inset(0 round var(--card-radius)); transform: translate3d(0,0,0) rotateY(0) scale(1); }
}
@keyframes faq-answer-label-in {
  from { opacity: 0; transform: translate3d(28px,0,0); }
  to { opacity: 1; transform: translate3d(0,0,0); }
}
@keyframes faq-answer-copy-in {
  from { opacity: 0; transform: translate3d(42px,18px,0); }
  to { opacity: 1; transform: translate3d(0,0,0); }
}

/* Reviews, contact and blogs */
.reviews-section { padding: 110px 0; background: #fff; }
.review-carousel-shell { margin-top: 50px; }
.review-heading h2 { font-size: clamp(2.8rem,4.2vw,4.8rem); font-weight: 700; }
.review-trust { padding: 15px 20px; border-radius: 999px; background: #fff8f2; }

.reviews-section {
  overflow: hidden;
  background: #f3efe9;
}
.google-review-wall {
  width: min(1180px,calc(100% - 44px));
  height: 670px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
  margin-inline: auto;
  overflow: hidden;
}
.google-review-column {
  min-width: 0;
  overflow: hidden;
}
.google-review-track {
  display: grid;
  gap: 20px;
  animation: google-review-scroll var(--review-duration) linear infinite;
  animation-play-state: paused;
}
.google-review-column:nth-child(2) .google-review-track {
  animation-direction: reverse;
  animation-delay: -8s;
}
.google-review-wall.is-active .google-review-track {
  animation-play-state: running;
}
.google-review-column:hover .google-review-track {
  animation-play-state: paused;
}
.google-review-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(26,26,46,.12);
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 36px rgba(26,26,46,.06);
}
.google-review-card.is-featured {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
}
.google-review-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.google-review-brand img {
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(26,26,46,.12);
}
.google-review-brand span {
  color: var(--orange);
  font-size: 13px;
}
.google-review-card.is-featured .google-review-brand span {
  color: #fff;
}
.google-review-card blockquote {
  margin: 34px 0 28px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  text-wrap: pretty;
}
.google-review-card footer {
  display: grid;
  gap: 4px;
  margin-top: auto;
}
.google-review-card footer strong {
  font-size: 14px;
}
.google-review-card footer small {
  color: var(--muted);
  font-size: 12px;
}
.google-review-card.is-featured footer small {
  color: rgba(255,255,255,.74);
}
@keyframes google-review-scroll {
  to { transform: translateY(calc(-50% - 10px)); }
}

.p-contact-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  border-block: 1px solid rgba(255,255,255,.08);
  background: #0d0d0d;
}
.p-contact-layout {
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
}
.p-contact-copy {
  position: relative;
  top: auto;
  align-self: stretch;
  min-height: 690px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px,5vw,74px);
  color: #fff;
  background:
    linear-gradient(145deg,rgba(5,5,5,.94),rgba(5,5,5,.7)),
    image-set(
      url("/static/images/optimized/home-consultation-form.webp") type("image/webp"),
      url("/static/images/home-consultation-form.jpg") type("image/jpeg")
    ) center 54% / cover;
}
.p-contact-copy h2 { margin: 22px 0 26px; color: #fff; }
.p-contact-lead { color: rgba(255,255,255,.7); font-size: 16px; }
.p-contact-meta { margin-top: auto; padding-top: 42px; }
.p-contact-meta > * { border-color: rgba(255,255,255,.16); color: #fff; font-size: 13px; }
.p-contact-meta small { color: rgba(255,255,255,.5); font-size: 10px; }
.p-contact-form {
  min-height: 690px;
  align-content: center;
  gap: 22px;
  padding: clamp(42px,5vw,72px);
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
.p-contact-form-head { padding-bottom: 20px; color: var(--ink); border-color: var(--line); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.p-contact-form label { gap: 9px; color: var(--ink); font-size: 10px; letter-spacing: .08em; }
.p-contact-form input, .p-contact-form select, .p-contact-form textarea {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: #f7f6f2;
  transition: border-color 280ms ease, background-color 280ms ease, box-shadow 280ms ease;
}
.p-contact-form textarea { min-height: 132px; }
.p-contact-form input:focus, .p-contact-form select:focus, .p-contact-form textarea:focus {
  border-color: var(--orange);
  outline: 0;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(250,100,0,.1);
}
.p-contact-form-foot { gap: 20px; padding-top: 5px; }
.p-contact-form-foot small { max-width: 190px; font-size: 11px; line-height: 1.5; }

.p-latest-blogs { background: #f3efe9; }
.p-latest-grid { gap: 20px; }
.p-latest-card {
  --blog-card-pad: 30px;
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: 0 var(--blog-card-pad) var(--blog-card-pad);
  border: 1px solid rgba(26,26,46,.1);
  border-radius: 20px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 44px rgba(20,18,15,.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.p-latest-card img {
  width: calc(100% + (var(--blog-card-pad) * 2));
  max-width: none;
  height: 235px;
  flex: 0 0 235px;
  margin: 0 calc(var(--blog-card-pad) * -1);
  object-fit: cover;
  transition: transform 180ms ease;
}
.p-latest-number {
  z-index: 2;
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin-top: -17px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
}
.p-latest-card h3 {
  margin-top: 26px;
  font-size: clamp(1.35rem,1.65vw,1.7rem);
  line-height: 1.15;
}
.p-latest-card p {
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.p-latest-arrow {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
}
.p-latest-arrow::after {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 50%;
  content: "↗";
  color: #fff;
  background: var(--orange);
}
.p-latest-card-2 { color: var(--ink); background: #fff; }
.p-latest-card:hover {
  border-color: rgba(250,100,0,.46);
  box-shadow: 0 22px 54px rgba(20,18,15,.11);
  transform: translateY(-5px);
}
.p-latest-card:hover img { transform: scale(1.025); }

/* Signature Habitat awards section — production structure and sizing. */
.awards-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px,8vw,118px) 0;
  border-block: 1px solid rgba(31,52,63,.1);
  background: radial-gradient(circle at top,rgba(255,255,255,.95),rgba(248,245,239,.98) 55%,#f4eee3 100%);
}
.awards-section::before { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(180deg,transparent,rgba(31,52,63,.04)),radial-gradient(circle at 20% 20%,rgba(227,195,126,.22),transparent 34%),radial-gradient(circle at 78% 18%,rgba(31,52,63,.08),transparent 28%); }
.awards-container { position: relative; z-index: 1; width: min(1420px,100%); margin-inline: auto; }
.awards-heading { max-width: 760px; margin: 0 auto 32px; text-align: center; }
.awards-heading .eyebrow { display: block; margin-bottom: 10px; color: #fa6400; }
.awards-heading h2 { font-size: clamp(3rem,5vw,5.2rem); line-height: 1.05; }
.awards-stage { position: relative; z-index: 1; }
.awards-cluster { position: relative; max-width: 1420px; margin: 0 auto; transition: transform .3s ease-out; }
.awards-row { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.awards-row + .awards-row { margin-top: -11rem; }
.awards-row--back { z-index: 1; }
.awards-row--mid { z-index: 2; }
.awards-row--front { z-index: 3; }
.awards-slot { position: relative; flex: 0 0 auto; }
.awards-slot + .awards-slot { margin-left: -2.8rem; }
.awards-slot--xs { width: 84px; height: 120px; }
.awards-slot--sm { width: 110px; height: 160px; }
.awards-slot--md { width: 136px; height: 220px; }
.awards-slot--lg { width: 170px; height: 280px; }
.awards-slot--xl { width: 200px; height: 330px; }
.award-card { width: 100%; height: 100%; padding: 0; border: 0; border-radius: 0; opacity: 0; background: transparent; box-shadow: none; filter: drop-shadow(0 15px 30px rgba(31,52,63,.12)); transform: translate3d(0,100px,0) rotate(var(--award-rotate,0deg)); transform-origin: center bottom; transition: transform 1.2s cubic-bezier(.16,1,.3,1),opacity 1.2s cubic-bezier(.16,1,.3,1),filter .3s ease; transition-delay: var(--award-delay,0s); }
.awards-stage.is-visible .award-card { opacity: 1; transform: translate3d(0,0,0) rotate(var(--award-rotate,0deg)); }
.award-card:hover { z-index: 10; filter: drop-shadow(0 25px 45px rgba(31,52,63,.22)); transform: translate3d(0,-12px,0) scale(1.05) rotate(var(--award-rotate,0deg))!important; transition: transform .3s cubic-bezier(.25,1,.5,1),filter .3s cubic-bezier(.25,1,.5,1); }
.award-media,.award-media img { width: 100%; height: 100%; }
.award-media { position: relative; overflow: visible; background: transparent; }
.award-media img { object-fit: contain; }

/* Signature Habitat group companies section. */
.group-icon-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.group-companies-live { padding: clamp(80px,8vw,120px) 0; background: #f7f4ee; }
.group-container { width: min(1180px,calc(100% - 44px)); margin-inline: auto; }
.group-head-modern { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.group-head-modern .eyebrow { display: block; margin-bottom: 12px; color: #fa6400; }
.group-head-modern h2 { font-size: clamp(3rem,5vw,5rem); line-height: 1.06; }
.group-head-modern p { max-width: 680px; margin: 20px auto 0; color: #686761; }
.grp-grid-modern { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.group-company-card { min-height: 548px; display: flex; flex-direction: column; padding: 34px; border: 1px solid rgba(31,52,63,.12); border-radius: 24px; background: rgba(255,255,255,.94); box-shadow: 0 18px 50px rgba(31,52,63,.07); transition: transform .45s cubic-bezier(.22,1,.36,1),box-shadow .45s ease,border-color .35s ease; }
.group-company-card:hover { border-color: rgba(250,100,0,.42); box-shadow: 0 28px 65px rgba(31,52,63,.13); transform: translateY(-8px); }
.card-header-group { display: flex; flex-direction: column; align-items: flex-start; }
.card-badge { display: inline-flex; padding: 7px 13px; border-radius: 999px; color: #c85000; background: rgba(250,100,0,.1); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.card-header-group h3 { margin: 26px 0 14px; font-size: clamp(1.7rem,2.3vw,2.35rem); line-height: 1.12; }
.card-header-group p { max-width: 510px; color: #696762; font-size: 14px; }
.card-services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 22px; margin: 30px 0; padding: 26px 0; border-block: 1px solid #e5e0d9; color: #45443f; font-size: 13px; }
.card-services-list li { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 8px; }
.card-services-list svg { width: 17px; height: 17px; color: #fa6400; }
.card-footer-group { display: flex; align-items: center; gap: 24px; margin-top: auto; }
.btn-call-now { min-height: 48px; display: inline-flex; align-items: center; gap: 9px; padding: 0 20px; border-radius: 999px; color: #fff; background: #fa6400; font-size: 12px; font-weight: 800; }
.btn-call-now svg { width: 17px; height: 17px; }
.link-visit-website { display: inline-flex; align-items: center; gap: 8px; color: #1f343f; font-size: 12px; font-weight: 800; }
.link-visit-website svg { width: 18px; height: 18px; transition: transform .3s ease; }
.link-visit-website:hover svg { transform: translateX(5px); }
@media (max-width:1400px) { .awards-cluster { margin-bottom:-80px; transform:scale(.9); transform-origin:center top; } }
@media (max-width:1200px) { .awards-cluster { margin-bottom:-150px; transform:scale(.78); transform-origin:center top; } }
@media (max-width:992px) {
  .awards-cluster { margin-bottom:-220px; transform:scale(.62); transform-origin:center top; }
  .grp-grid-modern { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  .awards-section { padding-block:72px 58px; }
  .awards-heading { width:calc(100% - 36px); margin-bottom:22px; }
  .awards-heading h2 { font-size:clamp(2.7rem,12vw,4.1rem); }
  .awards-stage { height:250px; overflow:hidden; }
  .awards-cluster {
    position:absolute;
    top:0;
    left:50%;
    width:1100px;
    max-width:none;
    margin:0;
    transform:translateX(-50%) scale(.42);
    transform-origin:center top;
  }
}
@media (max-width:576px) {
  .awards-stage { height:215px; }
  .awards-cluster { transform:translateX(-50%) scale(.35); }
  .group-container { width:calc(100% - 36px); }
  .group-company-card { min-height:0; padding:26px 22px; }
  .card-services-list { grid-template-columns:1fr; }
  .card-footer-group { align-items:flex-start; flex-direction:column; }
}
@media (max-width:420px) {
  .awards-stage { height:190px; }
  .awards-cluster { transform:translateX(-50%) scale(.31); }
}

/* Footer */
.footer { color: #fff; background: #080808; }
.footer-cta { min-height: 620px; }
.footer-map {
  min-height: 460px;
  border-radius: var(--card-radius);
  background: #111;
}
.footer-map::before {
  inset: 22px 24px auto;
  z-index: 4;
  width: auto;
  content: "MOVE THE MATCH · CLICK TO IGNITE";
  opacity: 1;
  color: rgba(255,255,255,.48);
  background: none;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  transform: none;
}
.footer-map::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 4;
  content: "ONE TEAM · EVERY BUSINESS STAGE";
  color: rgba(255,255,255,.42);
  font-size: 8px;
  font-weight: 700;
  text-align: right;
}
.footer-map-meta,
.footer-map-office,
.footer-map-caption {
  display: none;
}
.footer-map-stage {
  width: 100%;
  min-height: 430px;
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-singapore-map {
  display: none;
}
.footer-flame-prompt {
  margin-bottom: 4px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.footer-flame-igniter {
  position: relative;
  width: min(52%,220px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: url("/static/images/matchstick-cursor.png") 11 14, pointer;
  isolation: isolate;
}
.footer-flame-igniter::before {
  position: absolute;
  z-index: -1;
  inset: 18%;
  border-radius: 50%;
  content: "";
  opacity: 0;
  background: radial-gradient(circle,rgba(255,196,45,.72),rgba(250,100,0,.25) 48%,transparent 72%);
  transform: scale(.35);
}
.footer-flame-igniter::after {
  position: absolute;
  z-index: -1;
  inset: 8%;
  border: 1px solid rgba(255,196,45,.7);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(.55);
}
.footer-flame-igniter > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) saturate(0) brightness(.72) contrast(1.35) drop-shadow(0 16px 28px rgba(0,0,0,.2));
  transform-origin: 50% 76%;
  transition: filter 180ms ease, transform 160ms cubic-bezier(.16,1,.3,1);
}
.footer-flame-igniter:hover > img,
.footer-flame-igniter:focus-visible > img { transform: scale(1.045); }
.footer-flame-igniter:active > img { transform: scale(.96); }
.footer-flame-igniter.is-lit > img {
  filter: grayscale(0) saturate(1) brightness(1) contrast(1) drop-shadow(0 14px 24px rgba(250,100,0,.38));
}
.footer-flame-igniter.is-igniting > img { animation: footer-flame-ignite 580ms cubic-bezier(.34,1.56,.64,1); }
.footer-flame-igniter.is-igniting::before { animation: footer-flame-glow 580ms ease-out; }
.footer-flame-igniter.is-igniting::after { animation: footer-flame-ring 500ms ease-out; }
.footer-flame-sparks {
  position: absolute;
  z-index: 2;
  inset: 50%;
  pointer-events: none;
}
.footer-flame-sparks i {
  --spark-x: 0px;
  --spark-y: -50px;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  opacity: 0;
  background: #ffc42d;
  box-shadow: 0 0 8px rgba(255,196,45,.8);
}
.footer-flame-sparks i:nth-child(1) { --spark-x: -46px; --spark-y: -42px; }
.footer-flame-sparks i:nth-child(2) { --spark-x: -24px; --spark-y: -64px; }
.footer-flame-sparks i:nth-child(3) { --spark-x: 6px; --spark-y: -72px; }
.footer-flame-sparks i:nth-child(4) { --spark-x: 38px; --spark-y: -54px; }
.footer-flame-sparks i:nth-child(5) { --spark-x: 52px; --spark-y: -22px; }
.footer-flame-sparks i:nth-child(6) { --spark-x: -54px; --spark-y: -12px; }
.footer-flame-sparks i:nth-child(7) { --spark-x: 32px; --spark-y: 4px; }
.footer-flame-sparks i:nth-child(8) { --spark-x: -30px; --spark-y: 8px; }
.footer-flame-igniter.is-igniting .footer-flame-sparks i { animation: footer-spark-fly 500ms ease-out both; }
.footer-flame-igniter.is-igniting .footer-flame-sparks i:nth-child(even) { animation-delay: 50ms; }
.footer-brand-signature {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding-inline: 28px;
  text-align: center;
}
.footer-brand-signature span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.footer-brand-signature strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}
.footer-brand-signature small {
  color: rgba(255,255,255,.5);
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
}
@keyframes footer-flame-ignite {
  0% { transform: scale(.88) rotate(-3deg); }
  38% { transform: scale(1.16) rotate(2deg); }
  68% { transform: scale(.97) rotate(-1deg); }
  100% { transform: scale(1) rotate(0); }
}
@keyframes footer-flame-glow {
  0% { opacity: 0; transform: scale(.35); }
  35% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.55); }
}
@keyframes footer-flame-ring {
  0% { opacity: 0; transform: scale(.55); }
  30% { opacity: .9; }
  100% { opacity: 0; transform: scale(1.5); }
}
@keyframes footer-spark-fly {
  0% { opacity: 0; transform: translate(0,8px) scale(.35); }
  24% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--spark-x),var(--spark-y)) scale(0); }
}
.footer-main { gap: 70px; }
.footer-brand img {
  width: 210px;
  content: url("/static/images/flyingcolour-logo-white.png");
}
.footer .footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 22px;
}
.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.footer-socials a:hover {
  color: #fff;
  border-color: var(--orange);
  transform: translateY(-2px);
}
.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}
.footer-socials a:nth-child(2) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.footer-bottom a[href="/contact/"] {
  display: none;
}

/* Inner pages */
.service-hero, .page-hero { min-height: 680px; padding: 190px 0 90px; color: #fff; background: #090909; }
.service-hero::before, .page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .27;
  background: linear-gradient(90deg,#050505 15%,transparent), url("/static/images/singapore-business-hero.png") center/cover;
}
.service-hero > .shell, .page-hero > .shell { position: relative; z-index: 1; }
.service-hero h1, .page-hero h1 { max-width: 760px; font-size: clamp(3.3rem,5.4vw,5.7rem); font-weight: 620; }
.service-panel { overflow: hidden; border: 0; border-radius: var(--card-radius); background: rgba(255,255,255,.96); box-shadow: var(--soft-shadow); }
.service-panel h2 { color: var(--ink); font-size: 34px; }
.service-panel p { color: var(--muted); font-size: 14px; }
.mini-flow span { border-color: var(--line); }
.hub-page .section:nth-child(even) { background: #fff; }
.hub-page .section:nth-child(odd) { background: var(--ivory); }
.hub-page .section.dark { color: #fff; background: #090909; }
.cards, .pricing-grid { gap: 20px; }
.card {
  min-height: 260px;
  padding: 30px;
  border: 0;
  border-radius: var(--card-radius);
  background: #fff;
  box-shadow: 0 12px 40px rgba(20,18,15,.07);
}
.dark .card { color: #fff; background: rgba(255,255,255,.06); box-shadow: none; }
.card:hover { color: #fff; background: var(--orange); }
.card:hover p { color: rgba(255,255,255,.8); }
.route-compare article, .timeline article { border-radius: 14px; }
.pill-wall span { border: 0; border-radius: 999px; background: #fff; box-shadow: 0 8px 24px rgba(20,18,15,.06); }

/* Detailed service pages */
.svc-hero { min-height: 760px; }
.svc-hero-body { min-height: 760px; padding-top: 145px; }
.svc-hero h1 { font-size: clamp(3.4rem,5.5vw,5.8rem); font-weight: 620; }
.svc-hero-copy > p:not(.svc-kicker) { font-size: 17px; }
.svc-dossier, .svc-calendar, .svc-ledger-preview, .svc-pass { border-radius: var(--card-radius); box-shadow: 0 24px 70px rgba(0,0,0,.2); }
.svc-opening, .svc-obligations, .svc-readiness, .svc-process { background: var(--ivory); }
.svc-formation, .svc-cycle, .svc-finance-story, .svc-related { background: #090909; }
.svc-decision-list article, .svc-obligation-table article, .svc-finance-lines article, .svc-related-list a {
  border-radius: 12px;
  transition: background 350ms ease, transform 450ms ease;
}
.svc-decision-list article:hover, .svc-obligation-table article:hover, .svc-finance-lines article:hover { background: #fff; transform: translateX(8px); }
.svc-process ol { gap: 18px; }
.svc-process li { border: 0; border-radius: var(--card-radius); background: #fff; box-shadow: 0 12px 40px rgba(20,18,15,.06); }
.svc-end { min-height: 610px; }
.svc-end-shade { background: rgba(5,5,5,.66); }

.sg-hero .sg-text-link,
.svc-actions > a:not(.btn) {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid currentColor;
  border-radius: 12px;
  transition: color 280ms ease, background-color 280ms ease, border-color 280ms ease, transform 280ms ease;
}
.sg-hero .sg-text-link:hover,
.svc-actions > a:not(.btn):hover {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
  transform: translateY(-2px);
}

/* Interaction states must never change text width or card height. */
.sg-audience-list a:hover { padding: 30px; }
.sg-service-group > div:last-child > a:hover { padding: 25px; }
.sg-faq-questions button,
.sg-faq-questions button:hover,
.sg-faq-questions button[aria-selected="true"] {
  width: 100%;
  min-height: 78px;
  grid-template-columns: 26px minmax(0,1fr) 24px;
  padding: 21px 24px;
  box-sizing: border-box;
}
.sg-faq-questions button > span { min-width: 0; }
.sg-faq-tabs button,
.sg-faq-tabs button[aria-selected="true"] { box-sizing: border-box; font-weight: 700; }
.svc-related-list a:hover { padding-inline: 0; }

/* Smooth colour handoff while moving the pointer between cards. */
@media (hover: hover) {
  html.motion-enabled .sg-audience-list a,
  html.motion-enabled .sg-service-group > div:last-child > a,
  html.motion-enabled .sg-method-list li,
  html.motion-enabled .sg-package-table > a,
  html.motion-enabled .card,
  html.motion-enabled .p-latest-card,
  html.motion-enabled .svc-decision-list article,
  html.motion-enabled .svc-obligation-table article,
  html.motion-enabled .svc-finance-lines article,
  html.motion-enabled .svc-process li,
  html.motion-enabled .svc-related-list a {
    transition: opacity 900ms ease var(--motion-delay, 0ms),
      transform 1050ms cubic-bezier(.22,1,.36,1) var(--motion-delay, 0ms),
      filter 850ms ease var(--motion-delay, 0ms),
      background-color 650ms cubic-bezier(.22,1,.36,1),
      color 480ms ease, border-color 480ms ease, box-shadow 560ms ease;
  }

  .sg-audience-list a :where(h3,p,span,i),
  .sg-service-group a :where(h3,p,span,i),
  .sg-method-list li :where(h3,p,span,i),
  .sg-package-table > a :where(h3,ul,li,small,strong,span),
  .card :where(h3,p,small,span),
  .p-latest-card :where(h3,p,span),
  .svc-decision-list article :where(h3,p,span,i),
  .svc-obligation-table article :where(h3,p,span,i),
  .svc-finance-lines article :where(h3,p,span,i),
  .svc-process li :where(h3,p,span,i),
  .svc-related-list a :where(h3,p,span,i) {
    transition: color 480ms ease, opacity 480ms ease, transform 480ms ease;
  }
}

@media (max-width: 1100px) {
  .trust-utility-inner { gap: 18px; }
  .global-business-route { display: none; }
  .site-header, .site-header.is-scrolled { grid-template-columns: 145px 1fr auto; padding-inline: 40px; }
  .sg-service-groups { grid-template-columns: 1fr 1fr; }
  .sg-service-group:last-child { grid-column: 1 / -1; }
  .sg-method-list { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 1040px) {
  .site-header, .site-header.is-scrolled { grid-template-columns: 1fr auto auto; }
  .mega-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 10px;
    border: 0;
    border-radius: 0 0 18px 18px;
    background: var(--white);
    box-shadow: 0 24px 70px rgba(5,5,5,.16);
  }
  .site-header.menu-open .mega-nav { display: grid; }
  .mega-nav > a, .nav-item > a { padding: 0 10px; border-bottom: 1px solid var(--line); }
  .nav-panel {
    position: static;
    width: auto;
    visibility: visible;
    padding: 4px 10px 10px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }
  .menu-toggle { display: block; }
  .header-actions { gap: 8px; }
  .header-actions .header-cta { display: none; }
}

@media (max-width: 900px) {
  .global-business-strip-left { display: none; }
  .trust-utility-contact { margin-left: auto; }
  .sg-proof-grid { grid-template-columns: 1fr 1fr; }
  .sg-proof-grid > * { border-bottom: 0; }
  .sg-proof-grid > *:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .sg-proof-grid > *:nth-child(2) { border-right: 0; }
  .site-header, .site-header.is-scrolled { grid-template-columns: 1fr auto auto; }
  .mega-nav { top: 100%; border: 0; border-radius: 0 0 18px 18px; }
  .sg-desk-grid, .sg-packages-grid { grid-template-columns: 1fr; }
  .sg-editorial { grid-template-columns: 1fr; }
  .sg-editorial-image-main { min-height: 520px; }
  .sg-service-groups { grid-template-columns: 1fr; }
  .sg-service-group:last-child { grid-column: auto; }
  .p-contact-layout { grid-template-columns: 1fr; }
  .p-contact-copy { min-height: 560px; }
  .p-contact-form { min-height: 0; }
  .google-review-wall {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .google-review-column:last-child {
    display: none;
  }
  .sg-package-table { grid-template-columns: 1fr; grid-template-rows: auto; }
  .sg-package-table > a,
  .sg-package-table > a:first-child { grid-column: auto; grid-row: auto; min-height: 300px; display: flex; flex-direction: column; align-items: flex-start; padding: 32px; }
  .sg-package-table > a > span:first-child { margin-bottom: 46px; }
  .sg-package-table > a:first-child > span:first-child { margin-bottom: 46px; }
  .sg-package-table > a:first-child > div { margin-top: 0; }
  .sg-package-table > a > ul { margin-top: 22px; }
  .sg-package-table > a > strong { width: 100%; margin-top: auto; padding-top: 22px; }
  .sg-method-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .about-story-grid, .about-section-heading, .about-faq-layout { grid-template-columns: 1fr; }
  .about-faq header { position: static; }
  .about-story-copy { display: block; max-width: none; padding: 34px 0 0; border-top: 1px solid #d4ccc2; border-left: 0; }
  .about-orange-cta-grid { grid-template-columns: 1fr; gap: 36px; align-items: start; }
  .about-orange-cta-action { max-width: 620px; }
}

@media (max-width: 640px) {
  .blog-index-hero { min-height: 690px; padding: 140px 0 64px; }
  .about-simple-hero { min-height: 720px; padding: 150px 0 68px; }
  .about-simple-hero > img { object-position: 64% center; }
  .about-simple-hero h1 { font-size: clamp(3.2rem, 15vw, 4.6rem); }
  .about-simple-hero-inner > p:last-child { font-size: 16px; }
  .about-story, .about-markets, .about-faq { padding: 78px 0; }
  .about-enquiry { padding: 0; }
  .about-enquiry .footer-cta { min-height: 0; padding-block: 78px; }
  .about-orange-cta { padding: 68px 0; }
  .about-orange-cta h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .about-orange-cta-action .btn { width: 100%; }
  .about-section-heading { gap: 24px; margin-bottom: 34px; }
  .about-market-grid { grid-template-columns: 1fr; }
  .about-market-grid article { min-height: 280px; padding: 32px 22px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .about-market-grid article:last-child { border-bottom: 0; }
  .about-market-grid h3 { margin-top: 60px; }
  .about-faq-list summary { min-height: 82px; font-size: 15px; }
  .contact-page .service-layout { gap: 42px; }
  .floating-whatsapp { bottom: 16px; left: 16px; width: 54px; height: 54px; }
}

@media (max-width: 640px) {
  .announcement { display: none; }
  .mobile-contact-strip {
    position: relative;
    z-index: 101;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-inline: 14px;
    color: rgba(255,255,255,.76);
    background: #080808;
    font-size: 9px;
  }
  .mobile-contact-strip a { white-space: nowrap; }
  .trust-utility-inner {
    width: calc(100% - 28px);
    justify-content: space-between;
    gap: 12px;
  }
  .trust-utility-contact {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    margin-left: 0;
  }
  .trust-utility-contact a { font-size: 8px; white-space: nowrap; }
  .sg-proof-grid { grid-template-columns: 1fr; }
  .sg-proof-grid > * { border-bottom: 1px solid var(--line); }
  .sg-proof-grid > *:last-child {
    margin-inline: 0;
    padding-inline: 18px;
    border-bottom: 0;
  }
  .shell { width: calc(100% - 36px); }
  .section { padding-block: 82px; }
  .sg-office-contact { grid-template-columns: 1fr; }
  .google-review-wall {
    width: calc(100% - 36px);
    height: 560px;
    grid-template-columns: 1fr;
  }
  .google-review-column:not(:first-child) {
    display: none;
  }
  .google-review-card {
    min-height: 260px;
    padding: 24px;
  }
  .google-review-card blockquote {
    margin-block: 26px 22px;
    font-size: 16px;
  }
  .footer-map-stage {
    min-height: 370px;
  }
  .site-header, .site-header.is-scrolled { top: 28px; width: 100%; min-height: 68px; padding: 8px 18px; border-radius: 0; }
  .site-header.is-scrolled { top: 0; }
  .brand { width: 108px; }
  .site-search-trigger,
  .menu-toggle { width: 44px; height: 44px; border-radius: 12px; }
  .site-search { padding: 12px; }
  .site-search-panel { max-height: calc(100vh - 24px); border-radius: 18px; }
  .site-search-head { padding: 28px 20px 22px; }
  .site-search-head h2 { font-size: 2.15rem; }
  .site-search-field { gap: 12px; margin-inline: 20px; }
  .site-search-field kbd { display: none; }
  .site-search-meta { padding-inline: 20px; }
  .site-search-meta > span { display: none; }
  .site-search-results { padding-inline: 20px; }
  .site-search-result { grid-template-columns: 72px 1fr auto; gap: 10px; min-height: 76px; }
  .sg-hero, .sg-hero-content { min-height: 760px; }
  .sg-hero-content { padding-top: 150px; }
  .sg-hero-copy h1 { font-size: clamp(3rem, 13vw, 4.1rem); }
  .sg-hero-copy > p:not(.sg-label) { font-size: 16px; }
  .sg-proof-grid > * { min-height: 120px; padding: 24px 18px; }
  .sg-audience-list { grid-template-columns: 1fr; }
  .sg-audience-list a { min-height: 190px; }
  .sg-editorial-copy { padding: 76px 18px; }
  .sg-editorial-image-main { min-height: 430px; }
  .sg-route-expansion-label { top: 5%; font-size: 7px; }
  .sg-route-company { width: 46%; padding: 10px 11px; font-size: 9px; }
  .sg-route-company-uae { top: 36%; left: 0; }
  .sg-route-company-singapore { right: 0; bottom: 22%; }
  .sg-service-group > div:last-child > a { min-height: 125px; }
  .sg-service-group > div:last-child > a:hover { padding: 22px 20px; }
  .sg-method-list { grid-template-columns: 1fr; gap: 14px; }
  .sg-package-table > a,
  .sg-package-table > a:first-child { min-height: 310px; }
  .sg-packages header { margin-bottom: 44px; text-align: left; }
  .sg-faq-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px;
    border-radius: 18px;
    scroll-padding-inline: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .sg-faq-tabs::-webkit-scrollbar { display: none; }
  .sg-faq-tabs button {
    min-width: min(240px,78vw);
    min-height: 60px;
    flex: 0 0 auto;
    justify-content: center;
    border-radius: 14px;
    scroll-snap-align: start;
  }
  .sg-faq-interface { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 34px; }
  .sg-faq-questions,
  .sg-faq-answers { display: contents; }
  .sg-faq-questions button {
    border: 1px solid rgba(26,26,46,.1);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(20,18,15,.04);
  }
  .sg-faq-answers > [role="tabpanel"] {
    min-height: 0;
    margin-bottom: 8px;
    padding: 26px 24px;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(250,100,0,.16);
  }
  .sg-faq-questions > :nth-child(1) { order: 1; }
  .sg-faq-answers > :nth-child(1) { order: 2; }
  .sg-faq-questions > :nth-child(2) { order: 3; }
  .sg-faq-answers > :nth-child(2) { order: 4; }
  .sg-faq-questions > :nth-child(3) { order: 5; }
  .sg-faq-answers > :nth-child(3) { order: 6; }
  .sg-faq-questions > :nth-child(4) { order: 7; }
  .sg-faq-answers > :nth-child(4) { order: 8; }
  .sg-faq-questions > :nth-child(5) { order: 9; }
  .sg-faq-answers > :nth-child(5) { order: 10; }
  .sg-faq-questions > :nth-child(6) { order: 11; }
  .sg-faq-answers > :nth-child(6) { order: 12; }
  .p-contact-section { padding: 82px 0; }
  .p-contact-layout { border-radius: 18px; }
  .p-contact-copy { min-height: 520px; padding: 52px 24px; }
  .p-contact-copy h2 { font-size: clamp(2.7rem,12vw,3.6rem); }
  .p-contact-form { gap: 18px; padding: 34px 20px; }
  .p-contact-form-foot { align-items: stretch; }
  .p-contact-form-foot .btn { width: 100%; }
  .p-latest-card { --blog-card-pad: 24px; min-height: 500px; }
  .p-latest-card img { height: 210px; flex-basis: 210px; }
  .service-hero, .page-hero { min-height: 720px; padding-top: 160px; }
  .svc-hero, .svc-hero-body { min-height: 940px; }
}

@media (prefers-reduced-motion: reduce) {
  .footer-flame-igniter > img {
    transition: filter 150ms ease;
    transform: none !important;
  }
  .footer-flame-igniter.is-igniting > img,
  .footer-flame-igniter.is-igniting::before,
  .footer-flame-igniter.is-igniting::after,
  .footer-flame-igniter.is-igniting .footer-flame-sparks i {
    animation: none !important;
  }
}
form [data-form-status] {
  min-height: 1.4em;
  margin: .75rem 0 0;
  font-size: .82rem;
}

form button[aria-busy="true"] {
  cursor: wait;
  opacity: .75;
}

.turnstile-slot {
  min-height: 65px;
  margin-top: .75rem;
}

.cms-managed-content {
  background: #f5f0e8;
  color: #17172a;
}
