:root {
  --navy: #003f57;
  --navy-dark: #003247;
  --green: #62a33c;
  --green-dark: #46852a;
  --green-pale: #eef5e8;
  --cream: #fbfdf8;
  --text: #16242b;
  --line: #a7c78f;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.42;
}

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

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255,255,255,.98);
  box-shadow: 0 1px 8px rgba(0,0,0,.08);
}

.header-inner {
  width: min(1400px, calc(100% - 60px));
  min-height: 102px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo-link {
  flex: 0 0 auto;
}

.site-logo {
  width: 300px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(32px, 5vw, 82px);
}

.main-nav a {
  position: relative;
  padding: 38px 0 35px;
  color: var(--navy-dark);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green-dark);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  transform: scaleX(1);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero {
  position: relative;
  height: 430px;
  overflow: hidden;
}

.home-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,61,84,.96) 0%, rgba(0,61,84,.74) 34%, rgba(0,61,84,.08) 63%, transparent 100%);
}

.home-hero-content {
  position: absolute;
  top: 58px;
  left: max(6.5vw, 40px);
  color: white;
}

.home-hero-content h1 {
  margin: 0;
  font-size: clamp(52px, 5.2vw, 78px);
  line-height: 1.07;
  letter-spacing: -2px;
  text-shadow: 0 3px 5px rgba(0,0,0,.38);
}

.home-hero-content p {
  margin: 10px 0 0;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 700;
}

.leaf-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 225px;
  margin-top: 24px;
  color: var(--green);
}

.leaf-divider span {
  width: 168px;
  height: 3px;
  background: var(--green);
}

.leaf-divider b {
  font-size: 28px;
  transform: rotate(-20deg);
}

.intro-section {
  position: relative;
  overflow: hidden;
  min-height: 490px;
  padding: 28px 6vw 35px;
  background: radial-gradient(circle at center, #fff 20%, #f8fcf7 100%);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--navy);
}

.section-heading > span {
  width: 150px;
  height: 2px;
  background: var(--green);
}

.section-heading h2 {
  margin: 0;
  font-size: 48px;
}

.heading-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, #72b951, #4b922d);
  font-size: 42px;
  font-weight: 700;
}

.feature-list {
  width: min(1120px, 100%);
  margin: 12px auto 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 20px;
  margin: 0 0 16px;
}

.feature-icon {
  width: 82px;
  height: 82px;
  margin: auto;
  padding: 15px;
  color: var(--navy);
  border-radius: 50%;
  background: rgba(228,241,229,.75);
}

.feature-icon svg,
.about-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.feature-copy {
  min-height: 82px;
  padding-left: 38px;
  border-left: 2px solid var(--green);
}

.feature-copy p {
  margin: 0;
  font-size: 17px;
  text-align: justify;
}

.page-hero {
  position: relative;
  overflow: hidden;
  height: 235px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,32,32,.35), transparent 55%);
}

.page-hero > h1 {
  position: absolute;
  top: 66px;
  left: 4.5vw;
  margin: 0;
  color: white;
  font-size: 56px;
  text-shadow: 0 2px 5px rgba(0,0,0,.4);
}

.services-section {
  padding: 12px 4.3vw 18px;
}

.service-group {
  margin-bottom: 4px;
}

.service-group h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--navy);
  font-size: 22px;
}

.round-outline-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1.5px solid var(--green);
  border-radius: 50%;
  font-size: 27px;
}

.table-scroll {
  margin: -10px 4% 0 56px;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 850px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}

th,
td {
  padding: 2px 12px;
  border-right: 1px solid #bfc7bd;
  border-bottom: 1px solid #bfc7bd;
  line-height: 1.25;
}

th:first-child,
td:first-child {
  border-left: 1px solid #bfc7bd;
}

thead th {
  border-top: 1px solid #99b684;
  background: #f1f7ed;
  text-align: center;
}

thead th:first-child {
  border-top-left-radius: 5px;
}

thead th:last-child {
  border-top-right-radius: 5px;
}

