:root {
      --blue: #233f75;
      --blue-2: #2f5794;
      --cream: #fffdf8;
      --sand: #f6efe4;
      --sand-2: #fbf7ef;
      --mist: #f1eadf;
      --clay: #9d6d4f;
      --text: #222220;
      --muted: #66645f;
      --line: rgba(25, 25, 25, .12);
      --green: #71864f;
      --icon: #7485aa;
      --shadow: 0 12px 30px rgba(30, 28, 24, .10);
      --ease: cubic-bezier(.2, .8, .2, 1);
      --ease-out: cubic-bezier(.16, 1, .3, 1);
      --ease-soft: cubic-bezier(.22, .61, .36, 1);
      --image-hero: url('https://rasouligroup.com/wp-content/uploads/2021/11/Kattarp-54-scaled.jpg');
      --image-kattarp-10: url('https://rasouligroup.com/wp-content/uploads/2025/05/Kattarp-10-3-scaled.jpeg');
      --image-kattarp-113: url('https://rasouligroup.com/wp-content/uploads/2025/06/Kattarp-113-2-scaled.jpeg');
      --image-kattarp-104: url('https://rasouligroup.com/wp-content/uploads/2025/06/Kattarp-104-2-scaled.jpeg');
      --image-kattarp-126: url('https://rasouligroup.com/wp-content/uploads/2025/05/Kattarp-126-2-scaled.jpeg');
      --image-bruksgatan: url('https://rasouligroup.com/wp-content/uploads/2021/11/Bruksgatan2-scaled.jpeg');
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    html.is-jump-scrolling { scroll-behavior: auto; }
    body {
      margin: 0;
    }

    .wasa-page {
      background: var(--cream);
      color: var(--text);
      font-family: var(--sans);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    html.fonts-loading .wasa-page {
      opacity: 0;
    }

    html.fonts-ready .wasa-page {
      opacity: 1;
      transition: opacity .18s ease;
    }

    .wasa-page a { color: inherit; text-decoration: none; }
    .wasa-page img { display: block; max-width: 100%; }
    .wasa-page section[id],
    .wasa-page [id="contact"] { scroll-margin-top: 92px; }

    ::selection {
      background: rgba(35,63,117,.16);
      color: var(--text);
    }

    .container {
      width: min(1240px, calc(100% - 64px));
      margin: 0 auto;
    }

    .eyebrow {
      margin: 0 0 16px;
      font-size: 11px;
      line-height: 1.25;
      font-weight: 800;
      letter-spacing: 0;
      text-transform: uppercase;
      color: #73726d;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 26px;
      border-radius: 6px;
      font-size: 13px;
      line-height: 1.2;
      font-weight: 900;
      box-shadow: 0 0 0 rgba(35,63,117,0);
      transition: transform .24s var(--ease), background .24s ease, border .24s ease, color .24s ease, box-shadow .24s ease;
      cursor: pointer;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(25, 25, 25, .10);
    }

    .btn:active,
    .submit:active {
      transform: translateY(0);
    }

    .btn:focus-visible,
    .arrow-link:focus-visible,
    .nav a:focus-visible,
    .mobile-menu:focus-visible,
    .wasa-page input:focus-visible,
    .wasa-page select:focus-visible,
    .wasa-page textarea:focus-visible,
    .submit:focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 3px;
    }
    .btn.primary { background: var(--blue); color: white; }
    .btn.primary:hover { background: #1b3260; }
    .btn.ghost { border: 1px solid rgba(255,255,255,.55); color: white; background: rgba(255,255,255,.06); }
    .btn.ghost:hover { background: rgba(255,255,255,.14); }

    .arrow-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--blue);
      font-size: 14px;
      line-height: 1.25;
      font-weight: 900;
      position: relative;
      padding-bottom: 3px;
      transition: color .24s ease;
    }
    .arrow-link::after {
      content: "";
      position: absolute;
      left: 0;
      right: 26px;
      bottom: 0;
      height: 1px;
      background: currentColor;
      opacity: .7;
      transform: scaleX(.82);
      transform-origin: left;
      transition: transform .32s var(--ease-out), opacity .24s ease;
    }
    .arrow-link span { transition: transform .24s var(--ease-out); }
    .arrow-link:hover::after {
      opacity: 1;
      transform: scaleX(1);
    }
    .arrow-link:hover span { transform: translateX(4px); }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255,253,248,.98);
      border-bottom: 1px solid rgba(0,0,0,.06);
      backdrop-filter: blur(18px);
      box-shadow: 0 8px 24px rgba(25, 25, 25, .04);
      transition: box-shadow .28s ease, background .28s ease;
    }

    .site-header.is-scrolled {
      background: rgba(255,253,248,.99);
      box-shadow: 0 10px 28px rgba(25, 25, 25, .08);
    }

    .header-inner {
      min-height: 88px;
      padding: 14px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 36px;
    }

    .logo {
      display: flex;
      align-items: center;
      white-space: nowrap;
    }

    .logo-img {
      width: 198px;
      height: auto;
      transition: transform .28s var(--ease), opacity .28s ease;
    }

    .logo:hover .logo-img {
      transform: translateY(-1px);
      opacity: .92;
    }

    .footer-about .logo-img {
      width: 172px;
    }

    .footer-about .logo {
      display: inline-flex;
      padding: 6px 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 36px;
      margin-left: auto;
    }

    .nav a {
      position: relative;
      font-size: 13px;
      line-height: 1.2;
      font-weight: 800;
      color: #4c4b47;
      transition: color .24s ease, transform .24s var(--ease);
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -9px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      opacity: 0;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s var(--ease-out), opacity .24s ease;
    }

    .nav a:hover,
    .nav a.active {
      color: var(--blue);
    }

    .nav a:hover { transform: translateY(-1px); }
    .nav a:hover::after,
    .nav a.active::after {
      opacity: 1;
      transform: scaleX(1);
    }

    .header-cta {
      min-height: 42px;
      border-radius: 999px;
      padding-inline: 25px;
    }

    .mobile-menu {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: transparent;
      color: var(--text);
      font-size: 22px;
      transition: border-color .22s ease, color .22s ease, transform .22s var(--ease);
    }

    .mobile-menu:hover {
      border-color: rgba(35,63,117,.28);
      color: var(--blue);
      transform: translateY(-1px);
    }

    /* Hero */
    .hero {
      position: relative;
      min-height: 640px;
      color: white;
      overflow: hidden;
      background: #111;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image:
        linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.66) 42%, rgba(0,0,0,.28) 72%, rgba(0,0,0,.18) 100%),
        linear-gradient(0deg, rgba(0,0,0,.22), rgba(0,0,0,.08) 42%),
        var(--image-hero);
      background-size: cover;
      background-position: center 48%;
      transform: scale(1.02);
      filter: none;
      animation: heroImageSettle 1.8s var(--ease-out) both;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      min-height: 640px;
      display: flex;
      align-items: flex-end;
      padding: 86px 0 76px;
    }

    .hero-content {
      max-width: 625px;
    }

    .hero-content > * {
      opacity: 0;
      transform: translate3d(0, 16px, 0);
      animation: fadeUp .86s var(--ease-out) forwards;
      will-change: opacity, transform;
    }

    .hero-content h1 { animation-delay: .08s; }
    .hero-content p:not(.eyebrow) { animation-delay: .18s; }
    .hero-actions { animation-delay: .28s; }
    .hero-meta { animation-delay: .38s; }

    .has-initial-hash .hero-bg,
    .has-initial-hash .hero-content > * {
      animation: none;
    }

    .has-initial-hash .hero-content > * {
      opacity: 1;
      transform: none;
    }

    @keyframes heroImageSettle {
      from { transform: scale(1.055); }
      to { transform: scale(1.018); }
    }

    .hero .eyebrow { color: rgba(255,255,255,.82); margin-bottom: 24px; }
    .hero h1 {
      margin: 0;
      font-family: var(--serif);
      font-size: 72px;
      line-height: 1.04;
      letter-spacing: 0;
      font-weight: 700;
    }

    .hero p:not(.eyebrow) {
      max-width: 535px;
      margin: 24px 0 0;
      color: rgba(255,255,255,.86);
      font-size: 16px;
      line-height: 1.7;
      font-weight: 600;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-top: 34px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      max-width: 680px;
      margin-top: 34px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.30);
    }

    .hero-meta div {
      min-width: 150px;
    }

    .hero-meta strong {
      display: block;
      font-size: 23px;
      line-height: 1.08;
      font-weight: 900;
    }

    .hero-meta span {
      display: block;
      margin-top: 7px;
      color: rgba(255,255,255,.78);
      font-size: 11px;
      line-height: 1.35;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translate3d(0, 16px, 0); }
      to { opacity: 1; transform: translate3d(0, 0, 0); }
    }

    @keyframes menuDrop {
      from { opacity: 0; transform: translate3d(0, -8px, 0) scale(.985); }
      to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
    }

    .reveal,
    .js :where(.value-item, .split-text-inner, .split-image, .project-card, .life-card, .green-img, .gallery-img, .contact-info, .office-card, form, .footer-about, .footer-col),
    .js .life-grid > div,
    .js .testimonial blockquote {
      --reveal-y: 24px;
      --reveal-scale: .994;
      opacity: 0;
      transform: translate3d(0, var(--reveal-y), 0) scale(var(--reveal-scale));
      filter: blur(var(--reveal-blur, 0));
      transition:
        opacity .82s var(--ease-out),
        transform .82s var(--ease-out),
        clip-path .98s var(--ease-out),
        filter .82s var(--ease-soft);
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform, clip-path;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
      filter: blur(0);
    }

    .js :where(.value-item, .split-text-inner, .split-image, .project-card, .life-card, .green-img, .gallery-img, .contact-info, .office-card, form, .footer-about, .footer-col).is-visible,
    .js .life-grid > div.is-visible,
    .js .testimonial blockquote.is-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
      filter: blur(0);
    }

    .split-image.reveal,
    .green-img.reveal,
    .office-card.reveal,
    .gallery-img.reveal,
    .js :where(.split-image, .green-img, .office-card, .gallery-img) {
      --reveal-y: 0px;
      --reveal-scale: 1.016;
      clip-path: inset(0 0 10% 0);
      filter: saturate(.94) brightness(.98);
    }

    .split-image.reveal.is-visible,
    .green-img.reveal.is-visible,
    .office-card.reveal.is-visible,
    .gallery-img.reveal.is-visible,
    .js :where(.split-image, .green-img, .office-card, .gallery-img).is-visible {
      clip-path: inset(0);
      filter: saturate(1) brightness(1);
    }

    /* Value strip */
    .value-strip {
      background: var(--cream);
      padding: 42px 0;
    }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 34px;
    }

    .value-item {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 18px;
      align-items: start;
    }

    .icon-line {
      width: 44px;
      height: 44px;
      color: var(--icon);
      stroke-width: 1.6;
    }

    .value-item h3,
    .life-card h3 {
      margin: 0;
      font-size: 15px;
      line-height: 1.35;
      font-weight: 800;
    }

    .value-item p,
    .life-card p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.65;
      font-weight: 600;
    }

    /* About */
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .about { background: var(--sand); }
    .split-text {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 82px 72px;
    }

    .split-text-inner { max-width: 560px; }

    .section-title {
      margin: 0;
      font-family: var(--serif);
      font-size: 54px;
      line-height: 1.08;
      letter-spacing: 0;
      font-weight: 700;
      color: #20201e;
    }

    .section-text {
      margin: 22px 0 0;
      color: #5d5b56;
      font-size: 15px;
      line-height: 1.75;
      font-weight: 600;
    }

    .split-image {
      min-height: 520px;
      background-size: cover;
      background-position: center;
    }

    .about-img {
      background-image: var(--image-kattarp-10);
      background-position: center 54%;
    }

    /* Projects */
    .projects {
      background: var(--cream);
      padding: 82px 0 78px;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 28px;
      margin-bottom: 36px;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 26px;
    }

    .project-card {
      background: white;
      border: 1px solid rgba(0,0,0,.12);
      border-radius: 6px;
      box-shadow: 0 8px 24px rgba(20,20,20,.04);
      overflow: hidden;
      transition: transform .34s var(--ease), box-shadow .34s ease, border-color .34s ease;
    }

    .project-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: rgba(35,63,117,.22);
    }

    .project-card.is-visible:hover { transform: translateY(-5px) scale(1); }

    .project-image {
      position: relative;
      height: 250px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      transition: transform 1s var(--ease-out), filter .4s ease;
    }

    .project-card:hover .project-image {
      transform: scale(1.035);
      filter: saturate(1.04);
    }

    .badge {
      position: absolute;
      top: 15px;
      left: 15px;
      z-index: 2;
      background: var(--blue);
      color: white;
      font-size: 11px;
      line-height: 1.15;
      font-weight: 900;
      letter-spacing: 0;
      padding: 8px 10px;
      border-radius: 3px;
      transition: transform .28s var(--ease-out), background .28s ease;
    }

    .project-card:hover .badge { transform: translateY(-1px); }

    .project-body { padding: 27px 28px 29px; }
    .project-body h3 {
      margin: 0;
      font-family: var(--serif);
      font-size: 30px;
      line-height: 1.12;
      letter-spacing: 0;
    }

    .place {
      margin: 9px 0 0;
      color: #73716b;
      font-size: 13px;
      line-height: 1.45;
      font-weight: 800;
    }

    .project-body p.desc {
      min-height: 55px;
      margin: 18px 0 24px;
      color: #5f5d58;
      font-size: 14px;
      line-height: 1.65;
      font-weight: 600;
    }

    .project-facts {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .project-facts li {
      border: 1px solid var(--line);
      border-radius: 4px;
      padding: 7px 9px;
      color: #55524b;
      font-size: 11px;
      line-height: 1.15;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0;
      background: var(--sand-2);
      transition: transform .24s var(--ease), border-color .24s ease, background .24s ease;
    }

    .project-card:hover .project-facts li {
      transform: translateY(-1px);
      border-color: rgba(35,63,117,.2);
      background: #fffaf1;
    }

    /* Life */
    .life {
      background: var(--sand);
      padding: 64px 0;
    }

    .life-grid {
      display: grid;
      grid-template-columns: 1.05fr 2fr;
      gap: 58px;
      align-items: start;
    }

    .life-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 34px;
    }

    .life-card svg {
      width: 46px;
      height: 46px;
      margin-bottom: 16px;
      color: var(--icon);
      stroke-width: 1.45;
      transition: transform .28s var(--ease), color .28s ease;
    }

    .value-item,
    .life-card {
      transition: transform .32s var(--ease), color .28s ease;
    }

    .value-item:hover,
    .life-card:hover,
    .value-item.is-visible:hover,
    .life-card.is-visible:hover {
      transform: translateY(-3px);
    }

    .value-item:hover svg,
    .life-card:hover svg {
      transform: translateY(-2px);
      color: var(--blue);
    }

    /* Sustainability */
    .sustain { background: var(--cream); }
    .green-img {
      min-height: 465px;
      background-image: var(--image-kattarp-126);
      background-size: cover;
      background-position: center 55%;
    }

    .sustain .split-text {
      justify-content: flex-start;
      padding: 68px 76px;
    }

    .check-list {
      list-style: none;
      margin: 27px 0 0;
      padding: 0;
      display: grid;
      gap: 13px;
    }

    .check-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #56544f;
      font-size: 15px;
      line-height: 1.45;
      font-weight: 800;
    }

    .check {
      display: inline-grid;
      place-items: center;
      width: 19px;
      height: 19px;
      border-radius: 999px;
      background: var(--green);
      color: white;
      font-size: 12px;
      flex: 0 0 auto;
      transition: transform .24s var(--ease), background .24s ease;
    }

    .check-list li:hover .check {
      transform: scale(1.08);
      background: #627544;
    }

    /* Gallery & testimonial */
    .gallery-testimonial { background: var(--sand-2); }
    .gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .gallery-img {
      height: 245px;
      background-size: cover;
      background-position: center;
      transition: filter .38s ease;
    }

    .gallery-img:hover { filter: saturate(1.05) brightness(1.02); }

    .gallery-img:nth-child(1) { background-position: center 54%; }
    .gallery-img:nth-child(2) { background-position: center 46%; }
    .gallery-img:nth-child(3) { background-position: center 54%; }
    .gallery-img:nth-child(4) { background-position: center 50%; }

    .testimonial {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      justify-items: center;
      align-items: center;
      padding: 62px 0;
      text-align: center;
    }

    .wasa-page blockquote { margin: 0; }
    .testimonial blockquote { max-width: 880px; }

    .quote-mark {
      display: block;
      height: 48px;
      font-family: var(--serif);
      font-size: 70px;
      line-height: .8;
      color: #1e1e1c;
    }

    .quote-text {
      max-width: 880px;
      margin: 0;
      font-family: var(--serif);
      font-size: 34px;
      line-height: 1.34;
      letter-spacing: 0;
      color: #30302c;
    }

    .testimonial-eyebrow {
      margin: 0;
      color: var(--blue);
      font-size: 11px;
      line-height: 1.25;
      font-weight: 900;
      letter-spacing: 0;
    }

    /* Contact */
    .contact {
      background: var(--cream);
      padding: 64px 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: .9fr .75fr 1fr;
      gap: 38px;
      align-items: stretch;
    }

    .contact-info .section-title { font-size: 46px; }
    .contact-list {
      margin-top: 30px;
      display: grid;
      gap: 18px;
      color: #5d5b56;
      font-size: 15px;
      line-height: 1.45;
      font-weight: 800;
    }

    .contact-list div {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .contact-list svg {
      width: 20px;
      height: 20px;
      color: var(--icon);
      stroke-width: 1.8;
      transition: transform .24s var(--ease), color .24s ease;
    }

    .contact-list div:hover svg {
      transform: translateY(-1px);
      color: var(--blue);
    }

    .contact-list a {
      border-bottom: 1px solid rgba(35,63,117,.24);
      transition: color .22s ease, border-color .22s ease;
    }

    .contact-list a:hover {
      color: var(--blue);
      border-color: currentColor;
    }

    .contact-note {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
      font-weight: 600;
    }

    .office-card {
      min-height: 270px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background-image: var(--image-bruksgatan);
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow);
      transition: filter .38s ease, box-shadow .38s ease;
    }

    .office-card:hover {
      filter: saturate(1.04) brightness(1.02);
      box-shadow: 0 16px 34px rgba(30, 28, 24, .12);
    }

    .wasa-page .wasa-contact-form,
    .wasa-page .wpcf7 form {
      background: white;
      border: 1px solid rgba(0,0,0,.12);
      border-radius: 6px;
      padding: 24px;
      box-shadow: 0 8px 24px rgba(20,20,20,.04);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .wasa-page .wpcf7 {
      width: 100%;
    }

    .wasa-page .wpcf7 form {
      display: grid;
      gap: 14px;
    }

    .wasa-page .wpcf7 .wasa-cf7-form {
      display: grid;
      gap: 14px;
    }

    .wasa-page .wpcf7 .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .wasa-page .wpcf7 form > p {
      margin: 0;
    }

    .wasa-page .wpcf7 form > p:nth-of-type(-n+4) {
      margin: 0;
    }

    .wasa-page .wpcf7 form > p:nth-of-type(1),
    .wasa-page .wpcf7 form > p:nth-of-type(2),
    .wasa-page .wpcf7 form > p:nth-of-type(3),
    .wasa-page .wpcf7 form > p:nth-of-type(4) {
      min-width: 0;
    }

    .wasa-page .wpcf7 form > p:nth-of-type(n+5),
    .wasa-page .wpcf7 form > .wpcf7-response-output {
      grid-column: 1 / -1;
    }

    .wasa-page .wpcf7 form:not(.init) {
      display: grid;
      gap: 14px;
    }

    .wasa-page .wpcf7 form:not(.init) > p:nth-of-type(-n+4) {
      min-width: 0;
    }

    .wasa-page .wpcf7 form:not(.init),
    .wasa-page .wpcf7 form.init {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .wasa-page .wpcf7 form > .wasa-cf7-form,
    .wasa-page .wpcf7 form > p:nth-of-type(n+5),
    .wasa-page .wpcf7 form > p:has(textarea),
    .wasa-page .wpcf7 form > p:has(input[type="submit"]),
    .wasa-page .wpcf7 form > p:has(.wpcf7-submit),
    .wasa-page .wpcf7 form > .wpcf7-response-output {
      grid-column: 1 / -1;
    }

    .wasa-page .wpcf7-form-control-wrap {
      display: block;
      width: 100%;
    }

    .wasa-page .wpcf7 br {
      display: none;
    }

    .wasa-page input,
    .wasa-page select,
    .wasa-page textarea,
    .wasa-page .wpcf7 input:not([type="submit"]),
    .wasa-page .wpcf7 textarea {
      width: 100% !important;
      max-width: none !important;
      border: 1px solid rgba(0,0,0,.14) !important;
      border-radius: 4px !important;
      background: white !important;
      color: #333 !important;
      font-family: var(--sans) !important;
      font-size: 14px !important;
      line-height: 1.35 !important;
      font-weight: 600 !important;
      outline: none !important;
      transition: border .22s ease, box-shadow .22s ease, transform .22s var(--ease), background .22s ease;
    }

    .wasa-page input::placeholder,
    .wasa-page textarea::placeholder {
      color: #75716a;
      opacity: 1;
    }

    .wasa-page input,
    .wasa-page select,
    .wasa-page .wpcf7 input:not([type="submit"]) {
      height: 52px !important;
      padding: 0 15px !important;
    }

    .wasa-page textarea,
    .wasa-page .wpcf7 textarea {
      height: 132px !important;
      resize: none;
      padding: 15px !important;
      margin-top: 14px;
    }

    .wasa-page .wpcf7 textarea { margin-top: 0; }

    .wasa-page input:focus,
    .wasa-page select:focus,
    .wasa-page textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(35,63,117,.08);
      transform: translateY(-1px);
      background: #fffefb;
    }

    .submit,
    .wasa-page .wpcf7 input[type="submit"],
    .wasa-page .wpcf7 .wpcf7-submit {
      width: 100% !important;
      max-width: none !important;
      margin-top: 14px;
      height: 54px !important;
      border: none !important;
      border-radius: 3px !important;
      background: var(--blue) !important;
      color: white !important;
      font-family: var(--sans) !important;
      font-size: 15px !important;
      line-height: 1.2 !important;
      font-weight: 900 !important;
      cursor: pointer;
      appearance: none;
      transition: background .2s ease, transform .2s var(--ease), box-shadow .2s ease;
    }

    .wasa-page .wpcf7 input[type="submit"],
    .wasa-page .wpcf7 .wpcf7-submit {
      grid-column: 1 / -1;
      margin-top: 0;
    }

    .submit:hover,
    .wasa-page .wpcf7 input[type="submit"]:hover,
    .wasa-page .wpcf7 .wpcf7-submit:hover {
      background: #1b3260 !important;
      transform: translateY(-1px);
      box-shadow: 0 10px 22px rgba(35,63,117,.18);
    }
    .submit:active { transform: translateY(0); }

    .wasa-page .wpcf7-spinner {
      margin: 12px auto 0;
      display: block;
    }

    .wasa-page .wpcf7-not-valid-tip {
      margin-top: 7px !important;
      color: #9d3a2f !important;
      font-size: 12px !important;
      line-height: 1.35 !important;
      font-weight: 700 !important;
    }

    .wasa-page .wpcf7-response-output {
      margin: 14px 0 0 !important;
      padding: 12px 14px !important;
      border: 1px solid rgba(35,63,117,.2) !important;
      border-radius: 4px;
      color: #4e4b45 !important;
      font-size: 13px !important;
      line-height: 1.45 !important;
      font-weight: 700 !important;
    }

    .wasa-page .wpcf7 form.invalid .wpcf7-response-output,
    .wasa-page .wpcf7 form.unaccepted .wpcf7-response-output {
      border-color: rgba(157,58,47,.24) !important;
      background: rgba(157,58,47,.05);
    }

    .wasa-page .wpcf7 form.sent .wpcf7-response-output {
      border-color: rgba(113,134,79,.28) !important;
      background: rgba(113,134,79,.08);
    }

    /* Contact Form 7 can auto-wrap fields in <p> and <br>; these rules preserve the designed layout. */
    .wasa-page .wpcf7 form {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 14px !important;
      align-items: flex-start;
    }

    .wasa-page .wpcf7 form > p {
      flex: 0 0 calc(50% - 7px) !important;
      max-width: calc(50% - 7px) !important;
      margin: 0 !important;
    }

    .wasa-page .wpcf7 form > p:nth-of-type(n+5),
    .wasa-page .wpcf7 form > .wpcf7-response-output,
    .wasa-page .wpcf7 form > .wasa-cf7-form {
      flex: 0 0 100% !important;
      max-width: 100% !important;
    }

    .wasa-page .wpcf7 .wasa-cf7-form,
    .wasa-page .wpcf7 .form-grid,
    .wasa-page .wpcf7 .form-grid > p {
      width: 100% !important;
      max-width: 100% !important;
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 14px !important;
      margin: 0 !important;
    }

    .wasa-page .wpcf7 .form-grid {
      flex: 0 0 100% !important;
    }

    .wasa-page .wpcf7 .form-grid > p {
      flex: 0 0 100% !important;
    }

    .wasa-page .wpcf7 .form-grid .wpcf7-form-control-wrap,
    .wasa-page .wpcf7 .form-grid > .wpcf7-form-control-wrap {
      flex: 0 0 calc(50% - 7px) !important;
      max-width: calc(50% - 7px) !important;
      display: block !important;
    }

    .wasa-page .wpcf7 .wasa-cf7-form > p,
    .wasa-page .wpcf7 .wasa-cf7-form > .wpcf7-form-control-wrap,
    .wasa-page .wpcf7 .wpcf7-form-control-wrap[data-name="your-message"] {
      flex: 0 0 100% !important;
      max-width: 100% !important;
    }

    .wasa-page .wpcf7 .wasa-cf7-form > p {
      margin: 0 !important;
    }

    .wasa-page .wpcf7 .wasa-cf7-form > p:has(input[type="submit"]),
    .wasa-page .wpcf7 .wasa-cf7-form > p:has(.wpcf7-submit) {
      display: block !important;
    }

    @media (max-width: 760px) {
      .wasa-page .wpcf7 form > p,
      .wasa-page .wpcf7 .form-grid .wpcf7-form-control-wrap,
      .wasa-page .wpcf7 .form-grid > .wpcf7-form-control-wrap {
        flex: 0 0 100% !important;
        max-width: 100% !important;
      }
    }

    /* Footer */
    .site-footer {
      background: var(--cream);
      border-top: 1px solid rgba(0,0,0,.12);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr 2fr;
      gap: 64px;
      padding: 48px 0 34px;
    }

    .footer-about p {
      max-width: 330px;
      margin: 19px 0 0;
      color: #625f59;
      font-size: 13px;
      line-height: 1.6;
      font-weight: 600;
    }

    .socials {
      display: flex;
      gap: 13px;
      margin-top: 18px;
      color: var(--blue);
    }

    .socials a {
      display: inline-grid;
      place-items: center;
      width: 28px;
      height: 28px;
      border: 1px solid rgba(35,63,117,.2);
      border-radius: 999px;
      transition: opacity .22s ease, transform .22s var(--ease), border-color .22s ease, background .22s ease;
    }

    .socials svg {
      width: 15px;
      height: 15px;
      fill: currentColor;
    }

    .socials a:hover {
      opacity: .72;
      transform: translateY(-1px);
      border-color: currentColor;
      background: rgba(35,63,117,.05);
    }

    .copyright {
      margin-top: 30px !important;
      font-size: 12px !important;
      line-height: 1.4 !important;
      font-weight: 800 !important;
      color: #77736b !important;
    }

    .copyright a {
      border-bottom: 1px solid rgba(119,115,107,.38);
      transition: color .22s ease, border-color .22s ease;
    }

    .copyright a:hover {
      color: var(--blue);
      border-color: currentColor;
    }

    .footer-cols {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 34px;
    }

    .footer-col h4 {
      margin: 0 0 16px;
      color: #66635d;
      font-size: 11px;
      line-height: 1.25;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .footer-col a,
    .footer-col span {
      display: block;
      margin-top: 10px;
      color: #5f5c56;
      font-size: 13px;
      line-height: 1.35;
      font-weight: 800;
    }

    .footer-col a {
      transition: color .22s ease, transform .22s var(--ease);
    }

    .footer-col a:hover {
      color: var(--blue);
      transform: translateX(2px);
    }

    /* SVG icon styling */
    .svg-icon { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *,
      *::before,
      *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
      }
      .reveal,
      .js :where(.value-item, .split-text-inner, .split-image, .project-card, .life-card, .green-img, .gallery-img, .contact-info, .office-card, form, .footer-about, .footer-col),
      .js .life-grid > div,
      .js .testimonial blockquote,
      .hero-content > * {
        opacity: 1 !important;
        transform: none !important;
        clip-path: inset(0) !important;
        filter: none !important;
      }
    }

    @media (max-width: 1100px) {
      .container { width: min(100% - 44px, 1320px); }
      .nav, .header-cta { display: none; }
      .mobile-menu { display: block; }
      .header-inner { position: relative; }
      .nav.is-open {
        position: absolute;
        top: calc(100% + 1px);
        left: 22px;
        right: 22px;
        display: grid;
        gap: 0;
        margin: 0;
        padding: 10px 0;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: var(--cream);
        box-shadow: var(--shadow);
        z-index: 70;
        transform-origin: top right;
        animation: menuDrop .26s var(--ease-out) both;
      }
      .nav.is-open a {
        display: block;
        padding: 14px 18px;
        font-size: 14px;
      }
      .nav.is-open a::after {
        left: 18px;
        right: auto;
        bottom: 8px;
        width: 34px;
      }
      .value-grid, .life-cards { grid-template-columns: repeat(2, 1fr); }
      .split, .life-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
      .split-text, .sustain .split-text { justify-content: flex-start; padding: 64px 28px; }
      .split-image, .green-img { min-height: 420px; }
      .projects-grid { grid-template-columns: 1fr; }
      .contact-grid { gap: 28px; }
    }

    @media (max-width: 760px) {
      .container { width: min(100% - 32px, 1320px); }
      .header-inner {
        min-height: 82px;
        padding: 12px 0;
      }
      .logo-img { width: 172px; }
      .footer-about .logo-img { width: 154px; }
      .hero, .hero-inner { min-height: 650px; }
      .hero-inner { padding: 62px 0 52px; }
      .hero h1 { font-size: 46px; }
      .section-title { font-size: 40px; }
      .contact-info .section-title { font-size: 38px; }
      .quote-text { font-size: 29px; }
      .hero-meta { gap: 18px; }
      .hero-meta div { min-width: 128px; }
      .value-grid, .projects-grid, .life-cards, .gallery, .testimonial, .form-grid, .footer-cols { grid-template-columns: 1fr; }
      .project-image { height: 235px; }
      .gallery-img { height: 205px; }
      .section-head { display: block; }
      .section-head .arrow-link { margin-top: 22px; }
      .testimonial { gap: 28px; }
    }

    @media (max-width: 430px) {
      .container { width: min(100% - 28px, 1320px); }
      .hero, .hero-inner { min-height: 620px; }
      .hero h1 {
        font-size: 40px;
        line-height: 1.07;
      }
      .hero p:not(.eyebrow) {
        font-size: 15px;
        line-height: 1.62;
      }
      .hero-actions .btn {
        width: 100%;
      }
      .hero-meta div {
        min-width: 112px;
      }
      .section-title {
        font-size: 36px;
        line-height: 1.1;
      }
      .project-body h3 {
        font-size: 28px;
      }
      .quote-text {
        font-size: 27px;
        line-height: 1.36;
      }
      .contact-info .section-title {
        font-size: 34px;
      }
    }

    @media (max-width: 360px) {
      .container { width: min(100% - 24px, 1320px); }
      .logo-img { width: 150px; }
      .mobile-menu {
        width: 42px;
        height: 42px;
      }
      .hero, .hero-inner { min-height: 600px; }
      .hero h1 {
        font-size: 36px;
        line-height: 1.08;
      }
      .hero-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .section-title,
      .contact-info .section-title {
        font-size: 32px;
      }
      .project-body { padding: 24px 22px 26px; }
    }
