/* ===== Hannah Monksummers — brand tokens ===== */
:root {
  --red: #8E1B15;        /* page background, default surface */
  --oxblood: #66100C;    /* darker sections */
  --hearth: #B0281C;     /* phoenix section only */
  --gold: #EAB84A;       /* phoenix moment only */
  --cream: #FCEFE2;      /* nearly all text, buttons */
  --card-cream: #F8E4D0; /* shop / offer cards */

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(252,239,226,.7);
  margin-bottom: 16px;
}
.eyebrow-light { color: rgba(252,239,226,.8); }
.eyebrow-dark { color: rgba(142,27,21,.65); }
.eyebrow-gold { color: var(--gold); display: block; margin: 20px 0 14px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; color: var(--cream); }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-cream { background: var(--cream); color: var(--red); }
.btn-cream:hover { background: #F8E4D0; }
.btn-red { background: var(--red); color: var(--cream); }
.btn-red:hover { background: var(--oxblood); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(252,239,226,.4);
  color: var(--cream);
}
.btn-outline:hover { border-color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--oxblood); }
.btn-gold:hover { background: #dba936; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--red);
  border-bottom: 1px solid rgba(252,239,226,.12);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 12px; line-height: 1; }
.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}
.logo-badge img { width: 100%; height: 100%; object-fit: contain; }
.brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .01em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.site-nav a:not(.btn) {
  font-size: 13.5px;
  color: rgba(252,239,226,.85);
  font-weight: 600;
}
.site-nav a:not(.btn):hover { color: var(--gold); }
.site-nav a.active {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* ===== Split block (photo + text, reused for heroes / feature bands) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.split.reverse .split-photo { order: 2; }
.split-photo { position: relative; min-height: 420px; }
.split-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.split-photo img.obj-top, .mosaic-quad img.obj-top { object-position: 50% 15%; }
.mosaic-quad img.obj-eyes { object-position: 50% 39%; }
.beginning-photo { min-height: 650px; }
.beginning-photo img.obj-beginning { object-position: 50% 59%; }
.work-hero-photo { min-height: 460px; }
.work-hero-photo img.obj-work-hero { object-position: 50% 8%; }
.work-corner-photo { min-height: 760px; }
.work-corner-photo img.obj-work-corner { object-position: 50% 3%; }
.mosaic-quad .mum-photo { min-height: 800px; }

.phoenix-band .split-photo { min-height: 680px; }
.split-text {
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-text h1, .split-text h2 { font-size: 36px; line-height: 1.14; margin: 0 0 14px; }
.split-text p { font-size: 15.5px; line-height: 1.65; color: rgba(252,239,226,.9); max-width: 480px; margin: 0 0 20px; }
.split-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.bg-red { background: var(--red); }
.bg-oxblood { background: var(--oxblood); }
.bg-hearth { background: var(--hearth); }
.bg-cream { background: var(--card-cream); }
.bg-cream h1, .bg-cream h2, .bg-cream h3 { color: var(--red); }
.bg-cream p { color: rgba(142,27,21,.82); }
.bg-cream .eyebrow { color: rgba(142,27,21,.65); }

.squiggle { display: block; margin: 2px 0 22px; }

/* ===== Auto-cycling photo slideshow (pure CSS crossfade) ===== */
.fade-slot { position: relative; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; }
.fade-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.fade-slot.tinted img { filter: grayscale(1) sepia(1) hue-rotate(-30deg) saturate(2.4) brightness(.7); }

/* Each image shown ~4s with a short crossfade, looping — timing scales with image count */
.fade-slot.count3 img { animation: fadeCycle3 12s infinite; }
.fade-slot.count3 img:nth-child(1) { animation-delay: 0s; }
.fade-slot.count3 img:nth-child(2) { animation-delay: -4s; }
.fade-slot.count3 img:nth-child(3) { animation-delay: -8s; }
@keyframes fadeCycle3 {
  0%, 29%  { opacity: 1; }
  33%, 96% { opacity: 0; }
  100%     { opacity: 1; }
}

.fade-slot.count4 img { animation: fadeCycle4 16s infinite; }
.fade-slot.count4 img:nth-child(1) { animation-delay: 0s; }
.fade-slot.count4 img:nth-child(2) { animation-delay: -4s; }
.fade-slot.count4 img:nth-child(3) { animation-delay: -8s; }
.fade-slot.count4 img:nth-child(4) { animation-delay: -12s; }
@keyframes fadeCycle4 {
  0%, 22%    { opacity: 1; }
  25%, 97%   { opacity: 0; }
  100%       { opacity: 1; }
}

.fade-slot.count5 img { animation: fadeCycle5 20s infinite; }
.fade-slot.count5 img:nth-child(1) { animation-delay: 0s; }
.fade-slot.count5 img:nth-child(2) { animation-delay: -4s; }
.fade-slot.count5 img:nth-child(3) { animation-delay: -8s; }
.fade-slot.count5 img:nth-child(4) { animation-delay: -12s; }
.fade-slot.count5 img:nth-child(5) { animation-delay: -16s; }
@keyframes fadeCycle5 {
  0%, 17.5%   { opacity: 1; }
  20%, 97.5%  { opacity: 0; }
  100%        { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-slot img { animation: none; opacity: 0; }
  .fade-slot img:first-child { opacity: 1; }
}

/* ===== Home hero (compact — fit above the fold) ===== */
#home-hero { height: calc(100vh - 90px); min-height: 560px; max-height: 700px; }
#home-hero .split-text { padding: 40px 60px; }
#home-hero .split-text h1 { font-size: 34px; margin-bottom: 10px; }
#home-hero .eyebrow { margin-bottom: 8px; }
#home-hero .squiggle { margin: 0 0 12px; width: 130px; }
#home-hero .split-text p { font-size: 15px; line-height: 1.55; margin-bottom: 18px; }
#home-hero .btn { padding: 11px 24px; }

/* ===== Page hero (centered) ===== */
.page-hero { padding: 72px 40px 52px; text-align: center; }
.page-hero h1 { font-size: 46px; line-height: 1.12; max-width: 700px; margin: 0 auto 16px; }
.page-hero p { max-width: 560px; margin: 0 auto; font-size: 16.5px; line-height: 1.75; color: rgba(252,239,226,.88); }

/* ===== Card grids (ways to work together / two ways in) ===== */
.cards-section { padding: 64px 40px; text-align: center; }
.cards-section h2 { font-size: 32px; margin: 0 auto 36px; max-width: 560px; }
.cards-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
}
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 780px; }
.card {
  background: var(--card-cream);
  color: var(--red);
  border-radius: 20px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card.has-photo { padding: 0 0 30px; overflow: hidden; }
.card.has-photo img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.card.has-photo .card-body { padding: 26px 28px 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-num { font-family: var(--font-display); font-size: 13px; color: rgba(142,27,21,.5); }
.card h3 { font-family: var(--font-display); font-size: 21px; font-weight: 500; color: var(--oxblood); }
.card p { font-size: 14.5px; line-height: 1.7; color: rgba(142,27,21,.8); flex: 1; }
.card-link { font-weight: 700; font-size: 13.5px; color: var(--red); }
.card-link:hover { color: var(--oxblood); }
.card .btn { align-self: flex-start; margin-top: 4px; }

/* ===== Quote bands ===== */
.quote-band { padding: 52px 40px; text-align: center; }
.quote-band p { font-family: var(--font-display); font-style: italic; font-size: 28px; line-height: 1.4; max-width: 700px; margin: 0 auto; color: var(--cream); }
.quote-band .lotus, .cta-band .lotus { display: block; font-size: 24px; color: var(--gold); margin-bottom: 22px; }
.quote-band .signature { display: block; margin-top: 22px; font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--gold); }

/* ===== Mosaic quad (About "becoming a mum" block) ===== */
.mosaic-quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.mosaic-quad > div { position: relative; min-height: 320px; display: flex; flex-direction: column; justify-content: center; }
.mosaic-quad .split-text { padding: 40px 44px; }
.mosaic-quad img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== Qualify list ("This is for you if...") ===== */
.qualify-section { padding: 64px 40px; text-align: center; }
.qualify-section h2 { font-size: 34px; margin: 0 auto 40px; }
.qualify-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; text-align: left; }
.qualify-item {
  border: 1px solid rgba(252,239,226,.18);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.qualify-item .mark { color: var(--gold); font-size: 16px; margin-top: 4px; flex-shrink: 0; }
.qualify-item h3 { font-family: var(--font-display); font-weight: 500; font-size: 18px; margin-bottom: 6px; }
.qualify-item p { font-size: 14.5px; line-height: 1.6; color: rgba(252,239,226,.85); margin: 0; }

/* ===== Testimonials ===== */
.testimonials { padding: 72px 40px; text-align: center; border-top: 1px solid rgba(252,239,226,.15); }
.testimonials > .eyebrow { margin-bottom: 40px; }
.testimonials-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  text-align: left;
}
.testimonial-mark { font-family: var(--font-display); font-size: 34px; color: var(--gold); line-height: 1; margin-bottom: 14px; display: block; }
.testimonial p { font-size: 14.5px; line-height: 1.7; color: rgba(252,239,226,.88); margin: 0 0 18px; }
.testimonial .name { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 16px; }

/* ===== CTA band (closing sections, all pages) ===== */
.cta-band { background: var(--oxblood); padding: 64px 40px; text-align: center; }
.cta-band h2 { font-size: 36px; line-height: 1.12; margin: 0 0 14px; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; color: rgba(252,239,226,.86); font-size: 16px; line-height: 1.75; }

/* ===== Contact ===== */
.contact-wrap { padding: 64px 40px; display: flex; justify-content: center; }
.contact-card { background: var(--oxblood); border-radius: 22px; padding: 48px 44px; max-width: 520px; width: 100%; }
.contact-card h1 { font-size: 27px; margin-bottom: 30px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; margin-bottom: 8px; text-transform: uppercase; color: rgba(252,239,226,.75); }
.field input, .field textarea {
  width: 100%;
  background: rgba(252,239,226,.08);
  border: 1px solid rgba(252,239,226,.25);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14.5px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(252,239,226,.4); }
.contact-card .btn { margin-top: 6px; border: none; cursor: pointer; }

/* ===== Shop arrivals ===== */
.arrivals { background: var(--oxblood); padding: 64px 40px 72px; text-align: center; }
.arrivals h2 { font-size: 32px; margin: 0 auto 12px; }
.arrivals > p { max-width: 520px; margin: 0 auto 36px; color: rgba(252,239,226,.85); }
.arrivals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 260px)); gap: 24px; justify-content: center; }
.arrival-card { background: var(--card-cream); border-radius: 18px; overflow: hidden; text-align: left; }
.arrival-photo { position: relative; }
.arrival-photo img { aspect-ratio: 1; object-fit: cover; width: 100%; display: block; }
.arrival-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--red); color: var(--cream);
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 5px 12px; border-radius: 100px;
}
.arrival-body { padding: 18px 20px 22px; }
.arrival-body h4 { font-family: var(--font-display); font-weight: 500; color: var(--red); font-size: 17px; margin-bottom: 6px; }
.arrival-body .price { display: block; color: var(--oxblood); font-weight: 700; font-size: 14px; margin-bottom: 16px; }
.arrival-body .btn { width: 100%; text-align: center; }

