@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy: #0a1628;
  --navy-dark: #06101c;
  --gold: #c9a227;
  --gold-light: #e0c15a;
  --teal: #00b4b4;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --text: #1a1a1a;
  --text-light: #5a5a5a;
  --gray: #e8e6e1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

/* ========== HEADER ========== */
.site-header {
  background: var(--navy);
  padding: 0 40px;
  height: 96px;                    /* ← increased from 90px */
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-left img {
  height: 58px;                    /* ← larger & equal */
  width: auto;
}

.header-center {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-center img {
  height: 58px;                    /* ← larger & equal */
  width: auto;
}

.header-center .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header-center .logo-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.header-center .logo-text .tag {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  height: 78vh;
  min-height: 580px;
  background: linear-gradient(rgba(6,16,28,0.45), rgba(6,16,28,0.45)),
              url('../images/hero-mansion.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-content .tagline {
  font-size: 0.95rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-content .tagline::before,
.hero-content .tagline::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}

/* ========== TRUSTED GUIDANCE SECTION ========== */
.trusted-section {
  background: white;
  padding: 70px 40px;
  text-align: center;
}

.trusted-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: var(--navy);
  margin-bottom: 22px;
}

.trusted-section p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* ========== GENERAL SECTIONS ========== */
.section {
  padding: 90px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--navy);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 40px;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.about-photo {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: var(--navy);
}

.about-content p {
  margin-bottom: 18px;
  color: var(--text-light);
  font-size: 1.02rem;
}

/* ========== SERVICES / CARDS ========== */
.services-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card,
.card {
  background: white;
  padding: 36px 28px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover,
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.service-card h3,
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin: 16px 0 12px;
  color: var(--navy);
}

.service-card p,
.card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-icon {
  font-size: 1.6rem;
  color: var(--gold);
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--navy);
}

.contact-info p {
  margin-bottom: 14px;
  color: var(--text-light);
}

.contact-info a {
  color: var(--navy);
  font-weight: 500;
}

.contact-info a:hover {
  color: var(--gold);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--gray);
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
  background: white;
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

.btn {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 14px 36px;
  border: none;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy-dark);
  color: white;
  padding: 40px 40px 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo img {
  height: 48px;                    /* ← slightly larger */
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}

.footer-address .pin {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 2px;
}

.footer-phones {
  text-align: left;
  font-size: 0.95rem;
}

.footer-phones .label {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer-phones a {
  color: white;
  display: block;
  margin-bottom: 8px;
}

.footer-phones a:hover {
  color: var(--gold-light);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-align: right;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .site-header {
    padding: 0 20px;
    height: 84px;                  /* ← increased from 80px */
  }

  .header-center .logo-text .name {
    font-size: 1.1rem;
  }

  .main-nav {
    display: none;
  }

  .main-nav.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 84px;                     /* matches new header height */
    right: 0;
    background: var(--navy);
    padding: 20px 30px;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }

  .menu-toggle {
    display: block;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 320px;
    margin: 0 auto;
  }

  .section {
    padding: 60px 20px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-address {
    justify-content: center;
  }

  .footer-phones {
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .header-center {
    gap: 8px;
  }

  .header-left img,
  .header-center img {
    height: 42px;                  /* ← equal on mobile */
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }
}