/* ===========================================================
   TIAMORE — Design Tokens
   =========================================================== */
:root{
  /* Palette — pulled from actual product labels & photography */
  --cream:        #FAF6F0;
  --cream-deep:   #F1E9DC;
  --sand:         #E8DCC8;
  --blush:        #F0E1D2;
  --espresso:     #2B2622;
  --espresso-70:  rgba(43,38,34,.7);
  --espresso-45:  rgba(43,38,34,.45);
  --terracotta:   #B5663F;
  --terracotta-dk:#8F4E2E;
  --terracotta-lt:#D99572;
  --sage:         #7C8B72;
  --line:         rgba(43,38,34,.12);
  --white:        #FFFFFF;

  --font-display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1240px;
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 26px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--espresso);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family: inherit; cursor:pointer; background:none; border:none; color:inherit; }
ul{ list-style:none; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

:focus-visible{
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 3px;
}

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

/* subtle grain overlay for warmth */
.grain{
  position: fixed; inset:0; z-index: 9999; pointer-events:none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%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");
}

/* ===========================================================
   TYPOGRAPHY
   =========================================================== */
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--espresso);
}
em{ font-style: italic; font-weight: 400; color: var(--terracotta); }

.eyebrow{
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content: "";
  width: 16px; height: 1px;
  background: var(--terracotta);
  display: inline-block;
}
.eyebrow-light{ color: var(--cream); }
.eyebrow-light::before{ background: var(--cream); }

.section-title{
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  max-width: 720px;
}
.section-title-center{ margin: 0 auto 8px; text-align:center; }
.lede{
  font-size: 17px;
  color: var(--espresso-70);
  max-width: 480px;
  margin-top: 18px;
  line-height: 1.6;
}

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 15px 28px;
  border-radius: 999px;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn-solid{
  background: var(--terracotta);
  color: var(--cream);
}
.btn-solid:hover{ background: var(--terracotta-dk); transform: translateY(-2px); }

.btn-line{
  border: 1.5px solid var(--espresso);
  color: var(--espresso);
}
.btn-line:hover{ background: var(--espresso); color: var(--cream); transform: translateY(-2px); }

.btn-ghost-light{
  border: 1.5px solid rgba(250,246,240,.55);
  color: var(--cream);
}
.btn-ghost-light:hover{ background: var(--cream); color: var(--espresso); transform: translateY(-2px); }

.btn-full{ width: 100%; }

/* ===========================================================
   HEADER
   =========================================================== */
.announce{
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  font-size: 12.5px;
  letter-spacing: .04em;
  padding: 9px 16px;
}

.site-header{
  position: sticky; top:0; z-index: 500;
  background: rgba(250,246,240,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease);
}
.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo{
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-mark{ color: var(--terracotta); }
.logo-word{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .01em;
}
.main-nav{
  display: flex;
  gap: 36px;
  font-size: 14.5px;
  font-weight: 500;
}
.main-nav a{
  position: relative;
  padding: 4px 0;
  color: var(--espresso-70);
  transition: color .25s;
}
.main-nav a:hover{ color: var(--terracotta); }
.main-nav a::after{
  content:"";
  position:absolute; left:0; bottom:-2px;
  width:0; height:1.5px;
  background: var(--terracotta);
  transition: width .3s var(--ease);
}
.main-nav a:hover::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:18px; }
.header-shop-btn{ padding: 11px 22px; font-size: 13px; }

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:32px; height:32px;
}
.nav-toggle span{
  width:100%; height:1.5px; background:var(--espresso);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.is-open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

/* ===========================================================
   HERO
   =========================================================== */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-img{
  width:100%; height:100%; object-fit: cover; object-position: 30% 18%;
  transform: scale(1.04);
  animation: heroZoom 16s var(--ease) forwards;
}
@keyframes heroZoom{ to{ transform: scale(1); } }
.hero-scrim{
  position:absolute; inset:0;
  background: linear-gradient(105deg, rgba(43,38,34,.78) 0%, rgba(43,38,34,.52) 38%, rgba(43,38,34,.18) 68%, rgba(43,38,34,.05) 100%);
}
.hero-content{
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width:100%;
}
.hero-title{
  font-size: clamp(46px, 8vw, 92px);
  line-height: 1.02;
  color: var(--cream);
  margin: 6px 0 22px;
  max-width: 14ch;
  animation: riseIn .9s var(--ease) .15s both;
}
.hero-sub{
  font-size: 18px;
  max-width: 460px;
  color: rgba(250,246,240,.88);
  line-height: 1.6;
  margin-bottom: 34px;
  animation: riseIn .9s var(--ease) .3s both;
}
.eyebrow-light{ animation: riseIn .9s var(--ease) 0s both; }
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; animation: riseIn .9s var(--ease) .45s both; }

@keyframes riseIn{
  from{ opacity:0; transform: translateY(18px); }
  to{ opacity:1; transform: translateY(0); }
}

.scroll-cue{
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 1;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color: rgba(250,246,240,.75);
  font-size: 11px; letter-spacing:.16em; text-transform:uppercase;
}
.scroll-cue-line{
  width:1px; height:34px; background: rgba(250,246,240,.45);
  position: relative; overflow:hidden;
}
.scroll-cue-line::after{
  content:""; position:absolute; top:-100%; left:0; width:100%; height:100%;
  background: var(--cream);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop{
  0%{ top:-100%; } 60%{ top:100%; } 100%{ top:100%; }
}

/* ===========================================================
   MARQUEE
   =========================================================== */
.marquee{
  background: var(--terracotta);
  color: var(--cream);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track{
  display: inline-flex;
  gap: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-track span{ flex-shrink:0; }
.dot{ font-size: 9px; opacity:.7; align-self:center; font-style:normal; }
@keyframes marqueeScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ===========================================================
   PHILOSOPHY
   =========================================================== */
.philosophy{ padding: 120px 0; }
.philosophy-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}
.philosophy-points{ margin-top: 48px; display:flex; flex-direction:column; gap:28px; }
.p-point{ display:flex; gap:22px; }
.p-num{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--terracotta);
  flex-shrink:0;
  padding-top: 3px;
  width: 42px;
}
.p-point h3{ font-size: 18px; margin-bottom: 6px; }
.p-point p{ color: var(--espresso-70); font-size: 15px; line-height:1.6; max-width:380px; }

.philosophy-visual{ position: relative; }
.phil-img-main{
  border-radius: var(--radius-l);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 40px 70px -30px rgba(43,38,34,.35);
}
.phil-video{
  display:block;
  background: var(--sand);
  object-position: center top;
}
.phil-img-float{
  position: absolute;
  width: 44%;
  bottom: -42px; left: -42px;
  border-radius: var(--radius-m);
  border: 6px solid var(--cream);
  box-shadow: 0 24px 48px -20px rgba(43,38,34,.4);
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* ===========================================================
   RITUALS / PRODUCT GRID
   =========================================================== */
.rituals{ padding: 100px 0 110px; background: var(--cream-deep); }
.rituals-head{ max-width: 680px; margin-bottom: 50px; }

.ritual-tabs{
  display:flex; gap:10px; margin-bottom: 44px; flex-wrap:wrap;
}
.rtab{
  padding: 10px 22px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--espresso-70);
  transition: all .25s var(--ease);
}
.rtab:hover{ border-color: var(--terracotta); color: var(--terracotta); }
.rtab.is-active{
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}

.product-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card{
  background: var(--white);
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card.is-hidden{ display:none; }
.product-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -28px rgba(43,38,34,.28);
}
.card-media{
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream);
}
.card-media img{
  width:100%; height:100%; object-fit: cover; object-position: center 30%;
  transition: transform .6s var(--ease);
}
.product-card:hover .card-media img{ transform: scale(1.06); }
.card-tag{
  position:absolute; top:14px; left:14px;
  background: rgba(250,246,240,.92);
  color: var(--terracotta-dk);
  font-size: 10.5px; font-weight:700; letter-spacing:.07em; text-transform:uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.card-body{ padding: 22px 22px 24px; flex:1; display:flex; flex-direction:column; }
.card-eyebrow{
  font-size: 11px; letter-spacing:.1em; text-transform:uppercase;
  color: var(--sage); font-weight:600; margin-bottom:6px;
}
.card-body h3{ font-size: 19px; line-height:1.3; margin-bottom: 8px; }
.card-note{ font-size: 13.5px; color: var(--espresso-45); margin-bottom: 16px; }
.card-link{
  margin-top:auto;
  font-size: 13.5px; font-weight:600;
  color: var(--terracotta);
  display:inline-flex; align-items:center; gap:6px;
  align-self:flex-start;
  border-bottom: 1px solid transparent;
  transition: gap .25s, border-color .25s;
}
.card-link span{ transition: transform .25s var(--ease); }
.card-link:hover{ border-color: var(--terracotta); }
.card-link:hover span{ transform: translateX(3px); }

.rituals-foot-note{
  margin-top: 40px;
  font-size: 13px;
  color: var(--espresso-45);
  text-align: center;
}

/* ===========================================================
   RITUAL MOMENT (editorial break)
   =========================================================== */
.ritual-moment{ background: var(--espresso); color: var(--cream); }
.rm-grid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 560px;
}
.rm-image{ overflow:hidden; }
.rm-image img{ width:100%; height:100%; object-fit:cover; object-position: 50% 20%;}
.rm-copy{
  display:flex; flex-direction:column; justify-content:center;
  padding: 70px 90px;
  max-width: 560px;
}
.rm-copy h2{ font-size: clamp(28px,3.4vw,40px); color:var(--cream); line-height:1.18; margin-bottom:20px; }
.rm-copy p{ color: rgba(250,246,240,.8); font-size:16px; line-height:1.7; margin-bottom:30px; }

/* ===========================================================
   ETHOS
   =========================================================== */
.ethos{ padding: 120px 0; text-align:center; }
.ethos .eyebrow{ justify-content:center; }
.ethos .lede{ margin: 18px auto 0; text-align:center; }
.ethos-grid{
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  text-align: left;
}
.ethos-card{ padding: 8px; }
.ethos-icon{ width:42px; height:42px; color: var(--terracotta); margin-bottom: 22px; }
.ethos-card h3{ font-size:17px; margin-bottom:10px; }
.ethos-card p{ font-size:14.5px; color: var(--espresso-70); line-height:1.65; }

.ethos-quote{
  margin: 80px auto 0;
  max-width: 680px;
  border-top: 1px solid var(--line);
  padding-top: 50px;
}
.ethos-quote blockquote{
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px,2.6vw,30px);
  line-height: 1.4;
  color: var(--espresso);
}
.ethos-quote-attr{
  margin-top:18px;
  font-size: 13px;
  letter-spacing:.06em;
  color: var(--espresso-45);
  text-transform: uppercase;
}

/* ===========================================================
   FOUNDER STRIP
   =========================================================== */
.founder{ background: var(--blush); }
.founder-grid{
  display:grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: stretch;
}
.founder-image{ overflow:hidden; min-height: 480px; }
.founder-image img{ width:100%; height:100%; object-fit:cover; object-position: top center; }
.founder-copy{
  padding: 80px 90px;
  display:flex; flex-direction:column; justify-content:center;
}
.founder-copy h2{ font-size: clamp(26px,3vw,36px); margin-bottom: 22px; }
.founder-copy p{ color: var(--espresso-70); font-size:15.5px; line-height:1.75; max-width: 520px; margin-bottom:16px; }

/* ===========================================================
   JOURNAL
   =========================================================== */
.journal{ padding: 120px 0; }
.journal-head{ max-width: 600px; margin-bottom: 56px; }
.journal-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.journal-card{
  border-top: 1.5px solid var(--espresso);
  padding-top: 26px;
}
.journal-num{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta);
}
.journal-card h3{ font-size:19px; margin: 16px 0 10px; line-height:1.35; }
.journal-card p{ font-size: 14.5px; color: var(--espresso-70); line-height:1.65; }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact{ background: var(--espresso); color: var(--cream); padding: 110px 0; }
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.contact-copy h2{ color: var(--cream); font-size: clamp(30px,3.6vw,46px); line-height:1.18; margin-bottom:22px; }
.contact-copy > p{ color: rgba(250,246,240,.78); font-size:16px; line-height:1.7; max-width:440px; margin-bottom:40px; }

.contact-channels{ display:flex; flex-direction:column; gap:14px; }
.contact-channel{
  display:flex; align-items:center; gap:16px;
  padding: 18px 20px;
  border: 1px solid rgba(250,246,240,.18);
  border-radius: var(--radius-m);
  transition: border-color .3s, background .3s, transform .3s var(--ease);
}
.contact-channel:hover{
  border-color: var(--terracotta-lt);
  background: rgba(250,246,240,.04);
  transform: translateX(4px);
}
.contact-channel svg{ width:22px; height:22px; flex-shrink:0; color: var(--terracotta-lt); }
.cc-label{ display:block; font-size:11px; letter-spacing:.08em; text-transform:uppercase; color: rgba(250,246,240,.55); margin-bottom:3px; }
.cc-value{ display:block; font-size:15px; font-weight:500; }

.contact-form{
  background: var(--cream);
  color: var(--espresso);
  border-radius: var(--radius-l);
  padding: 44px;
}
.contact-form h3{ font-size: 24px; margin: 4px 0 28px; }
.contact-form label{
  display:block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--espresso-70);
}
.optional{ font-weight:400; color: var(--espresso-45); text-transform:none; letter-spacing:0; }
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  margin-top: 8px;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--espresso);
  background: var(--white);
  transition: border-color .25s;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color: var(--terracotta);
  outline: none;
}
.form-note{
  margin-top: 14px;
  font-size: 12.5px;
  text-align: center;
  color: var(--espresso-45);
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer{ background: var(--cream-deep); padding-top: 80px; }
.footer-top{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 60px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p{ margin-top:14px; font-size:14px; color: var(--espresso-70); max-width:240px; line-height:1.6; }
.footer-col h4{ font-size:13px; letter-spacing:.08em; text-transform:uppercase; margin-bottom:18px; color: var(--espresso-45); }
.footer-col{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:14.5px; color: var(--espresso-70); transition: color .25s; }
.footer-col a:hover{ color: var(--terracotta); }

.footer-bottom{
  max-width: var(--container);
  margin: 0 auto;
  padding: 26px 32px 32px;
  display:flex; justify-content:space-between; align-items:center;
  font-size: 13px;
  color: var(--espresso-45);
}

/* ===========================================================
   MODAL
   =========================================================== */
.modal-overlay{
  position: fixed; inset:0; z-index: 1000;
  background: rgba(43,38,34,.6);
  display:flex; align-items:center; justify-content:center;
  padding: 24px;
  opacity:0; visibility:hidden;
  transition: opacity .35s var(--ease);
}
.modal-overlay.is-open{ opacity:1; visibility:visible; }
.modal-card{
  background: var(--cream);
  border-radius: var(--radius-l);
  max-width: 860px; width:100%;
  max-height: 88vh;
  overflow:auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transform: translateY(24px) scale(.98);
  transition: transform .4s var(--ease);
}
.modal-overlay.is-open .modal-card{ transform: translateY(0) scale(1); }
.modal-close{
  position:absolute; top:18px; right:18px; z-index:2;
  width:38px; height:38px; border-radius:50%;
  background: rgba(250,246,240,.92);
  font-size: 22px; line-height:1;
  display:flex; align-items:center; justify-content:center;
  color: var(--espresso);
  transition: background .25s;
}
.modal-close:hover{ background: var(--white); }
.modal-media{ background: var(--sand); position: relative; }
.modal-media img,
.modal-media video{ width:100%; height:100%; object-fit:cover; min-height: 320px; display:block; }
.modal-media .is-hidden{ display:none; }
.modal-info{ padding: 46px 40px; }
.modal-info h3{ font-size: 26px; margin: 6px 0 4px; line-height:1.25; }
.modal-size{ font-size:13.5px; color: var(--espresso-45); margin-bottom:18px; }
.modal-desc{ font-size:15px; color: var(--espresso-70); line-height:1.7; margin-bottom:20px; }
.modal-price{ font-family: var(--font-display); font-size:22px; color: var(--terracotta); margin-bottom:26px; }
.modal-actions{ display:flex; flex-direction:column; gap:12px; }
.modal-note{ margin-top:22px; font-size:12px; color: var(--espresso-45); line-height:1.6; }

/* ===========================================================
   TOAST
   =========================================================== */
.toast{
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--espresso); color: var(--cream);
  padding: 14px 26px; border-radius: 999px;
  font-size: 14px; font-weight:500;
  opacity:0; pointer-events:none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  z-index: 2000;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.3);
}
.toast.is-visible{ opacity:1; transform: translateX(-50%) translateY(0); }

/* ===========================================================
   SCROLL-REVEAL UTILITY
   =========================================================== */
.reveal{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible{ opacity:1; transform: translateY(0); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1080px){
  .philosophy-grid{ grid-template-columns: 1fr; gap:60px; }
  .philosophy-visual{ max-width: 480px; margin: 0 auto; }
  .product-grid{ grid-template-columns: repeat(2,1fr); }
  .ethos-grid{ grid-template-columns: repeat(2,1fr); }
  .journal-grid{ grid-template-columns: 1fr; gap:36px; max-width:480px; }
  .rm-grid, .founder-grid{ grid-template-columns: 1fr; }
  .rm-image, .founder-image{ min-height: 360px; }
  .rm-copy, .founder-copy{ padding: 60px 40px; }
  .contact-grid{ grid-template-columns: 1fr; gap: 56px; }
  .footer-top{ grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px){
  .section-inner{ padding: 0 22px; }
  .main-nav{ display:none; }
  .header-shop-btn{ display:none; }
  .nav-toggle{ display:flex; }
  .header-inner{ padding: 16px 22px; }

  .hero{ min-height: 88vh; }
  .hero-title{ max-width: 100%; }
  .hero-cta{ flex-direction:column; align-items:flex-start; }
  .hero-cta .btn{ width:100%; justify-content:center; }

  .philosophy{ padding: 80px 0; }
  .phil-img-float{ width: 50%; bottom:-28px; left:-18px; }

  .rituals{ padding: 70px 0 80px; }
  .product-grid{ grid-template-columns: 1fr; }

  .ethos{ padding: 80px 0; }
  .ethos-grid{ grid-template-columns: 1fr; text-align:center; }
  .ethos-card{ display:flex; flex-direction:column; align-items:center; }

  .rm-copy, .founder-copy{ padding: 48px 24px; }
  .rm-copy h2, .founder-copy h2{ font-size: 28px; }

  .journal{ padding: 80px 0; }

  .contact{ padding: 80px 0; }
  .contact-form{ padding: 30px; }

  .footer-top{ grid-template-columns: 1fr; gap: 36px; padding-bottom:40px; }
  .footer-bottom{ flex-direction:column; gap:8px; text-align:center; }

  .modal-card{ grid-template-columns: 1fr; }
  .modal-media img, .modal-media video{ min-height: 220px; }
  .modal-info{ padding: 32px 26px; }

  .announce p{ font-size: 11.5px; padding: 0 30px; }
}

@media (max-width: 420px){
  .hero-title{ font-size: 42px; }
}
