:root {
  --ink: #16342f;
  --deep: #11312d;
  --green: #2e7569;
  --mint: #dbeee7;
  --cream: #f7f3ea;
  --gold: #d7a767;
  --white: #fff;
  --text: #38514d;
  --line: rgba(22, 52, 47, 0.14);
  --shadow: 0 24px 70px rgba(16, 47, 43, 0.12);
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.section-pad {
  padding: 108px 0;
}
.soft-bg {
  background: var(--cream);
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 0;
  transition: 0.3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 34px rgba(18, 54, 49, 0.08);
  padding: 10px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand img {
  width: 176px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}
.main-nav a {
  position: relative;
}
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  transition: 0.25s;
}
.main-nav > a:hover::after {
  right: 0;
}
.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}
.burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 5px;
  transition: 0.25s;
}
.hero {
  min-height: 850px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 20%, #e8f5f0 0 19%, transparent 45%),
    linear-gradient(180deg, #fbfaf6 0, #fff 100%);
  padding-top: 150px;
}
.hero-grid,
.split-grid,
.team-layout,
.appointment-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  display: inline-block;
  margin-bottom: 18px;
}
.hero h1,
.section-copy h2,
.section-head h2,
.team-copy h2,
.appointment-copy h2,
.location-card h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
}
.hero h1 em {
  font-weight: 600;
  color: var(--green);
}
.hero-copy > p {
  font-size: 18px;
  max-width: 650px;
  color: var(--text);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 16px 24px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(46, 117, 105, 0.25);
}
.btn-ghost {
  border: 1px solid var(--line);
  background: #fff;
}
.hero-trust {
  display: flex;
  gap: 38px;
  margin-top: 42px;
}
.hero-trust div {
  display: flex;
  flex-direction: column;
}
.hero-trust strong {
  font-size: 21px;
}
.hero-trust span {
  font-size: 12px;
  color: #6d817d;
}
.hero-visual {
  position: relative;
}
.hero-visual img {
  filter: drop-shadow(0 30px 50px rgba(15, 58, 52, 0.18));
}
.floating-note {
  position: absolute;
  left: -20px;
  bottom: 54px;
  background: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.floating-note span {
  color: #fff;
  background: var(--green);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
}
.intro-strip {
  background: var(--deep);
  color: #fff;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-grid div {
  padding: 28px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 15px;
  align-items: center;
}
.strip-grid div:last-child {
  border-right: 0;
}
.strip-grid span {
  font-family: "Playfair Display";
  font-size: 28px;
  color: var(--gold);
}
.strip-grid p {
  margin: 0;
  font-size: 13px;
}
.section-copy h2,
.section-head h2,
.team-copy h2,
.appointment-copy h2,
.location-card h2 {
  font-size: clamp(38px, 5vw, 58px);
}
.section-copy p,
.team-copy p,
.appointment-copy p,
.section-head p {
  color: var(--text);
}
.section-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.check-list li {
  padding: 10px 0 10px 34px;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}
.section-head > div {
  max-width: 690px;
}
.section-head p {
  max-width: 390px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  padding: 34px;
  border-radius: 22px;
  border: 1px solid rgba(22, 52, 47, 0.08);
  min-height: 250px;
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.service-no {
  font-family: "Playfair Display";
  font-size: 26px;
  color: var(--gold);
}
.service-card h3 {
  font-size: 20px;
  margin: 22px 0 10px;
}
.service-card p {
  color: var(--text);
  font-size: 14px;
}
.team-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}
.team-mini-grid div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.team-mini-grid span {
  font-size: 12px;
  color: #70817e;
}
.dark-section {
  background: var(--deep);
  color: #fff;
}
.section-head.light .eyebrow {
  color: #b4d9cf;
}
.section-head.light p {
  color: #c4d3cf;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}
.process-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep);
  font-weight: 900;
}
.process-card h3 {
  margin: 26px 0 10px;
}
.process-card p {
  font-size: 14px;
  color: #c7d5d2;
}
.testimonial-section {
  background: #fff;
}
.testimonial-wrap {
  max-width: 900px;
  text-align: center;
}
.quote-mark {
  font-family: "Playfair Display";
  font-size: 110px;
  line-height: 0.6;
  color: var(--gold);
}
blockquote {
  font-family: "Playfair Display";
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.35;
  margin: 20px auto 30px;
}
.quote-author {
  display: flex;
  flex-direction: column;
}
.quote-author span {
  font-size: 13px;
  color: #6f817d;
}
.appointment-grid {
  align-items: start;
}
.contact-list {
  margin-top: 30px;
  display: grid;
  gap: 8px;
}
.contact-list > a,
.contact-list > div {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.contact-list span {
  font-size: 13px;
  color: #73827f;
}
.appointment-form {
  background: #fff;
  padding: 34px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.appointment-form label {
  font-size: 13px;
  font-weight: 800;
}
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #dfe6e2;
  border-radius: 12px;
  padding: 14px;
  background: #fbfcfb;
  outline: none;
}
.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 117, 105, 0.09);
}
.consent {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500 !important;
}
.consent input {
  width: auto !important;
  margin-top: 4px !important;
}
.consent a {
  text-decoration: underline;
}
.form-note {
  font-size: 12px;
  color: #73827f;
  margin: 0;
}
.location-section {
  padding: 0 0 100px;
  background: var(--cream);
}
.location-card {
  background: var(--green);
  color: #fff;
  border-radius: 30px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}
.location-card .eyebrow {
  color: #d8efe8;
}
.location-card p {
  color: #e0efeb;
}
.text-link {
  font-weight: 800;
}
.map-art {
  height: 280px;
  border-radius: 22px;
  background-image: url(assets/map.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  place-items: center;
  position: relative;
}
.map-art span {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: rotate(-45deg);
}
.map-art strong {
  position: relative;
  text-align: center;
  color: var(--deep);
  font-size: 11px;
  line-height: 1.1;
}
.site-footer {
  background: #0d2925;
  color: #d8e7e3;
  padding: 72px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}
.footer-grid > div:first-child p {
  max-width: 330px;
}
.footer-grid h3 {
  color: #fff;
  font-size: 14px;
}
.footer-grid a,
.footer-grid p {
  display: block;
  color: #a9c0ba;
  font-size: 13px;
  margin: 9px 0;
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #78928c;
}
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 24px 80px rgba(10, 37, 33, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transform: translateY(140%);
  transition: 0.4s;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner p {
  font-size: 13px;
  margin: 5px 0;
  max-width: 700px;
  color: var(--text);
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.btn-small {
  padding: 10px 16px;
}
.btn-ghost-dark {
  background: #eef2f0;
}
.cookie-actions a {
  font-size: 12px;
  text-decoration: underline;
}
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2100;
  background: var(--deep);
  color: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  max-width: 420px;
  box-shadow: var(--shadow);
  transform: translateY(140%);
  transition: 0.35s;
}
.toast.show {
  transform: translateY(0);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.24s;
}
.delay-3 {
  transition-delay: 0.36s;
}
.policy-page {
  background: var(--cream);
  min-height: 100vh;
}
.policy-hero {
  padding: 160px 0 55px;
}
.policy-hero h1 {
  font-family: "Playfair Display";
  font-size: clamp(44px, 7vw, 72px);
  margin: 0;
}
.policy-content {
  padding-bottom: 100px;
}
.policy-box {
  background: #fff;
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow);
  max-width: 920px;
}
.policy-box h2 {
  margin-top: 34px;
}
.policy-box p,
.policy-box li {
  color: var(--text);
}
@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 72px;
    left: 20px;
    right: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
  }
  .main-nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .burger {
    display: block;
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .hero-grid,
  .split-grid,
  .team-layout,
  .appointment-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 130px;
  }
  .hero-copy {
    order: 1;
  }
  .hero-visual {
    order: 2;
    max-width: 650px;
    margin: auto;
  }
  .strip-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .location-card {
    grid-template-columns: 1fr;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .cookie-actions {
    white-space: normal;
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .section-pad {
    padding: 78px 0;
  }
  .hero {
    min-height: auto;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-trust {
    gap: 18px;
    justify-content: space-between;
  }
  .hero-trust strong {
    font-size: 18px;
  }
  .hero-trust span {
    font-size: 10px;
  }
  .floating-note {
    left: 0;
    bottom: 12px;
    font-size: 12px;
  }
  .strip-grid,
  .services-grid,
  .process-grid,
  .team-mini-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .strip-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .strip-grid div:last-child {
    border-bottom: 0;
  }
  .service-card {
    min-height: auto;
  }
  .location-card {
    padding: 32px 24px;
  }
  .appointment-form {
    padding: 24px;
  }
  .contact-list > a,
  .contact-list > div {
    flex-direction: column;
    gap: 4px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 17px;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions .btn {
    flex: 1;
  }
  .policy-box {
    padding: 26px;
  }
  .policy-hero {
    padding-top: 130px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .service-card {
    transition: none;
  }
}
