:root {
      --sc-burgundy: #4f1421;
      --sc-red: #982c36;
      --sc-red-dark: #761f2a;
      --sc-red-deep: #4f1421;
      --sc-light-blue: #c1dbec;
      --sc-blue: #3d75ac;
      --sc-orange: #e4853d;
      --sc-black: #000000;
      --sc-ink: #18191d;
      --sc-copy: #515967;
      --sc-soft: #f5f5f3;
      --sc-warm: #f7efe8;
      --sc-line: #dedede;
      --sc-radius: 18px;
      --sc-shadow: 0 18px 45px rgba(29, 18, 22, .10);
    }

    * { box-sizing: border-box; }

    html { scroll-behaviour: smooth; }

    body {
      margin: 0;
      font-family: "all-round-gothic", "Inter", sans-serif;
      font-weight: 400;
      color: var(--sc-ink);
      background: #fff;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6,
    .dynamic-design .content,
    .sc-button,
    .sc-eyebrow,
    .nav-link,
    .header-cta {
      font-family: "all-round-gothic", "Inter", sans-serif;
    }

    h1, h2, h3, h4, h5, h6 {
      font-weight: 500;
    }

    p, li, label, input, select, textarea {
      font-family: "all-round-gothic", "Inter", sans-serif;
      font-weight: 400;
    }


    img { max-width: 100%; }

    a { text-decoration: none; }

    section[id] { scroll-margin-top: 96px; }

    .sc-container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .sc-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      color: var(--sc-red-dark);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .sc-eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: currentColor;
    }

    .sc-section-heading {
      max-width: 760px;
      margin-bottom: 52px;
    }

    .sc-section-heading.is-centred {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .sc-section-heading.is-centred .sc-eyebrow::before { display: none; }

    .sc-section-heading h2 {
      margin: 0 0 18px;
      font-size: clamp(2.2rem, 4.2vw, 4rem);
      line-height: 1.04;
      letter-spacing: -.045em;
    }

    .sc-section-heading p {
      margin: 0;
      color: var(--sc-copy);
      font-size: clamp(1.05rem, 1.6vw, 1.2rem);
      line-height: 1.75;
    }

    .sc-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 25px;
      border: 1px solid transparent;
      border-radius: 10px;
      font-weight: 700;
      transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    }

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

    .sc-button-primary {
      background: var(--sc-red-dark);
      color: #fff;
    }

    .sc-button-primary:hover { background: var(--sc-red-deep); }

    .sc-button-secondary {
      border-color: #cbd5e1;
      background: #fff;
      color: var(--sc-ink);
    }

    .sc-button-secondary:hover {
      border-color: var(--sc-red-dark);
      color: var(--sc-red-dark);
    }

    /* Header */
    #site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 100;
      transition: background .25s ease, box-shadow .25s ease;
    }

    #site-header .header-inner {
      width: min(1240px, calc(100% - 40px));
      min-height: 92px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    #site-header .site-logo {
      width: auto;
      height: 64px;
      transition: height .25s ease;
    }

    #site-header .desktop-nav {
      display: flex;
      align-items: center;
      gap: 26px;
    }

    #site-header .nav-link,
    #site-header .menu-button {
      color: #fff;
      font-weight: 600;
    }

    #site-header .nav-link {
      position: relative;
      padding: 8px 0;
    }

    #site-header .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 2px;
      height: 2px;
      background: currentColor;
      transition: right .2s ease;
    }

    #site-header .nav-link:hover::after { right: 0; }

    #site-header .header-cta {
      padding: 12px 18px;
      border: 1px solid rgba(255,255,255,.38);
      border-radius: 9px;
      background: rgba(255,255,255,.12);
      color: #fff;
      font-weight: 700;
    }

    #site-header.scrolled {
      background: rgba(255,255,255,.97);
      box-shadow: 0 8px 24px rgba(17, 24, 39, .08);
      backdrop-filter: blur(12px);
    }

    #site-header.scrolled .site-logo { height: 54px; }

    #site-header.scrolled .nav-link,
    #site-header.scrolled .menu-button { color: var(--sc-ink); }

    #site-header.scrolled .header-cta {
      border-color: var(--sc-red-dark);
      background: var(--sc-red-dark);
      color: #fff;
    }

    .menu-button {
      display: none;
      border: 0;
      background: transparent;
      padding: 8px;
      cursor: pointer;
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 110;
      display: none;
      padding: 28px;
      background: #fff;
    }

    .mobile-menu.is-open {
      display: flex;
      flex-direction: column;
    }

    .mobile-menu-close {
      align-self: flex-end;
      border: 0;
      background: transparent;
      font-size: 2rem;
      cursor: pointer;
    }

    .mobile-menu nav {
      margin: auto 0;
      display: flex;
      flex-direction: column;
      gap: 26px;
      text-align: center;
    }

    .mobile-menu a {
      color: var(--sc-ink);
      font-size: 1.65rem;
      font-weight: 700;
    }

    /* Hero */
    .dynamic-design {
      position: relative;
      min-height: 100vh;
      min-height: 100svh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 120px 24px 80px;
      background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 32%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,.12), transparent 30%),
        var(--sc-red);
    }

    .dynamic-design::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 160px;
      background: linear-gradient(to bottom, transparent, rgba(77, 10, 24, .18));
      pointer-events: none;
    }

    .dynamic-design .content {
      max-width: 1100px;
      color: #fff;
      font-family: "gravesend-sans", "Inter", sans-serif;
      font-size: clamp(3rem, 8vw, 6.5rem);
      font-weight: 700;
      line-height: .98;
      letter-spacing: .045em;
      text-align: center;
      text-transform: uppercase;
    }

    .dynamic-design #image1,
    .dynamic-design #image2 {
      display: none;
      margin-top: 20px;
      opacity: 1;
      transition: opacity 1s ease-out;
    }

    .dynamic-design #image1 {
      width: min(300px, 55vw);
      aspect-ratio: 1;
      object-fit: cover;
    }

    .dynamic-design #image2 { width: min(500px, 78vw); }

    @keyframes spin {
      0% { transform: rotate(0); }
      100% { transform: rotate(1440deg); }
    }

    .dynamic-design .spin { animation: spin 2s linear; }

    .scroll-down {
      position: absolute;
      z-index: 3;
      left: 50%;
      bottom: max(18px, env(safe-area-inset-bottom));
      width: 45px;
      transform: translateX(-50%);
      animation: pulse 2.4s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: .35; transform: translateX(-50%) translateY(0); }
      50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
    }

    /* Intro */
    .sc-intro {
      position: relative;
      padding: clamp(80px, 10vw, 135px) 0;
      background: var(--sc-soft);
      text-align: center;
    }

    .sc-intro-inner {
      max-width: 950px;
      margin: 0 auto;
    }

    .sc-intro h1 {
      margin: 0 0 28px;
      font-size: clamp(2.7rem, 6vw, 5.4rem);
      line-height: .99;
      letter-spacing: -.055em;
    }

    .sc-intro .lead {
      max-width: 800px;
      margin: 0 auto 35px;
      color: #4b5563;
      font-size: clamp(1.15rem, 2vw, 1.4rem);
      line-height: 1.7;
    }

    .sc-intro-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .sc-proof-strip {
      margin-top: 58px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid #ddd7d4;
      border-bottom: 1px solid #ddd7d4;
    }

    .sc-proof-item {
      padding: 26px 18px;
      color: #4b5563;
      font-size: .95rem;
      line-height: 1.5;
    }

    .sc-proof-item + .sc-proof-item { border-left: 1px solid #ddd7d4; }

    .sc-proof-item strong {
      display: block;
      margin-bottom: 5px;
      color: var(--sc-ink);
      font-size: 1.05rem;
    }

    /* About */
    .sc-about {
      padding: clamp(80px, 10vw, 130px) 0;
      background: #fff;
    }

    .sc-about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(50px, 7vw, 100px);
      align-items: center;
    }

    .sc-about-media {
      position: relative;
      min-height: 600px;
      border-radius: 26px;
      overflow: hidden;
      box-shadow: var(--sc-shadow);
    }

    .sc-about-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.28));
      pointer-events: none;
    }

    .about-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease;
      transform: scale(1.02);
    }

    .about-slide.is-active {
      opacity: 1;
      animation: about-zoom 8s ease-out forwards;
    }

    @keyframes about-zoom {
      from { transform: scale(1.02); }
      to { transform: scale(1.08); }
    }

    .sc-about-copy h2 {
      margin: 0 0 24px;
      font-size: clamp(2.4rem, 5vw, 4.6rem);
      line-height: 1.03;
      letter-spacing: -.05em;
    }

    .sc-about-copy p {
      margin: 0 0 20px;
      color: var(--sc-copy);
      font-size: 1.08rem;
      line-height: 1.78;
    }

    .sc-about-list {
      margin: 30px 0 34px;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 13px;
    }

    .sc-about-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: #374151;
      font-weight: 600;
    }

    .sc-about-list li::before {
      content: "✓";
      flex: 0 0 25px;
      width: 25px;
      height: 25px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #fce7eb;
      color: var(--sc-red-dark);
      font-size: .8rem;
      font-weight: 800;
    }

    /* Services */
    .sc-services {
      padding: clamp(80px, 10vw, 130px) 0;
      background: var(--sc-soft);
    }

    .sc-services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .sc-service-card {
      position: relative;
      min-height: 330px;
      padding: 38px;
      border: 1px solid #ebe5e2;
      border-radius: var(--sc-radius);
      background: #fff;
      overflow: hidden;
      box-shadow: 0 10px 28px rgba(17, 24, 39, .04);
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .sc-service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--sc-shadow);
    }

    .sc-service-number {
      position: absolute;
      top: 26px;
      right: 30px;
      color: #e7dfdc;
      font-size: 3.4rem;
      font-weight: 800;
      line-height: 1;
    }

    .sc-service-icon {
      width: 56px;
      height: 56px;
      margin-bottom: 28px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #fce7eb;
      color: var(--sc-red-dark);
    }

    .sc-service-icon svg {
      width: 27px;
      height: 27px;
    }

    .sc-service-card h3 {
      margin: 0 0 14px;
      font-size: 1.65rem;
      letter-spacing: -.025em;
    }

    .sc-service-card p {
      margin: 0 0 20px;
      color: var(--sc-copy);
      line-height: 1.7;
    }

    .sc-service-card ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 9px;
      color: #374151;
      font-size: .95rem;
      font-weight: 600;
    }

    .sc-service-card li::before {
      content: "•";
      margin-right: 8px;
      color: var(--sc-red-dark);
    }

    /* Process */
    .sc-process {
      padding: clamp(80px, 9vw, 120px) 0;
      background: var(--sc-red-dark);
      color: #fff;
    }

    .sc-process .sc-eyebrow,
    .sc-process .sc-section-heading p { color: rgba(255,255,255,.72); }

    .sc-process-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .sc-process-step {
      padding: 30px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 16px;
      background: rgba(255,255,255,.06);
    }

    .sc-process-step span {
      display: block;
      margin-bottom: 45px;
      color: rgba(255,255,255,.45);
      font-size: .85rem;
      font-weight: 800;
      letter-spacing: .15em;
    }

    .sc-process-step h3 {
      margin: 0 0 12px;
      font-size: 1.45rem;
    }

    .sc-process-step p {
      margin: 0;
      color: rgba(255,255,255,.74);
      line-height: 1.7;
    }

    /* Portfolio */
    .sc-portfolio {
      padding: clamp(80px, 10vw, 130px) 0;
      background: #fff;
    }

    #portfolio .viewport {
      position: relative;
      overflow: hidden;
      padding: 0 58px;
    }

    #portfolio .track {
      display: flex;
      gap: 26px;
      padding-bottom: 28px;
      transition: transform 360ms ease;
      will-change: transform;
    }

    #portfolio .card {
      flex: 0 0 calc((100% - 52px) / 3);
      max-width: calc((100% - 52px) / 3);
      overflow: hidden;
      border: 1px solid #ece7e4;
      border-radius: 16px;
      background: #fff;
      color: inherit;
      box-shadow: 0 10px 24px rgba(17, 24, 39, .06);
      transition: transform .25s ease, box-shadow .25s ease;
    }

    #portfolio .card:hover {
      transform: translateY(-6px);
      box-shadow: var(--sc-shadow);
    }

    #portfolio .card-media {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #eee;
    }

    #portfolio .card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
    }

    #portfolio .card:hover .card-media img { transform: scale(1.045); }

    .project-label {
      position: absolute;
      left: 16px;
      top: 16px;
      z-index: 2;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.94);
      color: var(--sc-ink);
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .07em;
      text-transform: uppercase;
      box-shadow: 0 4px 12px rgba(0,0,0,.12);
    }

    #portfolio .card-body { padding: 22px; }

    #portfolio .card-title {
      margin: 0 0 8px;
      font-size: 1.15rem;
      font-weight: 800;
    }

    #portfolio .card-sub {
      margin: 0;
      color: var(--sc-copy);
      font-size: .92rem;
      line-height: 1.55;
    }

    #portfolio .nav-btn {
      position: absolute;
      top: 50%;
      z-index: 5;
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border: 1px solid #e5e7eb;
      border-radius: 50%;
      background: #fff;
      color: var(--sc-ink);
      box-shadow: 0 8px 20px rgba(17, 24, 39, .10);
      font-size: 1.6rem;
      line-height: 1;
      transform: translateY(-50%);
      cursor: pointer;
    }

    #portfolio .prev { left: 2px; }
    #portfolio .next { right: 2px; }

    .sc-portfolio-note {
      max-width: 800px;
      margin: 36px auto 0;
      color: #6b7280;
      font-size: .9rem;
      line-height: 1.65;
      text-align: center;
    }

    /* Testimonials */
    .sc-testimonials {
      padding: clamp(80px, 10vw, 130px) 0;
      background: var(--sc-soft);
    }

    .sc-testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .sc-testimonial {
      padding: 30px;
      border: 1px solid #ebe5e2;
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 8px 20px rgba(17, 24, 39, .04);
    }

    .sc-testimonial-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
    }

    .sc-testimonial-photo {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      background: #eee;
    }

    .sc-testimonial h3 {
      margin: 0 0 3px;
      font-size: 1rem;
    }

    .sc-testimonial small { color: #6b7280; }

    .sc-testimonial blockquote {
      margin: 0;
      color: #374151;
      line-height: 1.75;
      font-style: italic;
    }

    .sc-stars {
      margin-top: 20px;
      color: #d79a00;
      letter-spacing: 2px;
    }

    /* FAQ */
    .sc-faq {
      padding: clamp(80px, 10vw, 125px) 0;
      background: #fff;
    }

    .sc-faq-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: clamp(40px, 8vw, 100px);
      align-items: start;
    }

    .sc-faq-list {
      border-top: 1px solid var(--sc-line);
    }

    .sc-faq-item { border-bottom: 1px solid var(--sc-line); }

    .sc-faq-question {
      width: 100%;
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      border: 0;
      background: none;
      color: var(--sc-ink);
      font: inherit;
      font-size: 1.08rem;
      font-weight: 750;
      text-align: left;
      cursor: pointer;
    }

    .sc-faq-question span:last-child {
      color: var(--sc-red-dark);
      font-size: 1.4rem;
    }

    .sc-faq-answer {
      display: none;
      padding: 0 35px 24px 0;
      color: var(--sc-copy);
      line-height: 1.75;
    }

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

    /* Contact */
    .sc-contact {
      padding: clamp(80px, 10vw, 130px) 0;
      background: var(--sc-red-deep);
      color: #fff;
    }

    .sc-contact-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: clamp(45px, 8vw, 100px);
      align-items: start;
    }

    .sc-contact-copy .sc-eyebrow { color: rgba(255,255,255,.72); }

    .sc-contact-copy h2 {
      margin: 0 0 24px;
      font-size: clamp(2.6rem, 5.5vw, 5rem);
      line-height: 1;
      letter-spacing: -.055em;
    }

    .sc-contact-copy p {
      margin: 0 0 30px;
      color: rgba(255,255,255,.76);
      font-size: 1.12rem;
      line-height: 1.75;
    }

    .sc-contact-details {
      display: grid;
      gap: 8px;
      font-size: 1.06rem;
      font-weight: 700;
    }

    .sc-contact-details a { color: #fff; }

    .sc-contact-form {
      padding: 34px;
      border-radius: 20px;
      background: #fff;
      color: var(--sc-ink);
      box-shadow: 0 22px 55px rgba(0,0,0,.22);
    }

    .sc-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .sc-field { margin-bottom: 18px; }

    .sc-field label {
      display: block;
      margin-bottom: 8px;
      font-size: .9rem;
      font-weight: 700;
    }

    .sc-field input,
    .sc-field select,
    .sc-field textarea {
      width: 100%;
      border: 1px solid #d1d5db;
      border-radius: 9px;
      padding: 13px 14px;
      background: #fff;
      color: var(--sc-ink);
      font: inherit;
    }

    .sc-field input:focus,
    .sc-field select:focus,
    .sc-field textarea:focus {
      outline: 2px solid rgba(167,30,50,.25);
      border-color: var(--sc-red);
    }

    .sc-privacy-note {
      margin: 15px 0 0;
      color: #6b7280;
      font-size: .78rem;
      line-height: 1.55;
    }

    .sc-privacy-note a {
      color: var(--sc-red-dark);
      text-decoration: underline;
    }

    /* Footer */
    .sc-footer {
      padding: 64px 0 30px;
      background: #131417;
      color: #fff;
    }

    .sc-footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .8fr .9fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
    }

    .sc-footer-logo {
      width: auto;
      height: 52px;
      margin-bottom: 18px;
    }

    .sc-footer p,
    .sc-footer li {
      color: #aeb4bf;
      line-height: 1.7;
    }

    .sc-footer h3 {
      margin: 0 0 16px;
      font-size: .88rem;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .sc-footer ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 9px;
    }

    .sc-footer a { color: #d8dce3; }

    .sc-footer-bottom {
      padding-top: 25px;
      border-top: 1px solid rgba(255,255,255,.1);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: #8e95a1;
      font-size: .86rem;
    }

    /* Reveal */
    .fade-in {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1024px) {
      .desktop-nav { display: none !important; }
      .menu-button { display: block; }

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

      .sc-about-media { min-height: 480px; }

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

      #portfolio .card {
        flex-basis: calc((100% - 26px) / 2);
        max-width: calc((100% - 26px) / 2);
      }
    }

    @media (max-width: 760px) {
      .sc-container,
      #site-header .header-inner {
        width: min(100% - 28px, 1180px);
      }

      #site-header .header-inner { min-height: 82px; }

      #site-header .site-logo { height: 52px; }

      .dynamic-design .content {
        font-size: clamp(2.8rem, 13vw, 4.4rem);
        letter-spacing: .025em;
      }

      .sc-proof-strip { grid-template-columns: 1fr; }

      .sc-proof-item + .sc-proof-item {
        border-left: 0;
        border-top: 1px solid #ddd7d4;
      }

      .sc-services-grid,
      .sc-process-grid { grid-template-columns: 1fr; }

      .sc-service-card { min-height: auto; }

      .sc-about-media { min-height: 380px; }

      #portfolio .viewport { padding: 0; }

      #portfolio .card {
        flex-basis: 86%;
        max-width: 86%;
      }

      #portfolio .nav-btn { display: none; }

      .sc-form-grid { grid-template-columns: 1fr; }

      .sc-footer-grid { grid-template-columns: 1fr 1fr; }

      .sc-footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 520px) {
      .sc-footer-grid { grid-template-columns: 1fr; }

      .sc-contact-form { padding: 24px; }

      .sc-service-card { padding: 30px 26px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behaviour: auto; }
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behaviour: auto !important;
        transition-duration: .01ms !important;
      }
      .fade-in {
        opacity: 1;
        transform: none;
      }
    }

