:root {
  --bg-main: #ffffff;
  --bg-soft: #eef5f4;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --brand: #1f3f40;
  --border: rgba(0,0,0,0.08);
}

[data-theme="dark"] {
  --bg-main: #0b0f14;
  --bg-soft: #121821;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --brand: #6f8f8e;
  --border: rgba(255,255,255,0.08);
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  transition: background 0.3s, color 0.3s;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 1rem;
}
/* =====================
   VALUE SECTION
===================== */

.value-section {
  padding: 6rem 0;
  background: var(--bg-main);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
}

.value-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-main);
}

.value-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================
   PREMIUM CONTACT PAGE
========================= */

.contact-premium {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.contact-header {
  max-width: 700px;
  margin-bottom: 4rem;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.8rem;
}

/* GRID */
.contact-premium-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

/* LEFT PANEL */
.contact-side h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.contact-points li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.contact-points li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--brand);
}

.contact-note {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-soft);
  font-size: 0.95rem;
}

/* FORM CARD */
.contact-card {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* FLOATING FIELDS */
.field {
  position: relative;
  margin-bottom: 2rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 1rem 0.75rem;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--text-main);
  font-size: 1rem;
  outline: none;
}

.field label {
  position: absolute;
  left: 0.75rem;
  top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
  transition: 0.25s ease;
}

.field input:focus + label,
.field input:valid + label,
.field textarea:focus + label,
.field textarea:valid + label {
  top: -0.6rem;
  font-size: 0.75rem;
  color: var(--brand);
}

/* BUTTON */
.contact-btn {
  margin-top: 1rem;
  width: 100%;
  padding: 1rem;
  border-radius: 999px;
  border: none;
  background: var(--brand);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-premium-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 2.2rem;
  }
}

/* =========================
   LAUNCHING SOON (BIG + CENTER)
========================= */

.launch-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.8rem;
}

.launch-badge {
  display: inline-block;
  padding: 0.6rem 2.2rem;
  font-size: 1.05rem;              /* BIG */
  font-weight: 500;
  letter-spacing: 0.22em;          /* PREMIUM spacing */
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--brand);
  background: transparent;
}

.launch-badge {
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
}

[data-theme="dark"] .launch-badge {
  box-shadow: 0 0 20px rgba(111, 143, 142, 0.25);
}
/* =====================================
   LAUNCHING SOON — HERO ANIMATION
===================================== */

.launch-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

/* BIG HERO TEXT */
.launch-hero {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 2.5vw, 3.6rem); /* BIG */
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brand);
  position: relative;
  text-align: center;
  animation: launchPulse 4.5s ease-in-out infinite;
}

/* SUBTLE LINE UNDER TEXT */
.launch-hero::after {
  content: "";
  display: block;
  margin: 1rem auto 0;
  width: 60%;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  animation: underlineGlow 4.5s ease-in-out infinite;
}

/* DARK MODE GLOW */
[data-theme="dark"] .launch-hero {
  text-shadow:
    0 0 18px rgba(111, 143, 142, 0.35),
    0 0 42px rgba(111, 143, 142, 0.15);
}

/* =====================================
   ANIMATIONS
===================================== */

@keyframes launchPulse {
  0% {
    opacity: 0.75;
    letter-spacing: 0.28em;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    letter-spacing: 0.35em;
    transform: scale(1);
  }
  100% {
    opacity: 0.75;
    letter-spacing: 0.28em;
    transform: scale(0.98);
  }
}

@keyframes underlineGlow {
  0% {
    width: 40%;
    opacity: 0.25;
  }
  50% {
    width: 60%;
    opacity: 0.5;
  }
  100% {
    width: 40%;
    opacity: 0.25;
  }
}

/* =========================
   VALUE SECTION
========================= */

.value-section {
  padding: 6rem 0;
  background: var(--bg-main);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
}

.value-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-main);
}

.value-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.6;
}
/* =========================
   CENTER CTA BUTTON
========================= */

.cta-center {
  display: flex;
  justify-content: center;
}

/* =========================
   SCROLL FADE-UP ANIMATION
========================= */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}

.fade-up.d2 { animation-delay: 0.3s; }
.fade-up.d3 { animation-delay: 0.5s; }

/* =========================
   PRIVACY POLICY STYLES
========================= */

.policy-block {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.policy-block h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.policy-block p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================
   ABOUT PAGE ENHANCEMENTS
========================= */

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--brand);
  margin: 3rem 0;
  opacity: 0.6;
}

.about-block {
  max-width: 720px;
  margin-bottom: 4rem;
}

.about-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.about-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-main);
}

.about-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.about-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Active nav link (subtle) */
.nav-links a.active {
  color: var(--brand);
}

/* =====================
   SCROLL ANIMATIONS
===================== */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}

.fade-up.d2 { animation-delay: 0.3s; }
.fade-up.d3 { animation-delay: 0.5s; }

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .header {
  background: rgba(11,15,20,0.85);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-main);
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 2rem;
  text-decoration: none;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--brand);
}

.theme-btn {
  margin-left: 2rem;
  border: 1px solid var(--border);
  background: none;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
}

/* MAIN */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.hero {
  background: linear-gradient(to bottom, var(--bg-main), var(--bg-soft));
}

.logo {
  width: 120px;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
}

.hero-text {
  max-width: 620px;
  margin: 1.2rem auto 2.5rem;
  color: var(--text-muted);
}

/* BUTTON */
.btn-primary {
  padding: 0.75rem 2rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  color: var(--brand);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--brand);
  color: #fff;
}

/* PAGE */
.page {
  padding: 6rem 0;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
}

.page-text {
  max-width: 720px;
  margin-top: 1rem;
  color: var(--text-muted);
}

/* FORM */
.contact-form {
  max-width: 420px;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-main);
}

.contact-form button {
  width: 100%;
  padding: 0.75rem;
  background: var(--brand);
  color: #fff;
  border: none;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ANIMATION */
.fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.d1 { animation-delay: .2s }
.d2 { animation-delay: .4s }
.d3 { animation-delay: .6s }
.d4 { animation-delay: .8s }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================
   HEADER LOGO (PREMIUM)
========================= */

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-logo {
  height: 100px;     /* ideal header size */
  width: auto;
  display: block;
}

.brand-text {
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: var(--text-main);
}

/* Mobile refinement */
@media (max-width: 768px) {
  .brand-logo {
    height: 50px;
  }
  .brand-text {
    font-size: 0.9rem;
  }
}

/* =========================
   THEME TOGGLE BUTTON (FINAL)
========================= */

.theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  color: var(--text-main);
  transition: background 0.25s ease, border 0.25s ease;
}

.theme-btn:hover {
  background: var(--bg-soft);
}

/* SVG icons */
.theme-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  position: absolute;
  transition: transform 0.45s ease, opacity 0.3s ease;
}

/* Default: light mode → show moon */
.theme-icon.sun {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}

/* Dark mode → show sun */
[data-theme="dark"] .theme-icon.moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
}

[data-theme="dark"] .theme-icon.sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
