    :root {
      --cream: #f3efe6;
      --cream-light: #faf8f3;
      --white: #ffffff;
      --ink: #171714;
      --brown: #3a2c24;
      --gold: #b39a68;
      --muted: #777269;
      --line: rgba(23, 23, 20, 0.14);
      --shadow: 0 24px 60px rgba(31, 25, 20, 0.12);
      --serif: "Cormorant Garamond", Georgia, serif;
      --sans: "Montserrat", Arial, sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--cream-light);
      color: var(--ink);
      font-family: var(--sans);
      overflow-x: hidden;
    }

    /* Keep the WordPress parent theme from replacing the landing-page base. */
    body.delauren-landing {
      background: var(--cream-light);
      color: var(--ink);
      font-family: var(--sans);
      font-size: 16px;
      line-height: normal;
    }

    .delauren-landing h1,
    .delauren-landing h2,
    .delauren-landing h3,
    .delauren-landing h4,
    .delauren-landing h5,
    .delauren-landing h6 {
      color: inherit;
    }

    body.menu-open {
      overflow: hidden;
    }

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

    button,
    input {
      font: inherit;
    }

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

    .announcement {
      background: var(--ink);
      color: var(--white);
      padding: 10px 20px;
      text-align: center;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(250, 248, 243, 0.94);
      border-bottom: 1px solid transparent;
      backdrop-filter: blur(18px);
      transition: 0.3s ease;
    }

    .site-header.scrolled {
      border-bottom-color: var(--line);
      box-shadow: 0 8px 30px rgba(20, 18, 15, 0.06);
    }

    .header-inner {
      width: min(1380px, calc(100% - 48px));
      min-height: 88px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 24px;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .main-nav a {
      position: relative;
      border: 0;
      background: transparent;
      color: var(--ink);
      cursor: pointer;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .main-nav a::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: -8px;
      left: 0;
      height: 1px;
      background: var(--ink);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s ease;
    }

    .main-nav a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .brand {
      width: 136px;
      display: block;
    }

    .brand img {
      width: 100%;
      height: auto;
    }

    .header-signature {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      color: var(--muted);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 1.8px;
      text-transform: uppercase;
    }

    .signature-mark {
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .header-signature {
      justify-content: flex-end;
    }

    .menu-toggle {
      display: none;
      width: 40px;
      height: 40px;
      border: 1px solid var(--line);
      background: transparent;
      cursor: pointer;
    }

    .hero {
      position: relative;
      min-height: 82vh;
      display: grid;
      place-items: center;
      overflow: hidden;
      background:
        radial-gradient(
          ellipse at center,
          rgba(15, 13, 11, 0.62) 0%,
          rgba(15, 13, 11, 0.46) 45%,
          rgba(15, 13, 11, 0.28) 78%
        ),
        linear-gradient(
          to bottom,
          rgba(15, 13, 11, 0.18),
          rgba(15, 13, 11, 0.32)
        ),
        url("../images/home-img-1.webp")
        center 56% / cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 22px;
      border: 1px solid rgba(255, 255, 255, 0.45);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 850px;
      padding: 70px 24px;
      color: var(--white);
      text-align: center;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 24px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
    }

    .hero h1 {
      margin: 0 auto 18px;
      font-family: var(--sans);
      font-size: clamp(14px, 1.5vw, 19px);
      font-weight: 600;
      letter-spacing: 2.4px;
      line-height: 1.4;
      text-transform: uppercase;
    }

    .hero h2 {
      max-width: 760px;
      margin: auto;
      font-family: var(--serif);
      font-size: clamp(68px, 9vw, 126px);
      font-weight: 600;
      letter-spacing: -3px;
      line-height: 0.82;
    }

    .hero p {
      max-width: 580px;
      margin: 30px auto 36px;
      font-family: var(--serif);
      font-size: clamp(20px, 2vw, 28px);
      line-height: 1.35;
    }

    .button {
      display: inline-flex;
      min-height: 52px;
      padding: 0 30px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--ink);
      background: var(--ink);
      color: var(--white);
      cursor: pointer;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: 0.3s ease;
    }

    .button:hover {
      background: var(--gold);
      border-color: var(--gold);
      transform: translateY(-2px);
    }

    .button.light {
      border-color: var(--white);
      background: var(--white);
      color: var(--ink);
    }

    .button.light:hover {
      border-color: var(--gold);
      background: var(--gold);
      color: var(--white);
    }

    .section {
      padding: 110px 24px;
    }

    body.delauren-landing .container {
      width: min(1320px, 100%);
      max-width: 1320px;
      margin: auto;
      padding-right: 0;
      padding-left: 0;
    }

    .section-heading {
      display: flex;
      margin-bottom: 52px;
      align-items: flex-end;
      justify-content: space-between;
      gap: 30px;
    }

    .section-heading h2 {
      font-family: var(--serif);
      font-size: clamp(46px, 6vw, 76px);
      font-weight: 600;
      line-height: 0.95;
    }

    .section-heading p {
      max-width: 430px;
      color: var(--muted);
      font-family: var(--serif);
      font-size: 20px;
      line-height: 1.5;
    }

    .categories {
      background: var(--cream);
    }

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

    .category-card {
      position: relative;
      min-height: 360px;
      overflow: hidden;
      background: var(--brown);
      color: var(--white);
    }

    .category-card img {
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(.2, .8, .2, 1);
    }

    .category-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(8, 8, 7, 0.76), rgba(8, 8, 7, 0.02) 62%);
    }

    .category-card:hover img {
      transform: scale(1.07);
    }

    .category-label {
      position: absolute;
      z-index: 2;
      right: 18px;
      bottom: 22px;
      left: 18px;
      font-family: var(--serif);
      font-size: 30px;
      font-weight: 600;
      text-align: center;
    }

    .products-section {
      background: var(--cream-light);
    }

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

    .product-card {
      position: relative;
      overflow: hidden;
      background: var(--white);
      transition: 0.35s ease;
    }

    .product-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-8px);
    }

    .product-image {
      position: relative;
      height: 440px;
      overflow: hidden;
      background: #ede9e0;
    }

    .product-image img {
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .product-card:hover .product-image img {
      transform: scale(1.04);
    }

    .product-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 2;
      padding: 8px 11px;
      background: var(--cream-light);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .product-info {
      padding: 25px;
      text-align: center;
    }

    .product-type {
      color: var(--muted);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .product-title {
      margin: 9px 0 6px;
      font-family: var(--serif);
      font-size: 26px;
      font-weight: 600;
    }

    .product-price {
      color: var(--brown);
      font-size: 13px;
      font-weight: 600;
    }

    .tasting-note {
      position: relative;
      margin-top: 18px;
      padding-top: 16px;
      color: var(--muted);
      font-family: var(--serif);
      font-size: 15px;
      font-style: italic;
      letter-spacing: 0.2px;
    }

    .tasting-note::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: 34px;
      height: 1px;
      background: var(--gold);
      transform: translateX(-50%);
    }

    .story-section {
      padding: 0;
      background: var(--brown);
      color: var(--white);
    }

    .story-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      min-height: 720px;
    }

    .story-image {
      min-height: 620px;
      background:
        linear-gradient(rgba(20, 15, 12, 0.08), rgba(20, 15, 12, 0.08)),
        url("../images/13171702938421_.pic_hd.webp")
        center / cover no-repeat;
    }

    .story-copy {
      display: flex;
      padding: clamp(55px, 8vw, 120px);
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
    }

    .story-copy h2 {
      max-width: 520px;
      margin-bottom: 28px;
      font-family: var(--serif);
      font-size: clamp(52px, 7vw, 92px);
      font-weight: 600;
      line-height: 0.9;
    }

    .story-copy p {
      max-width: 500px;
      margin-bottom: 20px;
      color: rgba(255, 255, 255, 0.78);
      font-family: var(--serif);
      font-size: 22px;
      line-height: 1.55;
    }

    .story-copy .button {
      margin-top: 14px;
    }

    .community {
      background: var(--cream-light);
    }

    body.delauren-landing .community-grid {
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      grid-auto-flow: row;
      gap: clamp(46px, 8vw, 120px);
      align-items: center;
    }

    body.delauren-landing .community-copy,
    body.delauren-landing .community-image,
    body.delauren-landing .editorial-copy,
    body.delauren-landing .editorial-image,
    body.delauren-landing .faq-intro,
    body.delauren-landing .faq-list {
      min-width: 0;
    }

    .community-copy h2 {
      max-width: 760px;
      margin-bottom: 30px;
      font-family: var(--serif);
      font-size: clamp(50px, 6vw, 84px);
      font-weight: 600;
      line-height: 0.94;
    }

    .community-copy > p {
      max-width: 690px;
      margin-bottom: 18px;
      color: var(--muted);
      font-family: var(--serif);
      font-size: 21px;
      line-height: 1.55;
    }

    .community-image img {
      min-height: 690px;
      object-fit: cover;
    }

    .story-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin-top: 34px;
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .story-points span {
      padding: 18px 16px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .editorial {
      background: var(--cream);
    }

    body.delauren-landing .editorial-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      grid-auto-flow: row;
      gap: clamp(40px, 7vw, 110px);
      align-items: center;
    }

    .editorial-copy h2 {
      max-width: 600px;
      margin-bottom: 26px;
      font-family: var(--serif);
      font-size: clamp(52px, 7vw, 94px);
      font-weight: 600;
      line-height: 0.9;
    }

    .editorial-copy p {
      max-width: 530px;
      margin-bottom: 34px;
      color: var(--muted);
      font-family: var(--serif);
      font-size: 22px;
      line-height: 1.55;
    }

    .editorial-image {
      position: relative;
    }

    .editorial-image img {
      min-height: 680px;
      object-fit: cover;
    }

    .rating-card {
      position: absolute;
      right: -20px;
      bottom: 30px;
      width: min(340px, 80%);
      padding: 32px;
      background: var(--cream-light);
      box-shadow: var(--shadow);
    }

    .rating-card strong {
      display: block;
      margin-bottom: 8px;
      font-family: var(--serif);
      font-size: 32px;
    }

    .rating-card p {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.65;
    }

    .faq-section {
      background: var(--cream-light);
    }

    body.delauren-landing .faq-layout {
      display: grid;
      grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
      grid-auto-flow: row;
      gap: clamp(50px, 8vw, 120px);
      align-items: start;
    }

    .faq-intro {
      position: sticky;
      top: 130px;
    }

    .faq-intro h2 {
      max-width: 560px;
      margin-bottom: 28px;
      font-family: var(--serif);
      font-size: clamp(48px, 6vw, 76px);
      font-weight: 600;
      line-height: 0.94;
    }

    .faq-intro p {
      max-width: 500px;
      margin-bottom: 32px;
      color: var(--muted);
      font-family: var(--serif);
      font-size: 20px;
      line-height: 1.55;
    }

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

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

    .faq-item summary {
      position: relative;
      padding: 28px 56px 28px 0;
      cursor: pointer;
      list-style: none;
      font-family: var(--serif);
      font-size: clamp(23px, 2.4vw, 32px);
      font-weight: 600;
      line-height: 1.2;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      position: absolute;
      top: 25px;
      right: 4px;
      color: var(--gold);
      font-family: var(--sans);
      font-size: 28px;
      font-weight: 400;
      line-height: 1;
    }

    .faq-item[open] summary::after {
      content: "−";
    }

    .faq-item p {
      max-width: 760px;
      padding: 0 54px 30px 0;
      color: var(--muted);
      font-family: var(--serif);
      font-size: 19px;
      line-height: 1.6;
    }

    .newsletter {
      background: var(--ink);
      color: var(--white);
      text-align: center;
    }

    .newsletter-inner {
      max-width: 850px;
      margin: auto;
    }

    .newsletter h2 {
      font-family: var(--serif);
      font-size: clamp(48px, 7vw, 84px);
      font-weight: 600;
      line-height: 0.95;
    }

    .newsletter p {
      margin: 22px auto 35px;
      color: rgba(255, 255, 255, 0.72);
      font-family: var(--serif);
      font-size: 21px;
    }

    .philosophy-seal {
      display: block;
      width: 180px;
      height: auto;
      margin: 38px auto 0;
    }

    .site-footer {
      padding: 70px 24px 26px;
      background: #11110f;
      color: var(--white);
    }

    .footer-grid {
      width: min(1320px, 100%);
      margin: auto;
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1fr;
      gap: 50px;
    }

    .footer-brand {
      font-family: var(--serif);
      font-size: 44px;
      font-weight: 700;
    }

    .footer-column h3 {
      margin-bottom: 18px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .footer-column p,
    .footer-column a {
      display: block;
      margin-bottom: 10px;
      color: rgba(255, 255, 255, 0.64);
      font-family: var(--serif);
      font-size: 18px;
      line-height: 1.45;
    }

    .footer-column a:hover {
      color: var(--white);
    }

    .footer-bottom {
      width: min(1320px, 100%);
      margin: 55px auto 0;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.13);
      color: rgba(255, 255, 255, 0.45);
      font-size: 10px;
      letter-spacing: 1px;
      text-align: center;
      text-transform: uppercase;
    }

    .mobile-menu {
      position: fixed;
      z-index: 999;
      inset: 0;
      display: flex;
      padding: 120px 28px 40px;
      flex-direction: column;
      gap: 22px;
      background: var(--cream-light);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-15px);
      transition: 0.3s ease;
    }

    .mobile-menu.open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mobile-menu a {
      font-family: var(--serif);
      font-size: 42px;
      font-weight: 600;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (min-width: 1101px) {
      body.delauren-landing .community-copy,
      body.delauren-landing .editorial-copy,
      body.delauren-landing .faq-intro {
        grid-column: 1 !important;
        order: 0 !important;
      }

      body.delauren-landing .community-image,
      body.delauren-landing .editorial-image,
      body.delauren-landing .faq-list {
        grid-column: 2 !important;
        order: 0 !important;
      }
    }

    @media (max-width: 1100px) {
      .main-nav {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .header-inner {
        grid-template-columns: auto 1fr auto;
      }

      .brand {
        justify-self: center;
      }

      .category-grid {
        grid-template-columns: repeat(3, 1fr);
      }

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

      body.delauren-landing .story-grid,
      body.delauren-landing .editorial-grid,
      body.delauren-landing .community-grid,
      body.delauren-landing .faq-layout {
        grid-template-columns: minmax(0, 1fr) !important;
        grid-auto-flow: row !important;
      }

      .faq-intro {
        position: static;
      }

      .story-image {
        min-height: 620px;
      }

      body.delauren-landing .editorial-image {
        grid-column: 1 !important;
        order: -1 !important;
      }

      body.delauren-landing .community-image {
        grid-column: 1 !important;
        order: -1 !important;
      }

      body.delauren-landing .community-copy,
      body.delauren-landing .editorial-copy,
      body.delauren-landing .faq-intro,
      body.delauren-landing .faq-list {
        grid-column: 1 !important;
      }

      .community-image img {
        min-height: 560px;
      }

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

    @media (max-width: 720px) {
      .announcement {
        font-size: 9px;
        letter-spacing: 1.2px;
      }

      .header-inner {
        width: min(100% - 28px, 1380px);
        min-height: 74px;
      }

      .header-signature {
        display: none;
      }

      .hero {
        min-height: 74vh;
      }

      .hero::after {
        inset: 12px;
      }

      .hero h1 {
        margin-bottom: 14px;
        font-size: 13px;
        letter-spacing: 1.4px;
      }

      .hero h2 {
        letter-spacing: -1px;
      }

      .section {
        padding: 78px 18px;
      }

      .section-heading {
        display: block;
      }

      .section-heading p {
        margin-top: 20px;
      }

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

      .category-card {
        min-height: 280px;
      }

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

      .product-image {
        height: 480px;
      }

      .story-copy {
        padding: 70px 24px;
      }

      .community-image img {
        min-height: 440px;
      }

      .editorial-image img {
        min-height: 520px;
      }

      .rating-card {
        right: 12px;
        bottom: 12px;
      }

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

    @media (max-width: 430px) {
      .category-grid {
        grid-template-columns: 1fr;
      }

      .category-card {
        min-height: 330px;
      }

      .product-image {
        height: 420px;
      }
    }