.sc-centred-action {
  margin-top: 32px;
  text-align: center;
}

.sc-button-full {
  width: 100%;
}


/* Brand-led homepage accents */
.sc-highlight {
  position: relative;
  display: inline;
  z-index: 0;
}

.sc-highlight::after {
  content: "";
  position: absolute;
  left: -.03em;
  right: -.03em;
  bottom: .04em;
  height: .22em;
  background: var(--sc-orange);
  z-index: -1;
  opacity: .78;
  transform: skewX(-8deg);
}

/* Brand colours across service cards */
.sc-service-card:nth-child(1) { border-top: 7px solid var(--sc-red); }
.sc-service-card:nth-child(2) { border-top: 7px solid var(--sc-blue); }
.sc-service-card:nth-child(3) { border-top: 7px solid var(--sc-orange); }
.sc-service-card:nth-child(4) { border-top: 7px solid var(--sc-burgundy); }

.sc-service-card:nth-child(1) .sc-service-icon {
  background: rgba(152,44,54,.13);
  color: var(--sc-red);
}

.sc-service-card:nth-child(2) .sc-service-icon {
  background: var(--sc-light-blue);
  color: var(--sc-blue);
}

.sc-service-card:nth-child(3) .sc-service-icon {
  background: rgba(228,133,61,.16);
  color: #b75b18;
}

