    :root {
      --ink: #15130F;
      --bone: #EDE6D8;
      --paper: #F6F1E7;
      --denim: #2B4159;
      --tan: #AD8154;
      --rust: #A64B2A;
      --slate: #6B6457;
      --line: rgba(21, 19, 15, 0.14);
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: auto;
    }

    body {
      background: var(--paper);
      color: var(--ink);
      font-family: 'Jost', sans-serif;
      overflow-x: hidden;
      line-height: 1.6;
    }

    ::selection {
      background: var(--rust);
      color: var(--bone);
    }

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

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

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

    h1,
    h2,
    h3,
    .display {
      font-family: 'Bodoni Moda', serif;
      line-height: 1.05;
      font-weight: 600;
      letter-spacing: 0.005em;
    }

    .eyebrow {
      font-size: 0.74rem;
      letter-spacing: 0.34em;
      text-transform: uppercase;
      color: var(--rust);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .eyebrow::before {
      content: '';
      width: 30px;
      height: 1.5px;
      background: repeating-linear-gradient(90deg, var(--rust) 0 5px, transparent 5px 9px);
      display: inline-block;
    }

    .container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 6vw;
    }

    section {
      position: relative;
    }

    /* -------- Preloader -------- */
    #preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--ink);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.4rem;
    }

    #preloader .pl-stitch {
      width: 120px;
      height: 2px;
      background: repeating-linear-gradient(90deg, var(--tan) 0 8px, transparent 8px 14px);
      position: relative;
      overflow: hidden;
    }

    #preloader .pl-logo {
      width: 120px;
      height: auto;
      opacity: 0;
    }

    #preloader .pl-logo img {
      width: 100%;
      height: auto;
      filter: invert(1);
    }

    #preloader .pl-pct {
      font-size: 0.72rem;
      letter-spacing: 0.32em;
      color: rgba(237, 230, 216, 0.55);
    }

    /* -------- Navbar -------- */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      padding: 1.6rem 0;
      transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
      border-bottom: 1px solid transparent;
    }

    header.scrolled {
      padding: 0.9rem 0;
      background: rgba(246, 241, 231, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }

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

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

    .logo .logo-badge {
      background: #fff;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.25);
    }

    .logo img {
      height: 40px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.2rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--ink);
      position: relative;
      padding-bottom: 4px;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1.5px;
      background: var(--rust);
      transition: width 0.35s var(--ease);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.9rem 1.9rem;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 1px;
      transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--ink);
      color: var(--bone);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 30px -10px rgba(21, 19, 15, 0.5);
      background: var(--rust);
    }

    .btn-outline {
      border: 1.5px solid var(--ink);
      color: var(--ink);
    }

    .btn-outline:hover {
      background: var(--ink);
      color: var(--bone);
      transform: translateY(-3px);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 26px;
      z-index: 600;
    }

    .hamburger span {
      display: block;
      height: 2px;
      width: 100%;
      background: var(--ink);
      transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--ink);
      z-index: 400;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateY(-100%);
      transition: transform 0.6s var(--ease);
    }

    .mobile-menu.open {
      transform: translateY(0);
    }

    .mobile-menu ul {
      list-style: none;
      text-align: center;
    }

    .mobile-menu li {
      margin: 1.3rem 0;
    }

    .mobile-menu a {
      font-family: 'Bodoni Moda', serif;
      font-size: 2rem;
      color: var(--bone);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    /* -------- Hero -------- */
    .hero {
      min-height: 100svh;
      display: flex;
      align-items: flex-end;
      padding-top: 8rem;
      padding-bottom: 4rem;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
      transform: scale(1.15);
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(21, 19, 15, 0.3) 0%, rgba(21, 19, 15, 0.35) 40%, rgba(21, 19, 15, 0.94) 92%),
        linear-gradient(90deg, rgba(21, 19, 15, 0.85) 0%, rgba(21, 19, 15, 0.15) 55%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
    }

    .hero h1 {
      font-size: clamp(2.6rem, 7.4vw, 5.6rem);
      color: var(--bone);
      margin: 1.2rem 0 1.5rem;
      max-width: 15ch;
      text-transform: uppercase;
    }

    .hero h1 .line {
      overflow: hidden;
    }

    .hero h1 .line span {
      display: block;
      transform: translateY(115%);
    }

    .hero h1 em {
      font-style: normal;
      color: var(--tan);
    }

    .hero-sub {
      max-width: 48ch;
      color: rgba(237, 230, 216, 0.82);
      font-size: 1.06rem;
      margin-bottom: 2.2rem;
      opacity: 0;
    }

    .hero-ctas {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      opacity: 0;
    }

    .hero-meta {
      position: absolute;
      right: 6vw;
      bottom: 4rem;
      z-index: 2;
      text-align: right;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      color: rgba(237, 230, 216, 0.72);
      font-size: 0.85rem;
    }

    .hero-scroll {
      position: absolute;
      left: 6vw;
      bottom: 2rem;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 0.7rem;
      font-size: 0.72rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(237, 230, 216, 0.65);
    }

    .hero-scroll .line-scroll {
      width: 40px;
      height: 1px;
      background: rgba(237, 230, 216, 0.35);
      position: relative;
      overflow: hidden;
    }

    .hero-scroll .line-scroll::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--rust);
      animation: scrollline 1.8s ease-in-out infinite;
    }

    @keyframes scrollline {
      0% {
        left: -100%;
      }

      50% {
        left: 0;
      }

      100% {
        left: 100%;
      }
    }

    /* -------- Stats -------- */
    .stats {
      background: var(--ink);
      padding: 3.8rem 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
    }

    .stat-num {
      font-family: 'Bodoni Moda', serif;
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      color: var(--tan);
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 0.15rem;
    }

    .stat-label {
      font-size: 0.74rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(237, 230, 216, 0.65);
      margin-top: 0.4rem;
    }

    /* -------- Section headers -------- */
    .sec-head {
      max-width: 640px;
      margin-bottom: 3.5rem;
    }

    .sec-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .sec-head.center .eyebrow {
      justify-content: center;
    }

    .sec-head h2 {
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      color: var(--ink);
      margin-top: 0.9rem;
      text-transform: uppercase;
    }

    .sec-head p {
      color: var(--slate);
      margin-top: 1.1rem;
      font-size: 1.02rem;
      max-width: 52ch;
    }

    .sec-head.center p {
      margin-left: auto;
      margin-right: auto;
    }

    /* -------- Collections -------- */
    .collections {
      padding: 8rem 0 6rem;
    }

    .col-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.4rem;
    }

    .col-card {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      aspect-ratio: 3/4;
    }

    .col-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.1s var(--ease);
    }

    .col-card:hover img {
      transform: scale(1.09);
    }

    .col-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(21, 19, 15, 0.92) 100%);
    }

    .col-label {
      position: absolute;
      left: 1.3rem;
      right: 1.3rem;
      bottom: 1.3rem;
      z-index: 2;
      color: var(--bone);
    }

    .col-label .col-eyebrow {
      font-size: 0.68rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--tan);
      font-weight: 600;
      margin-bottom: 0.4rem;
      display: block;
    }

    .col-label strong {
      font-family: 'Bodoni Moda', serif;
      font-size: 1.4rem;
      display: block;
      margin-bottom: 0.4rem;
      text-transform: uppercase;
    }

    .col-label span.desc {
      font-size: 0.84rem;
      color: rgba(237, 230, 216, 0.78);
    }

    /* -------- Craftsmanship / About -------- */
    .about {
      padding: 8rem 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-img-wrap {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
      border-radius: 4px;
    }

    .about-img-wrap img {
      width: 100%;
      height: 120%;
      object-fit: cover;
      position: absolute;
      top: -10%;
      left: 0;
    }

    .about-img-secondary {
      position: absolute;
      width: 44%;
      aspect-ratio: 4/5;
      top: -2rem;
      right: -1.6rem;
      border-radius: 4px;
      overflow: hidden;
      border: 6px solid var(--paper);
      box-shadow: 0 24px 50px -16px rgba(21, 19, 15, 0.35);
    }

    .about-img-secondary img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-text p {
      color: var(--slate);
      margin-bottom: 1.2rem;
      font-size: 1.03rem;
    }

    .about-text p strong {
      color: var(--ink);
      font-weight: 600;
    }

    .about-badge {
      position: absolute;
      bottom: -1.5rem;
      left: -1.5rem;
      background: var(--rust);
      color: var(--bone);
      padding: 1.3rem 1.6rem;
      border-radius: 4px;
      max-width: 220px;
      font-size: 0.85rem;
      font-weight: 600;
      line-height: 1.35;
      box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.35);
    }

    /* -------- Features / Why Turkeybrand -------- */
    .features {
      padding: 2rem 0 8rem;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.4rem;
    }

    .feature-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 6px;
      padding: 2rem 1.7rem;
      transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s var(--ease);
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 44px -20px rgba(21, 19, 15, 0.16);
      border-color: rgba(166, 75, 42, 0.3);
    }

    .feature-icon {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: rgba(173, 129, 84, 0.16);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--rust);
      margin-bottom: 1.3rem;
    }

    .feature-card h3 {
      font-family: 'Bodoni Moda', serif;
      font-weight: 600;
      font-size: 1.15rem;
      color: var(--ink);
      margin-bottom: 0.6rem;
      text-transform: uppercase;
    }

    .feature-card p {
      color: var(--slate);
      font-size: 0.9rem;
    }

    /* -------- CTA Banner -------- */
    .cta-banner {
      position: relative;
      min-height: 56vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      margin-bottom: 2rem;
    }

    .cta-banner-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .cta-banner-bg img {
      width: 100%;
      height: 130%;
      object-fit: cover;
      position: absolute;
      top: -15%;
      left: 0;
    }

    .cta-banner-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(21, 19, 15, 0.62) 0%, rgba(21, 19, 15, 0.5) 45%, rgba(21, 19, 15, 0.92) 100%);
    }

    .cta-banner-content {
      position: relative;
      z-index: 2;
      padding: 5rem 6vw;
      max-width: 720px;
    }

    .cta-banner h2 {
      font-size: clamp(2rem, 5.4vw, 3.4rem);
      color: var(--bone);
      margin: 1rem 0 1.6rem;
      text-transform: uppercase;
    }

    .cta-banner h2 em {
      font-style: normal;
      color: var(--tan);
    }

    .cta-banner p {
      color: rgba(237, 230, 216, 0.8);
      font-size: 1.02rem;
      margin-bottom: 2rem;
      max-width: 48ch;
      margin-left: auto;
      margin-right: auto;
    }

    /* -------- Lookbook Gallery -------- */
    .gallery {
      padding: 2rem 0 8rem;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 170px;
      gap: 1rem;
    }

    .gallery-grid figure {
      overflow: hidden;
      border-radius: 4px;
      position: relative;
      margin: 0;
    }

    .gallery-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s var(--ease);
    }

    .gallery-grid figure:hover img {
      transform: scale(1.08);
    }

    .g1 {
      grid-column: span 2;
      grid-row: span 2;
    }

    .g2 {
      grid-column: span 2;
      grid-row: span 1;
    }

    .g3 {
      grid-column: span 1;
      grid-row: span 1;
    }

    .g4 {
      grid-column: span 1;
      grid-row: span 1;
    }

    .g5 {
      grid-column: span 2;
      grid-row: span 1;
    }

    /* -------- Store / Visit Us -------- */
    .store {
      padding: 7rem 0 8rem;
      background: var(--ink);
    }

    .store .eyebrow {
      color: var(--tan);
    }

    .store .eyebrow::before {
      background: repeating-linear-gradient(90deg, var(--tan) 0 5px, transparent 5px 9px);
    }

    .store .sec-head h2 {
      color: var(--bone);
    }

    .store .sec-head p {
      color: rgba(237, 230, 216, 0.68);
    }

    .store-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .store-info .item {
      margin-bottom: 1.7rem;
    }

    .store-info .label {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--tan);
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .store-info .value {
      font-size: 1.12rem;
      color: var(--bone);
    }

    .store-quicklinks {
      display: flex;
      gap: 1rem;
      margin-top: 1.8rem;
      flex-wrap: wrap;
    }

    .store-map {
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid rgba(237, 230, 216, 0.15);
      aspect-ratio: 4/3;
    }

    .store-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* -------- Testimonials -------- */
    .testimonials {
      padding: 7rem 0 8rem;
      background: #fff;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.6rem;
    }

    .testi-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 6px;
      padding: 2.2rem;
    }

    .testi-stars {
      color: var(--rust);
      font-size: 0.9rem;
      letter-spacing: 0.2em;
      margin-bottom: 1rem;
    }

    .testi-card p.quote {
      color: var(--slate);
      font-size: 0.96rem;
      margin-bottom: 1.4rem;
    }

    .testi-person {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .testi-person img {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
    }

    .testi-person .name {
      color: var(--ink);
      font-weight: 700;
      font-size: 0.92rem;
    }

    .testi-person .loc {
      color: var(--slate);
      font-size: 0.78rem;
    }

    /* -------- FAQ -------- */
    .faq {
      padding: 7rem 0 8rem;
    }

    .faq-list {
      max-width: 820px;
    }

    .faq-item {
      border-bottom: 1px solid var(--line);
      padding: 1.6rem 0;
      cursor: pointer;
    }

    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.08rem;
      font-weight: 600;
      color: var(--ink);
    }

    .faq-q .icon {
      font-family: 'Bodoni Moda', serif;
      font-size: 1.5rem;
      color: var(--rust);
      transition: transform 0.4s var(--ease);
      margin-left: 1rem;
      flex-shrink: 0;
    }

    .faq-item.open .faq-q .icon {
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s var(--ease), margin-top 0.5s var(--ease);
      color: var(--slate);
      font-size: 0.95rem;
      max-width: 70ch;
    }

    .faq-item.open .faq-a {
      margin-top: 1rem;
    }

    /* -------- Contact / Footer -------- */
    .contact {
      padding: 8rem 0 3rem;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-bottom: 5rem;
    }

    .contact-info .item {
      margin-bottom: 1.7rem;
    }

    .contact-info .label {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--rust);
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .contact-info .value {
      font-size: 1.1rem;
      color: var(--ink);
    }

    .contact-quicklinks {
      display: flex;
      gap: 1rem;
      margin-top: 1.8rem;
      flex-wrap: wrap;
    }

    form.contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.05rem;
    }

    .form-row {
      display: flex;
      gap: 1rem;
    }

    .form-row>div {
      flex: 1;
    }

    label {
      display: block;
      font-size: 0.74rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--slate);
      margin-bottom: 0.5rem;
      font-weight: 500;
    }

    input,
    textarea,
    select {
      width: 100%;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 2px;
      padding: 0.85rem 1rem;
      color: var(--ink);
      font-family: inherit;
      font-size: 0.95rem;
      transition: border-color 0.3s var(--ease);
    }

    input:focus,
    textarea:focus,
    select:focus {
      outline: none;
      border-color: var(--rust);
    }

    textarea {
      resize: vertical;
      min-height: 105px;
    }

    .field-error {
      color: var(--rust);
      font-size: 0.78rem;
      margin-top: 0.35rem;
      display: none;
    }

    .field-error.show {
      display: block;
    }

    .form-status {
      font-size: 0.9rem;
      margin-top: 0.4rem;
      color: #3b6b3f;
      display: none;
    }

    .form-status.show {
      display: block;
    }

    footer.foot-bottom {
      border-top: 1px solid var(--line);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      color: var(--slate);
      font-size: 0.82rem;
    }

    footer.foot-bottom a:hover {
      color: var(--rust);
    }

    .whatsapp-float {
      position: fixed;
      bottom: 1.8rem;
      right: 1.8rem;
      z-index: 300;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 26px -8px rgba(0, 0, 0, 0.4);
      transition: transform 0.4s var(--ease);
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    [data-animate] {
      opacity: 0;
    }

    /* -------- Responsive -------- */
    @media (max-width:1024px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

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

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

      .store-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .testi-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 2.5rem;
      }

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

      .g1,
      .g2,
      .g5 {
        grid-column: span 2;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }

    @media (max-width:760px) {

      .nav-links,
      .nav-cta .btn-outline {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero {
        align-items: flex-end;
        padding-bottom: 3rem;
      }

      .hero-meta {
        display: none;
      }

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

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

      .form-row {
        flex-direction: column;
      }

      .about-badge {
        position: static;
        margin-top: 1.5rem;
        max-width: none;
      }

      .about-img-secondary {
        display: none;
      }
    }

    @media (max-width:420px) {
      .container {
        padding: 0 5vw;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }
