:root {
  --green: #8dc63f;
  --green-mid: #7cb342;
  --green-dark: #5a9216;
  --green-deep: #2e7d32;
  --forest: #1b3d22;
  --forest-2: #16331c;
  --mint: #a8d08d;
  --heading-green: #7cb342;
  --heading: #2c2c2c;
  --text: #6b6b6b;
  --text-light: #8a8a8a;
  --gray: #f6f6f6;
  --gray-2: #eeeeee;
  --line: #e6e6e6;
  --white: #ffffff;
  --error: #c0392b;
  --success: #2e7d32;
  --shadow: 0 12px 36px rgba(27, 61, 34, 0.08);
  --container: 1170px;
  --font: "Nunito Sans", sans-serif;
  --serif: "Playfair Display", serif;
  --script: "Great Vibes", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-gray {
  background: var(--gray);
}

.script {
  font-family: var(--script);
  color: var(--green);
  font-size: 30px;
  display: block;
  line-height: 1.2;
  margin-bottom: 6px;
}

h1,
h2,
h3,
h4 {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.25;
}

.section-title {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-title.green,
h2.green,
h3.green {
  color: var(--heading-green);
}

.lead {
  max-width: 620px;
  margin-bottom: 24px;
}

.text-center {
  text-align: center;
}

.text-center .lead {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 3px;
  padding: 14px 32px;
  transition: 0.3s;
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--green-deep);
}

.btn-white:hover {
  background: var(--forest);
  color: var(--white);
}

.btn-pill {
  border-radius: 50px;
}

/* Top bar */
.topbar {
  background: #f3f3f3;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 34px;
  gap: 22px;
}

.topbar a:hover {
  color: var(--green);
}

.topbar i {
  color: var(--green);
  margin-right: 6px;
}

/* Header */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  gap: 20px;
}

.brand img {
  height: 82px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: #8d8d8d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 10px;
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--heading);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 2px;
  background: var(--green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--heading);
  display: block;
}

.fab-cal {
  position: fixed;
  right: 28px;
  top: 158px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 900;
  box-shadow: 0 8px 20px rgba(124, 179, 66, 0.4);
}

.fab-cal:hover {
  background: var(--forest);
  color: var(--white);
}

/* Page title */
.page-title {
  background: var(--gray);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.page-title h1 {
  font-size: 28px;
  font-weight: 400;
  color: #b0b0b0;
}

/* Home hero */
.hero-home {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 560px;
  background: #faf8f5;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  margin-left: auto;
  padding: 80px 48px 80px 20px;
}

.hero-copy h1 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: #3a3a3a;
  margin: 10px 0 22px;
  max-width: 520px;
}

.hero-photo {
  position: relative;
  background: url("../images/hero-nature.jpg") center/cover no-repeat;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  min-height: 560px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  text-align: center;
  padding: 10px 8px;
}

.service-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  color: var(--green);
}

.service-card h3 {
  color: var(--green);
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14.5px;
  margin-bottom: 16px;
}

.more-arrow {
  color: var(--green);
  font-size: 18px;
}

/* About home */
.about-home {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.portrait-wrap {
  display: flex;
  justify-content: center;
}

.portrait-wrap img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid #eef6e3;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 28px 0 24px;
}

.stats div {
  text-align: center;
  padding: 8px 12px;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: none;
}

.stats strong {
  display: block;
  font-size: 28px;
  color: var(--heading);
}

.stats span {
  font-size: 13px;
  color: var(--text-light);
}

/* Quote banner */
.quote-banner {
  background: linear-gradient(rgba(27, 61, 34, 0.55), rgba(27, 61, 34, 0.55)),
    url("../images/leaves-close.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 70px 20px;
}

.quote-banner h3 {
  color: var(--white);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 18px;
}

.quote-banner blockquote {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: end;
  margin: 40px 0 36px;
}

.step {
  text-align: center;
}

.bar-wrap {
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 14px;
}

.bar {
  width: 42px;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-deep) 100%);
  border-radius: 4px 4px 0 0;
}

.step h4 {
  color: var(--green);
  font-size: 15px;
  margin-bottom: 8px;
}

.step p {
  font-size: 13.5px;
}

/* Newsletter */
.newsletter-band {
  background: #f3f6f0;
}

.newsletter-row {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

.green {
  color: var(--green);
}

.newsletter-row form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: start;
}

.newsletter-row form .form-success {
  grid-column: 1 / -1;
}

/* Calendar */
.calendar-card {
  max-width: 420px;
  margin: 30px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 22px;
}

.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--green);
  color: var(--white);
  padding: 12px 16px;
  margin: -22px -22px 18px;
}

.cal-head button {
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}