.sc-service-card:nth-child(4) .sc-service-icon {
  background: rgba(79,20,33,.12);
  color: var(--sc-burgundy);
}

/* Subtle printed texture used instead of decorative circles */
.sc-textured {
  position: relative;
  isolation: isolate;
}

.sc-textured::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* DIY website builder comparison */
.sc-choice {
  position: relative;
  padding: clamp(88px, 10vw, 138px) 0;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(193,219,236,.74) 0%, rgba(255,255,255,.97) 43%, rgba(228,133,61,.10) 100%);
}

.sc-choice-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(48px, 8vw, 105px);
  align-items: center;
}

.sc-choice-copy h2 {
  margin: 0 0 25px;
  color: var(--sc-burgundy);
  font-size: clamp(2.7rem, 5.4vw, 5.1rem);
  line-height: .98;
  letter-spacing: -.035em;
}

.sc-choice-copy p {
  margin: 0 0 20px;
  color: #3e4652;
  font-size: 1.1rem;
  line-height: 1.76;
}

.sc-choice-note {
  margin-top: 30px;
  padding: 20px 22px;
  border-left: 6px solid var(--sc-orange);
  background: rgba(255,255,255,.78);
  color: #303641;
  line-height: 1.65;
  box-shadow: 0 13px 30px rgba(79,20,33,.08);
}

