/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #7EBC87;
  --green-dark:   #5fa368;
  --white:        #ffffff;
  --off-white:    #F4F4F4;
  --text-dark:    #1A1A1A;
  --text-muted:   #6B6B6B;
  --border:       rgba(255,255,255,0.25);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "Poppins", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; }

/* ── Layout ── */
.sp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ── */
.sp-hero {
  position: relative;
  padding: 72px 24px;
  text-align: center;
  overflow: hidden;
}

.sp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.83);
  z-index: 0;
}

.sp-hero__inner {
  position: relative;
  z-index: 1;
}

.sp-hero__logo {
  width: 205px;
  margin: 0 auto 28px;
}

.sp-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

.sp-hero__subheading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: #565656;
  margin-bottom: 32px;
}

/* ── Button ── */
.sp-btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.sp-btn:hover  { background: var(--green-dark); transform: translateY(-1px); }
.sp-btn:active { transform: translateY(0); }

/* ── Overview ── */
.sp-overview {
  background: var(--off-white);
  padding: 72px 24px;
  text-align: center;
}

.sp-overview__heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: #565656;
  margin-bottom: 36px;
}

/* ── Hours Card ── */
.sp-card {
  background: var(--green);
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 6px;
  text-align: left;
}

.sp-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.sp-card__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.sp-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.sp-hours-row:last-child { border-bottom: none; }

.sp-hours-row__day,
.sp-hours-row__time {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
}

.sp-hours-row__time {
  font-weight: 500;
  white-space: nowrap;
}

/* ── Highlights ── */
.sp-highlights {
  padding: 80px 24px;
}

.sp-highlights__grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.sp-highlights__media,
.sp-highlights__content {
  flex: 1;
}

.sp-highlights__media img {
  width: 100%;
  border-radius: 4px;
}

.sp-highlights__content {
  text-align: center;
}

.sp-highlights__heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: #565656;
  margin-bottom: 16px;
}

.sp-highlights__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ── Footer ── */
.sp-footer {
  background: var(--green);
  padding: 24px;
  text-align: center;
}

.sp-footer__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  opacity: 0.9;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .sp-hero        { padding: 40px 20px; }
  .sp-overview    { padding: 40px 20px; }
  .sp-highlights  { padding: 40px 20px; }

  .sp-card        { padding: 24px 20px; }

  .sp-highlights__grid {
    flex-direction: column;
    gap: 32px;
  }

  .sp-highlights__media,
  .sp-highlights__content { width: 100%; }
}
