/* ==========================================================================
   PRAYA — Nourished by Nature, Crafted for Your Well-being
   Design tokens
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Work+Sans:wght@300;400;500;600&display=swap');

:root{
  --cream:        #F5EEE1;
  --cream-deep:   #EAE0CC;
  --paper:        #FBF8F1;
  --brown-ink:    #3E2A1A;
  --brown-deep:   #2C1B10;
  --brown-mid:    #6B4A30;
  --amber:        #B07A3E;
  --amber-soft:   #D8A96A;
  --sage:         #767F5C;
  --blush:        #C98F82;
  --line:         rgba(62,42,26,0.16);

  --serif: "Fraunces", "Iowan Old Style", serif;
  --sans:  "Work Sans", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
}

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

body{
  margin:0;
  background: var(--cream);
  color: var(--brown-ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow{
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
}

h1,h2,h3,h4{
  font-family: var(--serif);
  color: var(--brown-deep);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.serif-italic{ font-style: italic; font-weight: 400; }

p{ margin:0; }

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 2px;
  border: 1px solid var(--brown-deep);
  transition: all .3s ease;
  white-space: nowrap;
}
.btn-solid{
  background: var(--brown-deep);
  color: var(--paper);
}
.btn-solid:hover{ background: var(--amber); border-color: var(--amber); }
.btn-outline{
  background: transparent;
  color: var(--brown-deep);
}
.btn-outline:hover{ background: var(--brown-deep); color: var(--paper); }
.btn svg{ width:14px; height:14px; transition: transform .3s ease; }
.btn:hover svg{ transform: translateX(3px); }

/* divider dots — echoes the logo's dotted arc */
.dot-rule{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin: 22px 0;
}
.dot-rule span{
  width:5px; height:5px; border-radius:50%;
  background: var(--amber);
  display:inline-block;
}
.dot-rule::before,
.dot-rule::after{
  content:"";
  height:1px;
  width: 64px;
  background: var(--line);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(245,238,225,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 92px;
}
.brand-mark{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark img{
  height: 58px;
  width: 58px;
  object-fit: contain;
}
.brand-mark .word{
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: .04em;
  color: var(--brown-deep);
  line-height:1;
}
.brand-mark .word small{
  display:block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--amber);
  font-weight: 600;
  margin-top:4px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap: 40px;
}
.main-nav a{
  font-size: 13.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brown-mid);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height:1px; background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after{ transform: scaleX(1); }
.main-nav a.active{ color: var(--brown-deep); }

.header-phone{
  display:flex;
  align-items:center;
  gap:10px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--brown-deep);
}
.header-phone svg{ width:16px; height:16px; color: var(--amber); }

