@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');

:root {
  --teal-deep: #2c5f5d;
  --teal-mid: #4a8b87;
  --teal-soft: #a8d0cd;
  --teal-pale: #e0f0ee;
  --cream: #faf7f2;
  --ink: #1f2d2c;
  --muted: #5a6b6a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  line-height: 1.7;
  background: var(--cream);
}

a {
  color: var(--teal-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

a:hover {
  border-bottom-color: var(--teal-deep);
}

/* Header / Nav */
header {
  background: var(--cream);
  border-bottom: 1px solid var(--teal-soft);
  padding: 1.25rem 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--teal-deep);
  letter-spacing: 0.005em;
  line-height: 1.05;
}

.brand small {
  display: block;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(44, 95, 93, 0.3);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
}

nav a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
}

nav a.active {
  color: var(--teal-deep);
  border-bottom-color: var(--teal-deep);
}

/* Hero (home) */
.hero {
  background: linear-gradient(135deg, var(--teal-pale) 0%, var(--teal-soft) 60%, var(--teal-mid) 100%);
  padding: 5rem 2rem 2.5rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.6rem;
  font-weight: normal;
  color: var(--teal-deep);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text p.lede {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.hero-photo {
  display: flex;
  justify-content: center;
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-frame .wreath {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(44, 95, 93, 0.12));
}

.portrait-frame .portrait {
  position: relative;
  width: 74%;
  height: 74%;
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(44, 95, 93, 0.22);
  border: 5px solid var(--cream);
  object-fit: cover;
  z-index: 1;
}

.cta {
  display: inline-block;
  background: var(--teal-deep);
  color: var(--cream);
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: none;
}

.cta:hover {
  background: var(--teal-mid);
  border-bottom-color: transparent;
  color: var(--cream);
}

/* Page sections */
main.page {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

main.page-home {
  padding-top: 2rem;
}

main.page-home > h2:first-child {
  font-size: 2.4rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

main.page h1 {
  font-size: 2.2rem;
  font-weight: normal;
  color: var(--teal-deep);
  margin-bottom: 0.5rem;
}

main.page .subtitle {
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-style: italic;
}

main.page h2 {
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--teal-deep);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

main.page p {
  margin-bottom: 1.25rem;
}

/* Services */
.service {
  background: var(--cream);
  border-left: 4px solid var(--teal-mid);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 2px 8px rgba(44, 95, 93, 0.06);
}

.service h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* Contact */
.contact-info {
  background: var(--teal-pale);
  padding: 2rem;
  border-radius: 6px;
  margin-top: 1.5rem;
}

.contact-info dt {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1rem;
}

.contact-info dt:first-child {
  margin-top: 0;
}

.contact-info dd {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  margin-left: 0;
}

/* Footer */
footer {
  background: var(--teal-deep);
  color: var(--teal-pale);
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.03em;
}

footer a {
  color: var(--teal-pale);
}

footer a:hover {
  border-bottom-color: var(--teal-pale);
}

/* Responsive */
@media (max-width: 720px) {
  .hero {
    padding: 3rem 1.5rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .portrait-frame {
    max-width: 320px;
  }
  .brand {
    font-size: 1.85rem;
  }
  .brand small {
    font-size: 0.65rem;
    margin-top: 4px;
  }
  nav ul {
    gap: 1rem;
  }
  main.page {
    padding: 2.5rem 1.5rem;
  }
}
