/*
Theme Name: Gudrun Docherty Yoga Therapy
Theme URI: https://example.com
Author: Built for Gudrun Docherty
Description: Custom light & modern theme for a yoga therapy practice website, with Home, About, Method & Classes, Sessions & Pricing, Testimonials and Contact pages.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: gudrun-yoga
*/
  :root {
    --paper: #FAFAF6;
    --panel: #F1F3EC;
    --ink: #202B24;
    --ink-soft: #56635A;
    --sage: #6E8F72;
    --sage-deep: #4C6950;
    --peach: #E8916A;
    --peach-soft: #F3D9CC;
    --line: rgba(32, 43, 36, 0.10);
    --shadow: 0 20px 45px -25px rgba(32, 43, 36, 0.35);

    --display: 'Space Grotesk', sans-serif;
    --body: 'Inter', sans-serif;
    --mono: 'Space Mono', monospace;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16.5px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; }
  :focus-visible { outline: 2px solid var(--sage-deep); outline-offset: 3px; }

  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 6vw; }

  .eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sage-deep);
  }

  /* ---------- NAV ---------- */

  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 250, 246, 0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .nav-logo {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.15rem;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0; padding: 0;
    font-size: 0.92rem;
  }
  .nav-links a { text-decoration: none; color: var(--ink-soft); }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta {
    font-family: var(--body);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    background: var(--ink);
    color: var(--paper);
    padding: 10px 20px;
    border-radius: 100px;
  }
  @media (max-width: 760px) { .nav-links { display: none; } }

  /* ---------- HERO ---------- */

  .hero {
    position: relative;
    overflow: hidden;
    padding: 9vh 0 10vh 0;
  }
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
  }
  .blob-a { width: 480px; height: 480px; background: var(--peach-soft); top: -160px; right: -120px; opacity: 0.7; }
  .blob-b { width: 380px; height: 380px; background: var(--panel); bottom: -140px; left: -100px; opacity: 0.9; }

  .hero .wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 6vw;
    align-items: center;
  }

  .hero-eyebrow-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero-eyebrow-row .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--peach);
  }

  .hero h1 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(2.6rem, 5.6vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0 0 22px 0;
  }
  .hero h1 span { color: var(--sage-deep); }

  .hero p.tagline {
    max-width: 34em;
    font-size: clamp(1.02rem, 1.4vw, 1.15rem);
    color: var(--ink-soft);
    margin: 0 0 36px 0;
  }
  .hero p.tagline strong { color: var(--ink); font-weight: 600; }

  .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn {
    font-family: var(--body);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 100px;
    display: inline-block;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .btn-solid { background: var(--sage-deep); color: var(--paper); }
  .btn-solid:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
  .btn-ghost { background: transparent; border: 1.5px solid var(--line); color: var(--ink); }
  .btn-ghost:hover { border-color: var(--ink); }

  .hero-photo-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
  }
  .hero-photo-card img {
    width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%;
    display: block;
  }
  .float-tag {
    position: absolute;
    left: 20px; bottom: 20px;
    background: rgba(250,250,246,0.92);
    backdrop-filter: blur(6px);
    padding: 10px 16px;
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink);
  }

  /* breathing dots signature */
  .breath-dots { display: flex; gap: 8px; align-items: center; margin: 34px 0; }
  .breath-dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--sage);
    animation: pulse 2.4s ease-in-out infinite;
  }
  .breath-dots span:nth-child(2) { animation-delay: 0.25s; background: var(--peach); }
  .breath-dots span:nth-child(3) { animation-delay: 0.5s; }
  .breath-dots span:nth-child(4) { animation-delay: 0.75s; background: var(--peach); }
  @keyframes pulse {
    0%, 100% { transform: scale(0.7); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 1; }
  }
  @media (prefers-reduced-motion: reduce) {
    .breath-dots span { animation: none; opacity: 0.85; }
  }

  /* ---------- TRUST STRIP ---------- */

  .strip { padding: 30px 0; }
  .strip .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 14px; }
  .chip {
    font-family: var(--body);
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--panel);
    color: var(--ink-soft);
    padding: 9px 16px;
    border-radius: 100px;
  }

  /* ---------- SECTION shared ---------- */

  section { padding: 8vh 0; }
  .section-head { margin-bottom: 6vh; max-width: 40em; }
  .section-head h2 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    letter-spacing: -0.01em;
    margin: 12px 0 0 0;
  }

  /* ---------- ABOUT ---------- */

  .about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 7vw;
  }
  .about-photo {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow);
  }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; }

  .about-lede {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    line-height: 1.4;
    color: var(--sage-deep);
    margin: 0 0 20px 0;
  }
  .about-copy p { color: var(--ink-soft); margin: 0 0 16px 0; }

  .tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
  .tags span {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.03em;
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 7px 14px;
    border-radius: 100px;
  }

  .timeline-cards {
    margin-top: 40px;
    display: grid;
    gap: 16px;
  }
  .t-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }
  .t-card:last-child { border-bottom: none; }
  .t-card .yr {
    font-family: var(--mono);
    font-size: 12.5px;
    color: var(--sage-deep);
  }
  .t-card p { margin: 0; font-size: 0.94rem; color: var(--ink-soft); }

  /* ---------- METHOD ---------- */

  .method { background: var(--panel); border-radius: 32px; margin: 0 6vw; padding: 8vh 6vw; width: auto; }
  .method .wrap { max-width: none; padding: 0; }

  .pillar-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 6vh;
  }
  .pillar-card {
    background: var(--paper);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
  }
  .pillar-card .p-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--sage);
    margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center;
  }
  .pillar-card:nth-child(2) .p-icon { background: var(--peach); }
  .pillar-card:nth-child(3) .p-icon { background: var(--sage-deep); }
  .pillar-card .p-icon svg { width: 18px; height: 18px; stroke: var(--paper); fill: none; stroke-width: 2; }
  .pillar-card h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
  }
  .pillar-card p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }

  .method-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .method-copy p { margin: 0; color: var(--ink-soft); }
  .method-copy strong { color: var(--ink); }

  /* ---------- CLASSES ---------- */

  .classes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .class-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow);
  }
  .class-card img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
    transition: transform 0.4s ease;
  }
  .class-card:hover img { transform: scale(1.06); }
  .class-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(32,43,36,0.85) 0%, rgba(32,43,36,0.05) 55%);
  }
  .class-card .c-label { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; color: var(--paper); }
  .class-card .c-name { font-family: var(--display); font-weight: 600; font-size: 1.05rem; display: block; margin-bottom: 4px; }
  .class-card .c-desc { font-size: 0.78rem; color: rgba(250,250,246,0.82); }

  /* ---------- PROCESS ---------- */

  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 5vh;
  }
  .p-step {
    background: var(--panel);
    border-radius: 20px;
    padding: 30px;
  }
  .p-step .step-no {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--sage-deep);
    color: var(--paper);
    font-family: var(--mono);
    font-size: 13px;
    margin-bottom: 16px;
  }
  .p-step h3 { font-family: var(--display); font-weight: 600; font-size: 1.2rem; margin: 0 0 10px 0; }
  .p-step p { margin: 0; font-size: 0.94rem; color: var(--ink-soft); }

  .price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .price-card {
    border: 1.5px solid var(--line);
    border-radius: 20px;
    padding: 28px;
  }
  .price-card .len { font-weight: 600; font-size: 0.95rem; }
  .price-card .amt {
    font-family: var(--display);
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--sage-deep);
    margin: 10px 0 4px 0;
  }
  .price-card .per { font-family: var(--mono); font-size: 0.75rem; color: var(--ink-soft); }
  .price-card.best {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
  }
  .price-card.best .amt { color: var(--peach); }
  .price-card.best .per { color: rgba(250,250,246,0.65); }
  .price-card.best .badge {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--peach);
    display: block;
    margin-bottom: 8px;
  }

  .fine-print {
    margin-top: 5vh;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .fine-print .fp-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--sage-deep);
    display: block;
    margin-bottom: 10px;
  }
  .fine-print p { margin: 0; color: var(--ink-soft); font-size: 0.93rem; }

  /* ---------- TESTIMONIALS ---------- */

  .quote-spotlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
  }
  .quote-spotlight {
    background: var(--panel);
    border-radius: 20px;
    padding: 30px;
  }
  .quote-spotlight p {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--ink);
    margin: 0 0 16px 0;
  }
  .quote-spotlight cite {
    font-style: normal;
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--ink-soft);
  }
  .quote-spotlight cite b { color: var(--sage-deep); font-weight: 700; display: block; margin-bottom: 3px; font-family: var(--body); font-size: 0.88rem; }

  .quote-grid {
    columns: 3;
    column-gap: 18px;
  }
  .quote-card {
    margin: 0 0 18px 0;
    padding: 24px;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    break-inside: avoid;
  }
  .quote-card p { margin: 0 0 14px 0; font-size: 0.9rem; color: var(--ink-soft); }
  .quote-card cite {
    font-style: normal;
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--ink-soft);
  }
  .quote-card cite b { color: var(--peach); font-weight: 700; display: block; margin-bottom: 2px; font-family: var(--body); font-size: 0.85rem; }

  /* ---------- CONTACT ---------- */

  .contact {
    text-align: center;
    background: var(--ink);
    color: var(--paper);
    border-radius: 32px;
    margin: 0 6vw 8vh 6vw;
    padding: 10vh 6vw;
  }
  .contact .wrap { max-width: none; padding: 0; }
  .contact h2 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.9rem, 4.4vw, 3rem);
    margin: 0 0 16px 0;
  }
  .contact p.lead {
    max-width: 32em;
    margin: 0 auto 36px auto;
    color: rgba(250,250,246,0.7);
    font-size: 1.02rem;
  }
  .contact .btn-solid { background: var(--peach); color: var(--ink); }
  .contact .alt-contact { margin-top: 22px; }
  .contact .alt-contact a {
    font-family: var(--mono);
    font-size: 0.88rem;
    color: rgba(250,250,246,0.65);
    text-decoration: none;
    border-bottom: 1px solid rgba(250,250,246,0.3);
  }

  footer { padding: 30px 0 50px 0; text-align: center; }
  footer p {
    margin: 0;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  /* ---------- RESPONSIVE ---------- */

  @media (max-width: 860px) {
    .hero .wrap { grid-template-columns: 1fr; }
    .hero-photo-card { order: -1; transform: none; }
    .about-grid { grid-template-columns: 1fr; gap: 5vh; }
    .method { margin: 0 4vw; border-radius: 24px; padding: 6vh 5vw; }
    .pillar-cards { grid-template-columns: 1fr; }
    .method-copy { grid-template-columns: 1fr; gap: 16px; }
    .classes-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: 1fr; }
    .price-cards { grid-template-columns: 1fr; }
    .fine-print { grid-template-columns: 1fr; gap: 20px; }
    .t-card { grid-template-columns: 1fr; gap: 4px; }
    .quote-spotlights { grid-template-columns: 1fr; }
    .quote-grid { columns: 1; }
    .contact { margin: 0 4vw 6vh 4vw; border-radius: 24px; }
  }

  /* ---------- MULTI-PAGE ADDITIONS ---------- */

  .nav-links a.active { color: var(--ink); font-weight: 600; }

  .page-hero {
    position: relative;
    overflow: hidden;
    padding: 11vh 0 7vh 0;
  }
  .page-hero .wrap { position: relative; z-index: 1; max-width: 760px; }
  .page-hero .eyebrow-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
  .page-hero .eyebrow-row .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--peach); }
  .page-hero h1 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0 0 18px 0;
  }
  .page-hero p.lead {
    color: var(--ink-soft);
    font-size: 1.05rem;
    max-width: 38em;
    margin: 0;
  }

  .link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .link-card {
    background: var(--panel);
    border-radius: 20px;
    padding: 28px;
    text-decoration: none;
    color: var(--ink);
    display: block;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .link-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
  .link-card .lc-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sage-deep);
  }
  .link-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.2rem; margin: 10px 0 8px 0; }
  .link-card p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }

  .home-photo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .home-photo-strip .hp-item {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow);
  }
  .home-photo-strip img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

  footer { padding: 40px 0 50px 0; text-align: center; }
  footer .footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 26px;
    list-style: none;
    margin: 0 0 18px 0;
    padding: 0;
  }
  footer .footer-nav a {
    text-decoration: none;
    font-size: 0.88rem;
    color: var(--ink-soft);
  }
  footer .footer-nav a:hover { color: var(--ink); }
  footer p.copy {
    margin: 0;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  @media (max-width: 860px) {
    .link-grid { grid-template-columns: 1fr; }
    .home-photo-strip { grid-template-columns: repeat(2, 1fr); }
  }