.sc-choice-cards {
  display: grid;
  gap: 16px;
}

.sc-choice-card {
  position: relative;
  min-height: 145px;
  padding: 28px 30px 28px 86px;
  border: 1px solid rgba(79,20,33,.12);
  background: rgba(255,255,255,.9);
  box-shadow: 0 15px 34px rgba(79,20,33,.08);
}

.sc-choice-card:nth-child(1) { border-left: 8px solid var(--sc-red); }
.sc-choice-card:nth-child(2) { border-left: 8px solid var(--sc-blue); }
.sc-choice-card:nth-child(3) { border-left: 8px solid var(--sc-orange); }

.sc-choice-icon {
  position: absolute;
  left: 27px;
  top: 29px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--sc-burgundy);
  color: #fff;
  font-size: .95rem;
  font-weight: 500;
}

.sc-choice-card h3 {
  margin: 0 0 8px;
  color: var(--sc-burgundy);
  font-size: 1.25rem;
  letter-spacing: -.01em;
}

.sc-choice-card p {
  margin: 0;
  color: #555d69;
  line-height: 1.65;
}

/* Brand-colour benefit strip */
.sc-colour-band {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--sc-burgundy) 0%, var(--sc-burgundy) 50%, var(--sc-red) 50%, var(--sc-red) 100%);
  color: #fff;
}

.sc-colour-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 13px, rgba(255,255,255,.18) 13px 14px);
}

.sc-colour-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sc-colour-band-inner > div {
  padding: 5px 28px;
  text-align: center;
}

.sc-colour-band-inner > div + div {
  border-left: 1px solid rgba(255,255,255,.25);
}

.sc-colour-band strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.08rem;
  font-weight: 500;
}

.sc-colour-band span {
  color: rgba(255,255,255,.76);
  font-size: .9rem;
}

/* Extra texture on existing major sections */
.sc-services {
  background-color: var(--sc-soft);
  background-image:
    linear-gradient(rgba(255,255,255,.52), rgba(255,255,255,.52)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(79,20,33,.025) 34px 35px);
}

.sc-process {
  background:
    linear-gradient(rgba(79,20,33,.96), rgba(79,20,33,.96)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170' viewBox='0 0 170 170'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}

.sc-testimonials {
  background:
    linear-gradient(rgba(193,219,236,.24), rgba(255,255,255,.78)),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(61,117,172,.035) 31px 32px);
}

@media (max-width: 1024px) {
  .sc-choice-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .sc-colour-band {
    background: var(--sc-burgundy);
  }

  .sc-colour-band-inner {
    grid-template-columns: 1fr 1fr;
  }

  .sc-colour-band-inner > div {
    padding: 18px;
  }

  .sc-colour-band-inner > div + div {
    border-left: 0;
  }

  .sc-colour-band-inner > div:nth-child(even) {
    border-left: 1px solid rgba(255,255,255,.2);
  }

  .sc-colour-band-inner > div:nth-child(n+3) {
    border-top: 1px solid rgba(255,255,255,.2);
  }
}

@media (max-width: 520px) {
  .sc-colour-band-inner {
    grid-template-columns: 1fr;
  }

  .sc-colour-band-inner > div,
  .sc-colour-band-inner > div:nth-child(even),
  .sc-colour-band-inner > div:nth-child(n+3) {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.2);
  }

  .sc-colour-band-inner > div:first-child {
    border-top: 0;
  }
}


/* FINAL VISUAL REFINEMENT */

/* Glass pill navigation */
#site-header .header-inner {
  min-height: 104px;
}

.glass-nav {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  box-shadow:
    0 10px 30px rgba(0,0,0,.10),
    inset 0 1px 0 rgba(255,255,255,.26);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

#site-header .desktop-nav {
  gap: 4px;
}

#site-header .nav-link {
  padding: 11px 16px;
  border-radius: 999px;
}

#site-header .nav-link::after {
  display: none;
}

#site-header .nav-link:hover {
  background: rgba(255,255,255,.14);
}

#site-header .header-cta {
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}

#site-header.scrolled .glass-nav {
  border-color: rgba(79,20,33,.10);
  background: rgba(255,255,255,.78);
  box-shadow:
    0 12px 34px rgba(17,24,39,.10),
    inset 0 1px 0 rgba(255,255,255,.95);
}

#site-header.scrolled .nav-link:hover {
  background: rgba(193,219,236,.55);
}

#site-header.scrolled .header-cta {
  background: var(--sc-red);
  color: #fff;
}

/* Calmer benefit strip */
.sc-colour-band {
  padding: 34px 0;
  background: #111;
}

.sc-colour-band::before {
  opacity: .12;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 13px, rgba(255,255,255,.16) 13px 14px);
}

.sc-colour-band-inner {
  gap: 0;
}

.sc-colour-band-inner > div {
  position: relative;
  padding: 16px 28px 18px;
}

.sc-colour-band-inner > div::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
}

