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

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

:root {
  --bg: #0c1222;
  --bg-light: #111a2e;
  --input-bg: #141c2e;
  --text: #f0f2f5;
  --muted: #94a3b8;
  --gold: #c9a84c;
  --border: rgba(201,168,76,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* Site brand */
.site-brand {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  background-color: #0c1222;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.nav-brand img { width: 24px; height: auto; opacity: 0.9; }
.nav-brand span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 0;
  position: relative;
  background:
    linear-gradient(180deg, rgba(12,18,34,1.0) 0%, rgba(12,18,34,0.85) 60%, var(--bg) 100%),
    url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1920&q=80') center / cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(148,163,184,0.025) 59px, rgba(148,163,184,0.025) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(148,163,184,0.025) 59px, rgba(148,163,184,0.025) 60px);
  pointer-events: none;
}

.hero-content { max-width: 760px; position: relative; z-index: 1; }

.hero-logo {
  width: 100px;
  height: auto;
  margin-bottom: 40px;
  filter: drop-shadow(0 0 28px rgba(201,168,76,0.2));
  opacity: 0.95;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}

@keyframes rule-extend {
  from { width: 0; opacity: 0; }
  to { width: 60px; opacity: 1; }
}
.accent-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 0 auto 40px;
  animation: rule-extend 1s ease-out 0.3s both;
}

.hero p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Main content */
main {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 40px 0; }
section:first-child { padding-top: 48px; }

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.section-line {
  flex: 1;
  height: 1px;
  background: rgba(148,163,184,0.12);
}

section p { margin-bottom: 16px; font-size: 17px; }
section p:last-child { margin-bottom: 0; }
section a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
section a:hover { opacity: 0.7; }

/* Focus list */
.focus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.focus-list li {
  font-size: 19px;
  color: var(--text);
  font-weight: 300;
  padding-left: 24px;
  position: relative;
}
.focus-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

/* Contact form */
.contact-page-header {
  padding-top: 140px;
  padding-bottom: 60px;
  max-width: 680px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.contact-page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.5px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: flex;
  gap: 20px;
}
.form-row > * { flex: 1; }

.contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  min-height: 48px;
  background: var(--input-bg);
  border: 1px solid rgba(148,163,184,0.12);
  border-radius: 4px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(201,168,76,0.4);
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(148,163,184,0.35);
}

.submit-btn {
  display: inline-block;
  padding: 16px 48px;
  min-height: 52px;
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}
.submit-btn:hover { opacity: 0.85; }

.contact-details {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(148,163,184,0.08);
}
.contact-details p { margin-bottom: 12px; font-size: 16px; }
.contact-details p:last-child { margin-bottom: 0; }
.contact-details a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-details a:hover { opacity: 0.7; }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  text-align: center;
  font-size: 12px;
  color: rgba(148,163,184,0.4);
  letter-spacing: 0.5px;
}
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.footer-sep { color: rgba(148,163,184,0.25); }
.footer-link {
  color: rgba(148,163,184,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--muted); }

/* Responsive */
@media (max-width: 640px) {
  .site-brand {
    padding: 16px 24px;
  }
  .hero { padding: 100px 24px 0; }
  .hero-logo { width: 80px; margin-bottom: 32px; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 15px; }
  section { padding: 32px 0; }
  main { padding: 0 24px; }
  .focus-list li { font-size: 17px; }
  .contact-page-header { padding-top: 120px; padding-left: 24px; padding-right: 24px; }
  .contact-page-header h1 { font-size: 30px; }
  .form-row { flex-direction: column; }
  .submit-btn { width: 100%; text-align: center; }
  footer { padding: 32px 24px; }
  .footer-content { flex-direction: column; gap: 6px; }
  .footer-sep { display: none; }
}
