:root {
    --ink: #17221d;
    --muted: #68716c;
    --cream: #fbf7ef;
    --paper: #ffffff;
    --sage: #dfe9dc;
    --forest: #244b3a;
    --forest-deep: #173629;
    --coral: #e97b62;
    --gold: #f1c875;
    --line: rgba(23, 34, 29, 0.12);
    --shadow: 0 28px 70px rgba(36, 75, 58, 0.14);
    --radius-lg: 34px;
    --radius-md: 22px;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background: var(--cream);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  button,
  input,
  textarea {
    font: inherit;
  }
  
  .container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
  }
  
  .site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    background: rgba(251, 247, 239, 0.88);
    border-bottom: 1px solid rgba(23, 34, 29, 0.08);
    backdrop-filter: blur(18px);
  }
  
  .nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
  }
  
  .brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--forest);
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 15px;
    letter-spacing: 0.03em;
  }
  
  .brand-text {
    font-family: "Playfair Display", serif;
    font-size: 19px;
  }
  
  .nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 600;
  }
  
  .nav a:not(.nav-button):hover {
    color: var(--coral);
  }
  
  .nav-button {
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--ink);
    color: white;
  }
  
  .hero {
    position: relative;
    min-height: 850px;
    padding: 160px 0 100px;
    display: flex;
    align-items: center;
    isolation: isolate;
  }
  
  .hero-shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(1px);
  }
  
  .hero-shape-one {
    width: 530px;
    height: 530px;
    right: -120px;
    top: 120px;
    background: var(--sage);
  }
  
  .hero-shape-two {
    width: 190px;
    height: 190px;
    left: -80px;
    bottom: 50px;
    background: rgba(233, 123, 98, 0.2);
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    align-items: center;
    gap: 85px;
  }
  
  .eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--coral);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.19em;
  }
  
  .hero h1,
  .section h2,
  .center-heading h2,
  .heritage h2,
  .makeup h2,
  .featured h2,
  .collaborate h2,
  .contact h2 {
    font-family: "Playfair Display", serif;
    line-height: 1.08;
    letter-spacing: -0.035em;
  }
  
  .hero h1 {
    max-width: 700px;
    font-size: clamp(58px, 7vw, 92px);
  }
  
  .hero h1 span {
    color: var(--forest);
    font-style: italic;
  }
  
  .hero-copy > p {
    max-width: 610px;
    margin: 28px 0 34px;
    color: var(--muted);
    font-size: 18px;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  
  .button {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  }
  
  .button:hover {
    transform: translateY(-2px);
  }
  
  .button-primary {
    background: var(--forest);
    color: white;
    box-shadow: 0 14px 28px rgba(36, 75, 58, 0.22);
  }
  
  .button-primary:hover {
    background: var(--forest-deep);
  }
  
  .button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.45);
  }
  
  .social-row {
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
  }
  
  .social-row span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--coral);
  }
  
  .hero-visual {
    position: relative;
    min-height: 590px;
  }
  
  .photo-card-main {
    position: absolute;
    inset: 0 10px 10px 30px;
    padding: 12px;
    border-radius: 220px 220px var(--radius-lg) var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: rotate(2.5deg);
    overflow: hidden;
  }

  .hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 210px 210px 25px 25px;
  }

  .photo-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 210px 210px 25px 25px;
    background:
      linear-gradient(135deg, rgba(36, 75, 58, 0.18), rgba(233, 123, 98, 0.14)),
      repeating-linear-gradient(45deg, transparent 0 18px, rgba(255,255,255,.25) 18px 36px),
      #d9e5d7;
    color: var(--forest);
  }
  
  .photo-placeholder span {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
  }
  
  .photo-placeholder small {
    margin-top: 7px;
    color: var(--muted);
  }
  
  .floating-badge {
    position: absolute;
    left: -5px;
    bottom: 55px;
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    background: var(--coral);
    color: white;
    box-shadow: 0 18px 38px rgba(233, 123, 98, 0.28);
    transform: rotate(-5deg);
  }
  
  .floating-badge strong {
    font-family: "Playfair Display", serif;
    font-size: 25px;
  }
  
  .floating-badge span {
    font-size: 12px;
    font-weight: 600;
  }
  
  .spark {
    position: absolute;
    color: var(--gold);
    font-size: 40px;
  }
  
  .spark-one {
    right: -15px;
    top: 90px;
  }
  
  .spark-two {
    left: 10px;
    top: 40px;
    font-size: 25px;
  }
  
  .intro-strip {
    background: var(--forest);
    color: white;
  }
  
  .strip-grid {
    min-height: 94px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  
  .strip-grid p {
    position: relative;
    font-family: "Playfair Display", serif;
    font-size: 18px;
  }
  
  .strip-grid p:not(:last-child)::after {
    content: "✦";
    position: absolute;
    right: -14px;
    color: var(--gold);
    font-size: 12px;
  }
  
  .section {
    padding: 120px 0;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 100px;
    align-items: start;
  }
  
  .section-heading h2,
  .center-heading h2,
  .heritage h2,
  .makeup h2,
  .featured h2,
  .contact h2 {
    font-size: clamp(42px, 5vw, 66px);
  }

  .heritage {
    background:
      radial-gradient(circle at top right, rgba(241, 200, 117, 0.28), transparent 42%),
      linear-gradient(180deg, #f7f1e5 0%, var(--cream) 100%);
  }

  .heritage-gallery {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .heritage-shot {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #efe6d8;
    aspect-ratio: 1 / 1;
  }

  .heritage-shot-main {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .heritage-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 320ms ease;
  }

  .heritage-shot:hover img {
    transform: scale(1.03);
  }

  .heritage-panel {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 28px;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 60px rgba(36, 75, 58, 0.08);
  }

  .heritage-copy h3 {
    max-width: 420px;
    margin-bottom: 18px;
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.2;
  }

  .heritage-copy p {
    max-width: 460px;
    margin-bottom: 28px;
    color: var(--muted);
  }

  .heritage-highlights {
    display: grid;
    gap: 18px;
  }

  .heritage-highlights > div {
    padding: 22px 24px;
    border-radius: 18px;
    background: #f4ebe0;
  }

  .heritage-highlights span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--coral);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
  }

  .heritage-highlights h4 {
    margin-bottom: 8px;
    font-family: "Playfair Display", serif;
    font-size: 24px;
  }

  .heritage-highlights p {
    color: var(--muted);
    font-size: 15px;
  }

  .makeup {
    background: white;
  }

  .makeup-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 90px;
    align-items: start;
  }

  .makeup-photo {
    margin-top: 32px;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 1 / 1;
    background: #f4ebe0;
  }

  .makeup-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .makeup-copy {
    padding-top: 35px;
  }

  .makeup-copy p {
    margin-bottom: 22px;
    color: var(--muted);
  }

  .makeup-copy .lead {
    color: var(--ink);
    font-family: "Playfair Display", serif;
    font-size: 25px;
    line-height: 1.45;
  }

  .makeup-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
  }
  
  .about-copy {
    padding-top: 35px;
  }
  
  .about-copy p {
    margin-bottom: 22px;
    color: var(--muted);
  }
  
  .about-copy .lead {
    color: var(--ink);
    font-family: "Playfair Display", serif;
    font-size: 25px;
    line-height: 1.45;
  }
  
  .text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    color: var(--forest);
    font-weight: 700;
  }
  
  .text-link span {
    transition: transform 180ms ease;
  }
  
  .text-link:hover span {
    transform: translateX(5px);
  }
  
  .content-section {
    background: #f1ecdf;
  }
  
  .center-heading {
    max-width: 700px;
    margin: 0 auto 58px;
    text-align: center;
  }
  
  .center-heading p {
    margin-top: 18px;
    color: var(--muted);
  }
  
  .platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  
  .platform-card {
    min-height: 370px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius-md);
    transition: transform 220ms ease, box-shadow 220ms ease;
  }
  
  .platform-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
  }
  
  .platform-card.youtube {
    background: #fff0ed;
  }
  
  .platform-card.tiktok {
    background: var(--forest);
    color: white;
  }
  
  .platform-card.facebook {
    background: #e7eefc;
  }
  
  .platform-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.75);
    color: var(--ink);
    font-size: 22px;
    font-weight: 800;
  }
  
  .card-label {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    opacity: .7;
  }
  
  .platform-card h3 {
    margin-bottom: 12px;
    font-family: "Playfair Display", serif;
    font-size: 33px;
  }
  
  .platform-card p {
    font-size: 14px;
    opacity: .76;
  }
  
  .card-arrow {
    align-self: flex-end;
    font-size: 26px;
  }
  
  .featured {
    background: white;
  }
  
  .featured-header {
    margin-bottom: 45px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
  }
  
  .featured-header > p {
    max-width: 390px;
    color: var(--muted);
  }
  
  .post-grid {
    display: grid;
    grid-template-columns: 1.3fr .85fr .85fr;
    gap: 22px;
  }
  
  .post-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
  }
  
  .post-image {
    min-height: 310px;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: rgba(23,34,29,.62);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: #efe6d8;
  }

  .post-image img {
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover;
    display: block;
    transition: transform 320ms ease;
  }

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

  .placeholder-one {
    background: linear-gradient(145deg, #d9e4d7, #f6d4c9);
  }
  
  .placeholder-two {
    background: linear-gradient(145deg, #f1d6aa, #e9b39f);
  }
  
  .placeholder-three {
    background: linear-gradient(145deg, #c9d9ee, #d9e4d7);
  }
  
  .post-info {
    padding: 25px;
  }
  
  .post-info span {
    color: var(--coral);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
  }
  
  .post-info h3 {
    margin-top: 8px;
    font-family: "Playfair Display", serif;
    font-size: 23px;
    line-height: 1.25;
  }
  
  .collaborate-card {
    padding: 75px;
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 80px;
    border-radius: var(--radius-lg);
    background: var(--forest);
    color: white;
    box-shadow: var(--shadow);
  }
  
  .eyebrow.light {
    color: var(--gold);
  }
  
  .collab-copy h2 {
    font-size: clamp(40px, 4.6vw, 62px);
  }
  
  .collab-copy p {
    max-width: 590px;
    margin: 24px 0 32px;
    color: rgba(255,255,255,.72);
  }
  
  .button-light {
    background: white;
    color: var(--forest);
  }
  
  .collab-points {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .collab-points div {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  
  .collab-points span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
  }
  
  .contact {
    padding-top: 40px;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 100px;
    align-items: start;
  }
  
  .contact-grid > div > p {
    margin-top: 20px;
    color: var(--muted);
    font-size: 18px;
  }
  
  .contact-form {
    padding: 38px;
    display: grid;
    gap: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: 0 20px 50px rgba(23,34,29,.07);
  }
  
  .contact-form label {
    display: grid;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fcfbf8;
    color: var(--ink);
    outline: none;
  }
  
  .contact-form input {
    height: 50px;
    padding: 0 15px;
  }
  
  .contact-form textarea {
    padding: 14px 15px;
    resize: vertical;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(36,75,58,.08);
  }
  
  .site-footer {
    padding: 70px 0 28px;
    background: var(--ink);
    color: white;
  }
  
  .footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
  
  .footer-brand .brand-mark {
    background: var(--coral);
  }
  
  .footer-grid > div > p {
    margin-top: 16px;
    color: rgba(255,255,255,.55);
  }
  
  .footer-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 700;
  }
  
  .footer-bottom {
    margin-top: 52px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.45);
    font-size: 12px;
  }
  
  @media (max-width: 980px) {
    .nav a:not(.nav-button) {
      display: none;
    }
  
    .hero-grid,
    .about-grid,
    .heritage-panel,
    .heritage-gallery,
    .makeup-grid,
    .contact-grid,
    .collaborate-card {
      grid-template-columns: 1fr;
    }

    .heritage-gallery {
      grid-template-columns: 1fr 1fr;
    }

    .heritage-shot-main {
      grid-column: 1 / -1;
      min-height: 320px;
    }

    .makeup-copy {
      padding-top: 0;
    }

    .heritage-panel {
      padding: 28px;
    }
  
    .hero {
      padding-top: 140px;
    }
  
    .hero-visual {
      min-height: 650px;
      max-width: 570px;
      width: 100%;
      margin: 10px auto 0;
    }
  
    .about-grid,
    .contact-grid {
      gap: 45px;
    }
  
    .about-copy {
      padding-top: 0;
    }
  
    .platform-grid {
      grid-template-columns: 1fr;
    }
  
    .platform-card {
      min-height: 310px;
    }
  
    .post-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .post-large {
      grid-column: 1 / -1;
    }
  
    .collaborate-card {
      gap: 45px;
    }
  }
  
  @media (max-width: 680px) {
    .container {
      width: min(100% - 28px, 1160px);
    }
  
    .nav-wrap {
      min-height: 72px;
    }
  
    .brand-text {
      font-size: 16px;
    }
  
    .nav-button {
      padding: 10px 15px;
      font-size: 12px;
    }
  
    .hero {
      min-height: auto;
      padding: 125px 0 75px;
    }
  
    .hero-grid {
      gap: 55px;
    }
  
    .hero h1 {
      font-size: clamp(50px, 16vw, 72px);
    }
  
    .hero-copy > p {
      font-size: 16px;
    }
  
    .hero-actions .button {
      width: 100%;
    }
  
    .hero-visual {
      min-height: 500px;
    }
  
    .photo-card-main {
      inset: 0 5px 5px 12px;
    }
  
    .floating-badge {
      left: -4px;
      bottom: 25px;
    }
  
    .strip-grid {
      min-height: 160px;
      grid-template-columns: 1fr 1fr;
    }
  
    .strip-grid p:not(:last-child)::after {
      display: none;
    }
  
    .section {
      padding: 85px 0;
    }
  
    .featured-header,
    .footer-grid,
    .footer-bottom {
      align-items: flex-start;
      flex-direction: column;
    }
  
    .post-grid {
      grid-template-columns: 1fr;
    }
  
    .post-large {
      grid-column: auto;
    }

    .heritage-gallery {
      grid-template-columns: 1fr;
    }

    .heritage-shot-main {
      grid-column: auto;
      min-height: 280px;
    }
  
    .collaborate-card {
      padding: 42px 25px;
    }
  
    .contact-form {
      padding: 25px 20px;
    }
  
    .footer-links {
      flex-wrap: wrap;
    }
  }