:root {
  --brand-950: #173122;
  --brand-900: #1e462f;
  --brand-800: #235c3a;
  --brand-700: #2d7a48;
  --brand-600: #419a5d;
  --brand-500: #58b86f;
  --brand-100: #e7f1e7;
  --beige-50: #fbf6ec;
  --beige-100: #f3ead9;
  --beige-200: #e7dac2;
  --ink-900: #173122;
  --ink-700: #526356;
  --white: #ffffff;
  --shadow-soft: 0 28px 70px rgba(23, 49, 34, 0.11);
  --radius-lg: 34px;
  --radius-md: 24px;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top right, rgba(88, 184, 111, 0.18), transparent 26%),
    linear-gradient(135deg, var(--beige-50) 0%, #f8f0de 44%, #eef7ea 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.navbar {
  padding: 1rem 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.is-scrolled {
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(23, 49, 34, 0.08);
  padding: 0.65rem 0;
}

.navbar-brand img {
  width: auto;
  height: auto;
  max-width: 158px;
  max-height: 72px;
  transition: width 0.3s ease;
}

.navbar.is-scrolled .navbar-brand img {
  max-width: 136px;
  max-height: 60px;
}

.navbar-nav .nav-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-900);
  padding: 0.75rem 0.9rem;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.35rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.nav-link-button {
  display: inline-flex;
  align-items: center;
  padding: 0.95rem 1.6rem 0.9rem !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  color: var(--white) !important;
  box-shadow: 0 16px 30px rgba(31, 85, 55, 0.22);
}

.nav-link-button::after,
.nav-link-button:hover::after,
.nav-link-button.active::after {
  display: none;
}

.nav-link-button:hover,
.nav-link-button:focus {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  color: var(--white) !important;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 32%, rgba(255, 255, 255, 0.82), transparent 23%),
    radial-gradient(circle at 84% 78%, rgba(88, 184, 111, 0.16), transparent 24%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
}

.hero-copy-column,
.hero-image-column {
  display: flex;
  align-items: center;
}

.hero-copy-column {
  padding: 7.5rem 0 3rem;
}

.hero-copy {
  max-width: 34rem;
  padding-right: 2rem;
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.text-brand {
  color: var(--brand-700);
}

.text-brand-soft {
  color: rgba(255, 255, 255, 0.72);
}

.hero-copy h1,
.section-heading h2,
.portrait-copy h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.15rem, 6.6vw, 3.95rem);
  color: var(--brand-950);
  margin-bottom: 1.5rem;
}

.hero-intro {
  font-size: 1.15rem;
  color: var(--ink-700);
  max-width: 31rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
  color: var(--ink-700);
}

.hero-divider span {
  width: 7rem;
  height: 1px;
  background: rgba(30, 70, 47, 0.28);
}

.hero-divider p {
  margin: 0;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  color: var(--white);
  border: none;
  box-shadow: 0 16px 30px rgba(31, 85, 55, 0.24);
}

.btn-brand:hover,
.btn-brand:focus {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
}

.btn-soft {
  border: 1px solid rgba(30, 70, 47, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-900);
}

.btn-soft:hover,
.btn-soft:focus {
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-900);
}

.hero-image-column {
  justify-content: flex-end;
  padding: 8.5rem 0 3rem 2rem;
}

.hero-image-frame {
  position: relative;
  width: min(100%, 38rem);
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: -1.2rem;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(88, 184, 111, 0.12));
  box-shadow: var(--shadow-soft);
}

.hero-image-panel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 42rem;
  box-shadow: 0 36px 70px rgba(23, 49, 34, 0.18);
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 42rem;
  object-fit: cover;
  object-position: center;
}

.section {
  position: relative;
  padding: 7rem 0;
}

.section-soft {
  background:
    radial-gradient(circle at left center, rgba(88, 184, 111, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 238, 222, 0.8));
}

.section-contact {
  background:
    linear-gradient(135deg, rgba(243, 234, 217, 0.72), rgba(231, 241, 231, 0.78)),
    rgba(255, 255, 255, 0.78);
}

