:root {
  --cream: #f5efe6;
  --cream-soft: #fbf7ef;
  --navy: #12304a;
  --navy-dark: #0d2a42;
  --olive: #60644a;
  --olive-dark: #454832;
  --sand: #dfbf7f;
  --sage: #838a6b;
  --path: #fff8ec;
  --ink: #14314a;
  --muted: #5f675c;
  --line: rgba(18, 48, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow: hidden;
}

/* Main shell */

.page-shell {
  height: 100vh;
  width: 100vw;
  background: var(--cream);
  display: grid;
  grid-template-rows: 104px 1fr 164px;
  overflow: hidden;
}

/* Header */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 5.2%;
  border-bottom: 1px solid rgba(18, 48, 74, 0.08);
  background: rgba(245, 239, 230, 0.96);
  z-index: 5;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: var(--navy);
}

.brand-mark {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-block;
  background:
    radial-gradient(circle at 50% 50%, var(--cream) 0 36%, transparent 37%),
    conic-gradient(from 22deg, var(--navy) 0 38%, transparent 38% 51%, var(--olive) 51% 84%, transparent 84%);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3.05rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--navy);
}

.brand-tagline {
  margin-top: 10px;
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--olive);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 40px);
}

.nav-link {
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: var(--olive);
}

.contact-button {
  background: var(--olive);
  color: #fffaf1;
  padding: 15px 23px;
  border-radius: 9px;
}

.contact-button.active::after {
  display: none;
}

/* Hero */

.home-screen {
  min-height: 0;
  position: relative;
  display: grid;
  grid-template-columns: 39% 61%;
  background: var(--cream);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 9vh 0 0 5.2vw;
  max-width: 620px;
}

.hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 6.15vw, 6.9rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 500;
  color: var(--navy);
}

.small-rule {
  width: 58px;
  height: 4px;
  background: var(--olive);
  margin: 28px 0 24px;
}

.hero-copy p {
  max-width: 390px;
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--navy);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px 22px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button,
.text-link {
  cursor: pointer;
  font: inherit;
}

.button {
  border-radius: 8px;
  padding: 15px 24px;
  min-height: 54px;
  font-size: 1rem;
  font-weight: 650;
  border: 1px solid var(--olive);
}

.primary {
  background: var(--olive);
  color: #fffaf1;
}

.secondary {
  background: rgba(255, 250, 241, 0.55);
  color: var(--navy);
}

.text-link {
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-color: var(--olive);
}

/* Hero art */

.hero-art {
  position: relative;
  overflow: hidden;
}

.sun {
  position: absolute;
  top: 8.5%;
  left: 51%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, #e3c48a 0%, #e7ca95 55%, rgba(231, 202, 149, 0.4) 100%);
  opacity: 0.95;
}

.birds {
  position: absolute;
  top: 12%;
  right: 10%;
  width: 180px;
  height: 90px;
}

.birds span {
  position: absolute;
  width: 28px;
  height: 14px;
  border-top: 3px solid var(--navy);
  border-radius: 50%;
  transform: rotate(8deg);
}

