@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700;1,900&family=Lato:wght@400;700;900&display=swap');

:root {
  --red: #C41E3A;
  --red-dark: #9B1830;
  --black: #0A0A0A;
  --cream: #FAF7F2;
  --green: #1B5E20;
  --pearl: #F0EDE6;
  --text: #1A1A1A;
  --text-light: #555;
}

*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  font-size: clamp(0.95rem, 3.5vw, 1.3rem);
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.nav-brand span { color: var(--red); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #999;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.status-text {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-height: 44px;
  white-space: nowrap;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding: 2rem 1rem 3rem;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/photo-01.jpg') center/cover no-repeat;
  opacity: 0.35;
}

.hero-slash {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 55%;
  height: 130%;
  background: var(--red);
  transform: skewX(-12deg);
  opacity: 0.82;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-h {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  font-size: clamp(2.6rem, 10vw, 5.2rem);
  line-height: 1.02;
  margin-bottom: 1.2rem;
}

.hero-accent { color: var(--red); }

.hero-sub {
  color: #bbb;
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-height: 56px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--red-dark); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid rgba(255,255,255,0.35);
  min-height: 56px;
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: #fff; }

/* ── STATS BAND ── */
.stats-band {
  background: var(--black);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 3px solid var(--red);
}

.stat {
  flex: 1 1 140px;
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.5rem, 8vw, 4.2rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.72rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

/* ── SHARED SECTION STYLES ── */
section { padding: 4rem 1rem; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  font-size: 0.7rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.section-h {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 1.1;
}

/* ── SERVICES ── */
.services { background: var(--cream); }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.svc-card {
  background: #fff;
  padding: 2rem;
  border-left: 4px solid var(--red);
}

.svc-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.svc-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── GALLERY STRIP ── */
.gallery-strip {
  display: flex;
  overflow: hidden;
  gap: 0;
  background: var(--black);
}

.gallery-strip img {
  flex: 1 1 33%;
  object-fit: cover;
  height: 220px;
  max-width: 34%;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 40%;
  height: 140%;
  background: var(--red);
  transform: skewX(-12deg);
  opacity: 0.05;
}

.testimonials .section-h { color: #fff; }

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.review-card {
  background: rgba(255,255,255,0.04);
  padding: 2rem;
  border-left: 3px solid var(--red);
}

.review-stars {
  color: #F59E0B;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}

.review-text {
  color: #ccc;
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── VISIT ── */
.visit { background: var(--cream); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.visit-info h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.visit-info p,
.visit-info address {
  font-style: normal;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.visit-info a {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.hours-table tr { border-bottom: 1px solid rgba(0,0,0,0.06); }
.hours-table td { padding: 0.5rem 0; color: var(--text-light); }
.hours-table td:last-child { text-align: right; }
.hours-table .today { font-weight: 700; color: var(--text); }

.map-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── FOOT CTA ── */
.foot-cta {
  background: var(--red);
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.foot-cta::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 35%;
  height: 140%;
  background: rgba(0,0,0,0.1);
  transform: skewX(-12deg);
}

.foot-cta-h {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  font-size: clamp(1.8rem, 6vw, 3rem);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--red);
  text-decoration: none;
  padding: 1rem 2.5rem;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-height: 56px;
  position: relative;
  z-index: 1;
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--pearl); }

/* ── FOOTER ── */
.footer {
  background: var(--black);
  color: #888;
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.82rem;
  line-height: 2;
}

.footer a { color: #bbb; text-decoration: none; }

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* ── DESKTOP ── */
@media (min-width: 720px) {
  .nav { padding: 0 2rem; }
  .hero { padding: 4rem 3rem 5rem; }
  .hero-slash { width: 42%; right: 0; }
  section { padding: 5rem 2rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .review-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .review-grid .review-card:last-child { grid-column: 1 / -1; }
  .visit-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .gallery-strip img { height: 280px; }
}

@media (min-width: 1024px) {
  .hero { padding: 5rem 4rem 6rem; }
  .svc-grid { gap: 2rem; }
}
