html {
  scroll-behavior: smooth;
}

:root {
  --forest: #163229;
  --forest-soft: #24493d;
  --fern: #6f8f63;
  --sage: #dce6d6;
  --cream: #f7f3ea;
  --mist: #edf2eb;
  --ink: #1e241f;
  --copy: #56625a;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(17, 33, 27, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f8f5ee 0%, #f3f7f1 45%, #fbfaf7 100%);
  color: var(--copy);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--ink);
}

h1,
h2 {
  font-family: 'Cormorant Garamond', serif;
}

a {
  color: inherit;
  text-decoration: none !important;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

a:hover,
a:focus {
  color: var(--forest-soft);
}

p {
  margin: 0 0 18px;
}

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

::selection {
  background: var(--fern);
  color: var(--white);
}

.paddsection {
  padding: 110px 0;
  position: relative;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-title h2 {
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 0.98;
  margin-bottom: 16px;
}

.section-kicker,
.eyebrow,
.mini-label,
.plan-badge {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.section-kicker,
.eyebrow,
.mini-label {
  color: var(--forest-soft);
}

.section-intro {
  font-size: 1.07rem;
  color: var(--copy);
}

.mb-30 {
  margin-bottom: 30px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  display: none;
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(18, 34, 28, 0.08);
}

.logo {
  float: left;
  line-height: 1;
}

.logo a {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--forest);
}

.nav-menu {
  float: right;
  margin: 8px 0 0;
  padding: 0;
}

nav ul li {
  float: left;
  margin-left: 34px;
  list-style: none;
}

nav ul li a {
  color: var(--forest-soft);
  font-size: 0.96rem;
  font-weight: 700;
}

.responsive {
  display: none;
  font-size: 1.7rem;
  color: var(--forest);
}

.active {
  color: var(--forest);
}

.hero-section {
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(220, 230, 214, 0.6), transparent 30%),
    linear-gradient(120deg, rgba(14, 40, 31, 0.82), rgba(20, 50, 41, 0.55)),
    url("../images/me-headshot.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 30, 24, 0.12), rgba(14, 30, 24, 0.3)),
    url("../assets/images/bg-pattern.png") center center / 240px;
  opacity: 0.18;
  pointer-events: none;
}

#header .header-content {
  min-height: 100vh;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 0 60px;
  max-width: 760px;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
}

.header-content h1 {
  color: var(--white);
  font-size: clamp(3.5rem, 8vw, 6.2rem);
  line-height: 0.92;
  max-width: 720px;
  margin-bottom: 24px;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  max-width: 650px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.btn {
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 15px 28px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  color: var(--white);
}

.btn-primary {
  background: var(--sage);
  color: var(--forest);
  box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #e5eedf;
  color: var(--forest);
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border-color: rgba(36, 73, 61, 0.22);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(220, 230, 214, 0.45);
  border-color: rgba(36, 73, 61, 0.32);
  color: var(--forest);
}

.hero-actions .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-actions .btn-secondary:hover,
.hero-actions .btn-secondary:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.metric-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(250, 248, 242, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.metric-card strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.metric-card span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
}

.story-section {
  overflow: hidden;
}

.story-card {
  padding: 38px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.story-card h2 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 0.98;
  margin: 14px 0 24px;
}

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

.story-panel,
.service-card,
.pricing-card,
.contact-form-card,
.testimonial-shell {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(36, 73, 61, 0.09);
  box-shadow: var(--shadow);
}

.story-panel {
  padding: 28px;
  border-radius: var(--radius-md);
}

.panel-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 18px;
  background: var(--mist);
  color: var(--forest-soft);
  font-weight: 800;
}

.story-panel h3,
.service-card h3,
.process-step h3,
.pricing-card h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.accent-panel {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-soft) 100%);
}

.accent-panel h3,
.accent-panel p,
.accent-panel .mini-label {
  color: var(--white);
}

.service-card {
  height: 100%;
  padding: 32px 28px;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card i {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 18px;
  background: var(--mist);
  color: var(--forest);
  font-size: 1.7rem;
}

.process-section {
  background: linear-gradient(180deg, rgba(220, 230, 214, 0.35) 0%, rgba(247, 243, 234, 0.18) 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process-step {
  padding: 30px 26px;
  border-top: 3px solid var(--fern);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
}

.process-step span {
  display: block;
  color: var(--fern);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

.pricing-section {
  overflow: hidden;
}

.pricing-card {
  height: 100%;
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  position: relative;
}

.featured-plan {
  background: linear-gradient(180deg, #fdfcf8 0%, #edf4ea 100%);
  border-color: rgba(111, 143, 99, 0.28);
  transform: translateY(-8px);
}

.plan-badge {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--fern);
}

.plan-name {
  color: var(--forest-soft);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.plan-summary {
  min-height: 84px;
}

.plan-list {
  margin: 26px 0 32px;
  padding: 0;
}

.plan-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fern);
  box-shadow: 0 0 0 5px rgba(111, 143, 99, 0.16);
}

.testimonial-section {
  padding-top: 30px;
}

.testimonial-shell {
  padding: 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(236, 244, 233, 0.9) 100%);
}

.testimonial-shell h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.02;
  margin: 12px auto 18px;
  max-width: 760px;
}

.contact-section {
  padding-top: 80px;
}

.contact-copy h2 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 0.98;
  margin: 14px 0 20px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.contact-details li {
  margin-bottom: 10px;
  color: var(--forest-soft);
  font-weight: 600;
}

.contact-form-card {
  padding: 34px;
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--forest-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-control {
  width: 100%;
  min-height: 56px;
  background: rgba(248, 245, 238, 0.8);
  border: 1px solid rgba(36, 73, 61, 0.16);
  border-radius: 16px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 18px;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: none;
}

textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

.form-control:focus {
  outline: none;
  border-color: var(--fern);
  box-shadow: 0 0 0 4px rgba(111, 143, 99, 0.12);
  background: var(--white);
}

.form-note {
  margin-top: 16px;
  font-size: 0.94rem;
}

.btn-send {
  cursor: pointer;
}

#footer {
  padding: 34px 0 48px;
}

.footer-brand {
  color: var(--forest);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.footer-copy {
  margin-bottom: 0;
}