.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width: 42px; height:42px;
  background:none;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor:pointer;
  flex-shrink:0;
}
.nav-toggle svg{ width:20px; height:20px; color: var(--brown-deep); }
.nav-toggle .icon-close{ display:none; }
.nav-toggle.is-open .icon-open{ display:none; }
.nav-toggle.is-open .icon-close{ display:block; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  padding: 84px 0 60px;
  overflow: hidden;
}
.hero .wrap{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items:center;
}
.seal{
  --size: 108px;
  width: var(--size); height: var(--size);
  border-radius: 50%;
  border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  position: relative;
  margin-bottom: 34px;
}
.seal svg{ width:100%; height:100%; animation: spin 26s linear infinite; }
.seal .seal-center{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--amber);
}
@keyframes spin{ to{ transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){
  .seal svg{ animation: none; }
}

.hero h1{
  font-size: clamp(44px, 6vw, 78px);
  line-height: .98;
}
.hero .lede{
  margin-top: 26px;
  font-size: 17.5px;
  color: var(--brown-mid);
  max-width: 480px;
}
.hero .cta-row{
  display:flex;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero-visual{
  position: relative;
}
.hero-visual .frame{
  position:relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(44,27,16,.35);
  transform: rotate(1.4deg);
}
.hero-visual .frame img{ width:100%; height: 560px; object-fit: cover; }
.hero-visual .float-card{
  position:absolute;
  bottom: -26px;
  left: -34px;
  background: var(--paper);
  padding: 18px 22px;
  border-radius: 4px;
  box-shadow: 0 20px 40px -18px rgba(44,27,16,.4);
  display:flex;
  align-items:center;
  gap: 14px;
  transform: rotate(-2deg);
}
.hero-visual .float-card img{ width:52px; height:52px; object-fit:contain; }
.hero-visual .float-card .t{
  font-family: var(--serif);
  font-size: 14px;
  color: var(--brown-deep);
  line-height:1.25;
}
.hero-visual .float-card .t small{
  display:block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing:.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 3px;
}

/* botanical background line art */
.hero-bloom{
  position:absolute;
  top: -60px; right: -120px;
  width: 520px; height: 520px;
  opacity: .1;
  z-index:-1;
  color: var(--brown-deep);
}

/* ==========================================================================
   Section basics
   ========================================================================== */
section{ padding: 108px 0; }
.section-alt{ background: var(--cream-deep); }
.section-head{
  max-width: 620px;
  margin-bottom: 56px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{
  font-size: clamp(32px, 4vw, 46px);
  margin-top: 14px;
}

/* ==========================================================================
   About / Brand story
   ========================================================================== */
.about-grid{
  display:grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 70px;
  align-items:center;
}
.about-media{
  position: relative;
}
.about-media img{
  border-radius: 4px;
  width:100%;
  height: 480px;
  object-fit: cover;
  box-shadow: 0 26px 50px -22px rgba(44,27,16,.35);
}
.about-media .ring{
  position:absolute;
  width: 150px; height:150px;
  right: -40px; top: -40px;
  border: 1px solid var(--amber-soft);
  border-radius: 50%;
  z-index: -1;
}
.about-copy p{
  color: var(--brown-mid);
  font-size: 16px;
  margin-bottom: 18px;
}
.about-copy p:last-of-type{ margin-bottom:0; }
.about-copy .lead-line{
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: var(--brown-deep);
  line-height: 1.4;
  margin-bottom: 26px;
}

/* feature strip */
.feature-strip{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 46px;
  margin-top: 70px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.feature{ text-align:left; }
.feature .icon{
  width: 46px; height:46px;
  margin-bottom: 20px;
  color: var(--amber);
}
.feature h4{
  font-size: 19px;
  margin-bottom: 10px;
}
.feature p{
  color: var(--brown-mid);
  font-size: 14.5px;
}

/* ==========================================================================
   Products grid
   ========================================================================== */
.product-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.product-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.product-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -24px rgba(44,27,16,.3);
}
.product-card .shot{
  height: 340px;
  overflow: hidden;
  background: var(--cream-deep);
}
.product-card .shot img{
  width:100%; height:100%; object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .shot img{ transform: scale(1.06); }
.product-card .info{
  padding: 28px 26px 30px;
}
.product-card .tag{
  font-size: 11.5px;
  letter-spacing:.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
}
.product-card h3{
  font-size: 24px;
  margin-top: 10px;
}
.product-card .desc{
  color: var(--brown-mid);
  font-size: 14px;
  margin-top: 10px;
  min-height: 42px;
}
.product-card .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.product-card .net{
  font-size: 12.5px;
  color: var(--brown-mid);
}
.view-more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing:.08em;
  text-transform: uppercase;
  color: var(--brown-deep);
}
.view-more svg{ width:13px; height:13px; transition: transform .3s ease; }
.view-more:hover svg{ transform: translateX(4px); }

/* ==========================================================================
   Lifestyle band
   ========================================================================== */
.lifestyle{
  position: relative;
  padding: 0;
}
.lifestyle .band{
  position:relative;
  height: 460px;
  overflow: hidden;
}
.lifestyle .band img{
  width:100%; height:100%; object-fit:cover;
  filter: saturate(.95);
}
.lifestyle .band::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(44,27,16,.62) 0%, rgba(44,27,16,.15) 55%, rgba(44,27,16,0) 100%);
}
.lifestyle .quote{
  position:absolute;
  left: 60px; top:50%; transform: translateY(-50%);
  max-width: 460px;
  color: var(--paper);
  z-index: 2;
}
.lifestyle .quote .eyebrow{ color: var(--amber-soft); }
.lifestyle .quote h2{
  color: var(--paper);
  font-size: clamp(28px,3.6vw,40px);
  font-style: italic;
  margin-top: 14px;
  line-height:1.35;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-grid-single{
  grid-template-columns: 1fr;
  max-width: 640px;
}
.contact-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 46px;
}
.contact-row{
  display:flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child{ border-bottom:none; padding-bottom:0; }
.contact-row:first-child{ padding-top:0; }
.contact-row .icon{
  width: 22px; height:22px;
  color: var(--amber);
  flex-shrink:0;
  margin-top: 3px;
}
.contact-row .label{
  font-size: 11.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: var(--amber);
  font-weight:600;
  margin-bottom: 6px;
  display:block;
}
.contact-row .val{
  font-family: var(--serif);
  font-size: 18px;
  color: var(--brown-deep);
}
.map-plate{
  border-radius: 4px;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, var(--line) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, var(--line) 40px),
    var(--cream-deep);
  height: 100%;
  min-height: 360px;
  display:flex;
  align-items:center;
  justify-content:center;
  position: relative;
  overflow:hidden;
}
.map-plate .pin{
  width: 54px; height:54px;
  color: var(--brown-deep);
}
.map-plate .pin-label{
  position:absolute;
  bottom: 30px; left:50%; transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--brown-mid);
  text-align:center;
  white-space: nowrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--brown-deep);
  color: var(--cream);
  padding: 70px 0 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(245,238,225,.14);
}
.footer-brand .brand-mark img{ filter: invert(1) brightness(2); mix-blend-mode: normal; height:50px; width:50px;}
.footer-brand .word{ color: var(--cream); }
.footer-brand p{
  margin-top: 18px;
  color: rgba(245,238,225,.65);
  font-size: 14px;
  max-width: 300px;
}
.footer-col h5{
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing:.16em;
  text-transform: uppercase;
  color: var(--amber-soft);
  margin-bottom: 20px;
  font-weight:600;
}
.footer-col a, .footer-col p{
  display:block;
  color: rgba(245,238,225,.75);
  font-size: 14.5px;
  margin-bottom: 12px;
}
.footer-col a:hover{ color: var(--amber-soft); }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top: 26px;
  font-size: 13px;
  color: rgba(245,238,225,.5);
  flex-wrap:wrap;
  gap: 14px;
}
.social-dot{
  width:36px; height:36px;
  border: 1px solid rgba(245,238,225,.3);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  transition: all .3s ease;
}
.social-dot:hover{ background: var(--amber-soft); border-color: var(--amber-soft); }
.social-dot svg{ width:16px; height:16px; }

