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

body {
  font-family: "Montserrat", Arial, sans-serif;
  background: #0b0b0b;
  color: #111;
}

/* ── HEADER ── */
.header {
  height: 110px;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 55px;
}

.logo img {
  width: 185px;
}

nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  transition: color 0.2s;
}

nav a:hover { color: #c8a04d; }

.nav-btn {
  border: 1px solid #c8a04d;
  padding: 16px 24px;
  color: #d4af57 !important;
  transition: background 0.2s !important;
}

.nav-btn:hover {
  background: rgba(200,160,77,0.1);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 720px;
  background: url("hero-living-room.jpg") center/cover no-repeat, #1c1408;
  display: flex;
  align-items: center;
  padding: 80px 70px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.75) 35%,
    rgba(0,0,0,.25) 100%
  );
}

.hero-content {
  position: relative;
  max-width: 520px;
  color: white;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: 74px;
  line-height: 1.05;
  font-weight: 400;
}

.hero h1 span { color: #c8a04d; }

.divider {
  color: #c8a04d;
  font-size: 24px;
  margin: 30px 0;
  letter-spacing: 15px;
}

.hero p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 25px;
}

.btn {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 13px;
  padding: 18px 34px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.btn:hover { opacity: 0.85; }

.btn.gold {
  background: #c8a04d;
  color: white;
}

.btn.outline {
  border: 1px solid #c8a04d;
  color: white;
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: #f4eee5;
  padding: 70px 60px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 55px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.photo-card img {
  width: 100%;
  border: 1px solid #c8a04d;
  padding: 16px;
  background: #f4eee5;
  display: block;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b08a3d;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.philosophy-text h2 {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 30px;
}

.philosophy-text h2 span { color: #b08a3d; }

.philosophy-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #333;
}

.values {
  max-width: 1100px;
  margin: 70px auto 0;
  padding-top: 45px;
  border-top: 1px solid #c8a04d;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  text-align: center;
}

.icon {
  color: #b08a3d;
  font-size: 46px;
  margin-bottom: 20px;
}

.value h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  margin-bottom: 15px;
  color: #111;
}

.value p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* ── FOOTER ── */
.footer {
  background: #050505;
  color: white;
  padding: 55px 70px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.footer img {
  width: 140px;
  max-width: 100%;
  margin-bottom: 18px;
  display: block;
}

.footer-logo p {
  color: #7a6040;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer h4 {
  color: #c8a04d;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  font-size: 13px;
}

.footer a,
.footer p {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer a:hover { color: #c8a04d; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .header {
    flex-direction: column;
    height: auto;
    padding: 25px;
    gap: 25px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero {
    padding: 60px 30px;
    min-height: 560px;
  }

  .hero h1 { font-size: 52px; }

  .philosophy { padding: 50px 24px; }

  .philosophy-grid,
  .values,
  .footer {
    grid-template-columns: 1fr;
  }

  .footer { padding: 40px 30px; }
}
