:root {
  --sage-50: #f5faf6;
  --sage-100: #edf5ef;
  --sage-200: #dcecdf;
  --sage-400: #8bb28f;
  --sage-600: #4f7b5c;
  --sage-700: #3f634a;
  --sage-900: #21362a;

  --green-deep: #0f4529;
  --green-deep-line: rgba(255, 255, 255, 0.22);

  --sky-50: #f3f9ff;
  --sky-200: #d9ebfb;

  --gold-100: #fff3da;
  --gold-400: #e2ad43;

  --peach-100: #fff0e7;
  --peach-300: #f4c3a6;

  --ink: #18211b;
  --text: #4a5c50;
  --line: rgba(24, 33, 27, 0.08);
  --white: #ffffff;

  --shadow-xl: 0 24px 60px rgba(37, 58, 42, 0.12);
  --shadow-lg: 0 16px 38px rgba(37, 58, 42, 0.08);
  --shadow-md: 0 10px 24px rgba(37, 58, 42, 0.06);

  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(244, 195, 166, 0.18), transparent 18%),
    radial-gradient(circle at top right, rgba(217, 235, 251, 0.22), transparent 22%),
    linear-gradient(180deg, #fbfdfb 0%, #f5faf6 100%);
}

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

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

.section-space {
  padding: 5.5rem 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: "Outfit", Arial, sans-serif;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.45rem;
}

h4 {
  font-size: 1.02rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.03rem;
}

.lead {
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.48rem 0.86rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  color: var(--sage-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-400), var(--peach-300));
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 253, 251, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  font-weight: 900;
}

.brand img {
  width: 62px;
  height: 62px;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  object-fit: contain;
}

.brand-lines {
  display: flex;
  flex-direction: column;
  font-family: "Outfit", Arial, sans-serif;
  line-height: 1.02;
}

.brand-lines small {
  margin-top: 0.2rem;
  color: var(--sage-700);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.navbar .nav-link {
  color: var(--text);
  font-weight: 700;
}

.navbar .nav-link:hover {
  color: var(--sage-700);
}

/* Buttons */
.btn-brand-primary,
.btn-brand-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-brand-primary:hover,
.btn-brand-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-brand-primary {
  border: none;
  background: linear-gradient(135deg, var(--sage-600), var(--sage-700));
  color: var(--white);
}

.btn-brand-primary:hover {
  color: var(--white);
}

.btn-brand-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--sage-700);
}

/* Hero */
.hero-section {
  padding-top: 3.25rem;
  padding-bottom: 3.5rem;
  overflow: hidden;
}

.hero-copy {
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: 3rem;
  bottom: -2rem;
  z-index: -1;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(226, 173, 67, 0.18) 0%, rgba(226, 173, 67, 0) 70%);
  pointer-events: none;
}

.hero-copy h1 {
  max-width: 10ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.hero-actions {
  margin-top: 1.35rem !important;
}

.hero-card {
  position: relative;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-card::before {
  top: -24px;
  right: -22px;
  z-index: 0;
  width: 120px;
  height: 120px;
  background: rgba(217, 235, 251, 0.65);
}

.hero-card::after {
  bottom: -18px;
  left: -18px;
  z-index: 0;
  width: 90px;
  height: 90px;
  background: rgba(244, 195, 166, 0.48);
}

.hero-card-inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
}

.hero-card-inner img {
  width: 100%;
  padding: 1.3rem;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbf7 100%);
  object-fit: contain;
}

.hero-logo-image {
  max-height: 255px;
  margin: 0 auto;
  aspect-ratio: 4 / 2.6;
  object-fit: contain;
}

.hero-card-copy {
  padding: 1.1rem 1.2rem 1.25rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem !important;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.15rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--sage-700);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.service-tag::before {
  content: "•";
  margin-right: 0.55rem;
  color: var(--gold-400);
  font-weight: 800;
}

.service-tag:first-child::before {
  content: "";
  margin-right: 0;
}

/* Value band */
.value-band-section {
  padding: 0 0 2rem;
}

.value-band {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: var(--green-deep);
  color: var(--white);
}

.value-band .row {
  margin-right: 0;
  margin-left: 0;
}

.value-band-item {
  height: 100%;
  padding: 2rem 2rem 1.9rem;
  border-right: 1px solid var(--green-deep-line);
}

.value-band-item-last {
  border-right: 0;
}

.value-band-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.value-band-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
}

.value-band-item h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.value-band-item p {
  max-width: 26ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
}

/* Jack */
.jack-visual {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.35) 100%);
  box-shadow: var(--shadow-xl);
}

.jack-visual::before {
  content: "";
  position: absolute;
  inset: auto auto -20px -14px;
  z-index: 0;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: rgba(139, 178, 143, 0.18);
  transform: rotate(12deg);
}

.jack-photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
}

.jack-photo img {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(180deg, #fefefe 0%, #f3f8f4 100%);
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.jack-note {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.feature-card {
  height: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-md);
}

.feature-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--sage-700);
  font-family: "Outfit", Arial, sans-serif;
}

/* Seasons */
.seasons-section {
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(237, 245, 239, 0.75) 100%);
}

.section-head {
  max-width: 760px;
}

