:root {
  --bg: #fafaf7;
  --bg-alt: #f3f1ec;
  --ink: #0f1b2d;
  --ink-soft: #3a4a60;
  --ink-mute: #6b7889;
  --rule: #d8d4cc;
  --accent: #1e4a7a;
  --accent-deep: #102d4f;
  --accent-soft: #e8eef6;
  --warm: #c8512c;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--warm); }

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,250,247,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  font-family: "Iowan Old Style", Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .01em;
  color: var(--ink);
}
.brand span { color: var(--accent); }
.nav { display: flex; gap: 28px; font-size: 14px; }
.nav a {
  color: var(--ink-soft);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  letter-spacing: .02em;
}
.nav a:hover { color: var(--accent); }

@media (max-width: 760px) {
  .nav { display: none; }
}

/* HERO */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 24px 70px;
  position: relative;
}
.hero-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "—— ";
  color: var(--rule);
}
.hero h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 400;
  font-size: clamp(38px, 5.5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 36px;
  max-width: 960px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 48px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn {
  display: inline-block;
  padding: 14px 26px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .03em;
  border: 1px solid var(--accent);
  transition: all .2s ease;
}
.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover {
  background: var(--accent-deep);
  color: white;
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
}
.btn-ghost:hover {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: .02em;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.hero-meta span::before {
  content: "·  ";
  color: var(--accent);
  margin-right: 4px;
}
.hero-meta span:first-child::before { content: ""; margin-right: 0; }

/* SECTION BASE */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 24px;
  border-top: 1px solid var(--rule);
}
.section-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.section h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  max-width: 800px;
}
.section h2 em {
  font-style: italic;
  color: var(--accent);
}
.section-lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 56px;
}

/* THREE PILLARS */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: white;
}
.pillar {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pillar:last-child { border-right: none; }
.pillar-num {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 32px;
}
.pillar h3 {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--ink);
}
.pillar p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 24px;
  flex-grow: 1;
}
.pillar-price {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: .02em;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.pillar-price strong {
  color: var(--accent);
  font-weight: 600;
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 860px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--rule); }
  .pillar:last-child { border-bottom: none; }
}

/* PRINCIPLES */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 24px;
}
.principle h4 {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent-deep);
}
.principle h4::before {
  content: "→ ";
  color: var(--accent);
}
.principle p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 760px) {
  .principles { grid-template-columns: 1fr; gap: 32px; }
}

/* TOPICS GRID */
.topics-wrap {
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 100px 24px;
}
.topics-wrap .section {
  border-top: none;
  padding: 0;
}
.topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 12px;
  border-top: 1px solid var(--rule);
}
.topic {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.topic:nth-child(odd) { padding-right: 32px; }
.topic:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--rule); }
.topic-num {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .08em;
  flex-shrink: 0;
  width: 32px;
}
.topic-content h4 {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.topic-content p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.topics-note {
  margin-top: 32px;
  font-size: 15px;
  color: var(--ink-mute);
  font-style: italic;
}

@media (max-width: 760px) {
  .topics { grid-template-columns: 1fr; }
  .topic:nth-child(odd), .topic:nth-child(even) {
    padding: 24px 0;
    border-left: none;
  }
}

/* SISTER BRAND */
.sister {
  background: var(--accent-deep);
  color: #e8eef6;
  margin: 0;
  padding: 90px 24px;
}
.sister-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sister-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8eb4d8;
  margin-bottom: 20px;
}
.sister h2 {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  color: white;
}
.sister h2 em {
  font-style: italic;
  color: #8eb4d8;
}
.sister p {
  color: #c0d0e2;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.sister-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px;
  border-radius: 2px;
}
.sister-card-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 12px;
  color: #8eb4d8;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.sister-card h3 {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: white;
  margin-bottom: 16px;
  line-height: 1.3;
}
.sister-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.sister-card li {
  color: #c0d0e2;
  font-size: 15px;
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
}
.sister-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #8eb4d8;
}
.sister-link {
  color: #8eb4d8;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 14px;
  letter-spacing: .03em;
  border-bottom: 1px solid #8eb4d8;
  padding-bottom: 2px;
}
.sister-link:hover {
  color: white;
  border-color: white;
}

@media (max-width: 860px) {
  .sister-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ABOUT */
.about-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 16px 0 56px;
}
.about-portrait img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: white;
  box-shadow: 0 2px 24px rgba(15, 27, 45, 0.08);
}
.about-portrait-caption {
  margin-top: 18px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-mute);
}

@media (max-width: 540px) {
  .about-portrait img {
    width: 200px;
    height: 200px;
  }
}

.about {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}
.about-card {
  background: white;
  border: 1px solid var(--rule);
  padding: 32px;
  border-radius: 2px;
}
.about-card h4 {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.about-card ul {
  list-style: none;
}
.about-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-card li:last-child { border-bottom: none; }
.about-card li strong {
  color: var(--ink);
  font-weight: 600;
}
.about-card li span {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 13px;
  color: var(--accent);
}

@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
}

/* CONTACT */
.contact-wrap {
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  padding: 100px 24px;
}
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.contact-inner h2 {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--ink);
}
.contact-inner h2 em {
  font-style: italic;
  color: var(--accent);
}
.contact-inner p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 40px;
}
.contact-primary {
  margin-bottom: 32px;
}
.contact-mail-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 40px;
  background: var(--accent);
  color: white !important;
  border: 1px solid var(--accent);
  transition: all .2s ease;
  border-radius: 2px;
}
.contact-mail-btn:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}
.contact-mail-label {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .85;
}
.contact-mail-address {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 19px;
  font-weight: 400;
}
.contact-secondary {
  font-size: 15px;
  color: var(--ink-mute);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.55;
}
.contact-secondary a {
  color: var(--accent);
  border-bottom: 1px solid var(--rule);
}
.contact-secondary a:hover {
  border-bottom-color: var(--accent);
}

@media (max-width: 540px) {
  .contact-mail-btn {
    padding: 20px 28px;
  }
  .contact-mail-address {
    font-size: 16px;
    word-break: break-all;
  }
}

/* FOOTER */
footer {
  background: var(--ink);
  color: #9ba8bb;
  padding: 56px 24px 32px;
  font-size: 14px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 18px;
  color: white;
  margin-bottom: 12px;
}
.footer-brand span { color: #8eb4d8; }
.footer-tag {
  color: #6b7889;
  font-size: 14px;
  margin-bottom: 16px;
}
.footer-col h5 {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  padding: 4px 0;
}
.footer-col a {
  color: #9ba8bb;
  font-size: 14px;
}
.footer-col a:hover {
  color: white;
}
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #1f2d42;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #6b7889;
}

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* DECORATIVE FLOURISH */
.flourish {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--accent);
  margin: 32px 0;
}

