/* Parker's Place — palette inspired by brand: soft blush + dusty rose */
:root {
  --rose-deep: #b85c6f;
  --rose-mid: #c97486;
  --blush: #fdf2f4;
  --blush-strong: #f5e1e6;
  --ink: #2a1f24;
  --ink-soft: #5c4a52;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(42, 31, 36, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: linear-gradient(180deg, var(--blush) 0%, var(--white) 28%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--rose-deep);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--rose-deep);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 242, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 92, 111, 0.12);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.nav {
  display: none;
  gap: 1.25rem;
  margin-left: auto;
  margin-right: 0.5rem;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.nav a:hover {
  color: var(--rose-deep);
}

/* Buttons — high-contrast “Call Now” */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-call {
  background: linear-gradient(135deg, #e84d6a 0%, #c43d5a 45%, #a8324d 100%);
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 0 #8f263c, 0 8px 24px rgba(200, 61, 90, 0.45);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}

.btn-call:hover {
  box-shadow: 0 4px 0 #8f263c, 0 12px 32px rgba(200, 61, 90, 0.55);
  filter: brightness(1.03);
}

.btn-call:focus-visible {
  outline: 3px solid var(--rose-deep);
  outline-offset: 3px;
}

.btn-call-header {
  margin-left: auto;
  padding-inline: 1rem;
  font-size: 0.9rem;
}

.btn-call-hero,
.btn-call-band,
.btn-call-footer {
  padding: 0.85rem 1.75rem;
  font-size: 1.05rem;
}

.btn-call-footer {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.btn-ghost {
  background: var(--white);
  color: var(--rose-deep) !important;
  border-color: rgba(184, 92, 111, 0.35);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--blush-strong);
}

/* Hero */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }
  .nav {
    display: flex;
  }
  .brand-logo {
    width: 56px;
    height: 56px;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rose-mid);
  margin: 0 0 0.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.85rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--ink);
}

.hero .accent {
  color: var(--rose-deep);
  font-style: italic;
}

.lead {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 36ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
  max-width: 420px;
  width: 100%;
  aspect-ratio: 4 / 5;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sections */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.section-sub {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Gallery — responsive mosaic */
.gallery-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
    gap: 1rem;
  }

  .gallery-item--tall {
    grid-row: span 2;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(42, 31, 36, 0.08);
  background: var(--blush-strong);
  min-height: 140px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 959px) {
  .gallery-item {
    aspect-ratio: 1;
  }
}

/* Mid-page CTA */
.cta-band {
  max-width: none;
  background: linear-gradient(120deg, var(--rose-deep), #9a3d52);
  color: var(--white);
  padding: 2.25rem 1.25rem;
  margin: 1rem 0 0;
}

.cta-band-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 720px) {
  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 0.35rem;
}

.cta-copy {
  margin: 0;
  opacity: 0.95;
  max-width: 42ch;
}

.cta-band .btn-call {
  box-shadow: 0 4px 0 #6d2234, 0 10px 28px rgba(0, 0, 0, 0.25);
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(184, 92, 111, 0.12);
  display: flex;
  flex-direction: column;
}

.review-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.review-quote {
  margin: 0;
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-quote p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--ink);
  flex: 1;
}

.review-quote footer {
  font-weight: 600;
  color: var(--rose-deep);
  font-size: 0.9rem;
  font-style: normal;
}

/* Hours & address */
.info-section {
  padding-bottom: 3rem;
}

.info-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(184, 92, 111, 0.12);
  box-shadow: 0 8px 28px rgba(42, 31, 36, 0.06);
}

.info-card h2 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(184, 92, 111, 0.2);
  font-size: 0.98rem;
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list .day {
  font-weight: 600;
  color: var(--ink);
}

.hours-list .time {
  color: var(--ink-soft);
}

.hours-list .closed {
  color: var(--rose-mid);
  font-weight: 600;
}

.address {
  font-style: normal;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.visit-social {
  margin: 0;
  font-weight: 600;
}

.visit-social a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.visit-social a:hover {
  text-decoration-thickness: 2px;
}

.fine-print {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  opacity: 0.85;
}

.fine-print code {
  font-size: 0.8em;
  background: var(--blush-strong);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.footer-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.site-footer {
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  border-top: 1px solid rgba(184, 92, 111, 0.1);
}

.site-footer p {
  margin: 0;
}
