*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1b1a1f;
  --cream: #f7f2ea;
  --sand: #eee4d6;
  --navy: #1d2b3a;
  --teal: #1f6f78;
  --coral: #d7684b;
  --gold: #c79a3b;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(27, 26, 31, 0.12);
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(199, 154, 59, 0.12), transparent 40%),
    radial-gradient(circle at 20% 20%, rgba(31, 111, 120, 0.12), transparent 35%),
    linear-gradient(180deg, #f8f4ef 0%, #f4efe7 100%);
}

h1,
h2,
h3 {
  font-family: "DM Serif Display", "Georgia", serif;
  margin: 0 0 12px;
}

p {
  margin: 0 0 16px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  padding: 32px 6vw 80px;
  position: relative;
  overflow: hidden;
}

.site-header::after {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(31, 111, 120, 0.2), transparent 65%);
  z-index: 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 1.3rem;
}

.brand img {
  width: 104px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.hero-text {
  grid-column: span 7;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
}

.lead {
  font-size: 1.1rem;
  max-width: 540px;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--sand);
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 24px;
  font-weight: 600;
  color: var(--navy);
  flex-wrap: wrap;
}

.hero-meta i {
  margin-right: 8px;
  color: var(--coral);
}

.hero-card {
  grid-column: span 5;
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-badge {
  margin-top: 24px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(31, 111, 120, 0.08);
  display: grid;
  gap: 4px;
}

.section-wrap {
  padding: 52px 6vw;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.service-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.info-panel {
  background: var(--white);
  border-radius: 22px;
  padding: 40px;
  box-shadow: var(--shadow);
  font-size: 1.25rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #d6d1c9;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.info-panel.accent {
  background: linear-gradient(140deg, rgba(31, 111, 120, 0.1), rgba(215, 104, 75, 0.05));
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.staff-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.staff-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
}

.staff-name {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 10px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding-left: 28px;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-item p {
  margin-top: 10px;
}

.note {
  color: #3a3a3a;
}

.small-note {
  font-size: 0.85rem;
  color: #4f4f4f;
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.contact-card {
  background: var(--white);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-banner {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 8px;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.label {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--teal);
}

.form-card form {
  display: grid;
  gap: 12px;
}

.form-card input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d1c9;
  font-size: 1rem;
  font-family: inherit;
}

.form-actions {
  margin-top: 8px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.muted {
  color: #5a5a5a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-outline {
  border-color: var(--teal);
  color: var(--teal);
  background: transparent;
}

.btn-ghost {
  border-color: #d5cfc4;
  color: var(--navy);
  background: var(--white);
}

.map-embed {
  padding: 0 6vw 52px;
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 6vw 48px;
  background: var(--navy);
  color: var(--white);
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

.reveal {
  animation: fadeUp 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.delay-6 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-text,
  .hero-card {
    grid-column: span 1;
  }

  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .info-panel {
    font-size: 1.05rem;
    padding: 32px;
  }
}

@media (max-width: 700px) {
  .hero-meta {
    flex-direction: column;
    gap: 8px;
  }

  .staff-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
