:root {
  --bg-overlay: rgba(31, 25, 28, 0.26);
  --surface: rgba(255, 255, 255, .65);
  --surface-pink: #fff4f391;
  --surface-mint: #effbf7ab;
  --text: #25272c;
  --muted: #000;
  --pink: #ef9a9a;
  --pink-dark: #cc6f76;
  --mint: #72d5c2;
  --mint-dark: #208a77;
  --border: rgba(37, 39, 44, 0.08);
  --shadow: 0 28px 80px rgba(31, 25, 28, 0.22);
  --radius-xl: 34px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #eee;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(var(--bg-overlay), var(--bg-overlay)),
    url("../images/bg.webp") center / cover no-repeat fixed,
    linear-gradient(135deg, #f8dfdd, #e9f7f2);
}

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

a {
  color: inherit;
}

.coming-soon {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 64px);
}

.coming-soon__card {
  width: min(100%, 1080px);
  padding: clamp(30px, 5vw, 64px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.coming-soon__header {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.brand-logo {
  width: clamp(126px, 16vw, 186px);
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 auto 24px;
  border-radius: 50%;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--mint-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.title-accent,
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.title-accent {
  margin: 0 auto 24px;
}

.title-accent span,
.section-divider span {
  width: 74px;
  height: 1px;
  background: var(--pink);
}

.title-accent svg,
.section-divider svg {
  width: 18px;
  height: 18px;
  fill: var(--pink);
}

.lead {
  margin-bottom: 12px;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.7;
  color: #000;
  font-weight: 500;
}

.description {
  max-width: 770px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.5vw, 1.08rem);
  line-height: 1.8;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  margin-top: 40px;
}

.info-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.info-card--contact {
  background: var(--surface-pink);
}

.info-card--hours {
  background: var(--surface-mint);
}

.info-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
}

.info-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(239, 154, 154, 0.2);
  color: var(--pink-dark);
}

.info-icon--mint {
  background: rgba(114, 213, 194, 0.23);
  color: var(--mint-dark);
}

.info-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-row:first-child .info-icon svg path:first-child {
  fill: currentColor;
  stroke: none;
}

.info-label {
  display: block;
  margin-bottom: 7px;
  color: #cc6f76;
  font-size: 0.88rem;
  font-weight: 600;
}

.info-link {
  display: inline-block;
  color: var(--text);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.55;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.info-link:hover,
.info-link:focus-visible {
  color: var(--pink-dark);
}

.info-link--strong {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
}

.divider {
  height: 1px;
  margin: 24px 0;
  background: var(--border);
}

.hours-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.hours-title h2 {
  margin: 0;
  font-size: 1.4rem;
}

.hours-list {
  margin: 0;
}

.hours-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(37, 39, 44, 0.08);
}

.hours-list > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dt {
  font-weight: 600;
}

.hours-list dd {
  color: #4f555b;
  font-variant-numeric: tabular-nums;
}

.social-section {
  margin-top: 34px;
  text-align: center;
}

.section-divider {
  margin-bottom: 16px;
}

.social-section h2 {
  margin-bottom: 22px;
  font-size: 1.25rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.social-links a {
  min-width: 86px;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.social-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 39, 44, 0.09);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(37, 39, 44, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.social-links a:hover .social-icon,
.social-links a:focus-visible .social-icon {
  transform: translateY(-3px);
  border-color: rgba(114, 213, 194, 0.55);
  box-shadow: 0 14px 30px rgba(37, 39, 44, 0.13);
}

.social-links a:focus-visible,
.info-link:focus-visible {
  outline: 3px solid rgba(114, 213, 194, 0.34);
  outline-offset: 4px;
  border-radius: 10px;
}

@media (max-width: 800px) {
  body {
    background-attachment: scroll;
  }

  .coming-soon {
    padding: 18px;
  }

  .coming-soon__card {
    padding: 30px 20px;
    border-radius: 26px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .coming-soon {
    padding: 12px;
  }

  .coming-soon__card {
    padding: 26px 16px;
    border-radius: 22px;
  }

  .brand-logo {
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .lead,
  .description {
    text-align: left;
  }

  .info-card {
    padding: 20px 16px;
  }

  .info-row {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .info-icon {
    width: 44px;
    height: 44px;
  }

  .hours-list > div {
    gap: 12px;
    font-size: 0.92rem;
  }

  .social-links {
    gap: 16px;
  }

  .social-links a {
    min-width: 74px;
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Compact desktop layout: keep the complete coming-soon card inside the viewport. */
@media (min-width: 801px) {
  .coming-soon {
    min-height: 100svh;
    padding: clamp(14px, 2.2vh, 28px) clamp(24px, 4vw, 64px);
  }

  .coming-soon__card {
    width: min(100%, 1080px);
    padding: clamp(22px, 3.2vh, 44px) clamp(32px, 4vw, 64px);
  }

  .brand-logo {
    width: clamp(112px, 14vh, 166px);
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    margin-bottom: clamp(10px, 1.7vh, 20px);
  }

  .eyebrow {
    margin-bottom: clamp(4px, 0.7vh, 8px);
  }

  h1 {
    margin-bottom: clamp(6px, 1vh, 12px);
    font-size: clamp(2.4rem, min(4.2vw, 5.2vh), 4.1rem);
  }

  .title-accent {
    margin-bottom: clamp(10px, 1.5vh, 20px);
  }

  .lead {
    margin-bottom: clamp(5px, 0.8vh, 10px);
    line-height: 1.55;
  }

  .description {
    line-height: 1.6;
  }

  .info-grid {
    gap: clamp(16px, 2vw, 24px);
    margin-top: clamp(18px, 2.5vh, 32px);
  }

  .info-card {
    padding: clamp(18px, 2.2vh, 28px);
  }

  .divider {
    margin: clamp(14px, 1.8vh, 22px) 0;
  }

  .hours-title {
    margin-bottom: clamp(9px, 1.2vh, 15px);
  }

  .hours-list > div {
    padding: clamp(5px, 0.75vh, 8px) 0;
  }

  .social-section {
    margin-top: clamp(16px, 2.2vh, 28px);
  }

  .section-divider {
    margin-bottom: clamp(8px, 1.2vh, 14px);
  }

  .social-section h2 {
    margin-bottom: clamp(10px, 1.4vh, 18px);
  }

  .social-links {
    gap: clamp(18px, 2vw, 28px);
  }

  .social-icon {
    width: clamp(44px, 5.2vh, 52px);
    height: clamp(44px, 5.2vh, 52px);
  }
}

/* Social artwork: use the supplied Instagram/TikTok SVGs and one unified brand tint. */
.social-icon {
  color: #f4b9b5;
}

.social-icon svg {
  fill: #f4b9b5;
  color: #f4b9b5;
}

.social-icon img {
  width: 23px;
  height: 23px;
  display: block;
  object-fit: contain;
}

/* The logo must always be fully visible, never clipped by a circular crop. */
.brand-logo {
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}
