@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@600;700&display=swap');

:root {
  --bg: #f4f0e8;
  --surface: #fffdf8;
  --surface-2: #fbf6ec;
  --text: #1c2b28;
  --muted: #586967;
  --line: #d8d0c2;
  --brand: #0a5f54;
  --brand-2: #0f7c6e;
  --accent: #c59a3d;
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-lg: 0 24px 60px rgba(20, 33, 29, 0.14);
  --shadow-sm: 0 8px 24px rgba(20, 33, 29, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.75;
  background:
    radial-gradient(70rem 35rem at 110% -10%, rgba(10, 95, 84, 0.09), transparent 65%),
    radial-gradient(50rem 30rem at -10% 110%, rgba(197, 154, 61, 0.11), transparent 70%),
    var(--bg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(10, 95, 84, 0.12);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(12px);
}

.site-header .inner {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.site-header .logo {
  height: 58px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.logo-link:hover .logo {
  transform: translateY(-1px);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.site-header nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.46rem 0.78rem;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header nav a:hover {
  color: var(--brand);
  background: rgba(10, 95, 84, 0.09);
}

.wrap {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
}

.page-text {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.3rem, 2.3vw, 3rem);
  overflow: hidden;
}

.page-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 95, 84, 0.045), transparent 45%),
    linear-gradient(300deg, rgba(197, 154, 61, 0.04), transparent 40%);
  pointer-events: none;
}

.page-text > * {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
  margin-bottom: 1.35rem;
  color: var(--brand);
}

h2 {
  margin-top: 2.3rem;
  margin-bottom: 0.9rem;
  padding-top: 0.3rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  border-top: 1px solid var(--line);
}

h3 {
  margin-top: 1.55rem;
  margin-bottom: 0.65rem;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

p,
li {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
}

.page-text > p:first-of-type {
  font-size: 1.08rem;
  color: #33423f;
}

ul,
ol {
  margin: 0 0 1.2rem;
  padding-left: 1.3rem;
}

li::marker {
  color: var(--brand);
}

strong {
  color: var(--text);
}

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-2);
}

.hero-banner {
  width: 100%;
  display: block;
  margin: 0 0 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.95rem;
}

th,
td {
  padding: 0.8rem 0.95rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: rgba(10, 95, 84, 0.09);
  color: var(--brand);
  font-weight: 700;
}

tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.35);
}

tbody tr:hover td {
  background: rgba(10, 95, 84, 0.08);
}

.faq {
  margin: 1.6rem 0;
}

.faq details {
  margin-bottom: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fffef9;
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  padding: 0.95rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--brand);
  font-size: 1.2rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq .faq-answer,
.faq details > p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.faq-block {
  margin-top: 2.3rem;
  border: 1px solid rgba(10, 95, 84, 0.24);
  border-radius: var(--radius-md);
  background: linear-gradient(140deg, rgba(10, 95, 84, 0.08), rgba(255, 255, 255, 0.55));
}

.faq-block-inner {
  padding: clamp(1rem, 2vw, 2rem);
}

.faq-block-header {
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(10, 95, 84, 0.22);
}

.faq-block-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--brand);
  font-weight: 700;
}

.faq-block-title {
  border: none;
  margin-top: 0.4rem;
}

.faq-block-intro,
.faq-block-outro {
  color: #445450;
}

.help-box {
  margin: 1.4rem 0;
  border: 1px solid rgba(197, 154, 61, 0.5);
  background: rgba(197, 154, 61, 0.1);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(10, 95, 84, 0.16);
  background: #f0e8d8;
}

.site-footer .inner {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 2.1rem 0;
}

.site-footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 2rem;
  flex-wrap: wrap;
  padding-bottom: 1rem;
}

.site-footer .logo {
  height: 46px;
  width: auto;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.site-footer nav a {
  color: #38514c;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer nav a:hover {
  color: var(--brand);
}

.site-footer .copy {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px dashed rgba(10, 95, 84, 0.2);
  color: #5f706d;
  font-size: 0.86rem;
}

/* Optional contact page styles */
.cp-hero,
.cp-channels,
.cp-section {
  width: min(1120px, calc(100% - 3rem));
  margin-left: auto;
  margin-right: auto;
}

.cp-hero {
  text-align: center;
  padding: 2.2rem 0 1rem;
}

.cp-hero h1 {
  margin-bottom: 0.7rem;
}

.cp-hero .tagline {
  color: var(--muted);
}

.cp-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  padding: 0 0 2rem;
}

.cp-channel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
}

.cp-channel .title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  color: var(--brand);
  font-weight: 700;
}

.cp-channel .value,
.cp-channel .extra {
  margin: 0.35rem 0;
}

.cp-section {
  padding: 0 0 1.6rem;
}

.cp-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  background: var(--surface-2);
}

@media (max-width: 920px) {
  .site-header .inner {
    width: min(1180px, calc(100% - 2rem));
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 0;
  }

  .wrap,
  .site-footer .inner,
  .cp-hero,
  .cp-channels,
  .cp-section {
    width: min(1120px, calc(100% - 2rem));
  }

  .site-header .logo {
    height: 52px;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding-top: 1.4rem;
  }

  .page-text {
    border-radius: 16px;
    padding: 1rem;
  }

  h1 {
    font-size: 1.85rem;
  }

  h2 {
    font-size: 1.45rem;
  }

  h3 {
    font-size: 1.2rem;
  }
}
