/* ============================================
   BE ALIGNED — design tokens
   ============================================ */
:root{
  --ink:        #241512;
  --terracotta: #6E2F22;
  --terracotta-deep: #4A1F16;
  --ivory:      #FBF4EA;
  --sand:       #EFE3D2;
  --sage:       #8C9A78;
  --gold:       #C9A24B;
  --blush:      #D9A9A0;
  --cream-text: #F6ECDF;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1360px;
  --edge: clamp(1.5rem, 6vw, 6.5rem);
}

*, *::before, *::after{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
  font-size: clamp(16px, 0.26vw + 15px, 21px);
}

body{
  margin: 0;
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  line-height: 1.08;
}

.eyebrow{
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before{
  content: "";
  width: 1.6em;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
  display: inline-block;
}

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

section{ position: relative; }

/* ============================================
   NAV
   ============================================ */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--edge);
  background: rgba(36, 21, 18, 0);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled{
  background: rgba(36, 21, 18, 0.92);
  padding: 0.7rem var(--edge);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.nav-logo{
  font-family: var(--font-display);
  color: var(--cream-text);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.nav-logo span{
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  font-weight: 600;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a{
  color: var(--cream-text);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.nav-links a:hover{ opacity: 1; }
.nav-cta{
  border: 1px solid var(--cream-text);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.78rem !important;
}
.nav-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
}
.nav-toggle span{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream-text);
  margin: 5px 0;
}

/* ============================================
   HERO
   ============================================ */
.hero{
  min-height: 100vh;
  background: linear-gradient(160deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  overflow: hidden;
}
.hero-copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem clamp(1.5rem,6vw,5rem) 5rem;
  color: var(--cream-text);
}
.hero-copy .eyebrow{ color: var(--blush); margin-bottom: 1.6rem; }
.hero-copy h1{
  font-size: clamp(3rem, 4.6vw, 5.4rem);
  letter-spacing: -0.01em;
  color: var(--cream-text);
}
.hero-copy .lede{
  margin-top: 1.8rem;
  max-width: 32rem;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(246,236,223,0.85);
}
.hero-actions{
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 2.3rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(36,21,18,0.45); }
.btn-primary{
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover{ background: #dcb662; }
.btn-ghost{
  background: transparent;
  color: var(--cream-text);
  border-color: rgba(246,236,223,0.4);
}
.btn-ghost:hover{ border-color: var(--cream-text); }

.hero-visual{
  position: relative;
  overflow: hidden;
}
.hero-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}
.hero-visual::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(74,31,22,0.55) 0%, rgba(74,31,22,0) 30%);
}

/* breathing circle signature */
.breath{
  position: absolute;
  left: 2.4rem;
  bottom: 2.4rem;
  width: 116px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.breath svg{ width: 100%; height: 100%; overflow: visible; }
.breath circle{
  fill: none;
  stroke: rgba(246,236,223,0.75);
  stroke-width: 1;
}
.breath .ring-1{ animation: breathe 9s ease-in-out infinite; transform-origin: center; }
.breath .ring-2{ animation: breathe 9s ease-in-out infinite; animation-delay: -1.2s; transform-origin: center; opacity: 0.6; }
.breath-label{
  position: absolute;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-text);
  animation: fadeswap 9s ease-in-out infinite;
}
@keyframes breathe{
  0%   { transform: scale(0.55); opacity: 0.35; }
  40%  { transform: scale(1);    opacity: 0.9; }
  60%  { transform: scale(1);    opacity: 0.9; }
  100% { transform: scale(0.55); opacity: 0.35; }
}
@keyframes fadeswap{
  0%   { content: "inhale"; }
}
@media (prefers-reduced-motion: reduce){
  .breath .ring-1, .breath .ring-2{ animation: none; transform: scale(0.85); }
}

/* ============================================
   SECTION HEADERS (shared)
   ============================================ */
.section-head{
  max-width: 42rem;
  margin-bottom: 3.6rem;
}
.section-head .eyebrow{ color: var(--terracotta); margin-bottom: 1.1rem; }
.section-head h2{
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.on-dark .section-head .eyebrow{ color: var(--blush); }
.on-dark .section-head h2{ color: var(--cream-text); }

/* ============================================
   ABOUT
   ============================================ */
.about{
  background: var(--ivory);
  padding: 9rem 0 7.5rem;
}
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}
.about-portrait{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 30px 60px -30px rgba(74,31,22,0.35);
}
.about-portrait img{ width: 100%; height: 100%; object-fit: cover; }
.about-portrait figcaption{
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(0deg, rgba(36,21,18,0.75), transparent);
  color: var(--cream-text);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-text .eyebrow{ color: var(--terracotta); }
.about-text h2{
  font-size: clamp(2.1rem, 3.2vw, 2.8rem);
  letter-spacing: -0.01em;
  margin: 1rem 0 1.6rem;
}
.about-text p{
  color: #4a352f;
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 36rem;
}

.pull-quote{
  margin: 6.5rem auto 0;
  max-width: 50rem;
  text-align: center;
  padding: 0 var(--edge);
}
.pull-quote p{
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.7vw, 2.3rem);
  font-weight: 500;
  color: var(--terracotta-deep);
  line-height: 1.45;
}
.pull-quote p b{ color: var(--terracotta); font-weight: 700; }
.pull-quote .rule{
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.8rem;
}

/* ============================================
   SERVICES
   ============================================ */
.services{
  background: var(--terracotta);
  padding: 9rem 0;
  color: var(--cream-text);
}
.service-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,162,75,0.28);
  border: 1px solid rgba(201,162,75,0.28);
}
.service-card{
  background: var(--terracotta);
  padding: 3.2rem 2.6rem;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition: background 0.3s ease;
}
.service-card:hover{ background: var(--terracotta-deep); }
.service-num{
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--blush);
  margin-bottom: 1.8rem;
  letter-spacing: 0.1em;
}
.service-card h3{
  color: var(--cream-text);
  font-size: 1.55rem;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}
