/* Mullappilly Group — classic/heritage theme */

:root {
  --ivory: #f8f4ea;
  --card: #fffdf8;
  --ink: #2c2620;
  --muted: #6b6055;
  --maroon: #7a1f2b;
  --maroon-dark: #5c1620;
  --gold: #ab8a4e;
  --hairline: #ddd2b8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-weight: 600;
  color: var(--maroon-dark);
  margin: 0;
}

a { color: var(--maroon); }
a:hover { color: var(--maroon-dark); }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Header */
header.site {
  padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.monogram {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--maroon);
  flex: none;
}
nav.site a {
  margin-left: 26px;
  text-decoration: none;
  color: var(--ink);
  font-family: "EB Garamond", serif;
  font-size: 15px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
nav.site a:first-child { margin-left: 0; }
nav.site a:hover { color: var(--maroon); }

/* Hero */
.hero {
  text-align: center;
  padding: 90px 28px 70px;
}
.hero .monogram-lg {
  width: 76px;
  height: 76px;
  margin: 0 auto 26px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: var(--maroon);
}
.hero h1 {
  font-size: 54px;
  letter-spacing: 0.03em;
}
.hero .tagline {
  margin-top: 16px;
  color: var(--muted);
  font-size: 20px;
  font-style: italic;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 34px auto 0;
  max-width: 260px;
}
.rule span {
  height: 1px;
  flex: 1;
  background: var(--hairline);
}
.rule .diamond {
  flex: none;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* Sections */
section { padding: 66px 0; }
section.alt { background: #f2ecdd; }
.section-head {
  text-align: center;
  margin-bottom: 46px;
}
.section-head h2 {
  font-size: 34px;
  letter-spacing: 0.02em;
}
.section-head .rule { margin-top: 18px; }

.about p {
  max-width: 680px;
  margin: 0 auto 18px;
  text-align: center;
  color: var(--ink);
}

/* Business grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.card {
  background: var(--card);
  border: 1px solid var(--hairline);
  padding: 32px 28px;
  text-align: left;
}
.card h3 {
  font-size: 23px;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.card p {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 14px;
}
.card a.visit {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.card a.visit:hover { border-color: var(--maroon-dark); }

/* Contact */
.contact { text-align: center; }
.contact p { color: var(--muted); max-width: 520px; margin: 0 auto 26px; }
.btn-mail {
  display: inline-block;
  padding: 14px 34px;
  border: 1.5px solid var(--maroon);
  color: var(--maroon-dark);
  text-decoration: none;
  font-family: "EB Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-mail:hover { background: var(--maroon); color: #fff; }

/* Footer */
footer.site {
  border-top: 1px solid var(--hairline);
  padding: 30px 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.02em;
}
footer.site .fbrand {
  font-family: "Cormorant Garamond", serif;
  color: var(--maroon-dark);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

@media (max-width: 560px) {
  .hero { padding: 64px 20px 50px; }
  .hero h1 { font-size: 40px; }
  nav.site a { margin-left: 16px; font-size: 13px; }
  section { padding: 50px 0; }
}
