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

:root {
  --bg-cream: #fffbf5;
  --text-dark: #2d3436;
  --accent-orange: #e67e22;
  --accent-yellow: #f1c40f;
  --accent-green: #27ae60;
  --scallop-size: 40px;
  --scallop-radius: 20px;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
}

.coming-soon {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

/* Left content panel */
.content-panel {
  position: relative;
  z-index: 2;
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-cream);
  padding: 3rem 4rem;
}

.content-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(var(--scallop-radius) * -1);
  width: var(--scallop-size);
  height: 100%;
  background-image: radial-gradient(
    circle at var(--scallop-radius) var(--scallop-radius),
    transparent var(--scallop-radius),
    var(--bg-cream) calc(var(--scallop-radius) + 1px)
  );
  background-size: var(--scallop-size) var(--scallop-size);
  background-repeat: repeat-y;
  pointer-events: none;
}

.content-inner {
  max-width: 420px;
  text-align: center;
}

.uskoro {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--accent-orange);
  margin-bottom: 1.25rem;
}

.title {
  font-family: "Fredoka", system-ui, sans-serif;
  font-size: clamp(3.5rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4px;
  margin: 1rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow), var(--accent-green));
}

.subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 2.5rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--accent-orange);
  outline: none;
}

.contact-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  color: var(--accent-orange);
  transition: color 0.2s ease;
}

.contact-link:hover .contact-icon,
.contact-link:focus-visible .contact-icon {
  color: var(--accent-green);
}

/* Right image panel */
.visual-panel {
  position: relative;
  flex: 0 0 50%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #c47a2a;
}

.visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Mobile: stack vertically — image 1/3, content 2/3 */
@media (max-width: 900px) {
  .coming-soon {
    display: grid;
    grid-template-rows: 1fr 2fr;
    height: 100dvh;
    min-height: 100dvh;
  }

  .content-panel {
    flex: unset;
    order: 2;
    min-height: unset;
    height: 100%;
    padding: 2rem 1.5rem 2.5rem;
    overflow-y: auto;
  }

  .content-panel::after {
    display: none;
  }

  .visual-panel {
    flex: unset;
    order: 1;
    min-height: unset;
    height: 100%;
    max-height: none;
  }

  .visual-panel::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: calc(var(--scallop-radius) * -1);
    width: 100%;
    height: var(--scallop-size);
    background-image: radial-gradient(
      circle at var(--scallop-radius) var(--scallop-radius),
      transparent var(--scallop-radius),
      var(--bg-cream) calc(var(--scallop-radius) + 1px)
    );
    background-size: var(--scallop-size) var(--scallop-size);
    background-repeat: repeat-x;
    pointer-events: none;
    z-index: 1;
  }

  .title {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 380px) {
  .uskoro {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
  }

  .contact-link {
    font-size: 0.9rem;
  }
}