.section-heading h2,
.portrait-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.section-note {
  color: var(--ink-700);
}

.content-panel,
.contact-panel,
.portrait-panel {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.content-panel {
  padding: 2.2rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(31, 85, 55, 0.08);
}

.content-panel-light {
  background: rgba(255, 255, 255, 0.94);
}

.quote-line {
  margin-top: 1.5rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--brand-500);
  font-weight: 700;
}

.feature-card {
  height: 100%;
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 85, 55, 0.08);
  box-shadow: 0 18px 35px rgba(15, 42, 29, 0.08);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: rgba(88, 184, 111, 0.12);
  color: var(--brand-700);
  font-weight: 800;
}

.portrait-image-card {
  position: relative;
  width: min(100%, 23.8rem);
  margin: 0 auto;
  overflow: visible;
}

.portrait-image-card::before {
  content: "";
  position: absolute;
  inset: -0.65rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(88, 184, 111, 0.12));
  box-shadow: var(--shadow-soft);
}

.portrait-image-card img {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0 auto;
  object-fit: cover;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 36px 70px rgba(23, 49, 34, 0.18);
}

.content-panel-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

.conditions-title {
  margin-top: 50px;
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.content-panel > .conditions-title:first-child {
  margin-top: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(31, 85, 55, 0.1);
  box-shadow: var(--shadow-soft);
}

.pricing-card-featured {
  background: linear-gradient(160deg, var(--brand-950), var(--brand-700));
  color: var(--white);
}

.pricing-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pricing-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  line-height: 1;
  margin: 0.7rem 0;
}

.pricing-meta {
  margin: 0;
  color: inherit;
  opacity: 0.82;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-list a,
.contact-list p {
  margin: 0;
  font-weight: 600;
}

.contact-panel {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 85, 55, 0.08);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-900);
}

.form-control {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(31, 85, 55, 0.14);
  background: #fcfcfa;
}

.form-control:focus {
  border-color: rgba(88, 184, 111, 0.7);
  box-shadow: 0 0 0 0.28rem rgba(88, 184, 111, 0.16);
}

.form-feedback {
  min-height: 1.5rem;
  color: var(--brand-800);
  font-weight: 600;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  color: var(--ink-700);
}

.text-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .navbar {
    background: rgba(251, 246, 236, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 32px rgba(15, 42, 29, 0.08);
    padding: 0.55rem 0;
  }

  .navbar-brand img,
  .navbar.is-scrolled .navbar-brand img {
    width: auto;
    max-width: 118px;
    max-height: 52px;
  }

  .navbar-nav {
    padding: 0.75rem 0 0.35rem;
  }

  .hero-copy-column {
    padding: 7rem 0 2.5rem;
  }

  .hero-copy {
    padding-right: 0;
    max-width: none;
  }

  .hero-image-column {
    padding: 0 0 3rem;
  }

  .hero-image-frame {
    width: 100%;
  }

  .hero-image-panel,
  .hero-image-panel img {
    min-height: 30rem;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    padding: 0.45rem 0;
  }

  .navbar-brand img,
  .navbar.is-scrolled .navbar-brand img {
    width: auto;
    max-width: 104px;
    max-height: 46px;
  }

  .section {
    padding: 5.5rem 0;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .hero-copy-column {
    padding: 6.1rem 0 2.75rem;
  }

  .hero-actions {
    margin-bottom: 1.35rem;
  }

  .hero-divider {
    gap: 0.75rem;
  }

  .hero-divider span {
    width: 4rem;
  }

  .content-panel,
  .contact-panel,
  .portrait-image-card,
  .feature-card,
  .pricing-card {
    padding: 1.5rem;
  }

  .portrait-image-card {
    width: min(100%, 21rem);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .nav-link-button {
    display: inline-flex;
    align-self: flex-start;
  }

  .conditions-title {
    font-size: 1.8rem;
  }
}
