/* ========================================================================
   Dilira Mare — Coming Soon page
   Palette: deep Aegean navy, warm sand, soft turquoise accent.
   No photography used on purpose — swap in the hero/story sections
   once real or AI-generated imagery is ready.
   ======================================================================== */

:root {
  --navy-950: #0e2233;
  --navy-900: #123049;
  --navy-800: #17405f;
  --teal-500: #3fa9a0;
  --teal-400: #63c2b8;
  --sand-100: #faf6ee;
  --sand-200: #f1e9d8;
  --sand-300: #e4d6b8;
  --ink: #12232f;
  --white: #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand-100);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* subtle grain overlay for texture without imagery */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 6vw;
  display: flex;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(14,34,51,0.55), transparent);
}

.header-inner {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
}

.wordmark-main {
  font-size: 1.3rem;
  letter-spacing: 0.22em;
  font-weight: 500;
}

.wordmark-sub {
  font-size: 1.3rem;
  letter-spacing: 0.22em;
  font-weight: 400;
  color: var(--teal-400);
}

.lang-switch {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 4px;
  backdrop-filter: blur(6px);
}

.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 6px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-btn:hover { color: var(--white); }

.lang-btn.is-active {
  background: var(--white);
  color: var(--navy-950);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 6vw 160px;
  background: radial-gradient(120% 90% at 50% 0%, var(--navy-800) 0%, var(--navy-900) 55%, var(--navy-950) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 220px;
}

.wave-1 {
  bottom: -20px;
  opacity: 0.5;
}
.wave-1 path { fill: var(--teal-500); opacity: 0.18; }

.wave-2 {
  bottom: -60px;
}
.wave-2 path { fill: var(--teal-400); opacity: 0.12; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: var(--white);
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin: 0 0 22px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.12;
  margin: 0 0 24px;
}

.hero-lede {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--teal-400);
  color: var(--navy-950);
  font-weight: 500;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(99,194,184,0.6);
}

/* ---------- Story ---------- */
.story {
  padding: 110px 6vw;
  background: var(--sand-100);
}

.story-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-500);
  font-weight: 500;
  margin: 0 0 18px;
}

.story h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 22px;
  color: var(--navy-950);
}

.story p:not(.kicker) {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3c4c54;
  font-weight: 300;
}

/* ---------- Facts strip ---------- */
.facts {
  background: var(--navy-950);
  padding: 64px 6vw;
}

.facts-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.fact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fact-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--teal-400);
  font-weight: 500;
}

.fact-label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ---------- Location ---------- */
.location {
  padding: 110px 6vw;
  background: var(--sand-200);
}

.location-inner {
  max-width: 620px;
  margin: 0 auto;
}

.location h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-align: center;
  margin: 0 0 40px;
  color: var(--navy-950);
}

.location-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.location-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  color: #33454d;
}

.dot {
  flex: none;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
  margin-top: 8px;
}

/* ---------- Notify form ---------- */
.notify {
  padding: 110px 6vw;
  background: var(--sand-100);
  text-align: center;
}

.notify-inner {
  max-width: 520px;
  margin: 0 auto;
}

.notify h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 16px;
  color: var(--navy-950);
}

.notify p {
  font-size: 1rem;
  line-height: 1.7;
  color: #3c4c54;
  font-weight: 300;
  margin: 0 0 36px;
}

.notify-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.notify-form input[type="email"] {
  flex: 1 1 260px;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid var(--sand-300);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.notify-form input[type="email"]:focus {
  border-color: var(--teal-500);
}

.notify-form .btn {
  flex: none;
}

.notify-status {
  margin: 18px 0 0;
  font-size: 0.9rem;
  min-height: 1.2em;
  color: var(--teal-500);
}

.notify-status.is-error { color: #b5533f; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.75);
  padding: 60px 6vw 30px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .wordmark-main,
.footer-brand .wordmark-sub {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  color: var(--white);
}
.footer-brand .wordmark-sub { color: var(--teal-400); }

.footer-brand p {
  margin: 10px 0 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-contact a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
}
.footer-contact a:hover { color: var(--teal-400); }

.footer-legal {
  max-width: var(--max-width);
  margin: 24px auto 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .facts-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero { padding: 120px 6vw 120px; }
  .notify-form { flex-direction: column; }
  .notify-form input[type="email"],
  .notify-form .btn {
    flex: none;
    width: 100%;
  }
}
