/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--cream-1);
  padding: clamp(80px, 12vw, 160px) 0;
}
.testi-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testi-card {
  background: var(--bg);
  padding: 32px 28px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card.featured {
  background: var(--ink-1);
  color: var(--cream-1);
  grid-row: span 2;
}
.testi-card.featured .testi-txt { font-size: 22px; }
.testi-stars {
  color: var(--terracotta);
  font-size: 14px;
  letter-spacing: 0.2em;
}
.testi-txt {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  font-style: italic;
  flex: 1;
}
.testi-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--ink-1) 10%, transparent);
}
.testi-card.featured .testi-foot { border-top-color: color-mix(in srgb, var(--cream-1) 18%, transparent); }
.testi-foot strong {
  display: block;
  font-family: var(--body);
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.testi-foot span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.testi-card.featured .testi-foot span { color: color-mix(in srgb, var(--cream-1) 60%, transparent); }
.testi-date { color: var(--terracotta) !important; }

.testi-stats {
  max-width: var(--max);
  margin: clamp(40px, 6vw, 80px) auto 0;
  padding: 32px var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid color-mix(in srgb, var(--ink-1) 12%, transparent);
}
.testi-stats > div { text-align: center; }
.testi-stats strong {
  display: block;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--terracotta);
}
.testi-stats strong small { font-size: 0.4em; vertical-align: top; }
.testi-stats span {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ============ INSTAGRAM ============ */
.insta-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) var(--pad);
}
.insta-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(32px, 5vw, 56px);
  gap: 32px;
  flex-wrap: wrap;
}
.insta-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}
.insta-item image-slot {
  display: block;
  width: 100%;
  height: 100%;
}
.insta-note {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
}

/* ============ BOOK CTA BAND ============ */
.book-cta-band {
  background: var(--terracotta);
  color: var(--cream-1);
  padding: clamp(60px, 10vw, 120px) var(--pad);
}
.book-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.book-cta-band h2 {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.book-cta-band p {
  font-size: 18px;
  margin: 0 0 32px;
  color: color-mix(in srgb, var(--cream-1) 85%, transparent);
}
.book-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary.big-cta {
  background: var(--ink-1);
  font-size: 16px;
  padding: 18px 28px;
}
.btn-primary.big-cta:hover { background: var(--cream-1); color: var(--ink-1); }

/* ============ FLOATING BOOK BTN ============ */
.floating-book {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--ink-1);
  color: var(--cream-1);
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.35);
  z-index: 80;
  transition: transform .25s, background .25s;
  animation: floatIn .5s .8s ease both;
}
@keyframes floatIn {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.floating-book:hover { transform: translateY(-2px); background: var(--terracotta); }
.fb-icon {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream-1);
  font-size: 12px;
  transition: background .25s;
}
.floating-book:hover .fb-icon { background: var(--cream-1); color: var(--terracotta); }

/* ============ ADMIN CONFIRM ADDRESS ============ */
.confirm-address {
  margin-top: 16px;
  padding: 16px;
  background: color-mix(in srgb, var(--terracotta) 18%, transparent);
  border-radius: 4px;
  border-left: 3px solid var(--terracotta);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.confirm-addr-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--cream-1) 65%, transparent);
}
.confirm-address strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--cream-1);
}
.confirm-map-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--terracotta);
  text-decoration: none;
  margin-top: 4px;
  border-bottom: 1px solid var(--terracotta);
  align-self: flex-start;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card.featured { grid-row: auto; }
  .testi-stats { grid-template-columns: 1fr; gap: 24px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .floating-book { bottom: 12px; right: 12px; padding: 12px 18px; font-size: 13px; }
}
