/* ===== Base ===== */
html,
body {
  margin: 0;
  padding: 0;
}
:root {
  /* fluid spacing via vmin (реагує на ширину і висоту) */
  --space-xxl: clamp(32px, 8vmin, 80px);
  --space-xl: clamp(24px, 6vmin, 64px);
  --space-lg: clamp(16px, 4vmin, 48px);
  --space-md: clamp(12px, 3vmin, 32px);
  --space-sm: clamp(8px, 2vmin, 24px);
  --radius: clamp(6px, 1.2vmin, 12px);
}
.hero-logo {
  display: block;
  width: 220px;
  height: auto;
  margin: 0 auto 12px;
  align-self: center;
  filter: brightness(0) invert(1);
}

/* ===== Layout ===== */
.desktop-coming-soon {
  position: relative;
  height: 100dvh;
  overflow: hidden;
}
.desktop-coming-soon .background {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: url("./beach.png") center bottom / cover no-repeat;
}

/* ===== Content & Footer ===== */
.desktop-coming-soon .content {
  position: absolute;
  top: 108px;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  min-height: 828px;
  height: auto;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-xl);
}
.desktop-coming-soon .footer {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-xl);
  background-color: transparent;
}

/* ===== Typography (fluid, без !important) ===== */
.desktop-coming-soon .head-title {
  align-self: stretch;
  margin-top: -1px;
  font-family: "Figtree-SemiBold", Helvetica;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0;
  font-size: clamp(28px, 8vmin, 80px);
  line-height: 1.05;
}
.desktop-coming-soon .div {
  align-self: stretch;
  color: #fff;
  font-family: var(--typo-mobile-h1-font-family);
  font-weight: var(--typo-mobile-h1-font-weight);
  letter-spacing: var(--typo-mobile-h1-letter-spacing);
  font-style: var(--typo-mobile-h1-font-style);
  font-size: clamp(16px, 3.2vmin, 28px);
  line-height: 1.2;
}
.desktop-coming-soon .text,
.desktop-coming-soon .p,
.desktop-coming-soon .label,
.desktop-coming-soon .label-2 {
  color: #fff;
  font-size: clamp(12px, 2vmin, 18px);
  line-height: 1.4;
}
.desktop-coming-soon .text-wrapper {
  color: #666;
  font-size: clamp(12px, 2vmin, 18px);
  line-height: 1.4;
}
.desktop-coming-soon .footer a {
  color: inherit;
}

/* ===== Blocks & Controls (fluid spacing) ===== */
.desktop-coming-soon .block-stay-in {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  flex: 0 0 auto;
}
.desktop-coming-soon .notify-row {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
}
.desktop-coming-soon .input {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(var(--space-sm) - 2px);
}
.desktop-coming-soon .input-with-button {
  display: flex;
  width: clamp(260px, 40vmin, 384px);
  align-items: flex-start;
  gap: calc(var(--space-sm) / 2);
}
.desktop-coming-soon .default {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  flex: 1;
}

.desktop-coming-soon .field {
  display: flex;
  height: clamp(40px, 6vmin, 56px);
  align-items: center;
  gap: var(--space-sm);
  padding: calc(var(--space-sm) - 2px) 12px;
  width: 100%;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--borderborder-primary);
}
.desktop-coming-soon .field:focus-within {
  border-color: var(--containercont-brand-action);
  box-shadow: 0 0 0 3px rgba(0, 0, 78, 0.1);
}

.desktop-coming-soon .placeholder {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--texttext-tertiary);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
}
.desktop-coming-soon .placeholder::placeholder {
  color: var(--texttext-tertiary);
}
.desktop-coming-soon .placeholder:focus {
  color: var(--texttext-primary);
}

.desktop-coming-soon .button,
.desktop-coming-soon .button-2 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--containercont-brand-action);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadows-sm-strong);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.desktop-coming-soon .button {
  height: clamp(40px, 6vmin, 56px);
}
.desktop-coming-soon .button-2 {
  height: clamp(32px, 4.5vmin, 44px);
}
.desktop-coming-soon .button:hover,
.desktop-coming-soon .button-2:hover {
  background-color: rgba(0, 0, 98, 1);
}
.desktop-coming-soon .button:active,
.desktop-coming-soon .button-2:active {
  transform: scale(0.98);
}
.desktop-coming-soon .button:focus,
.desktop-coming-soon .button-2:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

/* ===== Service ===== */
.desktop-coming-soon .terms {
  display: inline-flex;
  align-items: center;
  gap: var(--space-lg);
  flex: 0 0 auto;
}
.desktop-coming-soon .header {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  max-width: 1440px;
  align-items: center;
  justify-content: flex-end;
  gap: 375px;
  padding: var(--space-lg) var(--space-xl) var(--space-md);
  background-color: transparent;
}
.desktop-coming-soon .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6.59px;
  position: absolute;
  top: 32px;
  left: calc(50% - 85px);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