/* ===== Ethos strip ===== */
.ethos { background: var(--oxblood); }
.ethos-grid {
  padding: 52px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.ethos-item { display: flex; gap: 14px; align-items: flex-start; }
.ethos-mark { font-family: var(--font-display); font-size: 22px; color: rgba(252,239,226,.85); line-height: 1; }
.ethos-item h3 { font-size: 19px; margin-bottom: 6px; }
.ethos-item p { font-size: 14px; line-height: 1.6; color: rgba(252,239,226,.8); }

/* ===== Products (shared) ===== */
.product { padding: 60px 0; }
.product-dark { background: var(--oxblood); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.product-grid-reverse .product-photo-order2 { order: 2; }
.product-photo {
  background: var(--card-cream);
  padding: 14px;
  border-radius: 26px;
  box-shadow: 0 26px 60px -30px rgba(0,0,0,.5);
  max-width: 420px;
  margin: 0 auto;
}
.product-photo img {
  aspect-ratio: 4/5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.product-copy h2 { font-size: 36px; line-height: 1.1; margin: 0 0 14px; }
.product-copy p { font-size: 15.5px; line-height: 1.65; color: rgba(252,239,226,.88); max-width: 450px; margin: 0 0 20px; }

.swatches { margin-bottom: 16px; }
.swatch-label { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(252,239,226,.65); font-weight: 600; }
.swatch-row { display: flex; gap: 11px; margin-top: 12px; }
.swatch { width: 30px; height: 30px; border-radius: 50%; box-shadow: 0 0 0 1.5px var(--red), 0 0 0 3px rgba(252,239,226,.35); }

.sizes { display: flex; gap: 10px; margin: 18px 0 28px; }
.size-pill { border: 1.5px solid rgba(252,239,226,.35); border-radius: 8px; padding: 7px 16px; font-size: 13.5px; font-weight: 600; }

.tag-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.tag { background: rgba(252,239,226,.12); border-radius: 100px; padding: 7px 15px; font-size: 12.5px; font-weight: 600; }

.buy-row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.price { font-family: var(--font-display); font-weight: 500; font-size: 34px; }
.price small { font-size: 20px; color: rgba(252,239,226,.7); }

/* ===== Gift sets ===== */
.gifts { background: var(--card-cream); color: var(--red); }
.gifts-grid {
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.gifts-grid, .gifts-photos { max-width: 900px; margin: 0 auto; }
.gifts-copy h2 { font-size: 36px; line-height: 1.1; margin: 0 0 14px; color: var(--red); }
.gifts-copy p { font-size: 15.5px; line-height: 1.65; color: rgba(142,27,21,.82); max-width: 440px; margin: 0 0 22px; }
.gifts-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 340px; }
.gifts-photos img { aspect-ratio: 1; object-fit: cover; border-radius: 20px; box-shadow: 0 18px 44px -26px rgba(142,27,21,.6); }
.gift-photo-2 { margin-top: 36px; }

/* ===== Workshops ===== */
.workshops { background: var(--oxblood); padding: 60px 0; }
.workshops-intro { max-width: 640px; margin: 0 auto 36px; text-align: center; }
.workshops-intro h2 { font-size: 36px; line-height: 1.1; margin: 0 0 14px; }
.workshops-intro p { font-size: 16px; line-height: 1.75; color: rgba(252,239,226,.88); }

.workshops-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 56px;
}
.workshops-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
}
.workshops-gallery img:first-child { aspect-ratio: unset; }

.workshops-details {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  background: rgba(252,239,226,.06);
  border: 1px solid rgba(252,239,226,.14);
  border-radius: 26px;
  padding: 44px;
}
.whats-included h3 { font-size: 20px; margin-bottom: 16px; }
.whats-included ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.whats-included li {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(252,239,226,.88);
  padding-left: 22px;
  position: relative;
}
.whats-included li::before {
  content: '\2661';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.workshops-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; justify-content: center; }
.workshops-price { font-family: var(--font-display); font-size: 30px; }
.workshops-price small { display: block; font-family: var(--font-body); font-size: 13px; color: rgba(252,239,226,.7); margin-top: 6px; font-weight: 600; letter-spacing: .02em; }
.workshops-note { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--gold); }

