:root {
  --ink: #0f172a;
  --muted: #6b7280;
  --gold: #C8A755;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
}

/* HERO */
.hero {
  position: relative;
  min-height: 72vh;
  display: block;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.45));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1100px, 90%);
  margin: clamp(28px, 6vw, 48px) auto;
  color: #fff;
  text-align: left;
}

.logo-top {
  font-size: .95rem;
  opacity: .9;
  margin-bottom: clamp(10px, 1.5vw, 14px);
}

.site-logo {
  max-height: 60px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400; /* thinner weight */
  line-height: 1.2;
  font-size: clamp(28px, 4vw, 56px);
  margin: 0 0 clamp(18px, 2.6vw, 26px);
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.btn {
  display: inline-block;
  padding: .85rem 1.15rem;
  border-radius: .5rem;
  text-decoration: none;
  font-weight: 600;
}

.btn-gold {
  background: var(--gold);
  color: #151515;
  box-shadow: 0 2px 0 rgba(0,0,0,0.18);
}

/* Services */
.services {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 36px; /* tweak this to fine-tune spacing */
  padding: 40px 0;
  flex-wrap: wrap;
}

.service {
  text-align: center;
  max-width: 220px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.service img {
  height: 40px;
  margin-bottom: 12px;
}
.service h3 {
  margin: .4rem 0 .2rem;
  font-weight: 800;
}

.service p {
  margin: 0;
  color: var(--muted);
}

/* About */
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  padding: 40px 20px;
  background: #f7f3ed;
}

.profile-pic {
  width: 220px;
  height: auto;
  border-radius: 12px;
}

.about-text {
  max-width: 620px;
}

.about h2 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(24px, 2.2vw, 34px);
  margin: 0 0 10px;
}
.about-centered {
  text-align: center;
  background: #f8f5ef;
  padding: 80px 20px;
}

.about-centered h2 {
  border-top: 1px solid #eae7df;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
  color: #0e2029;
}

.about-centered p {
  max-width: 750px;
  margin: 0 auto;
  font-family: Inter, system-ui, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #243342;
}

/* Testimonial / CTA */
.testimonial {
  text-align: center;
  padding: 22px 16px;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 1.8vw, 22px);
}

.cta {
  text-align: center;
  padding: 38px 16px;
  background: #fafafa;
}

.cta h2 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(26px, 2.4vw, 34px);
  margin: 0 0 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .services {
    justify-content: center;
  }
}


/* === Shared navigation for all pages === */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(15, 37, 48, 0.55); /* semi-transparent overlay */
  color: #fff;
  z-index: 1000;
}

.nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 24px;
  font-family: Inter, system-ui, Arial, sans-serif;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 0.8;
}

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

.nav-logo {
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}
/* === Sub hero (service pages) === */
.sub-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70vh;
  color: #fff;
  background: #0b1e28;
  overflow: hidden;
}

.sub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero) center/cover no-repeat;
  opacity: 0.35;
}

.sub-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
  z-index: 1;
}

.sub-hero .wrap {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 20px 80px; /* top padding ensures text sits below nav */
  text-align: left;
}
.sub-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.2;
  font-size: clamp(28px, 4vw, 56px);
  margin: 0 0 clamp(18px, 2.6vw, 26px);
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.sub-hero p {
  font-family: Inter, system-ui, Arial, sans-serif;
  font-size: 20px;
  max-width: 780px;
  opacity: 0.95;
}

/* === Shared layout blocks === */
.container { max-width: 1100px; margin: 0 auto; padding: 48px 20px; }
.intro {
  font-family: Inter, system-ui, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #243342;
  text-align: center;
  max-width: 900px;
  margin: 28px auto 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  text-align: center;
  margin: 40px 0 18px;
  color: #0e2029;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto 12px;
}
.feature {
  background: #fff;
  border: 1px solid #e7ecef;
  border-radius: 14px;
  padding: 32px;
  text-align: center;
}
.feature img { height: 36px; margin-bottom: 12px; opacity: 0.9; }
.feature h3 {
  font-family: Inter, system-ui, Arial, sans-serif;
  margin: 6px 0 8px;
  font-size: 18px;
  color: #0e2029;
}
.feature p { font-family: Inter, system-ui, Arial, sans-serif; font-size: 15px; color: #334a57; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}
.why { background: #faf7ef; border: 1px solid #efe7cf; border-radius: 12px; padding: 18px; text-align: center; }
.why h4 { margin: 2px 0 6px; font-size: 17px; font-family: Inter, system-ui, Arial, sans-serif; color: #0e2029; }
.why p { margin: 0; font-size: 15px; font-family: Inter, system-ui, Arial, sans-serif; color: #334a57; }

.cta { text-align: center; padding: 56px 20px; }
.footer { padding: 26px 20px; text-align: center; color: #5b727f; font-family: Inter, system-ui, Arial, sans-serif; }

/* === Responsive adjustments for service pages === */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .sub-hero h1 { font-size: 42px; }
}
@media (max-width: 620px) {
  .feature-grid, .why-grid { grid-template-columns: 1fr; }
  .sub-hero { min-height: 46vh; }
  .sub-hero h1 { font-size: 34px; }
}
