/* ==================================================
   BASE / RESET
================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #692331;
  --primary-dark: #4f1a25;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #fafafa;
  --white: #ffffff;
  --border: #e5e7eb;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0,0,0,0.08);
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: var(--primary);
}

/* ==================================================
   GLOBAL NAV (ONE SOURCE OF TRUTH)
================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header img {
  height: 56px;
}

/* Desktop nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

/* CTA */
.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: white !important;
  font-weight: 600;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--primary-dark);
}

/* Burger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary);
}

/* ==================================================
   MOBILE NAV
================================================== */
@media (max-width: 768px) {

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);

    transform: translateX(100%);
    transition: transform 0.35s ease;

    display: flex;
    flex-direction: column;
    padding: 90px 30px 40px;
    gap: 0;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 18px 0;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
  }
}

/* ==================================================
   HERO (PROFILE + CONTACT)
================================================== */
.hero {
  max-width: 1200px;
  margin: 50px auto 70px;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hero-profile {
  text-align: center;
}

.hero-photo {
  width: 300px;
  max-width: 100%;
  margin: 0 auto 14px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.hero-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
}

.hero-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
}

/* Contact box */
.hero-contact {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* ==================================================
   HERO MOBILE FIX
================================================== */
@media (max-width: 768px) {

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-photo {
    width: 220px;
  }

  .hero-contact {
    text-align: left;
  }
}

/* ==================================================
   GALLERY / SERVICES
================================================== */
.section-title {
  max-width: 1200px;
  margin: 60px auto 20px;
  padding: 0 20px;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.gallery-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
}

.gallery-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}

.gallery-card p {
  font-size: 15px;
  color: var(--text-light);
}
/* =========================
   MAP SECTION
========================= */
.map-section{
  margin-top: 80px;
}

.map-card{
  padding: 0;
  overflow: hidden;
}

.map-card iframe{
  display: block;
  border-radius: 18px;
}
