:root {
  --teal:      #2BBFBB;
  --teal-dark: #1fa5a2;
  --pink:      #E8177D;
  --pink-dark: #c91268;
  --dark:      #1a1a1a;
  --gray:      #555;
  --gray-lt:   #888;
  --light:     #f5f6f8;
  --white:     #ffffff;
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; overflow-anchor: none; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
}

/* ── Top accent bar ──────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--teal), var(--pink));
  z-index: 1000;
}

/* ── Header ──────────────────────────────────────── */
header {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 999;
  text-align: center;
  padding: 2.5rem 1rem 2rem;
  background: var(--white);
  border-bottom: 1px solid #eee;
  overflow: hidden;
  transition: padding 0.35s ease, box-shadow 0.35s ease;
}

header.scrolled {
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
}

header h1 {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  display: contents;
}

.logo {
  max-width: 170px;
  height: auto;
  display: block;
  margin: 0 auto 0.85rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
  transition: max-width 0.35s ease, margin 0.35s ease, transform 0.3s ease;
}

header.scrolled .logo { max-width: 80px; margin-bottom: 0; }

.logo:hover { transform: scale(1.03); }

.tagline {
  color: var(--gray-lt);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.02em;
  max-height: 2rem;
  overflow: hidden;
  transition: opacity 0.35s ease, max-height 0.35s ease;
}

header.scrolled .tagline { opacity: 0; max-height: 0; }

/* ── Section heading style ───────────────────────── */
.visit h2, .social h2, .contact h2 {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-sub {
  text-align: center;
  color: var(--gray-lt);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.section-rule {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin: 0.6rem auto 2rem;
}

/* ── Header spacer — pushes content below the fixed header ──
   Heights calculated from logo natural size 500×486px at max-width:170px/80px.
   Full: 40+165+14+26+32+1=278px  Slim: 8+78+0+0+8+1=95px            */
#header-spacer {
  height: 278px;
  transition: height 0.35s ease;
}
#header-spacer.slim { height: 95px; }

/* ── Shop CTA ─────────────────────────────────────── */
.shop-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 1.5rem 4rem;
}

.shop-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.badge {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  padding: 0.35rem 1.1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  box-shadow: 0 2px 12px rgba(232,23,125,0.35);
}

.shop-cta h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.shop-cta > p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 440px;
  margin: 0 auto 2rem;
}

.notify-form {
  max-width: 460px;
  margin: 0 auto;
}

.notify-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.notify-row input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.2rem;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  outline: none;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.notify-row input[type="email"]::placeholder { color: #aaa; }

.notify-row button {
  padding: 0.85rem 1.75rem;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(232,23,125,0.35);
}

.notify-row button:hover  { background: var(--pink-dark); transform: translateY(-1px); }
.notify-row button:active { transform: translateY(0); }
.notify-row button:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.turnstile-widget {
  display: flex;
  justify-content: center;
  margin-top: 0.25rem;
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.95rem;
  min-height: 1.4em;
}

.shop-cta .form-feedback.success { color: #c8fff9; }
.shop-cta .form-feedback.error   { color: #ffd0e0; }

/* ── Visit Us ─────────────────────────────────────── */
.visit {
  padding: 5rem 1.5rem;
  background: var(--light);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 650px) {
  .visit-grid { grid-template-columns: 1fr; }
}

.hours-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
}

.hours-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-lt);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.hours-card table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.75rem;
}

.hours-card table td {
  padding: 0.5rem 0;
  font-size: 0.94rem;
  color: var(--gray-lt);
  border-bottom: 1px solid #f0f0f0;
}

.hours-card table td:last-child { text-align: right; }

.hours-card table tr:last-child td { border-bottom: none; }

.hours-card table tr.open td {
  color: var(--dark);
  font-weight: 600;
}

.hours-card table tr.open td:last-child {
  color: var(--teal-dark);
}

.location-info {
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.location-info p {
  font-size: 0.94rem;
  color: var(--gray);
}

.location-info p strong { color: var(--dark); font-weight: 600; }

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 0.6rem 1.3rem;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  width: fit-content;
}

.map-link:hover { background: var(--teal-dark); transform: translateY(-1px); }

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* ── Social ───────────────────────────────────────── */
.social {
  padding: 5rem 1.5rem;
  text-align: center;
  background: var(--white);
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--white);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}

.social-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.social-btn.facebook  { background: #1877F2; }
.social-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.social-btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: 5rem 1.5rem;
  background: var(--light);
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.25rem;
  border: 1px solid rgba(0,0,0,0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.req      { color: var(--pink); }
.optional { color: var(--gray-lt); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 0.82rem; }

.form-group input,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43,191,187,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #ccc; }

.btn-contact {
  width: 100%;
  padding: 0.95rem;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

.btn-contact:hover    { background: var(--teal-dark); transform: translateY(-1px); }
.btn-contact:active   { transform: translateY(0); }
.btn-contact:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.contact .form-feedback        { text-align: center; margin-top: 0.85rem; }
.contact .form-feedback.success { color: var(--teal-dark); font-weight: 600; }
.contact .form-feedback.error   { color: #c0392b; }

/* ── Footer ───────────────────────────────────────── */
footer {
  background: var(--dark);
  color: #666;
  text-align: center;
  padding: 1.75rem 1rem;
  font-size: 0.85rem;
  border-top: 3px solid var(--teal);
}

footer a { color: var(--teal); text-decoration: none; }
footer a:hover { color: #fff; }
.footer-credit { margin-top: 0.5rem; }
