/*
Theme Name: Ouret
Theme URI: https://example.com/ouret
Author: Ouret
Author URI: https://example.com
Description: A custom one-page WordPress theme for Ouret's "10 Day Reset" digital PDF products. Built with the Ouret brand system: Fraunces + DM Sans, the sage/cream/berry/ember/leaf palette, and the floral mark motif.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ouret
*/


  :root{
    --cream:#f3e8da;
    --cream-soft:#ede0cd;
    --sage:#21392d;
    --sage-deep:#152920;
    --leaf:#e5e798;
    --berry:#b4265b;
    --ember:#ef7d40;
    --ink:#1c2b22;
    --serif: 'Fraunces', serif;
    --sans: 'DM Sans', sans-serif;
  }

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

  html{scroll-behavior:smooth;}

  body{
    font-family: var(--sans);
    background: var(--cream);
    color: var(--sage);
    -webkit-font-smoothing: antialiased;
    overflow-x:hidden;
  }

  img, svg{display:block;}

  /* ---------- utility ---------- */
  .wrap{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .eyebrow{
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .petal{ display:inline-block; }

  /* ---------- top brand bar ---------- */
  .brandbar{
    background: var(--sage);
    color: var(--cream);
    padding: 16px 48px;
    display:flex;
    justify-content: space-between;
    align-items:center;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .brandbar .mark{
    width: 26px; height:26px;
  }

  /* ---------- hero ---------- */
  .hero{
    position: relative;
    background: var(--sage-deep);
    color: var(--cream);
    padding: 120px 48px 150px;
    overflow:hidden;
    isolation:isolate;
  }
  .hero::before{
    content:"";
    position:absolute; inset:0;
    background-image:
      radial-gradient(60% 50% at 18% 10%, rgba(239,125,64,.35), transparent 60%),
      radial-gradient(50% 45% at 88% 85%, rgba(180,38,91,.30), transparent 60%);
    z-index:-2;
  }
  .hero::after{
    content:"";
    position:absolute; inset:0;
    opacity:.12;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    z-index:-1;
  }
  .hero-inner{
    max-width: 1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 64px;
    align-items:center;
  }
  .hero-eyebrow{
    color: var(--leaf);
    margin-bottom: 22px;
    display:flex;
    align-items:center;
    gap: 10px;
  }
  .hero h1{
    font-family: var(--serif);
    font-weight: 600;
    font-size: 84px;
    line-height: .96;
    letter-spacing: -.01em;
    color: var(--cream);
  }
  .hero h1 em{
    font-style: italic;
    font-weight: 500;
    color: var(--ember);
  }
  .hero .flower-inline{
    width: 46px;
    height: 46px;
    vertical-align: -6px;
  }
  .hero p.lede{
    font-size: 18px;
    line-height: 1.6;
    color: rgba(243,232,218,.82);
    margin-top: 26px;
    max-width: 46ch;
  }
  .hero-cta-row{
    margin-top: 40px;
    display:flex;
    align-items:center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .btn{
    font-family: var(--sans);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .02em;
    padding: 17px 34px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    display:inline-flex;
    align-items:center;
    gap: 10px;
    text-decoration: none;
  }
  .btn-primary{
    background: var(--ember);
    color: var(--sage-deep);
  }
  .btn-primary svg{ width:16px; height:16px; }
  .price-tag{
    display:flex;
    flex-direction:column;
    color: var(--cream);
  }
  .price-tag .amt{
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 600;
  }
  .price-tag .sub{
    font-size: 12px;
    color: rgba(243,232,218,.6);
    letter-spacing:.04em;
  }

  /* hero visual card */
  .hero-card{
    position: relative;
    background: linear-gradient(155deg, rgba(243,232,218,.08), rgba(243,232,218,.02));
    border: 1px solid rgba(243,232,218,.18);
    border-radius: 22px;
    padding: 34px;
    backdrop-filter: blur(2px);
  }
  .hero-card .flower-big{
    width: 64px; height:64px;
    margin-bottom: 22px;
  }
  .hero-card h3{
    font-family: var(--serif);
    font-weight: 600;
    font-size: 26px;
    color: var(--cream);
    margin-bottom: 14px;
  }
  .hero-card ul{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap: 12px;
  }
  .hero-card li{
    display:flex;
    align-items:center;
    gap: 12px;
    font-size: 14.5px;
    color: rgba(243,232,218,.85);
  }
  .hero-card li svg{ width:14px; height:14px; flex-shrink:0; }

  /* ---------- phase / mantra timeline ---------- */
  .phases{
    background: var(--cream);
    padding: 110px 48px 100px;
  }
  .phases-head{
    text-align:center;
    max-width: 680px;
    margin: 0 auto 76px;
  }
  .phases-head .eyebrow{ color: var(--berry); margin-bottom:18px; }
  .phases-head h2{
    font-family: var(--serif);
    font-weight: 600;
    font-size: 44px;
    line-height: 1.1;
  }
  .timeline{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position:relative;
    max-width: 1180px;
    margin: 0 auto;
  }
  .timeline::before{
    content:"";
    position:absolute;
    top: 46px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--sage) 0 8px, transparent 8px 16px);
    opacity:.35;
    z-index:0;
  }
  .phase-card{
    position:relative;
    z-index:1;
    padding: 0 8px;
  }
  .phase-flower{
    width: 68px; height:68px;
    margin-bottom: 26px;
  }
  .phase-days{
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing:.18em;
    text-transform:uppercase;
    font-weight:700;
    opacity:.55;
    margin-bottom: 10px;
  }
  .phase-card h3{
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 12px;
  }
  .phase-card p{
    font-size: 15px;
    line-height: 1.6;
    color: rgba(33,57,45,.75);
    max-width: 32ch;
  }
  .phase-1 h3{ color: var(--ember); }
  .phase-2 h3{ color: var(--berry); }
  .phase-3 h3{ color: var(--sage); }

  /* ---------- included ---------- */
  .included{
    background: var(--sage);
    color: var(--cream);
    padding: 100px 48px;
  }
  .included-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom: 60px;
    gap: 24px;
    flex-wrap: wrap;
  }
  .included-head .eyebrow{ color: var(--leaf); margin-bottom: 16px;}
  .included-head h2{
    font-family: var(--serif);
    font-weight: 600;
    font-size: 42px;
    max-width: 16ch;
  }
  .included-head p{
    max-width: 34ch;
    font-size: 15px;
    color: rgba(243,232,218,.7);
    line-height: 1.6;
  }
  .grid4{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(243,232,218,.18);
    border-top: 1px solid rgba(243,232,218,.18);
    border-bottom: 1px solid rgba(243,232,218,.18);
  }
  .cell{
    background: var(--sage);
    padding: 40px 28px;
  }
  .cell .flower{
    width: 40px; height:40px;
    margin-bottom: 26px;
  }
  .cell h4{
    font-family: var(--serif);
    font-weight: 600;
    font-size: 19px;
    margin-bottom: 10px;
  }
  .cell p{
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(243,232,218,.65);
  }

  /* ---------- pricing ---------- */
  .pricing{
    background: var(--cream);
    padding: 110px 48px 120px;
  }
  .pricing-head{
    text-align:center;
    max-width: 640px;
    margin: 0 auto 70px;
  }
  .pricing-head .eyebrow{ color: var(--berry); margin-bottom: 18px; }
  .pricing-head h2{
    font-family: var(--serif);
    font-weight: 600;
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 18px;
  }
  .pricing-head p{
    font-size: 15px;
    line-height: 1.6;
    color: rgba(33,57,45,.7);
  }
  .plans{
    max-width: 940px;
    margin: 0 auto;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .plan{
    border: 1.5px solid var(--sage);
    border-radius: 20px;
    padding: 34px 34px 36px;
    display:flex;
    flex-direction:column;
    background: var(--cream);
  }
  .plan-badge-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom: 22px;
  }
  .plan-badge{
    background: var(--leaf);
    color: var(--sage-deep);
    font-size: 11px;
    letter-spacing:.1em;
    text-transform:uppercase;
    font-weight:700;
    padding: 7px 16px;
    border-radius: 100px;
  }
  .plan-format{
    display:flex;
    align-items:center;
    gap: 6px;
    font-size: 11px;
    letter-spacing:.08em;
    text-transform:uppercase;
    font-weight: 700;
    color: var(--berry);
  }
  .plan-format svg{ width:13px; height:13px; }
  .plan-price{
    font-family: var(--serif);
    font-weight: 600;
    font-size: 38px;
    margin-bottom: 16px;
  }
  .plan > p{
    font-size: 14px;
    line-height: 1.6;
    color: rgba(33,57,45,.75);
    margin-bottom: 22px;
  }
  .plan ul{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap: 12px;
    margin-bottom: 30px;
  }
  .plan li{
    display:flex;
    align-items:center;
    gap: 10px;
    font-size: 14px;
    color: var(--sage-deep);
  }
  .plan li svg{ width:12px; height:12px; flex-shrink:0; }
  .plan-cta{
    margin-top:auto;
    background: var(--sage);
    color: var(--cream);
    border:none;
    border-radius: 100px;
    padding: 15px 0;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 14px;
    cursor:pointer;
    text-decoration: none;
    text-align: center;
    display: block;
  }

  /* ---------- final cta gradient ---------- */
  .final-cta{
    position: relative;
    padding: 120px 48px;
    text-align:center;
    overflow:hidden;
    background: linear-gradient(100deg, var(--berry) 0%, var(--ember) 26%, var(--cream) 50%, var(--leaf) 72%, var(--sage) 100%);
  }
  .final-cta::after{
    content:"";
    position:absolute; inset:0;
    opacity:.15;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode:overlay;
  }
  .final-cta-inner{ position:relative; z-index:1; }
  .final-cta h2{
    font-family: var(--serif);
    font-weight: 600;
    font-style: italic;
    font-size: 52px;
    color: var(--sage-deep);
    line-height: 1.08;
    text-shadow: 0 1px 24px rgba(243,232,218,.4);
  }
  .final-cta p{
    margin-top: 18px;
    font-size: 16px;
    color: var(--sage-deep);
    opacity:.8;
  }
  .final-cta .btn-primary{
    margin-top: 36px;
    background: var(--sage-deep);
    color: var(--cream);
  }

  footer{
    background: var(--sage-deep);
    color: rgba(243,232,218,.5);
    text-align:center;
    padding: 30px 48px;
    font-size: 12px;
    letter-spacing:.14em;
    text-transform:uppercase;
  }

  @media (max-width: 900px){
    .hero-inner{ grid-template-columns: 1fr; }
    .hero h1{ font-size: 54px; }
    .timeline{ grid-template-columns: 1fr; gap: 48px; }
    .timeline::before{ display:none; }
    .grid4{ grid-template-columns: 1fr 1fr; }
    .included-head{ flex-direction:column; align-items:flex-start; }
    .final-cta h2{ font-size: 36px; }
    .wrap, .hero, .phases, .included, .final-cta, .brandbar{ padding-left:24px; padding-right:24px; }
  }