.sc-colour-band-inner > div:nth-child(1)::before { background: var(--sc-red); }
.sc-colour-band-inner > div:nth-child(2)::before { background: var(--sc-blue); }
.sc-colour-band-inner > div:nth-child(3)::before { background: var(--sc-orange); }
.sc-colour-band-inner > div:nth-child(4)::before { background: var(--sc-light-blue); }

.sc-colour-band-inner > div + div {
  border-left: 1px solid rgba(255,255,255,.14);
}

/* Comparison section, less washed out and more structured */
.sc-choice {
  background:
    linear-gradient(90deg, rgba(193,219,236,.36) 0%, rgba(255,255,255,.96) 45%, #f7f4f1 100%);
}

.sc-choice::before,
.sc-choice::after {
  display: none;
}

.sc-choice-copy h2 {
  max-width: 690px;
  color: var(--sc-burgundy);
}

.sc-choice-note {
  border-left-color: var(--sc-orange);
  background: rgba(255,255,255,.88);
}

/* Sticky right-hand comparison cards */
.sc-choice-grid {
  align-items: start;
}

.sc-choice-cards {
  position: sticky;
  top: 132px;
  align-self: start;
}

.sc-choice-card {
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 30px rgba(42,25,30,.07);
}

.sc-choice-card:nth-child(1),
.sc-choice-card:nth-child(2),
.sc-choice-card:nth-child(3) {
  transform: none;
  margin-left: 0;
}

/* Rework process section away from solid burgundy */
.sc-process {
  background:
    linear-gradient(rgba(245,245,243,.94), rgba(245,245,243,.94)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170' viewBox='0 0 170 170'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  color: var(--sc-ink);
}

.sc-process .sc-eyebrow {
  color: var(--sc-red);
}

.sc-process .sc-section-heading p {
  color: var(--sc-copy);
}

.sc-process-step {
  position: relative;
  border: 1px solid rgba(79,20,33,.12);
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 30px rgba(32,27,29,.06);
}

.sc-process-step::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
}

.sc-process-step:nth-child(1)::before { background: var(--sc-red); }
.sc-process-step:nth-child(2)::before { background: var(--sc-blue); }
.sc-process-step:nth-child(3)::before { background: var(--sc-orange); }

.sc-process-step span {
  color: rgba(79,20,33,.48);
}

.sc-process-step h3 {
  color: var(--sc-burgundy);
}

.sc-process-step p {
  color: var(--sc-copy);
}

/* Better headline balance */
.sc-choice-copy h2,
.sc-process .sc-section-heading h2 {
  font-weight: 500;
}

@media (max-width: 1024px) {
  .sc-choice-cards {
    position: static;
  }

  .glass-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  #site-header .header-inner {
    min-height: 86px;
  }

  .sc-colour-band-inner > div::before {
    left: 18px;
    right: 18px;
  }
}


/* Sticky comparison fix */
.sc-choice {
  overflow: visible !important;
}

.sc-choice-grid {
  align-items: stretch;
}

.sc-choice-copy {
  min-width: 0;
}

.sc-choice-cards {
  position: -webkit-sticky;
  position: sticky;
  top: 128px;
  align-self: start;
  height: max-content;
  z-index: 2;
}

@media (max-width: 1024px) {
  .sc-choice-cards {
    position: static;
    top: auto;
  }
}


/* TYPOGRAPHY AND ABOUT SECTION REFINEMENT */

/* Reduce oversized display headings */
.sc-choice-copy h2 {
  max-width: 650px;
  font-size: clamp(2.55rem, 4.35vw, 4.35rem);
  line-height: 1.01;
  letter-spacing: -.03em;
}

.sc-contact-copy h2 {
  max-width: 610px;
  font-size: clamp(2.6rem, 4.5vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.sc-about-copy h2 {
  max-width: 650px;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.sc-process .sc-section-heading h2 {
  max-width: 820px;
  font-size: clamp(2.45rem, 4.2vw, 4.15rem);
  line-height: 1.04;
}

.sc-intro h1 {
  font-size: clamp(2.65rem, 5.1vw, 4.8rem);
  line-height: 1.01;
}

.sc-section-heading h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.7rem);
}

/* Improve the About section balance */
.sc-about {
  padding: clamp(70px, 8vw, 105px) 0;
}

.sc-about-grid {
  align-items: start;
  gap: clamp(44px, 6vw, 82px);
}

.sc-about-media {
  position: sticky;
  top: 128px;
  min-height: 0;
  height: min(650px, calc(100vh - 165px));
  max-height: 650px;
  margin-top: 4px;
}

.sc-about-copy {
  padding-top: 0;
}

.sc-about-copy p {
  margin-bottom: 17px;
}

/* Turn the lost bullet list into clear benefit cards */
.sc-about-list {
  margin: 28px 0 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sc-about-list li {
  min-height: 92px;
  padding: 16px 16px 16px 15px;
  align-items: flex-start;
  border: 1px solid rgba(79,20,33,.09);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(23,24,29,.045);
  font-size: .93rem;
  line-height: 1.5;
}

.sc-about-list li:nth-child(1) {
  border-top: 4px solid var(--sc-red);
}

.sc-about-list li:nth-child(2) {
  border-top: 4px solid var(--sc-blue);
}

.sc-about-list li:nth-child(3) {
  border-top: 4px solid var(--sc-orange);
}

.sc-about-list li:nth-child(4) {
  border-top: 4px solid var(--sc-burgundy);
}

.sc-about-list li::before {
  flex-basis: 23px;
  width: 23px;
  height: 23px;
  margin-top: 1px;
  background: var(--sc-burgundy);
  color: #fff;
}

/* Keep the comparison section compact enough for sticky cards */
.sc-choice {
  padding: clamp(76px, 8vw, 112px) 0;
}

.sc-choice-copy p {
  max-width: 620px;
}

.sc-choice-cards {
  top: 118px;
}

/* Contact section balance */
.sc-contact {
  padding: clamp(76px, 8vw, 110px) 0;
}

.sc-contact-grid {
  gap: clamp(45px, 7vw, 82px);
}

/* Desktop-wide screens */
@media (min-width: 1440px) {
  .sc-choice-copy h2 {
    font-size: 4.15rem;
  }

  .sc-contact-copy h2 {
    font-size: 4.15rem;
  }

  .sc-about-copy h2 {
    font-size: 3.75rem;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .sc-about-media {
    position: relative;
    top: auto;
    height: 500px;
    max-height: none;
  }

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

/* Mobile */
@media (max-width: 680px) {
  .sc-choice-copy h2,
  .sc-contact-copy h2,
  .sc-about-copy h2,
  .sc-process .sc-section-heading h2 {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  .sc-about-media {
    height: 390px;
  }

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

  .sc-about-list li {
    min-height: auto;
  }
}


/* BRAND BLUE HIGHLIGHT UNDERLINES */
.sc-highlight::after {
  background: var(--sc-blue);
  opacity: .92;
}


/* CENTRED FLOATING NAVIGATION PILL */
#site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: transparent !important;
  box-shadow: none !important;
  pointer-events: none;
}

#site-header .header-inner {
  width: min(1240px, calc(100% - 32px));
  min-height: 112px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  box-shadow:
    0 12px 34px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.28);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  transition:
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

.header-logo-link {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 4px 8px 4px 4px;
}

#site-header .site-logo {
  width: auto;
  height: 48px;
  display: block;
  transition: height .25s ease;
}

#site-header .desktop-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

#site-header .nav-link {
  padding: 11px 15px;
  border-radius: 999px;
}

#site-header .header-cta {
  padding: 12px 19px;
  border-radius: 999px;
}

