/* ── VARIABLES ── */
:root {
  --bg:      #efefef;
  --white:   #ffffff;
  --dark:    #111111;
  --text:    #333333;
  --muted:   #666666;
  --green:   #4a7c4a;
  --nav-h:   58px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: disc; padding-left: 1.5rem; }
li   { margin-bottom: .35rem; }

/* ── NAV ── */
#nav {
  background: var(--white);
  border-bottom: 1px solid #ddd;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: .03em;
  color: var(--dark);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  padding: 0;
}

.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #666;
  transition: color .15s;
}

.nav-links a:hover  { color: var(--dark); }
.nav-links a.active { color: var(--dark); font-weight: 700; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BANNER ── */
.banner { width: 100%; line-height: 0; }
.banner img { width: 100%; }

/* ── SUB-HEADER ── */
.sub-header {
  background: var(--white);
  text-align: center;
  padding: 1.1rem 1rem .9rem;
  border-top: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
}

.sub-header .sh-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--dark);
}

.sub-header .sh-sub {
  font-family: 'Raleway', sans-serif;
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .25rem;
}

/* ── PAGE CONTENT ── */
.page-wrap {
  background: var(--bg);
  padding: 1.8rem 1.5rem 3rem;
}

.page-content {
  background: var(--white);
  max-width: 840px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  border: 1px solid #ddd;
}

/* ── TYPOGRAPHY ── */
h2 {
  font-family: 'Raleway', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 2rem 0 1rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid #ddd;
}

h2:first-child { margin-top: 0; }

h3 {
  font-family: 'Raleway', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 1.6rem 0 .5rem;
}

p {
  font-size: .95rem;
  margin-bottom: 1rem;
}

strong {
  font-family: 'Raleway', sans-serif;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── PHILOSOPHY SUB-TOPICS ── */
.theme-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.theme-section h3 {
  font-size: .88rem;
  margin-bottom: .8rem;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info p {
  font-size: .92rem;
  margin-bottom: .5rem;
}

.contact-info a { color: var(--green); }
.contact-info a:hover { text-decoration: underline; }

.contact-form label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .3rem;
  margin-top: .9rem;
}

.contact-form label:first-child { margin-top: 0; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .55rem .75rem;
  border: 1px solid #ccc;
  font-family: 'Lora', Georgia, serif;
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color .15s;
  border-radius: 0;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: #888; }

.contact-form textarea { height: 150px; resize: vertical; }

.contact-form .hint {
  font-size: .82rem;
  color: var(--muted);
  font-family: 'Raleway', sans-serif;
  margin: .8rem 0 1.2rem;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: none;
}

.submit-btn {
  background: var(--green);
  color: #fff;
  border: none;
  padding: .6rem 1.6rem;
  font-family: 'Raleway', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s;
}

.submit-btn:hover { background: #3a6a3a; }

/* ── RESOURCES ── */
.resources-list {
  list-style: disc;
  padding-left: 1.5rem;
}

.resources-list li {
  margin-bottom: 1rem;
  font-size: .95rem;
  line-height: 1.65;
}

.resources-list a {
  color: var(--green);
  font-family: 'Raleway', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.resources-list a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.55);
  padding: .9rem 2rem;
  text-align: right;
  font-family: 'Raleway', sans-serif;
  font-size: .72rem;
  letter-spacing: .06em;
}

footer a {
  color: rgba(255,255,255,.55);
  margin-left: 1.4rem;
  transition: color .15s;
}

footer a:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .page-content { padding: 1.8rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    padding: 1.8rem 1rem;
    border-bottom: 1px solid #ddd;
    z-index: 99;
  }

  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .page-wrap { padding: 1rem .75rem 2.5rem; }
  .page-content { padding: 1.4rem 1.2rem; }

  .sub-header .sh-title { font-size: .82rem; letter-spacing: .2em; }

  footer { text-align: center; }
  footer a { margin: 0 .5rem; }
}