tbody td:first-child {
  width: 24%;
  font-weight: 700;
}

tbody td:nth-child(2) {
  width: 54%;
  font-style: italic;
}

tbody td:nth-child(3) {
  width: 22%;
  white-space: nowrap;
  font-style: italic;
}

.price-note {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 15px 0 0;
  padding: 10px 20px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: #f5f9f1;
  font-style: italic;
}

.price-note span {
  color: var(--green);
  font-size: 42px;
}

.price-note p {
  margin: 0;
}

.about-photo {
  height: 300px;
}

.about-section {
  position: relative;
  min-height: 535px;
  padding: 32px 15vw 70px;
  overflow: hidden;
  background: white;
}

.about-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -8%;
  bottom: -112px;
  left: -8%;
  height: 145px;
  border-top: 10px solid #76af48;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(110deg, #126646, #004b43);
}

.about-list {
  position: relative;
  z-index: 1;
  width: min(1060px, 100%);
  margin: auto;
}

.about-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.about-icon {
  width: 122px;
  height: 122px;
  padding: 24px;
  color: #26711d;
  border-radius: 50%;
  background: #f0f5e8;
}

.about-row p {
  margin: 0;
  padding: 12px 0 12px 35px;
  border-left: 1px solid var(--green);
  color: #102831;
  font-size: 19px;
  line-height: 1.45;
  text-align: justify;
}

.tips-hero {
  height: 292px;
}

.tips-title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.tips-title h1 {
  margin: 0;
  color: var(--navy);
  font-size: 68px;
  text-shadow: 0 1px 2px rgba(255,255,255,.8);
}

.tips-section {
  padding: 25px 6vw 10px;
  background: linear-gradient(90deg, #fff, #fbfdf8);
}

.tips-list {
  max-width: 1250px;
  margin: auto;
}

.tip-row {
  display: grid;
  grid-template-columns: 120px 66px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 94px;
}

.tip-row + .tip-row .tip-copy {
  border-top: 1px dashed #b8cf9f;
}

.tip-pictogram {
  color: #268648;
  font-size: 49px;
  font-weight: 700;
  text-align: center;
}

.tip-number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: linear-gradient(145deg, #80b94d, #5e9b35);
  font-size: 28px;
  font-weight: 700;
}

.tip-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9px 0;
}

.tip-copy h2 {
  margin: 0 0 3px;
  color: var(--navy);
  font-size: 24px;
}

.tip-copy p {
  max-width: 1000px;
  margin: 0;
  font-size: 15.5px;
}

.contact-hero {
  height: 390px;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,31,41,.66), rgba(4,31,41,.08) 62%, transparent);
}

.contact-hero h1 {
  top: 105px;
  font-size: 96px;
  font-weight: 400;
}