#site-header.scrolled {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

#site-header.scrolled .header-pill {
  border-color: rgba(79,20,33,.10);
  background: rgba(255,255,255,.84);
  box-shadow:
    0 14px 38px rgba(17,24,39,.12),
    inset 0 1px 0 rgba(255,255,255,.96);
}

#site-header.scrolled .site-logo {
  height: 46px;
}

#site-header.scrolled .nav-link,
#site-header.scrolled .menu-button {
  color: var(--sc-ink);
}

#site-header.scrolled .nav-link:hover {
  background: rgba(193,219,236,.48);
}

#site-header.scrolled .header-cta {
  background: var(--sc-red);
  color: #fff;
}

/* Remove old nav wrapper appearance */
.glass-nav {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (max-width: 1024px) {
  #site-header .header-inner {
    min-height: 92px;
  }

  .header-pill {
    width: min(100%, 520px);
    justify-content: space-between;
    padding: 7px 12px 7px 14px;
  }

  #site-header .desktop-nav {
    display: none;
  }

  #site-header .site-logo {
    height: 45px;
  }

  #site-header.scrolled .site-logo {
    height: 43px;
  }

  #site-header .menu-button {
    display: block;
  }
}

@media (max-width: 600px) {
  #site-header .header-inner {
    width: min(100% - 20px, 1240px);
  }

  .header-pill {
    width: 100%;
  }
}


/* MORE TRANSPARENT NAVIGATION PILL */
.header-pill {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 10px 28px rgba(0,0,0,.10),
    inset 0 1px 0 rgba(255,255,255,.20);
}

#site-header.scrolled .header-pill {
  background: rgba(255,255,255,.68);
  border-color: rgba(255,255,255,.48);
  box-shadow:
    0 12px 32px rgba(17,24,39,.10),
    inset 0 1px 0 rgba(255,255,255,.76);
}


/* AREAS COVERED */
.sc-areas {
  position: relative;
  padding: clamp(78px, 9vw, 120px) 0;
  background:
    linear-gradient(rgba(255,255,255,.93), rgba(255,255,255,.93)),
    repeating-linear-gradient(135deg, transparent 0 26px, rgba(61,117,172,.045) 26px 27px);
}

.sc-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sc-area-card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(79,20,33,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 28px rgba(27,24,26,.055);
}

.sc-area-card:nth-child(1) { border-top: 5px solid var(--sc-red); }
.sc-area-card:nth-child(2) { border-top: 5px solid var(--sc-blue); }
.sc-area-card:nth-child(3) { border-top: 5px solid var(--sc-burgundy); }
.sc-area-card:nth-child(4) { border-top: 5px solid var(--sc-orange); }
.sc-area-card:nth-child(5) { border-top: 5px solid var(--sc-light-blue); }
.sc-area-card:nth-child(6) { border-top: 5px solid var(--sc-blue); }

.sc-area-card-featured {
  background:
    linear-gradient(135deg, rgba(193,219,236,.26), rgba(255,255,255,.96));
}

.sc-location-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 0 17px;
  border: 1px solid rgba(79,20,33,.12);
  border-radius: 999px;
  background: var(--sc-burgundy);
  color: #fff;
  font-weight: 500;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.sc-location-pill:hover {
  transform: translateY(-2px);
  background: var(--sc-red);
  box-shadow: 0 8px 18px rgba(79,20,33,.14);
}

.sc-area-card p {
  margin: 0;
  color: var(--sc-copy);
  line-height: 1.68;
}

.sc-areas-note {
  max-width: 720px;
  margin: 34px auto 0;
  color: #6a7280;
  text-align: center;
  line-height: 1.65;
}

.sc-footer-area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.sc-footer-area-links a {
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #cfd3da;
  font-size: .77rem;
}

.sc-footer-area-links a:hover {
  border-color: rgba(255,255,255,.35);
  color: #fff;
}

@media (max-width: 1024px) {
  .sc-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .sc-area-grid {
    grid-template-columns: 1fr;
  }

  .sc-area-card {
    min-height: auto;
  }
}


/* LOCATION SERVICE PAGES */
.location-page {
  background: #fff;
}

.location-page #site-header .header-pill {
  background: rgba(255,255,255,.70);
  border-color: rgba(79,20,33,.10);
}

.location-page #site-header .nav-link,
.location-page #site-header .menu-button {
  color: var(--sc-ink);
}

.location-page #site-header .header-cta {
  background: var(--sc-red);
  color: #fff;
}

.location-hero {
  position: relative;
  padding: 185px 0 105px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(193,219,236,.60), rgba(255,255,255,.97) 55%, rgba(61,117,172,.08)),
    #fff;
}

.location-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: repeating-linear-gradient(135deg, transparent 0 22px, rgba(61,117,172,.16) 22px 23px);
}

.location-hero .sc-container {
  position: relative;
  z-index: 1;
}

.location-hero h1 {
  max-width: 920px;
  margin: 0 0 26px;
  color: var(--sc-burgundy);
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.location-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--sc-copy);
  font-size: 1.2rem;
  line-height: 1.72;
}

.location-intro {
  padding: 86px 0;
}

.location-intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(45px, 8vw, 100px);
  align-items: start;
}

.location-intro h2,
.location-sectors h2,
.location-towns h2,
.location-faq h2,
.location-cta h2 {
  margin: 0 0 22px;
  color: var(--sc-burgundy);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -.035em;
}

.location-intro p,
.location-sectors p,
.location-towns p,
.location-faq p {
  color: var(--sc-copy);
  line-height: 1.76;
}

.location-summary {
  padding: 30px;
  border-left: 7px solid var(--sc-blue);
  background: #f6f7f7;
  box-shadow: 0 14px 32px rgba(25,25,27,.055);
}

.location-summary strong {
  display: block;
  margin-bottom: 12px;
  color: var(--sc-burgundy);
  font-size: 1.1rem;
}

.location-sectors {
  padding: 90px 0 105px;
  background:
    linear-gradient(rgba(245,245,243,.94), rgba(245,245,243,.94)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(79,20,33,.025) 34px 35px);
}

.location-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-sector-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid rgba(79,20,33,.10);
  border-top: 6px solid var(--sc-red);
  background: #fff;
  box-shadow: 0 12px 28px rgba(28,24,26,.05);
}

.location-sector-card:nth-child(2),
.location-sector-card:nth-child(5) {
  border-top-color: var(--sc-blue);
}

