/* ── LISA KIRKMAN — HOMEPAGE ── */
/* Page-specific styling for index.html only. Shared tokens, reset,   */
/* base body, and footer come from /style.css, linked separately.    */
/* Nothing in this file is reused by any other page on the site.     */

  /* tokens, reset, base body, and footer now come from /style.css — */
  /* only this page's own layout rules live here */
  body { overflow-x: hidden; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    background: var(--slate);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
    position: relative;
    z-index: 2;
  }

  .hero-left::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 0;
    bottom: 0;
    width: 120px;
    background: var(--slate);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 1;
  }

  .hero-eyebrow {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mist);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
  }

  .hero-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 400;
    color: var(--mist);
    line-height: 1.05;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
  }

  .hero-name em {
    font-style: italic;
    color: var(--forest);
  }

  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--sky);
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
  }

  .hero-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
  }

  .hero-nav a {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mist);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.2s;
    opacity: 0.7;
  }

  .hero-nav a::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--sky);
    transition: width 0.2s, background 0.2s;
  }

  .hero-nav a:hover { opacity: 1; }
  .hero-nav a:hover::before { width: 40px; background: var(--mist); }

  .hero-right {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 80px 80px 100px;
    position: relative;
    gap: 40px;
  }

  .book-block {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.5s;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .book-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 16px;
  }

  .book-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.2vw, 2.1rem);
    font-weight: 600;
    font-style: normal;
    color: var(--forest);
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 340px;
  }

  .book-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.75;
    color: #3a3a35;
    max-width: 380px;
    margin-bottom: 24px;
  }

  .book-meta {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    color: var(--stone);
    letter-spacing: 0.06em;
    border-left: 2px solid var(--sky);
    padding-left: 14px;
    line-height: 1.8;
  }

  .cover-block {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.7s;
    flex-shrink: 0;
  }

  .cover-block img {
    width: 160px;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(3,44,36,0.25);
  }

  /* ── ABOUT ── */
  .about {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    background: var(--slate);
    color: var(--mist);
  }

  .about-left {
    padding: 80px 60px 0;
    border-right: 1px solid rgba(165,213,233,0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .section-number {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    font-weight: 700;
    color: rgba(211,234,248,0.12);
    line-height: 1;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--mist);
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(211,234,248,0.5);
  }

  .about-right {
    padding: 80px 80px 0 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: start;
  }

  .about-text-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .about-text {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--sky);
  }

  .about-text strong {
    color: var(--mist);
    font-weight: 400;
  }

  .credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
  }

  .credential {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border: 1px solid rgba(165,213,233,0.3);
    border-radius: 20px;
    color: var(--sky);
  }

  .about-photo {
    flex-shrink: 0;
    width: clamp(160px, 18vw, 240px);
    align-self: start;
    position: sticky;
    top: 40px;
  }

  .about-photo img {
    width: 100%;
    border-radius: 4px;
    display: block;
    box-shadow: 0 8px 32px rgba(3,44,36,0.35);
    filter: grayscale(15%) contrast(1.05);
  }

  /* ── WORK ── */
  .work {
    padding: 0 80px 20px;
    background: var(--paper);
    margin-top: -50px;
    position: relative;
    z-index: 1;
  }

  .work-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 24px;
    align-items: end;
  }

  .work-header-left .section-number { color: rgba(55,111,126,0.1); }
  .work-header-left .section-title { color: var(--forest); }
  .work-header-left .section-subtitle { color: var(--stone); }

  .work-intro {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    color: #4a4a42;
    max-width: 650px;
  }

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

  .work-card {
    background: white;
    border: 1px solid var(--mist);
    border-top: 3px solid var(--slate);
    padding: 32px 28px;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .work-card:hover {
    box-shadow: 0 8px 32px rgba(3,44,36,0.1);
    transform: translateY(-2px);
  }

  /* Card with no picture — identical to base */
  .work-card-nopicture {
    background: white;
    border: 1px solid var(--mist);
    border-top: 3px solid var(--slate);
    padding: 32px 28px;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .work-card-nopicture:hover {
    box-shadow: 0 8px 32px rgba(3,44,36,0.1);
    transform: translateY(-2px);
  }

  /* Card with picture — two column, image masked on right */
  .work-card-picture {
    background: white;
    border: 1px solid var(--mist);
    border-top: 3px solid var(--slate);
    display: grid;
    grid-template-columns: 1fr 120px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
  }

  .work-card-picture:hover {
    box-shadow: 0 8px 32px rgba(3,44,36,0.1);
    transform: translateY(-2px);
  }

  .work-card-picture .work-card-text {
    padding: 32px 28px;
    position: relative;
    z-index: 2;
  }

  .work-card-picture .work-card-image {
    position: relative;
    overflow: hidden;
  }

  .work-card-picture .work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Triangle anchored to bottom of image, 60% tall, diagonal cuts up-right */
  .work-card-picture .work-card-image::before {
    content: '';
    position: absolute;
    left: -1px;
    bottom: 0;
    height: 60%;
    width: 80px;
    background: white;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 1;
  }

  .work-card-type {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 12px;
  }

  .work-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: normal;
    color: var(--forest);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .work-card-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #5a5a52;
  }

  .work-card-link {
    display: inline-block;
    margin-top: 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    text-decoration: none;
    transition: color 0.2s;
  }

  .work-card-link:hover { color: var(--forest); }

  /* ── CONTACT ── */
  .contact {
    background: var(--slate);
    padding: 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .contact-left .section-title { color: var(--mist); font-size: 2.2rem; }
  .contact-left .section-subtitle { color: rgba(211,234,248,0.6); margin-bottom: 24px; }

  .contact-text {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--mist);
    margin-bottom: 32px;
  }

  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .contact-link {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--mist);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }

  .contact-link:hover { color: var(--sky); }

  .contact-link-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }

  .contact-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-style: italic;
    font-weight: 400;
    color: var(--mist);
    line-height: 1.65;
    padding-left: 28px;
    border-left: 3px solid var(--sky);
  }

  .contact-quote-attr {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(211,234,248,0.5);
    margin-top: 16px;
    padding-left: 28px;
    text-transform: uppercase;
  }


  /* ── TOOLS ── */
  .tools {
    padding: 20px 80px;
    background: var(--cream);
  }

  .tools-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: end;
  }

  .tools-header-left .section-number { color: rgba(55,111,126,0.1); }
  .tools-header-left .section-title { color: var(--forest); }
  .tools-header-left .section-subtitle { color: var(--stone); }

  .tools-intro {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    color: #4a4a42;
    max-width: 560px;
  }

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

  .tool-card {
    background: white;
    border: 1px solid var(--mist);
    border-top: 3px solid var(--slate);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .tool-card:hover {
    box-shadow: 0 8px 32px rgba(3,44,36,0.1);
    transform: translateY(-2px);
  }

  .tool-card-graphic {
    width: 100%;
    height: 180px;
    display: block;
    object-fit: cover;
    object-position: center 20%;
  }

  .tool-card-body {
    padding: 28px 28px 32px;
  }

  /* Tablet: side-by-side image right, single column */
  @media (max-width: 900px) and (min-width: 560px) {
    .tool-card { display: flex; flex-direction: row-reverse; }
    .tool-card-graphic { width: 140px; height: auto; flex-shrink: 0; object-position: center center; }
    .tool-card-body { flex: 1; }
  }

  /* Mobile: no image, single column */
  @media (max-width: 559px) {
    .tool-card-graphic { display: none; }
  }

  .tool-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: normal;
    color: var(--forest);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .tool-card-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #5a5a52;
    margin-bottom: 18px;
  }

  .tool-card-link {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }

  .tool-card-link:hover { color: var(--forest); }

  @media (max-width: 900px) {
    .tools { padding: 60px 40px; }
    .tools-header { grid-template-columns: 1fr; }
    .tools-grid { grid-template-columns: 1fr; }
  }

  /* ── EMBROIDERY TRANSITION ── */
  .embroidery-transition {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom,
      var(--slate) 0%,
      var(--slate) 30%,
      var(--paper) 30%,
      var(--paper) 100%
    );
    padding: 0;
    overflow: visible;
  }

  .embroidery-transition img {
    width: clamp(360px, 48vw, 620px);
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 16px 40px rgba(3,44,36,0.28));
  }

  @media (max-width: 900px) {
    .embroidery-transition img { width: clamp(276px, 88vw, 480px); }
  }

  /* footer styling now comes from /style.css */

  /* ── FAVICON cat emoji ── */

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 60px 40px; }
    .hero-left::after { display: none; }
    .hero-right { padding: 60px 40px; flex-direction: column; gap: 32px; }
    .cover-block img { width: 120px; }
    .about { grid-template-columns: 1fr; }
    .about-left { padding: 48px 40px 20px; border-right: none; border-bottom: 1px solid rgba(165,213,233,0.15); }
    .about-right { padding: 32px 40px 0; grid-template-columns: 1fr; }
    .about-photo { width: 100%; max-width: 240px; position: static; margin: 0 auto; }
    .work { padding: 48px 40px; }
    .work-header { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .contact { grid-template-columns: 1fr; padding: 48px 40px; gap: 40px; }
  }

