@font-face {
  font-family: "Perandory";
  src: url("PerandorySemiCondensed.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #275441;
  --sand: #ded9d5;
  --white: #ffffff;
  --ink: #1f332b;
  --muted: #6d746f;
  --line: rgba(39, 84, 65, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--sand);
  font-family: Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

h1,
h2,
h3,
.number,
.method-index {
  font-family: "Perandory", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.shell {
  display: grid;
  grid-template-columns: 276px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--green);
  color: var(--white);
  padding: 30px;
}

.brand {
  font-style: italic;
  line-height: 1.3;
}

.main-nav {
  display: grid;
  gap: 18px;
  font-size: 14px;
  margin-top: 70px;
}

.main-nav a {
  width: fit-content;
  opacity: .88;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
}

.main-nav a:hover {
  border-color: rgba(255,255,255,.45);
}

.sidebar-cta {
  display: inline-flex;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.48);
  padding: 13px 16px;
  font-size: 13px;
  text-transform: uppercase;
}

.sidebar-meta {
  display: grid;
  gap: 18px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  line-height: 1.5;
}

.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 24px;
  background: var(--green);
  color: var(--white);
}

/* Mobile Navigation Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.menu-bar {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.menu-toggle.active .menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--green);
  color: var(--white);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 30px;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-family: "Perandory", Georgia, serif;
  font-size: 28px;
  text-transform: uppercase;
}

.mobile-menu-nav a {
  opacity: 0.85;
  transition: opacity 0.2s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.4);
}

.mobile-menu-meta {
  margin-top: 48px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 260px;
  line-height: 1.5;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .58fr);
  min-height: 100vh;
  background: var(--sand);
}

.hero-copy {
  padding: clamp(58px, 8vw, 110px) clamp(28px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  color: var(--green);
  font-size: clamp(66px, 9.2vw, 132px);
  line-height: .86;
}

.hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  background: var(--green);
  color: var(--white);
  padding: 15px 22px;
  font: 700 13px/1 Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

.text-link {
  color: var(--green);
  border-bottom: 1px solid rgba(39,84,65,.4);
  padding-bottom: 5px;
  font-size: 14px;
}

.hero-media {
  display: block;
  background: var(--green);
  color: var(--white);
  min-width: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: grayscale(100%);
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 18px clamp(28px, 7vw, 96px);
  background: var(--white);
  color: var(--green);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.page-nav span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(28px, 7vw, 96px);
}

.white {
  background: var(--white);
}

.green {
  background: var(--green);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: end;
  margin-bottom: 44px;
}

h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(48px, 6.8vw, 90px);
  line-height: .88;
}

.green h2,
.green h3 {
  color: var(--white);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.green .section-heading p {
  color: rgba(255,255,255,.76);
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-main {
  grid-column: span 2;
  min-height: 320px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--sand);
}

.service-small {
  grid-column: span 1;
  min-height: 320px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.number {
  color: var(--green);
  font-size: 42px;
  line-height: .9;
}

.service-matrix h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 34px;
  line-height: .92;
}

.service-matrix p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 112px);
  align-items: center;
}

.story-card {
  background: rgba(255,255,255,.1);
  padding: 28px;
}

.story-card img {
  display: block;
  width: 100%;
  aspect-ratio: .92;
  object-fit: cover;
  filter: grayscale(100%);
}

.story-copy p {
  max-width: 630px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.68;
  margin: 22px 0 0;
}

.method-list {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.22);
}

.method-row {
  display: grid;
  grid-template-columns: 120px minmax(180px, .35fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  background: var(--green);
  padding: 26px 0;
}

.method-index {
  color: var(--white);
  font-size: 42px;
  line-height: .9;
}

.method-row h3 {
  margin: 0;
  font-size: 32px;
  line-height: .92;
}

.method-row p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  line-height: 1.55;
  max-width: 560px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service-tags span {
  border: 1px solid rgba(39,84,65,.24);
  color: var(--green);
  padding: 7px 9px;
  font-size: 11px;
  text-transform: uppercase;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.package-card {
  min-height: 250px;
  background: var(--sand);
  padding: 26px;
}

.package-card h3 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 34px;
  line-height: .92;
}

.package-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.fit-list {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.22);
}

.fit-row {
  display: grid;
  grid-template-columns: minmax(190px, .36fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  background: var(--green);
  padding: 26px 0;
}

.fit-row h3 {
  margin: 0;
  color: var(--white);
  font-size: 32px;
  line-height: .95;
}

.fit-row p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.6;
  max-width: 680px;
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.buyer-card {
  min-height: 260px;
  background: var(--white);
  padding: 28px;
}

.buyer-card h3 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 34px;
  line-height: .92;
}

.buyer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.review-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
  gap: 34px;
  align-items: end;
  background: var(--green);
  color: var(--white);
  padding: clamp(46px, 7vw, 76px);
}

.review-panel h2 {
  color: var(--white);
  max-width: 760px;
}

.review-panel p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

.review-list {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.22);
}

.review-list span {
  display: block;
  background: var(--green);
  padding: 15px 0;
  color: rgba(255,255,255,.84);
  font-size: 14px;
}

.cta-panel {
  background: var(--sand);
  padding: clamp(50px, 8vw, 84px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
  gap: 36px;
  align-items: end;
  border: 1px solid var(--line);
}

.cta-panel h2 {
  max-width: 760px;
}

.cta-panel p {
  color: var(--muted);
  line-height: 1.6;
  margin: 18px 0 0;
  max-width: 600px;
}

.contact-box {
  background: var(--white);
  padding: 24px;
}

.contact-box a,
.contact-box span {
  display: block;
  color: var(--green);
  padding: 14px 0;
  border-bottom: 1px solid #d8d1cc;
  font-size: 14px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(28px, 7vw, 96px);
  background: var(--sand);
  color: var(--muted);
  font-size: 13px;
}

/* Form Styling */
.contact-form {
  display: grid;
  gap: 20px;
  max-width: 580px;
}

.form-group {
  display: grid;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 1120px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .mobile-header .sidebar-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .hero,
  .section-heading,
  .story,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 330px;
    font-size: clamp(50px, 13vw, 58px);
    line-height: .92;
  }

  .hero-copy > p {
    max-width: 330px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-media img {
    min-height: 300px;
    aspect-ratio: 1.2;
  }

  .service-matrix {
    grid-template-columns: 1fr;
  }

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

  .buyer-grid,
  .review-panel {
    grid-template-columns: 1fr;
  }

  .service-main,
  .service-small {
    grid-column: auto;
    min-height: auto;
  }

  .method-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fit-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  footer {
    flex-direction: column;
  }
}