.location-sector-card:nth-child(3),
.location-sector-card:nth-child(6) {
  border-top-color: var(--sc-orange);
}

.location-sector-card h3 {
  margin: 0 0 12px;
  color: var(--sc-burgundy);
  font-size: 1.35rem;
}

.location-sector-card p {
  margin: 0;
}

.location-benefits {
  padding: 86px 0;
  background: var(--sc-burgundy);
  color: #fff;
}

.location-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.location-benefit {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
}

.location-benefit strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.location-benefit span {
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}

.location-towns {
  padding: 88px 0;
}

.location-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 24px;
}

.location-town-pill {
  padding: 10px 15px;
  border: 1px solid rgba(79,20,33,.14);
  border-radius: 999px;
  background: #fff;
  color: var(--sc-burgundy);
  font-weight: 500;
}

.location-town-note {
  max-width: 760px;
  font-size: .94rem;
}

.location-faq {
  padding: 90px 0;
  background: #f6f7f7;
}

.location-faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(45px, 8vw, 95px);
}

.location-faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--sc-line);
}

.location-faq-item h3 {
  margin: 0 0 9px;
  color: var(--sc-burgundy);
  font-size: 1.15rem;
}

.location-faq-item p {
  margin: 0;
}

.location-cta {
  padding: 90px 0;
  text-align: center;
  background: #fff;
}

.location-cta p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--sc-copy);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .location-intro-grid,
  .location-faq-grid {
    grid-template-columns: 1fr;
  }

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

  .location-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .location-hero {
    padding: 145px 0 75px;
  }

  .location-sector-grid,
  .location-benefit-grid {
    grid-template-columns: 1fr;
  }

  .location-sector-card {
    min-height: auto;
  }
}


/* LOCATION PAGE VISUAL REFINEMENT */
.location-hero {
  padding: 165px 0 92px;
}

.location-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(45px, 7vw, 95px);
  align-items: center;
}

.location-hero-copy {
  min-width: 0;
}

.location-hero-media {
  position: relative;
  margin: 0;
  min-height: 500px;
  overflow: hidden;
  border-radius: 30px 30px 110px 30px;
  box-shadow: 0 24px 55px rgba(28, 25, 27, .16);
}

.location-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.30));
  pointer-events: none;
}

.location-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
}

.location-hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 15px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,.48);
  color: rgba(255,255,255,.88);
  font-size: .68rem;
  backdrop-filter: blur(6px);
}

.location-summary,
.location-sector-card,
.location-benefit,
.location-faq-item {
  border-radius: 18px;
}

.location-summary {
  border-left: 0;
  border-top: 7px solid var(--sc-blue);
}

.location-sector-card {
  border-radius: 18px;
}

.location-sector-card:nth-child(2),
.location-sector-card:nth-child(5) {
  border-radius: 18px 46px 18px 18px;
}

.location-sector-card:nth-child(3),
.location-sector-card:nth-child(6) {
  border-radius: 46px 18px 18px 18px;
}

.location-benefit {
  border-radius: 16px;
}

.location-faq-item {
  padding: 24px;
  margin-bottom: 12px;
  border: 1px solid rgba(79,20,33,.09);
  background: rgba(255,255,255,.78);
}

.location-faq-item:last-child {
  border-bottom: 1px solid rgba(79,20,33,.09);
}

@media (max-width: 1024px) {
  .location-hero-grid {
    grid-template-columns: 1fr;
  }

  .location-hero-media,
  .location-hero-media img {
    min-height: 430px;
  }
}

@media (max-width: 650px) {
  .location-hero {
    padding-top: 130px;
  }

  .location-hero-media {
    min-height: 320px;
    border-radius: 22px 22px 70px 22px;
  }

  .location-hero-media img {
    min-height: 320px;
  }
}


/* SECONDARY IMAGE FEATURE AND HERO OVERLAP FIX */
.location-hero-grid {
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(52px, 7vw, 100px);
}

.location-hero-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.location-hero h1 {
  max-width: 650px;
  font-size: clamp(3rem, 4.7vw, 5rem);
  line-height: .98;
  text-wrap: balance;
  overflow-wrap: normal;
}

.location-hero-media {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.location-feature {
  padding: clamp(80px, 9vw, 120px) 0;
  background: #fff;
}

.location-feature-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, .92fr);
  gap: clamp(48px, 8vw, 105px);
  align-items: center;
}

.location-feature-media {
  position: relative;
  margin: 0;
  min-height: 470px;
  overflow: hidden;
  border-radius: 26px 90px 26px 26px;
  box-shadow: 0 22px 52px rgba(26, 23, 25, .14);
}

.location-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(0,0,0,.28));
  pointer-events: none;
}

.location-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  display: block;
  object-fit: cover;
}

.location-feature-media figcaption {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,.48);
  color: rgba(255,255,255,.88);
  font-size: .67rem;
  backdrop-filter: blur(6px);
}

.location-feature-copy {
  position: relative;
  padding: 34px 0 34px 36px;
}

.location-feature-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 36px;
  bottom: 36px;
  width: 6px;
  background: var(--sc-blue);
}

.location-feature-copy h2 {
  margin: 0 0 20px;
  max-width: 620px;
  color: var(--sc-burgundy);
  font-size: clamp(2.35rem, 3.7vw, 3.75rem);
  line-height: 1.03;
  letter-spacing: -.032em;
}

.location-feature-copy p {
  margin: 0 0 17px;
  color: var(--sc-copy);
  font-size: 1.04rem;
  line-height: 1.76;
}

.location-feature-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.location-feature-points li {
  position: relative;
  padding-left: 28px;
  color: #3d4551;
  line-height: 1.55;
  font-weight: 500;
}

.location-feature-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sc-light-blue);
  color: var(--sc-burgundy);
  font-size: .72rem;
  font-weight: 700;
}

.location-feature.is-reversed .location-feature-media {
  order: 2;
  border-radius: 90px 26px 26px 26px;
}

.location-feature.is-reversed .location-feature-copy {
  order: 1;
  padding: 34px 36px 34px 0;
}

.location-feature.is-reversed .location-feature-copy::before {
  left: auto;
  right: 0;
  background: var(--sc-orange);
}

@media (max-width: 1100px) {
  .location-hero-grid,
  .location-feature-grid {
    grid-template-columns: 1fr;
  }

  .location-hero h1 {
    max-width: 820px;
  }

  .location-feature.is-reversed .location-feature-media,
  .location-feature.is-reversed .location-feature-copy {
    order: initial;
  }

  .location-feature.is-reversed .location-feature-copy {
    padding: 30px 0 0 34px;
  }

  .location-feature.is-reversed .location-feature-copy::before {
    left: 0;
    right: auto;
  }
}

@media (max-width: 650px) {
  .location-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
  }

  .location-feature-media,
  .location-feature-media img {
    min-height: 330px;
  }

  .location-feature-copy,
  .location-feature.is-reversed .location-feature-copy {
    padding: 28px 0 0 28px;
  }
}