/* ==========================================================================
   Product detail page
   ========================================================================== */
.breadcrumb{
  padding: 26px 0;
  font-size: 13px;
  color: var(--brown-mid);
  border-bottom: 1px solid var(--line);
}
.breadcrumb a{ color: var(--amber); }
.breadcrumb span{ margin: 0 8px; color: var(--line); }

.pd-hero{
  padding: 70px 0 100px;
}
.pd-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
}
.pd-gallery .main-shot{
  border-radius: 4px;
  overflow:hidden;
  height: 560px;
  box-shadow: 0 30px 60px -24px rgba(44,27,16,.35);
}
.pd-gallery .main-shot img{ width:100%; height:100%; object-fit:cover; }

.pd-info .tag{
  font-size: 12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: var(--amber);
  font-weight:600;
}
.pd-info h1{
  font-size: clamp(36px,4.4vw,52px);
  margin-top:14px;
}
.pd-info .tagline{
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--brown-mid);
  margin-top: 16px;
}
.pd-info .net-weight{
  margin-top: 22px;
  font-size: 14px;
  color: var(--brown-mid);
  display:inline-block;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
}
.pd-benefits{
  margin-top: 40px;
  display:flex;
  flex-direction: column;
  gap: 22px;
}
.pd-benefit{
  display:flex;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.pd-benefit:last-child{ border-bottom:none; padding-bottom:0; }
.pd-benefit .num{
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--amber-soft);
  width: 34px;
  flex-shrink:0;
}
.pd-benefit h4{ font-size: 17.5px; margin-bottom: 6px; }
.pd-benefit p{ font-size: 14.5px; color: var(--brown-mid); }

.pd-info .cta-row{ margin-top: 42px; }

.related-strip{
  margin-top: 30px;
}
.related-strip .row-head{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  margin-bottom: 34px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .hero .wrap{ grid-template-columns: 1fr; }
  .hero-visual{ order:-1; }
  .about-grid{ grid-template-columns: 1fr; }
  .about-media img{ height: 360px; }
  .feature-strip{ grid-template-columns: 1fr; gap: 34px; }
  .product-grid{ grid-template-columns: repeat(2,1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .pd-grid{ grid-template-columns: 1fr; }
  .pd-gallery .main-shot{ height: 400px; }
}
@media (max-width: 720px){
  .nav-toggle{ display:flex; }
  .main-nav{
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 92px; left:0; right:0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 10px 32px 22px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .3s ease, padding .35s ease;
  }
  .main-nav.is-open{
    max-height: 320px;
    opacity: 1;
    padding: 18px 32px 26px;
  }
  .main-nav a{ padding: 10px 0; width:100%; }
  .header-phone span{ display:none; }
  section{ padding: 72px 0; }
  .wrap{ padding: 0 20px; }
  .hero{ padding: 48px 0 40px; }
  .hero .cta-row{ flex-direction:column; align-items:stretch; }
  .hero .cta-row .btn{ justify-content:center; }
  .hero-visual .frame img{ height: 340px; }
  .hero-visual .float-card{ left: 0; bottom:-20px; padding: 14px 16px; }
  .product-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 34px; }
  .lifestyle .band{ height: 340px; }
  .lifestyle .quote{ left: 20px; max-width: calc(100% - 40px); }
  .contact-card{ padding: 26px; }
  .about-media img{ height: 280px; }
  .seal{ --size: 84px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .pd-benefit{ flex-direction:column; gap:8px; }
}

@media (max-width: 420px){
  .wrap{ padding: 0 16px; }
  .btn{ padding: 13px 22px; font-size: 12.5px; }
  .brand-mark .word{ font-size: 20px; }
  .brand-mark img{ height:46px; width:46px; }
  .site-header .wrap{ height: 76px; }
  .main-nav{ top: 76px; }
}