.cal-grid span,
.cal-grid button {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.cal-grid .dow {
  color: var(--text-light);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
}

.cal-grid button {
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  color: var(--heading);
}

.cal-grid button:hover:not(:disabled) {
  background: #eef6e3;
}

.cal-grid button.selected {
  background: var(--green);
  color: var(--white);
}

.cal-grid button:disabled {
  color: #ccc;
  cursor: default;
}

/* Testimonials */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.story-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  background: #fafafa;
  padding: 24px;
}

.story-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.story-card h4 {
  font-size: 14px;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

.read-more {
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.read-more:hover {
  color: var(--forest);
}

/* Pricing */
.pricing-table {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  border: 1px solid var(--line);
  overflow: hidden;
}

.price-col {
  padding: 28px 18px 32px;
  text-align: center;
}

.price-col.features {
  text-align: left;
  background: #fcfcfc;
}

.price-col.features h3 {
  visibility: hidden;
}

.price-col.gold {
  background: var(--green);
  color: var(--white);
}

.price-col.gold h3,
.price-col.gold .amount,
.price-col.gold li {
  color: var(--white);
}

.price-col h3 {
  color: var(--green);
  margin-bottom: 18px;
  font-size: 20px;
}

.price-col ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.price-col.gold ul li {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.price-col.features ul li {
  font-weight: 600;
  color: var(--heading);
}

.amount {
  font-size: 28px;
  color: var(--heading);
  margin: 18px 0;
  font-weight: 700;
}

/* About page */
.about-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.about-intro img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-intro h2 {
  font-size: 28px;
  margin-bottom: 4px;
}

.about-intro .role {
  color: var(--text-light);
  margin-bottom: 18px;
}

.cert-band {
  background: var(--green);
  padding: 40px 0;
}

.certs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cert {
  background: var(--white);
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 10px;
  color: var(--heading);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.35;
}

.cert span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}

.signature-quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}

.signature-quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--green);
  font-weight: 700;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.video-cover {
  position: relative;
  overflow: hidden;
}

.video-cover img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 61, 34, 0.28);
  color: var(--white);
  font-size: 44px;
  border: none;
  width: 100%;
  cursor: pointer;
}

.video-note {
  display: none;
  margin-top: 14px;
  background: #f3f6f0;
  padding: 16px 18px;
  color: var(--heading);
}

.video-note.show {
  display: block;
}

/* Change your life */
.expect-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.expect-item {
  text-align: center;
  max-width: 220px;
}

.expect-item img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 4px solid #eef6e3;
}

.expect-arrow {
  color: #cfcfcf;
  font-size: 28px;
}

.contact-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.green-card {
  background: var(--green);
  color: var(--white);
  padding: 36px 32px;
}

.green-card.dark {
  background: var(--forest);
}

.green-card h3,
.green-card p,
.green-card a,
.green-card label {
  color: var(--white);
}

.green-card input,
.green-card textarea {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: var(--heading);
}

.green-card .error-text {
  color: #fff4c2;
}

.social-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--white);
}

.social-list a:hover {
  color: var(--mint);
}

.cta-green {
  background: var(--green);
  text-align: center;
  padding: 70px 20px;
}

.cta-green h2 {
  color: var(--white);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 24px;
}

/* Workshops */
.workshop-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.month-block {
  margin-bottom: 48px;
}

.month-block h3 {
  font-size: 22px;
  margin-bottom: 22px;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.workshop-item .date {
  font-size: 28px;
  color: #c9c9c9;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.workshop-item .place {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading);
  font-weight: 700;
  margin: 4px 0 6px;
}

.workshop-item .time {
  color: var(--green);
  font-size: 13px;
  margin-bottom: 8px;
}

.workshop-item h4 {
  color: var(--green);
  font-size: 18px;
  margin-bottom: 8px;
}

.empty-month {
  text-align: center;
  color: var(--text-light);
  padding: 30px;
  border: 1px dashed var(--line);
}

/* Blog */
.blog-layout {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr;
  gap: 50px;
}

.blog-post {
  margin-bottom: 50px;
}

.blog-post img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 18px;
}

.blog-post h2 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--green);
  font-size: 32px;
  margin-bottom: 10px;
}

