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

/* ================= GLOBAL ================= */
body {
  font-family: 'Montserrat', sans-serif;
  background: url("img/bg1.png") center top repeat;
  background-size: cover;
  color: #3a3a3a;
}

/* ================= HEADER ================= */
.site-header {
  background: #fff;
  border-top: 3px solid #d4af6d;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: flex-start;
  padding: 20px 20px 0;
}

.nav a {
  margin-right: 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.nav a:hover {
  color: #d4af6d;
}

.nav.right {
  text-align: right;
}

.call {
  padding: 8px 18px;
  border: 1px solid #d4af6d;
  border-radius: 20px;
}

.logo {
  position: relative;
  top: -15px;
}

.logo img {
  height: 120px;
}

/* ================= HERO ================= */
.about-hero {
  padding: 140px 20px 80px;
  text-align: center;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
}

.about-hero h1 span {
  color: #d4af6d;
}

.about-subtitle {
  margin-top: 20px;
  font-size: 18px;
  color: #666;
}

/* ================= CONTENT ================= */
.about-content {
  padding: 60px 20px 140px;
}

.about-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.12);
}

/* ================= GLASS BOX ================= */
.glass {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 60px;
  box-shadow:
    0 0 0 1px rgba(212,175,109,0.2),
    0 30px 80px rgba(0,0,0,0.08);
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 24px;
}

.about-text h2 span {
  color: #d4af6d;
}

.about-text p {
  line-height: 1.9;
  margin-bottom: 18px;
  color: #555;
}

.about-text .highlight {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #b8944f;
  margin: 30px 0;
}

/* ================= FOOTER ================= */
.site-footer {
  background: rgba(255,255,255,0.95);
  border-top: 1px solid rgba(212,175,109,0.45);
  padding: 30px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  height: 32px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  margin-left: 12px;
}

.footer-link {
  font-size: 13px;
  text-decoration: none;
  color: #444;
}

.footer-link:hover {
  color: #d4af6d;
}

.footer-sep {
  margin: 0 8px;
  color: rgba(212,175,109,0.6);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  .about-grid {
    grid-template-columns: 1fr;
  }

  .glass {
    padding: 40px 28px;
  }

  .about-hero h1 {
    font-size: 42px;
  }

  .logo img {
    height: 90px;
  }

}