.contact-section {
  position: relative;
  z-index: 2;
  min-height: 470px;
  margin-top: -20px;
  padding: 70px 6vw 45px;
  border-radius: 50% 50% 0 0 / 6% 6% 0 0;
  background: radial-gradient(circle, #fff, #f9fcf4);
}

.contact-inner {
  max-width: 1370px;
  margin: auto;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 68px;
  align-items: center;
}

.contact-illustration {
  height: 370px;
  padding-right: 45px;
  color: var(--navy);
  border-right: 2px solid var(--green);
}

.contact-illustration svg {
  width: 100%;
  height: 100%;
}

.contact-lead {
  max-width: 930px;
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.6;
}

.contact-copy address {
  font-style: normal;
}

.contact-copy address p,
.contact-hours p {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin: 13px 0;
  color: var(--navy);
  font-size: 24px;
}

.contact-copy strong {
  font-weight: 700;
}

.contact-symbol {
  width: 42px;
  flex: 0 0 42px;
  color: var(--green-dark);
  font-size: 32px;
  text-align: center;
}

.contact-hours {
  max-width: 930px;
  margin-top: 20px;
  padding-top: 13px;
  border-top: 2px solid var(--green);
}

.site-footer {
  min-height: 52px;
  padding: 14px max(4vw, 20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.85);
  background: var(--navy-dark);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.calmyx-credit {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  white-space: nowrap;
}

.calmyx-credit:hover {
  color: white;
  text-decoration: underline;
}

@media (max-width: 1050px) {
  .header-inner {
    width: calc(100% - 30px);
    flex-direction: column;
    gap: 0;
    padding-top: 10px;
  }

  .site-logo {
    width: 260px;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    gap: 30px;
    overflow-x: auto;
  }

  .main-nav a {
    padding: 16px 0 18px;
    font-size: 17px;
  }

  .main-nav a::after {
    bottom: 9px;
  }

  .about-section {
    padding-right: 7vw;
    padding-left: 7vw;
  }

  .contact-inner {
    grid-template-columns: 220px 1fr;
    gap: 35px;
  }

  .contact-copy address p,
  .contact-hours p {
    font-size: 19px;
  }

  .tips-section {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}

@media (max-width: 720px) {
  .header-inner {
    width: 100%;
  }

  .site-logo {
    width: 235px;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 24px;
    padding: 0 18px;
  }

  .main-nav a {
    font-size: 15px;
  }

  .home-hero {
    height: 440px;
  }

  .home-hero-shade {
    background: rgba(0,55,76,.68);
  }

  .home-hero-content {
    top: auto;
    right: 24px;
    bottom: 38px;
    left: 24px;
  }

  .home-hero-content h1 {
    font-size: 45px;
    letter-spacing: -1px;
  }

  .home-hero-content p {
    font-size: 18px;
  }

  .section-heading {
    gap: 10px;
  }

  .section-heading > span {
    width: 35px;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .heading-icon {
    width: 48px;
    height: 48px;
    font-size: 31px;
  }

  .intro-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 30px;
  }

  .feature-icon {
    width: 68px;
    height: 68px;
  }

  .feature-copy {
    padding: 15px 0 0;
    border-top: 2px solid var(--green);
    border-left: 0;
  }

  .feature-copy p {
    font-size: 15px;
    text-align: left;
  }

  .page-hero,
  .tips-hero {
    height: 210px;
  }

  .page-hero > h1 {
    top: 65px;
    left: 22px;
    font-size: 43px;
  }

  .services-section {
    padding: 15px 10px;
  }

  .service-group {
    margin-bottom: 20px;
  }

  .service-group h2 {
    align-items: flex-start;
    font-size: 20px;
  }

  .round-outline-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .table-scroll {
    margin: 5px 0 0;
  }

  table {
    font-size: 13px;
  }

  th,
  td {
    padding: 5px 8px;
  }

  .price-note {
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
  }

  .about-photo {
    height: 220px;
  }

  .about-section {
    padding: 25px 18px 80px;
  }

  .about-row {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 28px;
  }

  .about-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    padding: 18px;
  }

  .about-row p {
    padding: 14px 0 0;
    border-top: 1px solid var(--green);
    border-left: 0;
    font-size: 16px;
    text-align: left;
  }

  .tips-title h1 {
    font-size: 44px;
  }

  .tip-row {
    grid-template-columns: 55px 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .tip-pictogram {
    display: none;
  }

  .tip-number {
    width: 45px;
    height: 45px;
    font-size: 23px;
  }

  .tip-copy h2 {
    font-size: 20px;
  }

  .tip-copy p {
    font-size: 14px;
  }

  .contact-hero {
    height: 250px;
  }

  .contact-hero h1 {
    top: 70px;
    font-size: 56px;
  }

  .contact-section {
    padding: 45px 20px 30px;
    border-radius: 0;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-illustration {
    width: 170px;
    height: 180px;
    margin: auto;
    padding: 0;
    border: 0;
  }

  .contact-lead {
    font-size: 20px;
    line-height: 1.45;
  }

  .contact-copy address p,
  .contact-hours p {
    align-items: flex-start;
    gap: 7px;
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .contact-symbol {
    width: 30px;
    flex-basis: 30px;
    font-size: 23px;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}