.meta {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.tags {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: 8px;
}

.tag {
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sidebar h3 {
  color: var(--green);
  font-size: 18px;
  margin: 28px 0 12px;
}

.search-box {
  display: flex;
  align-items: flex-start;
}

.search-box .form-group {
  flex: 1;
}

.search-box input {
  flex: 1;
  border: 1px solid var(--line);
  border-right: none;
  padding: 12px 14px;
}

.search-box button {
  background: var(--green);
  color: var(--white);
  border: none;
  width: 48px;
  cursor: pointer;
}

.sidebar a {
  display: block;
  padding: 7px 0;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.sidebar a:hover {
  color: var(--green);
}

.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.pagination a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.pagination a.active {
  background: var(--green);
  color: var(--white);
}

.article {
  max-width: 820px;
  margin: 0 auto;
}

.article p,
.article li {
  margin-bottom: 16px;
}

.article h2 {
  color: var(--green-deep);
  font-size: 26px;
  margin: 32px 0 12px;
}

.article h3 {
  font-size: 20px;
  margin: 24px 0 10px;
}

.article ul,
.article ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.article ul li {
  list-style: disc;
}

.article ol li {
  list-style: decimal;
}

.article img.wide {
  width: 100%;
  height: 360px;
  object-fit: cover;
  margin: 10px 0 28px;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.team-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 22px;
  background: var(--gray);
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.team-card .bio {
  padding: 24px 24px 24px 0;
}

.team-card .role {
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Contact */
.meet-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.meet-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 18px;
}

.detail-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.detail-line i {
  color: var(--green);
  width: 20px;
  margin-top: 4px;
}

.appt-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}

.appt-copy {
  background: var(--mint);
  color: var(--forest);
  padding: 32px 28px;
}

.appt-copy h3 {
  color: var(--forest);
  margin-bottom: 12px;
}

.appt-cal {
  background: var(--forest);
  padding: 18px;
}

.appt-cal .calendar-card {
  margin: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  max-width: none;
}

.appt-cal .cal-head {
  margin: 0 0 12px;
  background: transparent;
}

.appt-cal .cal-grid button {
  color: var(--white);
}

.appt-cal .cal-grid .dow {
  color: var(--mint);
}

.appt-cal .cal-grid button:disabled {
  color: rgba(255, 255, 255, 0.28);
}

.appt-cal .cal-grid button.selected {
  background: var(--green);
}

.underline-form input,
.underline-form textarea {
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding-left: 0;
  background: transparent;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

/* Forms */
.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 13px 16px;
  outline: none;
  color: var(--heading);
  font-size: 15px;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: var(--error);
}

.error-text {
  display: none;
  color: var(--error);
  font-size: 12px;
  margin-top: 4px;
}

.form-group.error .error-text {
  display: block;
}

.form-success {
  display: none;
  background: #e8f5e9;
  color: var(--success);
  padding: 12px 14px;
  margin-bottom: 14px;
  font-weight: 600;
}

.form-success.show {
  display: block;
}

.subscribe-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 48px 36px;
  text-align: center;
}

/* Legal */
.legal {
  max-width: 860px;
  margin: 0 auto;
}

.legal h2 {
  color: var(--green-deep);
  font-size: 26px;
  margin: 36px 0 12px;
}

.legal h3 {
  font-size: 19px;
  margin: 22px 0 8px;
}

.legal p,
.legal li {
  margin-bottom: 14px;
}

.legal ul,
.legal ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal ul li {
  list-style: disc;
}

.legal ol li {
  list-style: decimal;
}

/* Footer */
.site-footer {
  background: var(--forest);
  color: #c5d4c8;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr;
  gap: 36px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 18px;
}

.site-footer .brand img {
  height: 86px;
  margin-bottom: 16px;
  background: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  color: #c5d4c8;
}

.footer-links a:hover {
  color: var(--green);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-row a:hover {
  background: var(--green);
}

.footer-news {
  display: flex;
  gap: 8px;
  align-items: start;
  flex-wrap: wrap;
}

.footer-news .form-group {
  flex: 1;
  margin: 0;
}

.footer-news input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.footer-news .form-success {
  flex: 1 1 100%;
}

.footer-bottom {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
}

.copyright {
  background: #f3f3f3;
  color: #666;
  padding: 18px 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
}

.legal-links a:hover {
  color: var(--green);
}

.to-top {
  background: linear-gradient(rgba(27, 61, 34, 0.35), rgba(27, 61, 34, 0.35)),
    url("../images/grass-sun.jpg") center/cover no-repeat;
  color: var(--white);
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 28px;
}

.to-top:hover {
  color: var(--white);
  filter: brightness(1.08);
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mt-24 {
  margin-top: 24px;
}

@media (max-width: 1100px) {
  .hero-home,
  .about-home,
  .about-intro,
  .journey-grid,
  .newsletter-row,
  .contact-duo,
  .blog-layout,
  .team-card,
  .meet-grid,
  .appt-box,
  .pricing-table,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    margin-left: 0;
    max-width: none;
    padding: 60px 20px;
  }

  .hero-photo img {
    min-height: 420px;
  }

  .service-grid,
  .certs,
  .steps,
  .workshop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-col.features {
    display: none;
  }

  .team-card .bio {
    padding: 24px;
  }

  .fab-cal {
    top: auto;
    bottom: 24px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    min-height: 84px;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    padding-bottom: 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar a {
    letter-spacing: 0.04em;
    font-size: 10px;
  }

  .hero-copy h1,
  .hero-copy p {
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .story-grid,
  .service-grid,
  .certs,
  .steps,
  .workshop-grid,
  .team-grid,
  .newsletter-row form {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .to-top {
    min-width: 0;
  }

  .expect-arrow {
    transform: rotate(90deg);
  }

  .brand img {
    height: 62px;
  }
}
