/* ================================================================
   BATH BRUSH & BEYOND — about.css
   Styles specific to about.html — inherits all of styles.css
   ================================================================ */

/* ─── HERO ───────────────────────────────── */
.about-hero {
  display:grid;
  grid-template-columns:1.1fr 1fr;
  min-height:88vh;
  overflow:hidden;
}

/* Left */
.about-hero-l {
  background:var(--cream);
  display:flex;
  align-items:center;
  padding-top:90px;
}

.about-hero-body {
  padding:clamp(3rem,5vw,5.5rem) clamp(2rem,5vw,5rem);
  display:flex;
  flex-direction:column;
  gap:0;
}

.about-hero-eyebrow {
  display:inline-flex; align-items:center; gap:.75rem;
  font-size:.62rem; font-weight:500; letter-spacing:.22em;
  text-transform:uppercase; color:var(--sage);
  margin-bottom:2.25rem;
  opacity:0; animation:fadeUp 1s var(--ease-out) .3s forwards;
}

.about-hero-h1 {
  font-family:var(--fd);
  font-size:clamp(4rem,8.5vw,11rem);
  font-weight:300; line-height:.9; letter-spacing:-.025em;
  color:var(--charcoal);
  margin-bottom:2.25rem;
}
.about-hero-h1 em { font-style:italic; color:var(--sage); }

.about-hero-sub {
  font-family:var(--fd);
  font-style:italic;
  font-size:clamp(1.1rem,1.8vw,1.4rem);
  font-weight:300; line-height:1.6;
  color:rgba(61,61,61,0.65);
  max-width:42ch;
  margin-bottom:2.75rem;
  opacity:0; animation:fadeUp 1s var(--ease-out) .85s forwards;
}

/* Right — photo */
.about-hero-r {
  background:var(--linen);
  position:relative;
  display:flex;
  flex-direction:column;
  padding-top:90px;
}

.about-photo-wrap {
  flex:1;
  position:relative;
  overflow:hidden;
}

/* Photo placeholder */
.about-photo-placeholder {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  background:var(--linen);
}

.placeholder-inner {
  display:flex; flex-direction:column; align-items:center;
  gap:1rem; text-align:center;
  padding:2rem;
}

.placeholder-icon {
  width:70px; height:70px; border-radius:50%;
  border:1.5px dashed rgba(61,61,61,0.25);
  display:flex; align-items:center; justify-content:center;
  color:rgba(61,61,61,0.3);
  margin-bottom:.5rem;
}

.placeholder-label {
  font-family:var(--fd); font-style:italic;
  font-size:1.1rem; font-weight:300;
  color:rgba(61,61,61,0.45); line-height:1.5;
}

.placeholder-hint {
  font-family:var(--fb);
  font-size:.65rem; letter-spacing:.1em;
  color:rgba(61,61,61,0.28);
  font-style:normal;
  background:rgba(61,61,61,0.06);
  padding:.35rem .85rem; border-radius:100px;
}

/* When photo is added — img takes full panel */
.about-photo-wrap img {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; object-position:center top;
}

/* Caption strip */
.about-hero-caption {
  display:flex; align-items:center; gap:.75rem;
  padding:1.25rem clamp(1.5rem,3vw,2.5rem);
  border-top:1px solid rgba(61,61,61,0.1);
  font-size:.6rem; letter-spacing:.18em; text-transform:uppercase;
  color:rgba(61,61,61,0.3);
}

/* ─── STORY ──────────────────────────────── */
.about-story-section { background:var(--cream-soft); }

.about-story-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(3rem,7vw,8.5rem);
  align-items:start;
}

.about-story-left .sec-tag { display:block; margin-bottom:1.5rem; }

.about-story-quote {
  font-family:var(--fd); font-style:italic;
  font-size:clamp(1.5rem,2.6vw,2.2rem);
  font-weight:300; line-height:1.4;
  color:var(--charcoal);
  padding-left:1.75rem;
  border-left:2.5px solid var(--sage);
}

.about-story-right p {
  font-size:clamp(.9rem,1.3vw,1rem);
  line-height:1.85; color:rgba(61,61,61,0.62);
  margin-bottom:1.25rem;
}
.about-story-right p:last-child { margin-bottom:0; }

/* ─── BREEDS ─────────────────────────────── */
.about-breeds-section { background:#fff; }

.about-breeds-head {
  display:grid; grid-template-columns:1fr 1fr;
  gap:3rem; align-items:end;
  margin-bottom:clamp(2.5rem,4vw,4rem);
}
.about-breeds-head .sec-tag { display:block; margin-bottom:.75rem; }
.about-breeds-h2 {
  font-family:var(--fd); font-size:clamp(2.5rem,5vw,4.5rem);
  font-weight:300; line-height:1.06; letter-spacing:-.01em;
  color:var(--charcoal);
}
.about-breeds-h2 em { font-style:italic; color:var(--sage); }
.about-breeds-head p {
  font-size:.93rem; line-height:1.78;
  color:rgba(61,61,61,0.52); max-width:44ch; align-self:end;
}

.breeds-grid {
  display:flex; flex-direction:column;
  border-top:1px solid rgba(61,61,61,0.12);
  margin-bottom:clamp(3rem,5vw,5rem);
}

.breed-row {
  display:grid; grid-template-columns:1fr 2fr;
  gap:clamp(2rem,5vw,6rem);
  align-items:baseline;
  padding-block:clamp(1.5rem,2.5vw,2.25rem);
  border-bottom:1px solid rgba(61,61,61,0.12);
  transition:background .25s;
  cursor:default;
}
.breed-row:hover { background:rgba(135,158,133,0.05); }

.breed-name {
  font-family:var(--fd); font-style:italic;
  font-size:clamp(1.3rem,2vw,1.75rem);
  font-weight:300; color:var(--charcoal); line-height:1;
  transition:color .3s, transform .4s var(--ease-out);
  display:inline-block;
}
.breed-row:hover .breed-name {
  color:var(--sage);
  transform:translateX(.5rem);
}

.breed-desc {
  font-size:.9rem; line-height:1.72;
  color:rgba(61,61,61,0.55);
}

/* Anxious & Senior callout */
.breeds-callout {
  background:var(--charcoal);
  border-radius:16px;
  overflow:hidden;
}
.breeds-callout-inner {
  display:grid; grid-template-columns:1fr 2fr;
  gap:clamp(2rem,5vw,5rem);
  align-items:center;
  padding:clamp(2.5rem,4vw,4rem);
}
.breeds-callout-tag {
  display:block;
  font-size:.6rem; font-weight:500; letter-spacing:.22em;
  text-transform:uppercase; color:var(--taupe);
  margin-bottom:.85rem;
}
.breeds-callout-title {
  font-family:var(--fd); font-style:italic;
  font-size:clamp(1.75rem,3vw,2.75rem);
  font-weight:300; line-height:1.1;
  color:var(--cream);
}
.breeds-callout-right p {
  font-size:.93rem; line-height:1.78;
  color:rgba(237,233,224,0.55);
  max-width:50ch; margin-bottom:2rem;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width:900px) {
  .about-hero { grid-template-columns:1fr; min-height:auto; }
  .about-hero-l { padding-top:80px; }
  .about-hero-r { height:65vw; min-height:280px; max-height:440px; padding-top:0; }
  .about-story-grid { grid-template-columns:1fr; gap:2.5rem; }
  .about-breeds-head { grid-template-columns:1fr; gap:1.5rem; }
  .breed-row { grid-template-columns:1fr; gap:.5rem; }
  .breeds-callout-inner { grid-template-columns:1fr; gap:1.5rem; }
}

@media (max-width:600px) {
  .about-hero-h1 { font-size:clamp(3.5rem,14vw,5rem); }
  .about-hero-body { padding:clamp(2rem,6vw,3.5rem) clamp(1.5rem,5vw,2.5rem); }
  .about-hero-sub { font-size:1rem; margin-bottom:2rem; }
  .about-hero-r { height:55vw; min-height:240px; }
  .about-story-quote { font-size:clamp(1.2rem,4.5vw,1.6rem); padding-left:1.25rem; }
  .about-breeds-h2 { font-size:clamp(2rem,8vw,3rem); }
  .breed-name { font-size:clamp(1.2rem,5vw,1.5rem); }
  .breeds-callout-inner { padding:clamp(1.75rem,5vw,2.5rem); }
  .breeds-callout-title { font-size:clamp(1.5rem,6vw,2rem); }
  .footer { padding-bottom:7rem; }
}

@media (max-width:480px) {
  .about-hero-h1 { font-size:clamp(3rem,12vw,4rem); }
  .about-hero-r { height:50vw; }
}