@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

body {
  font-family: 'Jost', sans-serif;
  background-color: #0d1f2d;
  color: #e8f0f6;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(74,144,184,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(74,144,184,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 72px;
  background: rgba(13,31,45,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,144,184,0.2);
}

.logo-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8c4d8;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: #7ab3d0;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-btn:hover { color: #e8f0f6; }
.nav-btn:hover::after { transform: scaleX(1); }
.nav-btn.active { color: #e8f0f6; }
.nav-btn.active::after { transform: scaleX(1); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e8f0f6;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(13,31,45,0.98);
  z-index: 99;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(74,144,184,0.2);
  flex-direction: column;
  gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-nav-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8f0f6;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
}

/* ── SECTIONS ── */
.section {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 120px 0 80px;
  display: none;
  align-items: center;
}
.section.active { display: flex; }

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}

/* ── HOME ── */
#home {
  justify-content: center;
  text-align: center;
}

.home-inner {
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #e8f0f6;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
h1 em {
  font-style: italic;
  color: #a8c4d8;
}


.cormorant-garamond-ftt {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

/* ── ABOUT ── */
#about { align-items: flex-start; }

.section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7ab3d0;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(74,144,184,0.2);
  max-width: 60px;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: #e8f0f6;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.about-body { display: grid; gap: 2rem; }

.about-p {
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  font-weight: 300;
  line-height: 1.85;
  color: #a8c4d8;
}
.about-p-lead {
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 400;
  line-height: 1.85;
  color: #e8f0f6;
}

.about-card {
  margin-top: 1rem;
  padding: 2rem 2.5rem;
  background: rgba(74,144,184,0.07);
  border: 1px solid rgba(74,144,184,0.2);
  border-radius: 4px;
  border-left: 3px solid #4a90b8;
}
.about-card p {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: #a8c4d8;
}

/* ── CONTACT ── */
#contact { align-items: flex-start; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.email-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #e8f0f6;
  text-decoration: none;
  border-bottom: 1px solid #4a90b8;
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.email-link:hover { border-color: #7ab3d0; }

.contact-form { display: flex; flex-direction: column; gap: 1.4rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6a92ab;
}

.form-input,
.form-textarea {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #e8f0f6;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(74,144,184,0.2);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #6a92ab; }
.form-input:focus,
.form-textarea:focus {
  border-color: #4a90b8;
  background: rgba(74,144,184,0.07);
}
.form-textarea { resize: vertical; min-height: 130px; }

.recaptcha-attribution {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  color: #6a92ab;
  letter-spacing: 0.04em;
}
.recaptcha-attribution a {
  color: #6a92ab;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.recaptcha-attribution a:hover {
  color: #a8c4d8;
}

.submit-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: #4a90b8;
  border: 1px solid #4a90b8;
  padding: 0.85rem 2.5rem;
  border-radius: 2px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s, opacity 0.2s;
}
.submit-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.submit-btn:not(:disabled):hover { background: #7ab3d0; border-color: #7ab3d0; }

.form-success {
  display: none;
  padding: 1.2rem 1.5rem;
  background: rgba(74,144,184,0.12);
  border: 1px solid #4a90b8;
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #a8c4d8;
}

.form-error {
  display: none;
  padding: 1.2rem 1.5rem;
  background: rgba(184,74,74,0.12);
  border: 1px solid #b84a4a;
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #d8a8a8;
}

.submit-btn.loading {
  opacity: 0.5;
  cursor: wait;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(74,144,184,0.2);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #6a92ab;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .section { padding: 100px 0 60px; }
  h1 { white-space: normal; font-size: clamp(2.4rem, 10vw, 4rem); }
}

@media (max-width: 480px) {
  .about-card { padding: 1.5rem; }
}