/* =========================================================
   EDITORIAL LOCATION PAGE REFINEMENT
   ========================================================= */

.location-sectors {
  padding: clamp(90px, 10vw, 145px) 0;
  background:
    linear-gradient(rgba(245,245,243,.95), rgba(245,245,243,.95)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(79,20,33,.028) 34px 35px);
}

.location-sector-story {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.location-sector-intro {
  position: sticky;
  top: 128px;
  align-self: start;
}

.location-sector-intro .sc-section-heading {
  margin-bottom: 0;
}

.location-sector-intro .sc-section-heading h2 {
  max-width: 620px;
  font-size: clamp(2.6rem, 4.6vw, 4.65rem);
  line-height: 1;
}

.location-sector-intro .sc-section-heading p {
  max-width: 580px;
}

.location-sector-track {
  display: grid;
  gap: 20px;
}

.location-sector-panel {
  position: relative;
  min-height: 285px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(79,20,33,.10);
  border-radius: 28px 28px 28px 6px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 42px rgba(31,27,29,.07);
}

.location-sector-panel:nth-child(even) {
  border-radius: 28px 6px 28px 28px;
}

.location-sector-panel-number {
  color: rgba(79,20,33,.18);
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 500;
  line-height: .9;
}

.location-sector-panel h3 {
  margin: 0 0 13px;
  color: var(--sc-burgundy);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.location-sector-panel p {
  margin: 0;
  color: var(--sc-copy);
  line-height: 1.72;
}

.location-sector-panel:nth-child(1) { border-left: 8px solid var(--sc-red); }
.location-sector-panel:nth-child(2) { border-left: 8px solid var(--sc-blue); }
.location-sector-panel:nth-child(3) { border-left: 8px solid var(--sc-orange); }
.location-sector-panel:nth-child(4) { border-left: 8px solid var(--sc-burgundy); }
.location-sector-panel:nth-child(5) { border-left: 8px solid var(--sc-light-blue); }
.location-sector-panel:nth-child(6) { border-left: 8px solid var(--sc-blue); }

.location-sector-panel.has-image {
  min-height: 410px;
  grid-template-columns: 80px minmax(0, .9fr) minmax(230px, 1.1fr);
  align-items: center;
}

.location-sector-panel-media {
  height: 100%;
  min-height: 330px;
  overflow: hidden;
  border-radius: 22px 22px 22px 5px;
}

.location-sector-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-sector-panel-media figcaption {
  display: none;
}

.location-process {
  position: relative;
  overflow: hidden;
  background: var(--sc-burgundy);
  color: #fff;
}

.location-process::before {
  content: "";
  position: absolute;
  inset: 0 48% 0 0;
  background:
    linear-gradient(135deg, rgba(61,117,172,.98), rgba(193,219,236,.78));
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}

.location-process::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255,255,255,.16) 18px 19px);
}

.location-process-inner {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
  padding-top: clamp(85px, 9vw, 125px);
  padding-bottom: clamp(85px, 9vw, 125px);
}

.location-process-copy {
  max-width: 520px;
  color: var(--sc-black);
}

.location-process-copy .sc-eyebrow {
  color: var(--sc-burgundy);
}

.location-process-copy h2 {
  margin: 0 0 22px;
  color: var(--sc-black);
  font-size: clamp(2.75rem, 4.8vw, 4.8rem);
  line-height: .98;
}

.location-process-copy p {
  margin: 0;
  color: rgba(0,0,0,.72);
  font-size: 1.08rem;
  line-height: 1.72;
}

.location-process-lanes {
  display: grid;
  gap: 16px;
}

.location-process-lane {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 150px;
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px 24px 24px 7px;
  background: rgba(255,255,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.11);
  backdrop-filter: blur(12px);
}

.location-process-lane:nth-child(2) {
  margin-left: 30px;
  border-radius: 24px 7px 24px 24px;
}

.location-process-lane-number {
  color: rgba(255,255,255,.24);
  font-size: 3.7rem;
  font-weight: 500;
  line-height: 1;
}

.location-process-lane h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.45rem;
}

.location-process-lane p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.62;
}

.location-towns {
  padding: clamp(88px, 9vw, 125px) 0;
  overflow: hidden;
  background: #101116;
  color: #fff;
}

.location-towns .sc-container {
  margin-bottom: 42px;
}

.location-towns .sc-eyebrow {
  color: var(--sc-light-blue);
}

.location-towns h2 {
  max-width: 850px;
  color: #fff;
}

.location-towns .location-town-note {
  color: rgba(255,255,255,.64);
}

.location-marquee {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: location-marquee 42s linear infinite;
  will-change: transform;
}

.location-marquee:hover {
  animation-play-state: paused;
}

.location-marquee-group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}

.location-town-pill {
  flex: 0 0 auto;
  padding: 16px 25px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  color: #fff;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  font-weight: 500;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}

.location-town-pill:nth-child(3n+1) { border-color: rgba(152,44,54,.75); }
.location-town-pill:nth-child(3n+2) { border-color: rgba(61,117,172,.85); }
.location-town-pill:nth-child(3n+3) { border-color: rgba(228,133,61,.78); }

@keyframes location-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .location-marquee {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    padding: 0 20px;
  }

  .location-marquee-group:last-child {
    display: none;
  }
}

@media (max-width: 1024px) {
  .location-sector-story,
  .location-process-inner {
    grid-template-columns: 1fr;
  }

  .location-sector-intro {
    position: static;
  }

  .location-process::before {
    inset: 0;
    clip-path: polygon(0 0, 100% 0, 100% 42%, 0 56%);
  }

  .location-process-copy {
    max-width: 650px;
  }

  .location-process-lanes {
    margin-top: 70px;
  }
}

@media (max-width: 760px) {
  .location-sector-panel,
  .location-sector-panel.has-image {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 26px;
  }

  .location-sector-panel-number {
    font-size: 3rem;
  }

  .location-sector-panel-media {
    min-height: 260px;
  }

  .location-process-inner {
    min-height: 0;
  }

  .location-process-lane,
  .location-process-lane:nth-child(2) {
    grid-template-columns: 64px minmax(0, 1fr);
    margin-left: 0;
    padding: 24px;
  }

  .location-process-lane-number {
    font-size: 3rem;
  }
}


.sc-form-status {
  display: none;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.55;
}

.sc-form-status strong,
.sc-form-status span {
  display: block;
}

.sc-form-status strong {
  margin-bottom: 4px;
}

.sc-form-status.is-success {
  display: block;
  border: 1px solid rgba(61, 117, 172, 0.25);
  background: rgba(193, 219, 236, 0.38);
  color: var(--sc-burgundy);
}

.sc-form-status.is-error {
  display: block;
  border: 1px solid rgba(152, 44, 54, 0.22);
  background: rgba(152, 44, 54, 0.08);
  color: var(--sc-red-dark);
}

.sc-contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}
