/* OriKone marketing site — single page, mobile-first. Brand palette
   matches web/checkout so the two surfaces feel of-a-piece.

   Palette
     bg cream       #FBF7EE
     bg card        #F6EFE0
     text primary   #2D2D2D
     text muted     #5C5A55
     text soft      #8C8275
     accent gold    #B8843A
     accent forest  #3E6133  (unused here; reserved for future dad-letter/wintro accents)
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Lora:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #FBF7EE;
  color: #2D2D2D;
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* --- Layout --------------------------------------------------------- */

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  border-top: 1px solid #EDE4CE;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #2D2D2D;
  margin: 0 0 8px;
  text-align: center;
}

.section-sub {
  color: #5C5A55;
  text-align: center;
  margin: 0 auto 48px;
  max-width: 560px;
}

/* --- Nav ------------------------------------------------------------ */

.nav {
  background: #FBF7EE;
  border-bottom: 1px solid #EDE4CE;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B8843A;
  text-decoration: none;
}

.nav-cta {
  font-family: 'Lora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #B8843A;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid #B8843A;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-cta:hover { background: #B8843A; color: #FFF; }

/* --- Hero ----------------------------------------------------------- */

.hero {
  padding: 88px 0 96px;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #2D2D2D;
}

.hero-sub {
  font-size: 20px;
  color: #5C5A55;
  margin: 0 0 32px;
  line-height: 1.5;
}

.hero-footnote {
  color: #8C8275;
  font-size: 14px;
  margin: 16px 0 0;
}

/* --- Buttons -------------------------------------------------------- */

.cta {
  display: inline-block;
  font-family: 'Lora', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 999px;
  transition: opacity 0.15s ease, transform 0.05s ease;
}
.cta:active { opacity: 0.85; transform: translateY(1px); }

.cta-primary {
  background: #B8843A;
  color: #FFFFFF;
  font-size: 16px;
}
.cta-primary:hover { background: #A0722F; }

/* --- What (3-pillar) ------------------------------------------------ */

.section-what { background: #FBF7EE; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.pillar {
  text-align: center;
  padding: 24px 16px;
}

.pillar-icon {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  color: #B8843A;
  margin-bottom: 12px;
  line-height: 1;
}

.pillar-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #2D2D2D;
}

.pillar-body {
  color: #5C5A55;
  margin: 0;
  font-size: 16px;
}

/* --- Quotes (the small things) -------------------------------------- */

.section-quotes { background: #F6EFE0; }

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

.quote {
  background: #FBF7EE;
  border-radius: 18px;
  padding: 32px 24px 24px;
  margin: 0;
  border: 1px solid #EDE4CE;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.quote-mark {
  font-family: 'Playfair Display', Georgia, serif;
  color: #B8843A;
  font-size: 22px;
  line-height: 1;
}

.quote blockquote {
  margin: 0;
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
  color: #2D2D2D;
  font-style: italic;
}

.quote figcaption {
  color: #8C8275;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: auto;
}

/* --- Pricing -------------------------------------------------------- */

.section-pricing { background: #FBF7EE; }

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: #F6EFE0;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid transparent;
  position: relative;
}

.price-card-featured {
  border-color: #B8843A;
  background: #FFFFFF;
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #B8843A;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.price-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8C8275;
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: #2D2D2D;
  line-height: 1;
  margin-bottom: 8px;
}

.price-period {
  font-size: 20px;
  color: #8C8275;
  font-weight: 500;
}

.price-alt {
  color: #8C8275;
  font-size: 14px;
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  text-align: left;
  color: #5C5A55;
}
.price-features li {
  padding: 6px 0;
  border-top: 1px solid #EDE4CE;
  font-size: 15px;
}
.price-features li:first-child { border-top: 0; }

/* --- Footer --------------------------------------------------------- */

.footer {
  background: #F6EFE0;
  padding: 48px 0 32px;
  border-top: 1px solid #EDE4CE;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.footer-tag {
  color: #8C8275;
  font-size: 14px;
  margin: 8px 0 0;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #5C5A55;
  text-decoration: none;
  font-size: 15px;
}
.footer-nav a:hover { color: #B8843A; }

.footer-legal {
  color: #8C8275;
  font-size: 13px;
  margin: 8px 0 0;
}

/* --- Mobile --------------------------------------------------------- */

@media (max-width: 720px) {
  .hero { padding: 56px 0 64px; }
  .hero-title { font-size: 32px; }
  .hero-sub { font-size: 18px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 26px; }
  .grid-3 { grid-template-columns: 1fr; gap: 24px; }
  .quotes { grid-template-columns: 1fr; gap: 16px; }
  .pricing { grid-template-columns: 1fr; }
}
