:root {
  --red:      #b60000;
  --red-dark: #8a0000;
  --red-glow: rgba(182,0,0,0.14);
  --bg:       #F8F4F0;
  --card:     #FFFFFF;
  --text:     #1a1208;
  --muted:    #7a6a58;
  --border:   #e4d9cf;
  --input-bg: #FAF6F2;
}

body {
  background: var(--bg);
  font-family: 'DM Sans', Arial, sans-serif;
  color: var(--text);
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.appt-hero {
  position: relative;
  height: 300px;
  background-image: url('/Photos/shopbg.jpg');
  background-size: cover;
  background-position: center 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.appt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.35) 20%,
      rgba(15,0,0,0.72) 70%,
      rgba(0,0,0,0.90) 100%
    );
}
.appt-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
}
.appt-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(182,0,0,0.22);
  border: 1px solid rgba(182,0,0,0.5);
  border-radius: 40px;
  padding: 5px 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #ff4040;
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}
.appt-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 5.5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-shadow: 0 4px 28px rgba(0,0,0,0.5);
}
.appt-hero-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  letter-spacing: 0.3px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 5.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-shadow: 0 4px 28px rgba(0,0,0,0.5);
}
.hero-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  font-style: italic;
}

.appt-hero-content h1 { margin: 0; }
.appt-hero-content p  { margin: 0; }


/* ══════════════════════════════════════════════════════════
   STORY SECTION
══════════════════════════════════════════════════════════ */
.about-wrap {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* Est. badge strip */
.story-meta-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 48px 0 40px;
}
.meta-stat {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 20px 12px;
  border-right: 1px solid var(--border);
}
.meta-stat:last-child { border-right: none; }
.meta-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.meta-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Story text block */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 60px;
}
.story-pull {
  position: sticky;
  top: 24px;
}
.story-pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 16px;
}
.story-pull-quote span {
  color: var(--red);
}
.story-pull-divider {
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 14px;
}
.story-pull-since {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.story-text p {
  font-size: 0.95rem;
  color: #4a3f35;
  line-height: 1.8;
  margin-bottom: 18px;
}
.story-text p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════
   WHAT MAKES US DIFFERENT — 3 PILLARS
══════════════════════════════════════════════════════════ */
.pillars-section {
  margin-bottom: 60px;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.section-label-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section-label-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pillar-card {
  background: var(--card);
  border-radius: 14px;
  border-top: 3px solid var(--red);
  box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 6px 20px rgba(0,0,0,0.07), 0 0 0 1px var(--border);
  padding: 24px 20px 22px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 14px 32px rgba(0,0,0,0.11), 0 0 0 1px rgba(182,0,0,0.2);
}
.pillar-icon {
  width: 44px;
  height: 44px;
  background: #FFF0F0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}
.pillar-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   LOCATION DARK CARD
══════════════════════════════════════════════════════════ */
.location-card {
  background: #111111;
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.location-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 40%; height: 200%;
  background: radial-gradient(ellipse, rgba(182,0,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.location-left { position: relative; z-index: 1; }
.location-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,60,60,0.9);
  margin-bottom: 8px;
}
.location-address {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 10px;
}
.location-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
}
.location-btns {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.loc-btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 9px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.loc-btn-primary {
  background: linear-gradient(135deg,#cc0000,#b60000);
  color: #fff;
  box-shadow: 0 4px 14px rgba(182,0,0,0.4);
}
.loc-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(182,0,0,0.6); }
.loc-btn-secondary {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
}
.loc-btn-secondary:hover { background: rgba(255,255,255,0.13); color: #fff; }

/* ══════════════════════════════════════════════════════════
   MEET THE OWNERS
══════════════════════════════════════════════════════════ */
.owners-section { margin-bottom: 20px; }

.owner-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 10px 30px rgba(0,0,0,0.09), 0 0 0 1px var(--border);
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.owner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 16px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(182,0,0,0.15);
}

/* Alternating layout */
.owner-card.reverse { grid-template-columns: 1fr 280px; }
.owner-card.reverse .owner-photo { order: 2; }
.owner-card.reverse .owner-quote-panel { order: 1; border-left: none; border-right: 4px solid var(--red); }

.owner-photo {
  position: relative;
  overflow: hidden;
}
.owner-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s;
}
.owner-card:hover .owner-photo img { transform: scale(1.03); }

/* Red accent bar over photo */
.owner-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #ff5555);
}

.owner-quote-panel {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 4px solid var(--red);
  position: relative;
}

/* Giant decorative quote mark */
.owner-quote-panel::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.09;
  pointer-events: none;
}

.owner-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.owner-byline {
  display: flex;
  align-items: center;
  gap: 12px;
}
.owner-byline-line {
  width: 28px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.owner-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3px;
}
.owner-role {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════
   MOBILE
══════════════════════════════════════════════════════════ */
 @media (max-width: 600px) {
  .appt-hero { height: 200px; }
  .hero-content h1 { font-size: 1.9rem; }

  .about-wrap { padding: 0 14px 80px; }

  /* Stats strip — 2 per row */
  .story-meta-strip {
    flex-wrap: wrap;
    margin: 32px 0 28px;
  }
  .meta-stat {
    min-width: 50%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 8px;
  }
  .meta-stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .meta-stat:last-child { border-bottom: none; }

  /* Story: single column */
  .story-block {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .story-pull { position: static; }
  .story-pull-quote { font-size: 1.2rem; }

  /* Pillars: single column */
  .pillars-grid { grid-template-columns: 1fr; gap: 12px; }
  .pillars-section { margin-bottom: 40px; }

  /* Location card */
  .location-card {
    flex-direction: column;
    padding: 24px 20px;
    margin-bottom: 40px;
    text-align: center;
  }
  .location-btns { justify-content: center; }
  .loc-btn { flex: 1; text-align: center; }

  /* Owner cards: photo on top, quote below */
  .owner-card,
  .owner-card.reverse {
    grid-template-columns: 1fr;
  }
  .owner-card.reverse .owner-photo { order: 1; }
  .owner-card.reverse .owner-quote-panel {
    order: 2;
    border-right: none;
    border-left: 4px solid var(--red);
  }
  .owner-photo img { min-height: 260px; max-height: 300px; }
  .owner-quote-panel { padding: 24px 22px 28px; }
  .owner-quote-panel::before { font-size: 5rem; top: 10px; left: 18px; }
  .owner-quote-text { font-size: 1rem; }
}

@media (max-width: 400px) {
  .hero-content h1 { font-size: 1.65rem; }
  .meta-stat-number { font-size: 1.7rem; }
}