:root {
  --ink: #111827;
  --muted: #5f6875;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #f7f7f4;
  --cream: #fffaf0;
  --teal: #1fb8c8;
  --teal-dark: #128897;
  --gold: #f8cc23;
  --green: #3bc77b;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
  background: var(--paper);
}
a { color: inherit; }
img { max-width: 100%; display: block; height: auto; }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: .75rem 1rem;
  background: var(--ink);
  color: #fff;
  z-index: 1000;
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229,231,235,.75);
}
.header-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 230px;
}
.logo img {
  width: 260px;
  max-height: 64px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.main-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: .96rem;
  padding: .55rem .68rem;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--teal-dark);
  background: rgba(31,184,200,.11);
}
.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 800;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  padding: .85rem 1.15rem;
  box-shadow: 0 10px 25px rgba(31,184,200,.24);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 24%, rgba(248,204,35,.28), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(59,199,123,.20), transparent 28%),
    linear-gradient(135deg, #fffaf0 0%, #ffffff 52%, #f3fbfc 100%);
  border-bottom: 1px solid rgba(229,231,235,.75);
}
.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 78px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 44px;
}
.kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 7vw, 5.75rem);
  line-height: .95;
  letter-spacing: -.065em;
}
.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 680px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}
.hero-card {
  background: #fff;
  border: 1px solid rgba(229,231,235,.9);
  box-shadow: var(--shadow);
  border-radius: 32px;
  padding: 34px;
  transform: rotate(1.5deg);
}
.hero-card strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
.hero-card span {
  color: var(--muted);
  display: block;
}
.hero-card .dots {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}
.hero-card .dots i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-card .dots i:nth-child(2) { background: var(--green); }
.hero-card .dots i:nth-child(3) { background: var(--teal); }

.blog-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 88px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 460px;
}
.blog-list {
  display: grid;
  gap: 24px;
}
.post-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(17, 24, 39, 0.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(31,184,200,.35);
}
.post-media {
  min-height: 214px;
  background:
    linear-gradient(135deg, rgba(31,184,200,.12), rgba(248,204,35,.20)),
    var(--soft);
  position: relative;
  overflow: hidden;
}
.post-media img {
  width: 100%;
  height: 100%;
  min-height: 214px;
  object-fit: cover;
}
.post-media.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  color: var(--teal-dark);
  font-weight: 900;
  text-align: center;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.post-body {
  padding: 28px 30px 28px 0;
}
.post-body h3 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.16;
  letter-spacing: -.035em;
}
.post-body h3 a {
  text-decoration: none;
}
.post-body h3 a:hover {
  color: var(--teal-dark);
}
.post-body p {
  margin: 0 0 18px;
  color: var(--muted);
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--teal-dark);
  font-weight: 900;
}
.read-more::after {
  content: "→";
  transition: transform .18s ease;
}
.read-more:hover::after { transform: translateX(4px); }

.cta {
  background: var(--ink);
  color: #fff;
  border-radius: 32px;
  padding: 42px;
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cta h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.cta p { margin: 0; color: rgba(255,255,255,.72); }
.cta a {
  text-decoration: none;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  padding: .95rem 1.25rem;
  font-weight: 900;
  white-space: nowrap;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--soft);
}
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: .94rem;
}
.footer-inner a { color: var(--teal-dark); font-weight: 800; }

@media (max-width: 1040px) {
  .header-inner { min-height: 84px; }
  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: .7rem .9rem;
    font-weight: 900;
    cursor: pointer;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 84px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 22px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .95rem 1rem; }
  .header-phone { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-card { transform: none; }
}
@media (max-width: 780px) {
  .logo img { width: 220px; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 12px; }
  .post-card { grid-template-columns: 1fr; }
  .post-body { padding: 24px; }
  .post-media, .post-media img { min-height: 220px; }
  .cta { grid-template-columns: 1fr; padding: 30px; }
  .cta a { justify-self: start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* Contact / consultation page */
.contact-overview {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 88px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 32px;
  align-items: start;
}

.profile-card,
.contact-form-card,
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(17, 24, 39, 0.05);
}

.profile-card {
  overflow: hidden;
}

.profile-photo {
  background:
    linear-gradient(135deg, rgba(31,184,200,.12), rgba(248,204,35,.16)),
    var(--soft);
  padding: 28px 28px 0;
}

.profile-photo img {
  width: min(250px, 100%);
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
}

.profile-content {
  padding: 28px;
}

.profile-content h2 {
  margin: 0 0 4px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.profile-content .role {
  display: block;
  color: var(--teal-dark);
  font-weight: 900;
  margin-bottom: 16px;
}

.profile-content p,
.info-card p {
  margin: 0;
  color: var(--muted);
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.profile-actions a,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  border-radius: 999px;
  padding: .9rem 1.15rem;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 25px rgba(31,184,200,.22);
}

.profile-actions a.secondary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: none;
}

.contact-form-card {
  padding: clamp(26px, 4vw, 42px);
}

.contact-form-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.contact-form-card > p {
  margin: 0 0 26px;
  color: var(--muted);
}

.static-form {
  display: grid;
  gap: 18px;
}

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

.field label {
  display: block;
  font-weight: 900;
  margin-bottom: 7px;
  color: var(--ink);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: .95rem 1rem;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(31,184,200,.12);
}

.form-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.form-submit {
  justify-self: start;
  font-size: 1rem;
  padding: 1rem 1.35rem;
}

.info-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 84px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  padding: 24px;
}

.info-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.info-card a {
  color: var(--teal-dark);
  font-weight: 900;
}

@media (max-width: 920px) {
  .contact-grid,
  .info-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