.gold-text { color: var(--gold); }

.section-divider { border-top: 1px solid rgba(252,239,226,.15); }

/* ===== Reiki levels ===== */
.levels-section { padding: 64px 40px; }
.levels-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.level-card { background: var(--card-cream); border-radius: 24px; padding: 40px 44px; }
.level-card .level-eyebrow { color: var(--red); font-family: var(--font-display); font-weight: 600; font-size: 15px; display: block; margin-bottom: 4px; }
.level-card h3 { color: var(--oxblood); font-size: 28px; margin-bottom: 18px; }
.level-card p { color: rgba(102,16,12,.82); font-size: 15.5px; line-height: 1.7; margin: 0 0 26px; max-width: 620px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ===== Footer ===== */
.site-footer { background: var(--oxblood); border-top: 1px solid rgba(252,239,226,.12); }
.footer-inner {
  padding: 52px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-name { font-family: var(--font-display); font-weight: 600; font-size: 22px; }
.footer-motto { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--gold); margin-top: 8px; }
.footer-note { font-size: 13px; color: rgba(252,239,226,.7); max-width: 360px; text-align: right; line-height: 1.6; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .wrap { padding: 0 24px; }
  .header-inner { padding: 16px 24px; }
  .site-nav { gap: 10px 16px; row-gap: 8px; }
  .site-nav a:not(.btn) { font-size: 12.5px; }
  .header-inner .brand { width: 100%; }
  .header-inner .site-nav { width: 100%; }

  .split, .mosaic-quad { grid-template-columns: 1fr; }
  #home-hero { height: auto; min-height: 0; max-height: none; }
  .mosaic-quad { grid-template-rows: auto; }
  .split.reverse .split-photo { order: 0; }
  .split-photo, .mosaic-quad > div { min-height: 260px; }
  .phoenix-band .split-photo { min-height: 320px; }
  .mosaic-quad .mum-photo { min-height: 300px; }
  .beginning-photo { min-height: 300px; }
  .work-hero-photo { min-height: 300px; }
  .why-text { order: 1; }
  .why-photo { order: 2; }
  .work-corner-photo { min-height: 300px; }
  .split-text, .mosaic-quad .split-text { padding: 40px 24px; }
  .split-text h1, .split-text h2, #home-hero .split-text h1 { font-size: 28px; }

  .page-hero { padding: 56px 24px 40px; }
  .page-hero h1 { font-size: 30px; }

  .cards-section { padding: 48px 24px; }
  .cards-grid, .cards-grid.cols-2 { grid-template-columns: 1fr; }

  .qualify-section { padding: 48px 24px; }
  .qualify-section h2 { font-size: 26px; margin-bottom: 28px; }
  .qualify-item { padding: 18px 20px; }

  .testimonials { padding: 48px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 32px; }

  .levels-section { padding: 48px 24px; }
  .level-card { padding: 28px 26px; }
  .level-card h3 { font-size: 24px; }

  .quote-band { padding: 40px 24px; }
  .quote-band p { font-size: 21px; }

  .cta-band { padding: 48px 24px; }
  .cta-band h2 { font-size: 28px; }

  .contact-wrap { padding: 40px 24px; }
  .contact-card { padding: 34px 26px; }

  .arrivals { padding: 48px 24px 56px; }

  .ethos-grid { grid-template-columns: 1fr; padding: 40px 24px; gap: 28px; }

  .product-grid, .gifts-grid, .workshops-details {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }
  .product-grid-reverse .product-photo-order2 { order: 0; }

  .product { padding: 56px 0; }
  .product-copy h2, .gifts-copy h2, .workshops-intro h2 { font-size: 32px; }

  .gifts-grid { padding: 56px 24px; }
  .gifts-photos { max-width: 360px; }

  .workshops-gallery { grid-template-columns: 1fr 1fr; }
  .workshops-gallery img:first-child { grid-column: span 2; aspect-ratio: 16/10; }

  .footer-inner { padding: 40px 24px; }
  .footer-note { text-align: left; }
}

@media (max-width: 520px) {
  .workshops-gallery { grid-template-columns: 1fr; }
  .workshops-gallery img:first-child { grid-column: auto; aspect-ratio: 4/5; }
}
