/* Base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #111827;
  background-color: #f7f7f2;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-light {
  background-color: #ffffff;
}

.section-ivory {
  background-color: #f7f7f2;
}

.section-dark {
  background-color: #1b1f3b;
  color: #ffffff;
}

/* Typography */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  margin-top: 0;
  color: #111827;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

p {
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

/* Header / Navigation */

.site-header {
  background-color: #111827;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.brand-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.brand-tagline {
  font-size: 0.85rem;
  opacity: 0.8;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fbbf24; /* gold-ish highlight */
}

/* Mobile nav */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  background-color: #e5e7eb;
}

/* Hero */

.hero {
  background-color: #1b1f3b;
  color: #ffffff;
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: start;
}

.hero h1 {
  color: #ffffff;
  font-size: 2.6rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.9;
}

.hero-underline {
  width: 80px;
  height: 3px;
  background-color: #d4af37;
  margin: 0.75rem 0 1.25rem 0;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero card */

.hero-card {
  background-color: #111827;
  border-radius: 0.75rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.hero-card h2 {
  color: #f9fafb;
  margin-bottom: 0.25rem;
}

.hero-card p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.hero-card hr {
  border: none;
  border-top: 1px solid rgba(249, 250, 251, 0.12);
  margin: 1rem 0;
}

.hero-card-focus {
  margin-top: 0.5rem;
}

.hero-card-location {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background-color: #d4af37;
  color: #111827;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #facc15;
}

.btn-outline {
  background-color: transparent;
  color: #f9fafb;
  border-color: #e5e7eb;
}

.btn-outline:hover {
  background-color: #f9fafb;
  color: #111827;
}

.full-width {
  width: 100%;
}

/* Cards / Grids */

.card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.card-soft {
  background-color: #f9fafb;
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.grid-why {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-wide {
  grid-column: 1 / -1;
}

.grid-focus {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.focus-item h3 {
  margin-bottom: 0.5rem;
}

/* About layout */

.about-header {
  padding-top: 1rem;
}

.about-title-lines {
  margin-top: 0.5rem;
  color: #4b5563;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.simple-list {
  padding-left: 1rem;
}

.simple-list li {
  margin-bottom: 0.35rem;
}

.values-list {
  padding-left: 1rem;
}

.values-list li {
  margin-bottom: 0.45rem;
}

/* Contact layout */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-form-wrapper {
  background-color: #f9fafb;
  border-radius: 0.75rem;
  padding: 1.75rem;
  border: 1px solid #e5e7eb;
}

/* Form */

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.appointment-form label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
}

.appointment-form input,
.appointment-form textarea,
.appointment-form select {
  padding: 0.55rem 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  font-family: inherit;
  font-size: 0.95rem;
}

.appointment-form input:focus,
.appointment-form textarea:focus,
.appointment-form select:focus {
  outline: none;
  border-color: #2541b2;
  box-shadow: 0 0 0 1px rgba(37, 65, 178, 0.15);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.radio-group input {
  margin-right: 0.25rem;
}

.small-note {
  font-size: 0.85rem;
  color: #6b7280;
}

.form-message {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Footer */

.site-footer {
  background-color: #111827;
  color: #e5e7eb;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Value line */

.value-line {
  text-align: center;
  font-size: 1.05rem;
  margin: 0;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background-color: #111827;
    display: none;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    padding: 0.75rem 1.5rem 1rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .section {
    padding: 3rem 0;
  }

  h1 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }
}

/* Hero photo */

.hero-photo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.hero-photo {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid #d4af37;
}

/* About photo */

.about-photo-card {
  background-color: #f9fafb;
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-photo {
  width: 100%;
  max-width: 260px;
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  border: 3px solid #d4af37;
  display: block;
  margin: 0 auto;
}

