@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-color: #F7F5F0;
  --text-dark: #1A1A1A;
  --text-muted: #5A5A5A;
  --accent-gold: #C09A5B;
  --accent-dark: #2C2A28;
  --white-overlay: rgba(247, 245, 240, 0.95);
  --section-padding: 120px 8%;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.8;
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  line-height: 1.3;
}

/* NAVBAR */
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 30px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
header.scrolled {
  background: rgba(247, 245, 240, 0.98);
  padding: 15px 6%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: flex-start;
}
.logo-main {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-dark);
  line-height: 1;
}
.logo-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--accent-gold);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent-gold);
}

/* MOBILE MENU */
.menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: var(--bg-color);
    flex-direction: column;
    padding-top: 100px;
    padding-left: 40px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.05);
    transition: right 0.4s ease;
  }
  .nav-links.open { right: 0; }
  .menu-btn { display: block; }
}

/* HERO COMMON */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 180px; 
  padding-left: 8%;
  padding-right: 8%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.hero-content {
  z-index: 1;
  color: #fff;
  max-width: 800px;
}
.hero.center-hero { text-align: center; }
.hero.center-hero .hero-content { margin: 0 auto; }
.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.8rem; }
  .hero-content p { font-size: 1rem; }
}
.btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--accent-gold);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn:hover {
  background: var(--accent-dark);
}

/* SECTIONS COMMON */
section {
  padding: var(--section-padding);
}
.sec-title {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: var(--accent-dark);
  text-align: center;
}
.sec-subtitle {
  text-align: center;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.text-center { text-align: center; }
.mt-5 { margin-top: 50px; }

/* GRID LAYOUTS */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.grid-2.reverse .content { grid-row: 1; grid-column: 2; }
.grid-2.reverse .image { grid-row: 1; grid-column: 1; }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
@media(max-width:900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 40px; }
  .grid-2.reverse .content { grid-column: 1; }
  .grid-2.reverse .image { grid-column: 1; }
}

/* IMAGES */
.image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.image-wrapper:hover img {
  transform: scale(1.05);
}

/* CARDS */
.card {
  background: #fff;
  padding: 50px 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  text-align: center;
  transition: transform 0.4s ease;
}
.card:hover { transform: translateY(-10px); }
.card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--accent-dark); }
.card p { color: var(--text-muted); }

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER */
footer {
  background: var(--accent-dark);
  color: #fff;
  padding: 80px 8% 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.footer-logo .logo-main {
  color: var(--accent-gold);
}
.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
}
.footer-col p, .footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 15px;
  display: block;
}
.footer-col a:hover { color: var(--accent-gold); }
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* FORMS */
.form-group { margin-bottom: 25px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: all 0.3s;
}
.form-group textarea { height: 150px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
#form-message {
  display: none;
  padding: 20px;
  background: var(--accent-gold);
  color: #fff;
  text-align: center;
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 500;
}

/* QUOTES */
.quote-block {
  text-align: center;
  font-size: 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto;
  color: var(--accent-dark);
}
.quote-block::before {
  content: '“';
  font-size: 6rem;
  color: var(--accent-gold);
  line-height: 0;
  display: block;
  margin-bottom: 30px;
}