.season-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
}

.season-img {
  width: 100%;
  min-height: 220px;
  height: 100%;
  padding: 1rem;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  object-fit: contain;
}

.season-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1.3rem;
}

.season-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--sage-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.season-icon {
  display: inline-block;
  margin-right: 0.4rem;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.8rem;
}

.chip-list span {
  padding: 0.42rem 0.68rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
}

/* Services */
.list-box,
.quote-box {
  padding: 1.65rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.list-box {
  background: rgba(255, 255, 255, 0.84);
}

.quote-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(180deg, #ffffff 0%, #f5faf6 100%);
}

.services-title {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 4.2vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.services-intro,
.quote-support {
  max-width: 34rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

.quote-lead {
  max-width: 32rem;
  margin-bottom: 1.1rem;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.65;
}

.service-grid-list {
  padding-top: 0.35rem;
}

.service-grid-list > div > div {
  position: relative;
  padding-left: 1rem;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
}

.service-grid-list > div > div::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-400), var(--peach-300));
}

.quote-box .eyebrow,
.list-box .eyebrow {
  margin-bottom: 1.15rem;
}

.quote-box p:last-child {
  margin-top: 0.2rem;
}

/* Showcase */
.showcase-section-dark {
  background: linear-gradient(180deg, #0d472c 0%, #0b3d26 100%);
}

.section-head-light h2,
.section-head-light p {
  color: #ffffff;
}

.section-head-light p {
  max-width: 58rem;
  color: rgba(255, 255, 255, 0.88);
}

.eyebrow-dark {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  color: #ffffff;
}

.eyebrow-dark::before {
  background: rgba(255, 255, 255, 0.75);
}

.showcase-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-lg);
}

.showcase-card img {
  width: 100%;
  padding: 1rem;
  background: var(--white);
  object-fit: contain;
}

.showcase-card .body {
  padding: 1rem 1.1rem 1.2rem;
}

.showcase-card-dark {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.showcase-card-dark img {
  background: #f6f6f4;
}

.showcase-card-dark .body {
  background: rgba(255, 255, 255, 0.04);
}

.showcase-card-dark h3 {
  color: #ffffff;
}

.showcase-card-dark p {
  color: rgba(255, 255, 255, 0.86);
}

.showcase-image-small {
  width: 100%;
  max-height: 260px;
  padding: 1rem;
  aspect-ratio: 4 / 2.7;
  object-fit: contain;
}

.showcase-image-large {
  width: 100%;
  max-height: 360px;
  padding: 1.25rem;
  background: #f6f6f4;
  aspect-ratio: 4 / 3.1;
  object-fit: contain;
}

/* Contact */
.contact-card,
.form-card {
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-xl);
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.contact-item {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(245, 250, 246, 0.85);
}

.contact-item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--sage-700);
  font-family: "Outfit", Arial, sans-serif;
}

.form-label {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.custom-control {
  width: 100%;
  padding: 0.96rem 1rem;
  border: 1px solid rgba(24, 33, 27, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

.custom-control:focus {
  border-color: var(--sage-600);
  box-shadow: 0 0 0 0.2rem rgba(79, 123, 92, 0.12);
}

.custom-textarea {
  min-height: 170px;
  resize: vertical;
}

/* Footer */
.footer {
  padding: 1.6rem 0;
  background: linear-gradient(180deg, #1f3126 0%, #162219 100%);
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer strong {
  color: var(--white);
  font-family: "Outfit", Arial, sans-serif;
}

.nwp {
  color: rgba(255, 255, 255, 0.64);
}

/* Responsive */
@media (max-width: 991.98px) {
  .section-space {
    padding: 4.5rem 0;
  }

  .hero-section {
    padding-top: 2.75rem;
    padding-bottom: 3rem;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-logo-image {
    max-height: 230px;
  }

  .season-img {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .navbar .btn-brand-primary {
    width: 100%;
    justify-content: center;
  }

  .value-band-item {
    border-right: 0;
    border-bottom: 1px solid var(--green-deep-line);
  }

  .value-band-item-last {
    border-bottom: 0;
  }

  .services-title {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 4rem 0;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand-lines small {
    display: none;
  }

  .hero-copy::after {
    display: none;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 10vw, 3.6rem);
  }

  .hero-copy .lead {
    max-width: 100%;
    font-size: 1rem;
  }

  .service-tags {
    gap: 0.45rem 0.9rem;
  }

  .service-tag {
    padding: 0;
    font-size: 0.9rem;
  }

  .contact-card,
  .form-card,
  .list-box,
  .quote-box {
    padding: 1.35rem;
  }

  .showcase-image-small {
    max-height: 220px;
  }

  .value-band-item {
    padding: 1.4rem 1.2rem;
  }

  .value-band-item h3 {
    font-size: 1.08rem;
  }

  .value-band-item p {
    max-width: 100%;
    font-size: 0.96rem;
  }

  .services-title {
    margin-bottom: 0.9rem;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .services-intro,
  .quote-lead,
  .quote-support {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .service-grid-list > div > div {
    font-size: 0.96rem;
  }
}

.value-band-icon i {
  font-size: 0.9rem;
  line-height: 1;
}