@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #f8f6f1;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
.nav {
  background: #1c2b3a;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: #e8dfc8;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav-logo span { color: #c9a96e; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: #8898a4;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #e8dfc8; }
.nav-cta {
  background: #c9a96e !important;
  color: #1c2b3a !important;
  padding: 9px 22px;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #b8965c !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #8898a4;
  border-radius: 2px;
  transition: all 0.25s;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: #c9a96e;
  color: #1c2b3a;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: #b8965c; transform: translateY(-1px); }

.btn-dark {
  display: inline-block;
  background: #1c2b3a;
  color: #e8dfc8;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.btn-dark:hover { background: #0f1e2b; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8898a4;
  font-size: 14px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: #e8dfc8; }

/* ── SECTION SHARED ── */
.section { padding: 80px 56px; }
.section-tag {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 10px;
}
.section-title {
  font-size: 36px;
  color: #1c2b3a;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  color: #6b7280;
  font-size: 15px;
  max-width: 500px;
  line-height: 1.75;
}
.section-header { margin-bottom: 48px; }

/* ── NOTICE BAND ── */
.notice {
  background: #e8dfc8;
  padding: 22px 56px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.notice-icon {
  width: 30px;
  height: 30px;
  background: #1c2b3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.notice p {
  font-size: 13px;
  color: #4a3c28;
  line-height: 1.65;
}
.notice strong { color: #1c2b3a; }

/* ── CTA SECTION ── */
.cta-section {
  background: #c9a96e;
  padding: 80px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-section h2 {
  font-size: 30px;
  color: #1c2b3a;
  font-weight: 700;
  max-width: 400px;
  line-height: 1.25;
  margin-bottom: 10px;
}
.cta-section p {
  color: rgba(28,43,58,0.68);
  font-size: 14px;
  max-width: 400px;
  line-height: 1.7;
}
.cta-section p a { color: #1c2b3a; text-decoration: underline; }

/* ── FOOTER ── */
.footer {
  background: #111c26;
  padding: 48px 56px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  color: #e8dfc8;
  font-size: 19px;
  font-weight: 700;
}
.footer-brand span { color: #c9a96e; }
.footer-email {
  font-size: 13px;
  color: #607080;
  margin-top: 6px;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  color: #607080;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: #b8bec4; }
.footer-copy {
  font-size: 11px;
  color: #374858;
  line-height: 1.7;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: #1c2b3a;
    padding: 28px 24px;
    gap: 22px;
    border-top: 1px solid rgba(255,255,255,0.07);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .section { padding: 56px 24px; }
  .notice { padding: 18px 24px; }
  .cta-section { padding: 56px 24px; flex-direction: column; align-items: flex-start; }
  .footer { padding: 40px 24px; }
  .section-title { font-size: 28px; }
}
