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

:root {
  --slate: #3d5a80;
  --slate-dark: #2c4360;
  --coral: #e07a5f;
  --coral-light: #f4a896;
  --cream: #fdfcfa;
  --mist: #eef2f7;
  --text: #3a3a3a;
  --muted: #6b7280;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 16px 48px rgba(61, 90, 128, 0.1);
  --max: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Work Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.container { width: min(var(--max), 92vw); margin: 0 auto; }

.topline {
  background: var(--slate);
  color: #c8d4e3;
  font-size: 0.82rem;
  padding: 0.55rem 0;
}

.topline .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.topline a { color: var(--coral-light); font-weight: 600; }
.topline a:hover { text-decoration: underline; }

.site-head {
  background: var(--white);
  border-bottom: 1px solid #e5e9ef;
  position: sticky;
  top: 0;
  z-index: 50;
}

.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

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

.brand img { width: 48px; height: 48px; }

.brand .name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate);
  line-height: 1.2;
}

.brand .sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
}

.tabs {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.tabs a {
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.tabs a:hover,
.tabs a.active {
  color: var(--slate);
  border-bottom-color: var(--coral);
}

.tabs a.cta {
  background: var(--coral);
  color: var(--white);
  border-radius: 999px;
  border-bottom: 0;
  margin-left: 0.5rem;
  margin-bottom: 0;
}

.tabs a.cta:hover { background: #c9684f; color: var(--white); }

.menu-btn {
  display: none;
  background: var(--slate);
  color: var(--white);
  border: 0;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.hero {
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(224, 122, 95, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(61, 90, 128, 0.08) 0%, transparent 50%),
    var(--cream);
  padding: 4rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  color: var(--slate-dark);
  margin-bottom: 1.25rem;
}

.hero-copy .lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 46ch;
}

.hero-copy .email-line {
  margin-top: 1rem;
  font-weight: 600;
}

.hero-copy .email-line a { color: var(--coral); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  transition: background 0.2s, transform 0.2s;
}

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

.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover { background: #c9684f; }

.btn-outline {
  border-color: var(--slate);
  color: var(--slate);
}

.btn-outline:hover {
  background: var(--slate);
  color: var(--white);
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--coral-light);
  border-radius: calc(var(--radius) + 4px);
  opacity: 0.5;
  pointer-events: none;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 1.25rem 0;
  background: var(--white);
  border-bottom: 1px solid #e5e9ef;
}

.pills span {
  background: var(--mist);
  color: var(--slate);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.section { padding: 4.5rem 0; }
.section-white { background: var(--white); }

.section-head {
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.section-head p { color: var(--muted); }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid #eef2f7;
}

.section-white .card { background: var(--cream); }

.card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--slate);
  margin-bottom: 0.5rem;
}

.card p { font-size: 0.94rem; color: var(--muted); }

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid #e5e9ef;
}

.step .num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.step h3 { font-size: 0.95rem; color: var(--slate); margin-bottom: 0.35rem; }
.step p { font-size: 0.85rem; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  height: 300px;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
}

.split h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.split p { color: var(--muted); margin-bottom: 0.85rem; }

.provider {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid #eef2f7;
}

.provider img {
  border-radius: var(--radius-sm);
  width: 100%;
  object-fit: cover;
}

.provider h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  color: var(--slate);
}

.provider .role {
  color: var(--coral);
  font-weight: 600;
  margin: 0.35rem 0 1rem;
}

.provider p { color: var(--muted); margin-bottom: 0.75rem; }

.service-list { margin-top: 1rem; }

.service-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid #e5e9ef;
}

.service-item:first-child { border-top: 1px solid #e5e9ef; }

.service-item .n {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  color: var(--coral-light);
  line-height: 1;
}

.service-item h3 { font-size: 1.05rem; color: var(--slate); margin-bottom: 0.35rem; }
.service-item p { color: var(--muted); font-size: 0.94rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.info-panel {
  background: var(--slate);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
}

.info-panel h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.info-panel p { color: #b8c8d8; margin-bottom: 1.25rem; }

.info-panel li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.info-panel li:last-child { border-bottom: 0; }

.info-panel strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 0.3rem;
}

.info-panel a { color: #fde8e2; word-break: break-all; }

.form-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  border: 1px solid #e5e9ef;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #d1d9e6;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  font: inherit;
  background: var(--cream);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--coral);
  outline-offset: 1px;
}

.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.75rem; }

.map-frame {
  margin-top: 1.25rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.map-frame iframe { width: 100%; height: 220px; border: 0; display: block; }

.site-footer {
  background: var(--slate-dark);
  color: #a8b8c8;
  padding: 2.5rem 0 1.25rem;
  margin-top: 2rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-cols h4 {
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 0.75rem;
}

.footer-cols a { color: var(--coral-light); }
.footer-cols a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-bottom a { color: var(--coral-light); }

.section-head a,
.split a { color: var(--coral); font-weight: 600; }

@media (max-width: 960px) {
  .hero-grid, .split, .contact-layout, .cards-3, .cards-2, .provider, .footer-cols { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .menu-btn { display: block; }
  .tabs {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid #e5e9ef;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
  .tabs.open { display: flex; }
  .site-head .container { position: relative; }
  .head-row { flex-wrap: wrap; }
  .steps { grid-template-columns: 1fr; }
}
