/* No Google Fonts — all system fonts for crisp Windows rendering */

:root {
  --black: #000000;
  --gold: #C9A25B;
  --gold-light: #DEB86E;
  --gold-muted: #7A6535;
  --white: #F5F0E8;
  --text-muted: #999999;
  --transition: all 0.35s ease;

  /* Palatino Linotype = elegant serif, ships with every Windows install, renders sharp */
  --font-serif: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  /* Segoe UI = Windows native, pixel-perfect at any size */
  --font-ui: 'Segoe UI', Tahoma, Geneva, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: #000000;
  color: #F5F0E8;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 20px;
  line-height: 1.8;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #7A6535; }

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(0,0,0,0.97);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  padding: 16px 80px;
}

.nav-motto {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-style: italic;
  font-size: 24px;
  font-weight: normal;
  color: #C9A25B;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
  pointer-events: none;
}

.nav-logo {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 22px;
  font-weight: normal;
  letter-spacing: 3px;
  color: #C9A25B;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}

.nav-links a {
  font-family: 'Segoe UI', Tahoma, Geneva, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #999;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.35s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: #C9A25B;
  transition: var(--transition);
}

.nav-links a:hover { color: #C9A25B; }
.nav-links a:hover::after { width: 100%; }

/* ── HERO ────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 32px;
  background: #000000;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-logo {
  width: 680px;
  max-width: 92vw;
  opacity: 0;
  animation: logoReveal 1.2s ease forwards 0.3s;
}

.hero-divider {
  display: none;
}

.hero-tagline {
  font-family: 'Segoe UI', Tahoma, Geneva, Arial, sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 8px;
  color: #7A6535;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1.4s;
}

.hero-scroll { display: none !important; } .hero-scroll-hidden {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 2.2s;
  cursor: pointer;
}

.hero-scroll span {
  font-family: 'Segoe UI', Tahoma, Geneva, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #999;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #7A6535, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── SECTIONS ────────────────────────────────────────── */
section {
  padding: 60px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Segoe UI', Tahoma, Geneva, Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #7A6535;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.section-label::before {
  display: none;
}

/* ── ABOUT ───────────────────────────────────────────── */
#about { border-top: 1px solid rgba(201,169,110,0.15); text-align: center; }

.about-inner {
  display: block;
  max-width: 800px;
  margin: 0 auto;
}

.about-inner p {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 28px;
  font-weight: normal;
  line-height: 1.85;
  color: #F5F0E8;
  text-align: center;
}


/* ── CONTACT ─────────────────────────────────────────── */
#contact { border-top: 1px solid rgba(201,169,110,0.15); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.contact-item-label {
  font-family: 'Segoe UI', Tahoma, Geneva, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #7A6535;
  text-transform: uppercase;
}

.contact-item-value {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 20px;
  font-weight: normal;
  color: #F5F0E8;
  text-decoration: none;
  transition: color 0.35s ease;
}

.contact-item-value:hover { color: #C9A25B; }

/* ── FORM ────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.form-group label {
  font-family: 'Segoe UI', Tahoma, Geneva, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #7A6535;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,169,110,0.35);
  padding: 12px 0;
  color: #F5F0E8;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 22px;
  font-weight: normal;
  outline: none;
  transition: border-color 0.35s ease;
  width: 100%;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,240,232,0.3);
  font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus { border-bottom-color: #C9A25B; }

.form-group textarea { min-height: 120px; }

.form-submit {
  margin-top: 8px;
  background: transparent;
  border: 1px solid #7A6535;
  padding: 16px 44px;
  color: #C9A25B;
  font-family: 'Segoe UI', Tahoma, Geneva, Arial, sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  align-self: flex-start;
}

.form-submit:hover {
  border-color: #C9A25B;
  color: #DEB86E;
  background: rgba(201,169,110,0.07);
}

.form-message {
  font-family: 'Segoe UI', Tahoma, Geneva, Arial, sans-serif;
  font-size: 21px;
  font-weight: 400;
  padding: 12px 0;
  display: none;
}

.form-message.success { color: #C9A25B; }
.form-message.error { color: #c0665a; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 21px;
  font-weight: normal;
  letter-spacing: 3px;
  color: #7A6535;
  text-transform: uppercase;
}

.footer-copy {
  font-family: 'Segoe UI', Tahoma, Geneva, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #999;
}

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); }
}
@keyframes logoReveal {
  from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); }
}
@keyframes lineGrow {
  from { height: 0; opacity: 0; } to { height: 60px; opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; } 50% { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 24px 32px; }
  nav.scrolled { padding: 16px 32px; }
  section { padding: 80px 32px; }
  footer { padding: 32px; flex-direction: column; gap: 16px; text-align: center; }


  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-motto { display: none; }
  .nav-logo { width: 100%; text-align: center; }
  .hero-logo { width: 92vw; }
  .hero-tagline { text-align: center; width: 100%; }
  .contact-item-value { font-size: 22px; }
  .form-group input, .form-group textarea { font-size: 20px; }
  .form-submit { align-self: center; width: 100%; text-align: center; }
}
