:root {
  --maroon: #5a0f1f;
  --deep-maroon: #3d0814;
  --gold: #d3af5f;
  --light-gold: #f5e2b0;
  --cream: #f9f2e8;
  --text: #2d1a13;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "EB Garamond", serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #fff5e7, #f9f2e8 60%);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: "Cinzel", serif; margin-top: 0; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }

.hero {
  min-height: 94vh;
  color: #fff;
  background:
    linear-gradient(to bottom right, rgba(61, 8, 20, 0.9), rgba(90, 15, 31, 0.7)),
    url("https://images.unsplash.com/photo-1611107683227-e9060eccd846?auto=format&fit=crop&w=1800&q=80") center/cover;
  position: relative;
  border-bottom: 3px solid var(--gold);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(211, 175, 95, 0.06), rgba(211, 175, 95, 0.06) 10px, transparent 10px, transparent 20px);
}
.nav, .hero-content { position: relative; z-index: 1; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.nav h2 { margin: 0; font-size: 1.2rem; }
.nav p { margin: .15rem 0 0; color: var(--light-gold); }
.hero-content { padding: 6rem 0 4rem; max-width: 760px; }
.hero-content h1 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: .5rem; }
.hero-content h3 { color: var(--light-gold); }
.established { letter-spacing: .15em; text-transform: uppercase; color: var(--light-gold); }
.tagline { font-size: clamp(1rem, 2.6vw, 1.5rem); margin-bottom: 1.5rem; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  background: linear-gradient(to right, #b3832f, var(--gold));
  color: #2f1b0d;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid #f7dca5;
  font-weight: 600;
  transition: transform .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--light-gold);
}

.section { padding: 4.8rem 0; }
.section:nth-child(even) { background: linear-gradient(to right, #fff8ef, #f7ecdf); }
.section h2 {
  color: var(--maroon);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}
.section h2::after {
  content: "";
  width: 90px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: -10px;
}

.grid { display: grid; gap: 1rem; }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  padding: 1.2rem;
  border: 1px solid #edd5a6;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(60, 33, 14, 0.08);
}
.service-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #f7e9c5, #e9cb8f);
  border: 1px solid #dfbf7f;
  color: #7a4b16;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(117, 75, 22, 0.18);
}
.card h3 { margin: .3rem 0 0; font-size: 1.08rem; }

.custom { text-align: center; }
.custom p { max-width: 760px; margin: 0 auto 1.2rem; }

.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery figure { margin: 0; overflow: hidden; border-radius: 12px; border: 1px solid #f1dcc1; }
.gallery img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery img:hover { transform: scale(1.06); }

.why-us ul { max-width: 720px; margin: 0 auto; list-style: none; padding: 0; }
.why-us li { padding: .8rem 0; border-bottom: 1px dashed #d7b77d; }

.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 1.2rem; align-items: start; }
.enquiry-form {
  background: #fff;
  border: 1px solid #edd5a6;
  padding: 1rem;
  border-radius: 14px;
}
.enquiry-form label { display: block; margin-bottom: .7rem; font-weight: 600; }
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: .7rem;
  margin-top: .2rem;
  border: 1px solid #d9b670;
  border-radius: 8px;
  font-family: inherit;
}
.map-wrap iframe { width: 100%; min-height: 320px; border: 0; border-radius: 12px; border: 1px solid #edd5a6; }

footer {
  background: var(--deep-maroon);
  color: #fbe7c5;
  padding: 2.5rem 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1rem; }
.footer-grid a { display: block; margin-bottom: .35rem; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  background: #1bbf5f;
  color: #fff;
  padding: .8rem 1rem;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .cards-3, .gallery-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav { flex-direction: column; gap: .7rem; align-items: flex-start; }
  .cards-3, .gallery-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}