.service-card p{
  color: rgba(246,236,223,0.78);
  font-size: 1.02rem;
  line-height: 1.65;
  flex: 1;
}
.service-card .tag{
  margin-top: 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   PRODUCTS — ritual shelf
   ============================================ */
.products{
  background: var(--ivory);
  padding: 9rem 0;
}
.product-intro{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4.5rem;
}
.product-intro p{
  color: #4a352f;
  font-size: 1.1rem;
  line-height: 1.7;
}
.product-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}
.product-card{
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -28px rgba(74,31,22,0.32);
}
.product-img{
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--sand);
}
.product-img img{ width: 100%; height: 100%; object-fit: cover; }
.product-body{
  padding: 1.9rem 1.7rem 2.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-top{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.9rem;
  gap: 0.6rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--sand);
}
.product-top h3{
  font-size: 1.28rem;
  letter-spacing: -0.005em;
  color: var(--terracotta-deep);
}
.price-tag{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--gold);
  white-space: nowrap;
}
.product-body p{
  font-size: 0.98rem;
  line-height: 1.65;
  color: #5a4640;
  flex: 1;
}

/* ============================================
   BOOK / CONTACT
   ============================================ */
.book{
  background: var(--terracotta-deep);
  color: var(--cream-text);
  padding: 9rem 0;
}
.book-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}
.book-copy .eyebrow{ color: var(--blush); }
.book-copy h2{
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  letter-spacing: -0.01em;
  color: var(--cream-text);
  margin: 1.1rem 0 1.5rem;
}
.book-copy p{
  color: rgba(246,236,223,0.8);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 32rem;
  margin-bottom: 2.2rem;
}
.contact-card{
  background: rgba(246,236,223,0.06);
  border: 1px solid rgba(246,236,223,0.2);
  border-radius: 12px;
  padding: 2.3rem;
}
.contact-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(246,236,223,0.15);
}
.contact-row:last-child{ border-bottom: none; }
.contact-row .label{
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush);
}
.contact-row a{
  color: var(--cream-text);
  text-decoration: none;
  font-size: 1.02rem;
}
.contact-row a:hover{ text-decoration: underline; }

/* ============================================
   FOOTER
   ============================================ */
footer{
  background: var(--ink);
  color: rgba(246,236,223,0.65);
  padding: 2.4rem var(--edge);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}
footer .foot-logo{
  font-family: var(--font-display);
  color: var(--cream-text);
  font-size: 1rem;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; min-height: auto; }
  .hero-visual{ height: 56vh; order: -1; }
  .hero-copy{ padding: 6.5rem clamp(1.5rem,6vw,5rem) 4rem; }
  .about-grid, .book-grid, .product-intro{ grid-template-columns: 1fr; gap: 2.5rem; }
  .about-portrait{ order: -1; max-width: 22rem; }
  .service-grid{ grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: 1fr 1fr; }
  .nav-links{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--terracotta-deep);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-toggle{ display: block; }
}
@media (max-width: 620px){
  .product-grid{ grid-template-columns: 1fr; }
  .contact-row{ flex-direction: column; align-items: flex-start; gap: 0.3rem; }
}
