/* ===== Variables ===== */
:root {
  --gold: hsl(38, 60%, 55%);
  --gold-light: hsl(38, 50%, 72%);
  --gold-dark: hsl(38, 65%, 40%);
  --cream: hsl(40, 20%, 97%);
  --charcoal: hsl(220, 20%, 12%);
  --charcoal-light: hsl(220, 15%, 22%);
  --muted: hsl(220, 10%, 45%);
  --border: hsl(40, 15%, 88%);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--charcoal); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font-family: var(--font-body); border: none; outline: none; }

/* ===== Utilities ===== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.italic { font-style: italic; font-weight: 500; }
.gold-line { width: 5rem; height: 1px; background: var(--gold); }
.gold-line-center { width: 5rem; height: 1px; background: var(--gold); margin: 0 auto; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 2rem;
}
.section-title-dark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

/* ===== Animations ===== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(21, 24, 31, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(191, 155, 75, 0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.logo-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-light { color: var(--cream); margin-left: 0.25rem; font-weight: 300; }

.nav-desktop { display: flex; gap: 2.5rem; }
.nav-desktop a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.7);
  transition: color 0.3s;
}
.nav-desktop a:hover { color: var(--gold); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  background: var(--charcoal);
  border-top: 1px solid rgba(191, 155, 75, 0.2);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.nav-mobile.open { max-height: 300px; }
.nav-mobile .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.nav-mobile a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.7);
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .nav-mobile { display: block; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 24, 31, 0.6);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--charcoal), transparent, transparent);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}
.hero-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(245, 243, 239, 0.6);
  max-width: 36rem;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(191, 155, 75, 0.4);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ===== About ===== */
.about {
  padding: 8rem 0;
  background: var(--charcoal);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-paragraph {
  color: rgba(245, 243, 239, 0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.value-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.value-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.value-desc {
  font-size: 0.8rem;
  color: rgba(245, 243, 239, 0.5);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .value-item { text-align: center; }
  .value-icon { margin-left: auto; margin-right: auto; }
}

/* ===== Contact ===== */
.contact {
  padding: 8rem 0;
  background: var(--cream);
}
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.contact-intro {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.contact-item-center { align-items: center; }
.contact-icon-box {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(191, 155, 75, 0.3);
}
.contact-icon-box svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}
.contact-label {
  font-weight: 500;
  color: var(--charcoal);
}
.contact-sub {
  font-size: 0.8rem;
  color: var(--muted);
}
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.3s;
  resize: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(107, 114, 128, 0.6);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--gold);
}
.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--gold-light); }
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(191, 155, 75, 0.1);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer .logo { font-size: 1.25rem; }
.footer-copy {
  font-size: 0.7rem;
  color: rgba(245, 243, 239, 0.4);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .footer-inner { flex-direction: column; text-align: center; }
}
