:root {
  --bg: #f8f6f1;
  --paper: #f4efe7;
  --card: #ffffff;
  --text: #282722;
  --muted: #5e5a50;
  --line: #e6e0d4;
  --green: #4f6f47;
  --green2: #6d8663;
  --shadow: 0 10px 30px rgba(39, 39, 39, 0.06);
  --radius: 18px;
  --max: 1402px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

.shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 34px;
}

/* HEADER */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ece8df;
}

.nav {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--green);
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  flex-wrap: nowrap;
  font-size: 0.84rem;
}

.menu a {
  flex: 0 0 auto;
  padding: 6px 0;
  color: #252525;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.menu a:hover,
.menu a.active {
  color: var(--green);
}

.menu a.active {
  border-color: var(--green);
  font-weight: 600;
}

/* HERO */
.hero-wrap {
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background: #f5f1e8;
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: 40% 60%;
  height: 512px;
  min-height: 0;
  align-items: stretch;
}

.hero-copy {
  min-width: 0;
  height: 512px;
  padding: 54px 44px 48px 66px;
  background: linear-gradient(90deg, #f6f2e9 0%, #f7f3eb 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-copy h1 {
  margin: 0 0 16px;
  max-width: 455px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 3.7vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--green);
  font-weight: 500;
}

.hero-divider {
  width: 56px;
  height: 3px;
  margin: 8px 0 18px;
  border-radius: 999px;
  background: #c7c49a;
}

.hero-copy p {
  margin: 0;
  max-width: 385px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #2e2b25;
}

.hero-cta {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 23px;
  border-radius: 5px;
  background: var(--green);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-media {
  position: relative;
  min-width: 0;
  height: 512px;
  overflow: hidden;
  background: #e7e2d7;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* SECTIONS */
.section {
  padding: 28px 0 56px;
  scroll-margin-top: 80px;
}

.section-head {
  margin-bottom: 28px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.95rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--green);
}

.lotus-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px auto 8px;
}

.lotus-mark::before,
.lotus-mark::after {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: #d9d4bf;
}

.lotus-mark img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.95;
}

.section-head p {
  margin: 0;
  color: #3e3b34;
  font-size: 0.95rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ece7db;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(39, 39, 39, 0.05);
}

.card-media {
  aspect-ratio: 1.75 / 1;
  overflow: hidden;
  background: #eee8dc;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px 20px;
}

.card h3,
.entry h1,
.section-title {
  margin: 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--green);
}

.card h3 {
  font-size: 1.3rem;
}

.card p {
  margin: 0;
  min-height: 58px;
  text-align: center;
  color: #39342b;
  font-size: 0.88rem;
  line-height: 1.65;
}

.btn-wrap {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 10px 14px;
  border: 1.5px solid #7b916f;
  border-radius: 5px;
  background: #ffffff;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 600;
}

.alt {
  background: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(229, 224, 213, 0.7);
  border-bottom: 1px solid rgba(229, 224, 213, 0.7);
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.panel,
.entry,
.list-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ece7db;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(39, 39, 39, 0.04);
}

.panel h3,
.list-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green);
  font-size: 1.25rem;
}

.panel p,
.panel li,
.entry p,
.entry li,
.list-card p {
  margin: 0;
  color: #39342b;
  line-height: 1.72;
  font-size: 0.92rem;
}

.panel ul,
.entry ul {
  margin: 0;
  padding-left: 18px;
}

.mini {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 12px;
  overflow: hidden;
  background: #fbfaf6;
  border: 1px solid #ece7db;
  border-radius: 14px;
}

.mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-copy {
  padding: 14px;
}

.mini-copy strong {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 0.98rem;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.entry {
  max-width: 820px;
  margin: 22px auto 50px;
}

.entry .meta {
  margin: 8px 0 18px;
  text-align: center;
  color: #7a7568;
  font-size: 0.9rem;
}

footer {
  padding: 24px 16px 36px;
  text-align: center;
  color: #6a6556;
  font-size: 0.86rem;
}

/* TABLET */
@media screen and (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-copy {
    height: auto;
    min-height: 420px;
  }

  .hero-media {
    height: 420px;
  }

  .cards,
  .grid2,
  .list-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media screen and (max-width: 760px) {
  .shell {
    width: 100%;
    max-width: none;
    padding-left: 14px;
    padding-right: 14px;
  }

  .topbar {
    position: static;
  }

  .topbar .shell.nav {
    width: 100%;
    max-width: none;
    height: auto;
    padding: 14px 14px 12px;
    display: block;
  }

  .brand {
    width: 100%;
    margin: 0 0 14px;
    gap: 8px;
  }

  .brand img {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }

  .brand span {
    font-size: 1.08rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .menu {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 6px;
    padding: 0;
    margin: 0;
    overflow: visible;
    font-size: 0.74rem;
  }

  .menu a {
    min-width: 0;
    padding: 7px 2px;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
    border-bottom-width: 2px;
  }

  .hero-wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .hero-copy {
    order: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 34px 24px 28px;
  }

  .hero-copy h1 {
    max-width: 100%;
    margin: 0 0 12px;
    font-size: 2.05rem;
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  .hero-divider {
    width: 48px;
    height: 3px;
    margin: 4px 0 16px;
  }

  .hero-copy p {
    max-width: none;
    font-size: 0.91rem;
    line-height: 1.62;
  }

  .hero-cta {
    margin-top: 18px;
    padding: 10px 18px;
    font-size: 0.82rem;
  }

  .hero-media {
    order: 2;
    width: 100%;
    height: 220px;
    min-height: 220px;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
  }

  .section {
    padding: 30px 0 42px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head h2 {
    font-size: 1.75rem;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .card-media {
    aspect-ratio: 16 / 9;
  }

  .card-body {
    padding: 16px 14px 18px;
  }

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