.birds span::after {
  content: "";
  position: absolute;
  left: 16px;
  top: -3px;
  width: 28px;
  height: 14px;
  border-top: 3px solid var(--navy);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.birds span:nth-child(1) {
  right: 48px;
  top: 0;
}

.birds span:nth-child(2) {
  right: 94px;
  top: 46px;
  transform: scale(0.76);
}

.birds span:nth-child(3) {
  right: 4px;
  top: 34px;
  transform: scale(0.62);
}

.landscape {
  position: absolute;
  right: -3%;
  bottom: -1px;
  width: 108%;
  height: 78%;
}

.hill {
  position: absolute;
  bottom: 0;
  border-radius: 52% 52% 0 0;
  filter: drop-shadow(0 -2px 8px rgba(18, 48, 74, 0.08));
}

.hill-light {
  left: 3%;
  bottom: 0;
  width: 47%;
  height: 58%;
  background: radial-gradient(circle at 45% 40%, #e4dbc8 0%, #d9cfba 78%);
  border-radius: 55% 48% 0 0;
}

.hill-olive {
  left: 34%;
  bottom: 0;
  width: 64%;
  height: 65%;
  background: linear-gradient(160deg, #666c51 0%, #4d563d 76%);
  border-radius: 60% 62% 0 0;
}

.hill-navy {
  right: -8%;
  bottom: 0;
  width: 57%;
  height: 44%;
  background: linear-gradient(150deg, #143a58 0%, #102f49 74%);
  border-radius: 62% 0 0 0;
}

.path-one,
.path-two {
  position: absolute;
  background: var(--path);
  z-index: 4;
  box-shadow: 0 0 22px rgba(255, 248, 236, 0.75);
}

.path-one {
  right: -3%;
  bottom: 33%;
  width: 72%;
  height: 52px;
  border-radius: 999px;
  transform: rotate(-19deg);
}

.path-two {
  right: 27%;
  bottom: -5%;
  width: 53%;
  height: 82px;
  border-radius: 100% 0 0 0;
  transform: rotate(-26deg);
  clip-path: polygon(0 55%, 100% 0, 100% 42%, 12% 100%);
}

.plant {
  position: absolute;
  z-index: 5;
  width: 120px;
  height: 210px;
  bottom: 0;
  opacity: 0.72;
}

.plant::before {
  content: "";
  position: absolute;
  left: 52px;
  bottom: 0;
  width: 3px;
  height: 185px;
  background: rgba(55, 69, 50, 0.6);
  transform: rotate(-7deg);
  transform-origin: bottom;
}

.plant::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 38px;
  width: 88px;
  height: 140px;
  background:
    radial-gradient(ellipse at 24% 28%, rgba(68, 82, 56, 0.75) 0 13%, transparent 14%),
    radial-gradient(ellipse at 64% 20%, rgba(68, 82, 56, 0.75) 0 12%, transparent 13%),
    radial-gradient(ellipse at 22% 56%, rgba(68, 82, 56, 0.68) 0 12%, transparent 13%),
    radial-gradient(ellipse at 73% 58%, rgba(68, 82, 56, 0.62) 0 11%, transparent 12%),
    radial-gradient(ellipse at 48% 84%, rgba(215, 195, 151, 0.8) 0 12%, transparent 13%);
}

.plant-left {
  left: 10%;
}

.plant-right {
  right: 6%;
  transform: scale(0.82);
}

/* Bottom feature band */

.feature-band {
  height: 164px;
  background: var(--navy-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 5.2%;
  gap: 0;
  border-top: 1px solid rgba(255, 250, 241, 0.08);
  position: relative;
  z-index: 6;
}

.feature-card {
  border: 0;
  border-right: 1px solid rgba(255, 250, 241, 0.28);
  background: transparent;
  color: #fffaf1;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  padding: 0 26px;
  font: inherit;
}

.feature-card:first-child {
  padding-left: 0;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-icon {
  width: 76px;
  height: 76px;
  border: 2px solid #edd58d;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #edd58d;
  font-size: 2.1rem;
  line-height: 1;
}

.feature-card strong {
  display: block;
  margin-bottom: 7px;
  color: #fffaf1;
  font-size: 1.02rem;
}

.feature-card small {
  display: block;
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Panels */

.panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 42, 66, 0.42);
  z-index: 50;
}

.info-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(520px, 92vw);
  height: 100vh;
  background: #fffaf1;
  z-index: 60;
  padding: 42px;
  box-shadow: -18px 0 50px rgba(13, 42, 66, 0.22);
  transform: translateX(110%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}

.info-panel.open {
  transform: translateX(0);
}

.close-panel {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

.panel-kicker {
  margin: 36px 0 12px;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 800;
}

.info-panel h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.65rem;
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.info-panel p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.info-panel a {
  color: var(--navy);
  font-weight: 700;
}

/* Smaller screens */

@media (max-width: 1100px) {
  body {
    overflow: auto;
  }

  .page-shell {
    min-height: 100vh;
    height: auto;
    grid-template-rows: auto auto auto;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .site-nav {
    gap: 16px 24px;
    flex-wrap: wrap;
  }

  .home-screen {
    min-height: 720px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 64px 6% 0;
  }

  .hero-art {
    min-height: 420px;
  }

  .feature-band {
    height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
  }

  .feature-card {
    border-right: 0;
    padding: 20px;
  }
}

@media (max-width: 680px) {
  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 2rem;
  }

  .brand-tagline {
    letter-spacing: 0.22em;
    font-size: 0.62rem;
  }

  .hero-copy h1 {
    font-size: 3.4rem;
  }

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

  .button,
  .text-link {
    width: 100%;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 72px 1fr;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
  }

  .info-panel {
    padding: 32px 26px;
  }
}
/* Desktop tightening to prevent overlap with the bottom feature band */

@media (min-width: 1101px) {
  .page-shell {
    grid-template-rows: 96px minmax(0, 1fr) 150px;
  }

  .site-header {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
  }

  .brand-name {
    font-size: clamp(2rem, 2.7vw, 2.75rem);
  }

  .brand-tagline {
    margin-top: 8px;
    font-size: 0.68rem;
  }

  .hero-copy {
    padding-top: clamp(34px, 5vh, 58px);
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 5.25vw, 5.75rem);
    max-width: 560px;
  }

  .small-rule {
    margin: 20px 0 18px;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.45;
    max-width: 380px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .button {
    min-height: 46px;
    padding: 12px 20px;
  }

  .feature-band {
    height: 150px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .feature-card {
    grid-template-columns: 74px 1fr;
    gap: 18px;
    padding: 0 22px;
  }

  .feature-icon {
    width: 62px;
    height: 62px;
    font-size: 1.65rem;
  }

  .feature-card strong {
    font-size: 0.96rem;
  }

  .feature-card small {
    font-size: 0.86rem;
    line-height: 1.35;
  }
}
/* Strong desktop fix: stop hero text overlapping the navy feature band */

@media (min-width: 1000px) {
  .page-shell {
    height: 100vh;
    grid-template-rows: 92px minmax(0, 1fr) 155px;
  }

  .site-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .home-screen {
    overflow: hidden;
  }

  .hero-copy {
    padding-top: clamp(22px, 4vh, 44px);
    padding-left: 5vw;
    max-width: 520px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 4.7vw, 5.15rem);
    line-height: 0.96;
    max-width: 500px;
  }

  .small-rule {
    width: 54px;
    height: 4px;
    margin: 18px 0 16px;
  }

  .hero-copy p {
    max-width: 380px;
    font-size: clamp(0.92rem, 1.1vw, 1.04rem);
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .button {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 0.92rem;
  }

  .text-link {
    font-size: 0.92rem;
  }

  .feature-band {
    height: 155px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .feature-card {
    grid-template-columns: 72px 1fr;
    gap: 16px;
    padding: 0 20px;
  }

  .feature-icon {
    width: 62px;
    height: 62px;
    font-size: 1.65rem;
  }

  .feature-card strong {
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .feature-card small {
    font-size: 0.84rem;
    line-height: 1.32;
  }
}

/* Extra protection for shorter laptop screens */

@media (min-width: 1000px) and (max-height: 760px) {
  .page-shell {
    grid-template-rows: 86px minmax(0, 1fr) 142px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 2.25rem;
  }

  .brand-tagline {
    margin-top: 6px;
    font-size: 0.58rem;
  }

  .hero-copy {
    padding-top: 18px;
  }

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

  .hero-copy p {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .feature-band {
    height: 142px;
  }
}
/* Remove default link underlines from navigation and buttons */

.site-nav a,
.hero-actions a,
.button,
.text-link {
  text-decoration: none;
}

.site-nav a:hover,
.hero-actions a:hover,
.button:hover,
.text-link:hover {
  text-decoration: none;
}

.text-link {
  border-bottom: 2px solid var(--olive);
  padding-bottom: 4px;
}
