:root {
  --brand-red: #B81C1C;
  --brand-white: #fff;
  --brand-dark: #222;
  --accent-gold: #C9A34A;
  --muted: #555;
  --max-w: 1200px;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--brand-dark);
  background: linear-gradient(180deg, #fff, #fbfbfb);
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 26px;
}

/* HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.98);
  position: sticky;
  top: 0;
  z-index: 40;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-box {
  width: 92px;
  height: 92px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid rgba(184, 28, 28, 0.08);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.logo-box img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  display: block;
}

.brand-title {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Cinzel", serif;
  font-size: 26px;
  color: var(--brand-red);
  margin: 0;
}

.brand-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

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

nav a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--brand-red);
}

.nav-cta {
  background: var(--brand-red);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.04);
  font-weight: 700;
}

/* HERO */
.hero {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 36px 0;
}

.hero-left {
  flex: 1;
  min-width: 260px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(184, 28, 28, 0.06);
  color: var(--brand-red);
  font-weight: 700;
  font-size: 13px;
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: 40px;
  margin: 18px 0 12px;
  color: var(--brand-dark);
  line-height: 1.02;
}

.hero-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 70%;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  border: 2px solid var(--brand-red);
  background: var(--brand-red);
  color: white;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(184, 28, 28, 0.12);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--brand-red);
  border: 2px solid rgba(0, 0, 0, 0.06);
}

.btn:hover {
  opacity: 0.9;
}

.pill {
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* HERO IMAGE */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 540px;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.12);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SECTIONS */
.section {
  padding: 26px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.section h2 {
  font-family: "Cinzel", serif;
  color: var(--brand-red);
  font-size: 28px;
  margin: 0 0 8px;
}

.lead {
  color: var(--muted);
  max-width: 900px;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  margin-top: 18px;
}

.card {
  background: var(--brand-white);
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.founder-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.service h3 {
  margin: 0;
  color: var(--brand-red);
  font-size: 18px;
}

.service p {
  color: var(--muted);
  margin-top: 8px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  margin-top: 20px;
}

.map-frame {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

/* FOOTER */
footer {
  margin-top: 32px;
  padding: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-left img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: contain;
}

/* RESPONSIVE FIXED VERSION */
@media (max-width:1000px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }

  .hero-left {
    order: 2;
  }

  .hero-right {
    order: 1;
    width: 100%;
  }

  .hero-card {
    width: 100%;
    height: auto;
  }

  .hero-sub {
    max-width: 100%;
  }

  .cta-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-left {
    justify-content: center;
  }
}

@media (max-width:600px) {
  .brand-name {
    font-size: 20px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.2;
  }

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

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

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-row {
    flex-direction: column;
  }
}

.small {
  font-size: 13px;
  color: #777;
}

.center {
  text-align: center;
}
/* --- Responsive Fix for Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

/* Make sure map iframes don't overflow */
.map-frame {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 8px;
}

/* ✅ Fix for small screens (mobile) */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr; /* stack vertically */
  }
  aside {
    margin-top: 20px;
  }
  .map-frame {
    width: 100%;   /* fully fit screen */
    height: 220px; /* adjust height for phones */
  }
}

  
 
  


 
