/* ========== Tokens & Reset ========== */
:root{
  --bg: #eae6da;
  --ink: #2f4037;
  --muted: #5b6b60;
  --accent: #6f8f79;
  --accent-ink: #ffffff;
  --line: #d8d2c4;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --container: 1100px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

/* Page wrapper */
.page {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px;
}

/* ========== Header (desktop: centered brand & nav) ========== */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 6px;
  padding-bottom: 12px;
  gap: 10px;
  position: relative; /* dropdown positions relative to header */
}

.brand {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 0;
}

.brand-mark {
  width: 256px;
  height: 256px;
  object-fit: contain;
  opacity: 0.95;
}

.brand-line {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: 0.5px;
  line-height: 1.05;
}

.brand-sub {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  margin-top: 2px;
  color: var(--muted);
}

/* nav wrapper centered */
.site-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* burger button (hidden on desktop) */
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--ink);
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 18px;
  font-size: 15px;
  letter-spacing: 0.6px;
  align-items: center;
  justify-content: center;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--ink);
  background: rgba(0,0,0,0.04);
}

/* decorative separators on desktop only */
.nav-links .nav-link:not(:last-child)::after {
  content: "|";
  margin-left: 18px;
  color: #9aa195;
}

/* ========== Hero ========== */
.hero { margin: 30px 0 24px; }
.hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 32px rgba(0,0,0,0.10);
}

/* ========== CTA ========== */
.cta { text-align: center; margin: 2px 0 28px; }
.cta-inner { display: inline-grid; grid-auto-flow: column; align-items: center; gap: 14px; }
.cta-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0.6px;
}
.icon-left, .icon-right { font-size: 40px; opacity: 0.9; }

.button {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 22px;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  transition: transform 120ms ease, filter 120ms ease;
}
.button:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* ========== Two-column content ========== */
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; margin: 40px 0 60px; }
.col-media .pose { width: 100%; display: block; border-radius: var(--radius-lg); box-shadow: 0 8px 26px rgba(0,0,0,0.10); margin-bottom: 18px; }
.text-block + .text-block { margin-top: 26px; }
.text-block h3 { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 28px; letter-spacing: 0.3px; }
.text-block p { margin: 0; color: var(--ink); }

/* spacer & footer */
.spacer { height: 40px; }
.site-footer { margin: 48px 0 20px; border-top: 1px solid var(--line); padding-top: 16px; text-align: center; color: var(--muted); font-size: 14px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form button {
  background: #333;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s ease;
}

.contact-form button:hover {
  background: #555;
}

/* ========== Responsive: burger + dropdown behavior ========== */
@media (max-width: 980px) {
  .brand-line { font-size: 38px; }
  .brand-sub  { font-size: 18px; }
}

@media (max-width: 700px) {
  /* Show burger in top-right of header */
  .site-header {
    position: relative;
  }
  .burger {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    display: block; /* Make sure it's not display: none */
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text, #222); /* Ensure contrast */
    cursor: pointer;
  }
  .site-nav {
    position: fixed;
    top: 10%;
    justify-content: flex-end;
  }

  /* mobile dropdown centered under header */
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 520px);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);

    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0;

    transition: max-height 0.32s ease, opacity 0.28s ease, padding 0.28s ease;
    z-index: 35;
  }

  /* open state */
  .site-nav.open .nav-links {
    max-height: 420px;
    opacity: 1;
    padding: 12px 16px;
  }

  /* remove desktop separators in mobile */
  .nav-links .nav-link:not(:last-child)::after { content: none; }

  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 6px;
  }

  /* tighten layout */
  .hero { margin: 18px 0; }
  .cta-title { font-size: 24px; }
  .icon-left, .icon-right { font-size: 30px; }
}

/* two-column stacking */
@media (max-width: 900px) {
  .twocol { grid-template-columns: 1fr; }
}
