:root {
  --brown-950: #2b1409;
  --brown-900: #3b1d0d;
  --brown-800: #5a2f17;
  --brown-700: #77401f;
  --caramel: #c67b2d;
  --gold: #d4a04d;
  --cream: #fbf6ed;
  --milk: #fffdf9;
  --line: rgba(90, 47, 23, .14);
  --text-muted: #7c6658;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--brown-950);
  background:
    radial-gradient(circle at 18% 15%, rgba(212,160,77,.14), transparent 28%),
    linear-gradient(135deg, #fffdf9 0%, #f8efe2 100%);
  font-family: "DM Sans", sans-serif;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  overflow: hidden;
}

.content-card {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  padding: clamp(34px, 6vw, 86px) clamp(24px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-area {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.brand-logo {
  width: clamp(150px, 18vw, 215px);
  height: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.03) saturate(.94);
}

.status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 22px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.56);
  color: var(--brown-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--caramel);
  box-shadow: 0 0 0 6px rgba(198,123,45,.12);
  animation: pulse 2s infinite;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(54px, 7.6vw, 102px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.045em;
}

h1 em {
  color: var(--caramel);
  font-style: italic;
  font-weight: 500;
}

.intro {
  max-width: 610px;
  margin: 28px 0 30px;
  color: var(--text-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 670px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: inherit;
  background: rgba(255,255,255,.72);
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(70,35,15,.07);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  border-color: rgba(198,123,45,.4);
  box-shadow: 0 18px 46px rgba(70,35,15,.12);
}

.contact-item .icon {
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--brown-800), var(--caramel));
}

.contact-item svg {
  width: 20px;
  fill: white;
}

.contact-item span:last-child { min-width: 0; }

.contact-item small {
  display: block;
  margin-bottom: 3px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-item strong {
  display: block;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-note {
  margin: 26px 0 0;
  color: #9a8577;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.visual-panel {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(150deg, rgba(43,20,9,.96), rgba(90,47,23,.95)),
    #4b2815;
  isolation: isolate;
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 52px 52px;
}

.milk-shape {
  position: relative;
  width: min(31vw, 470px);
  aspect-ratio: 1;
  border-radius: 52% 48% 55% 45% / 44% 54% 46% 56%;
  background:
    radial-gradient(circle at 34% 28%, #fff, #fbecd3 38%, #d7a960 72%, #8f5428 100%);
  box-shadow:
    0 45px 100px rgba(0,0,0,.3),
    inset -30px -28px 70px rgba(89,45,18,.18),
    inset 18px 20px 40px rgba(255,255,255,.85);
  animation: float 6s ease-in-out infinite;
}

.milk-shape::after {
  content: "";
  position: absolute;
  width: 28%;
  aspect-ratio: 1;
  right: 9%;
  top: 10%;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  filter: blur(14px);
}

.ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}

.ring-one { inset: -12%; }
.ring-two { inset: -25%; border-color: rgba(212,160,77,.15); }

.cream-sphere {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, #fffdf8, #dcb56f);
  box-shadow: 0 14px 35px rgba(0,0,0,.22);
}

.sphere-one { width: 18%; aspect-ratio: 1; left: -9%; top: 18%; }
.sphere-two { width: 10%; aspect-ratio: 1; right: -2%; bottom: 15%; }

.panel-copy {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 13%;
  color: var(--brown-950);
}

.panel-copy span {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.panel-copy strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1;
}

.ambient {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.ambient-one {
  width: 280px;
  height: 280px;
  left: -160px;
  bottom: -130px;
  background: rgba(198,123,45,.16);
  filter: blur(10px);
}

.ambient-two {
  width: 120px;
  height: 120px;
  left: 48%;
  top: 7%;
  background: rgba(212,160,77,.12);
  filter: blur(8px);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(198,123,45,.1); }
  50% { box-shadow: 0 0 0 9px rgba(198,123,45,.03); }
}

@media (max-width: 960px) {
  .coming-soon { grid-template-columns: 1fr; }
  .content-card { width: 100%; min-height: 68vh; }
  .visual-panel { min-height: 42vh; padding: 70px 20px; }
  .milk-shape { width: min(68vw, 420px); }
}

@media (max-width: 620px) {
  .content-card { padding: 30px 20px 46px; }
  .brand-logo { width: 145px; }
  .status { margin-top: 2px; font-size: 10px; }
  .contact-list { grid-template-columns: 1fr; }
  .footer-note { line-height: 1.6; }
  .visual-panel { min-height: 360px; }
  .milk-shape { width: min(74vw, 330px); }
}

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