@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Dancing+Script:wght@400;500&family=Playfair+Display:ital,wght@1,300;1,400&family=DM+Sans:wght@300;400&display=swap');

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

:root {
  --red:    #c0392b;
  --green:  #1e6e35;
  --amber:  #c9870a;
  --gold:   #d4900a;
  --pink:   #c4687a;
  --ink:    #2a2a2a;
  --muted:  #555;
  --faint:  #999;
  --rule:   rgba(0,0,0,0.09);
  --serif:  'Cormorant Garamond', Georgia, serif;
  --script: 'Dancing Script', cursive;
  --play:   'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: #fff;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── HEADER ── */
header {
  background: #fff;
  border-bottom: 0.5px solid var(--rule);
}

.top-bar {
  display: flex;
  align-items: center;
  padding: 20px 48px 0;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-lockup svg { flex-shrink: 0; }

.logo-text .script {
  font-family: var(--script);
  font-size: 24px;
  color: var(--ink);
  display: block;
  line-height: 1.1;
}

.logo-text .sub {
  font-family: var(--serif);
  font-size: 9px;
  letter-spacing: 6px;
  color: var(--faint);
  text-transform: uppercase;
  display: block;
}

nav {
  display: flex;
  align-items: stretch;
  padding: 0 48px;
  margin-top: 12px;
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}

nav a {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-right: 0.5px solid var(--rule);
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

nav a:first-child { padding-left: 0; }
nav a:hover { opacity: 0.65; }

nav a.red     { color: var(--red); }
nav a.pink    { color: var(--pink); }
nav a.green   { color: var(--green); }
nav a.amber   { color: var(--amber); }
nav a.neutral { color: var(--faint); }

nav a.book {
  margin-left: auto;
  color: var(--green);
  border-right: none;
  border-left: 0.5px solid var(--rule);
  padding-right: 0;
}

/* ── EDITORIAL HERO (homepage only) ── */
.top-bar-c {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px 0;
}

.portrait-circle {
  width: 120px;
  height: 120px;
  border-radius: 4px;
  overflow: hidden;
  border: 0.5px solid var(--rule);
  flex-shrink: 0;
}

.portrait-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-editorial {
  text-align: center;
  padding: 52px 48px 40px;
  max-width: 780px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--play);
  font-size: 17px;
  font-style: italic;
  color: var(--pink);
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 28px;
}

.btn-quiet {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--faint);
  border-bottom: 0.5px solid var(--rule);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-quiet:hover {
  color: var(--green);
  border-color: var(--green);
}

.hero-nature {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}

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

/* ── STANDARD HERO (other pages) ── */
.hero {
  display: flex;
  align-items: stretch;
  min-height: 440px;
  border-bottom: 0.5px solid var(--rule);
}

.hero-text {
  flex: 1;
  padding: 64px 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: 46px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 20px;
}

.hero-ism {
  font-family: var(--play);
  font-size: 14px;
  font-style: italic;
  color: var(--faint);
  letter-spacing: 1px;
  margin-bottom: 20px !important;
  margin-top: -10px;
}

.hero-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 360px;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 11px 30px;
  border: 0.5px solid var(--green);
  color: var(--green);
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--green);
  color: #fff;
}

.hero-photo {
  flex: 0 0 300px;
  overflow: hidden;
  border-left: 0.5px solid var(--rule);
}

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

/* ── SHARED SECTION PARTS ── */
.rule { height: 0.5px; background: var(--rule); }

.section { padding: 52px 48px; }

.section-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 5px;
  color: #bbb;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* ── SERVICES ── */
.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  padding: 24px;
  border: 0.5px solid var(--rule);
}

.service-card .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-bottom: 14px;
  opacity: 0.6;
}

.service-card h3 {
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 10px;
}

.service-card p {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--muted);
}

/* ── NATURE STRIP ── */
.nature-strip {
  position: relative;
  overflow: hidden;
}

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

.nature-strip .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nature-strip .overlay-quote {
  font-family: var(--play);
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 16px rgba(0,0,0,0.45);
  line-height: 1.5;
}

/* ── ABOUT + TESTIMONIALS ── */
.about-testimonials {
  display: grid;
  grid-template-columns: 230px 1fr 230px;
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}

.sidebar {
  padding: 52px 28px;
  border-right: 0.5px solid var(--rule);
}

.sidebar.right {
  border-right: none;
  border-left: 0.5px solid var(--rule);
}

.tquote { margin-bottom: 48px; }

.tquote .tdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-bottom: 12px;
  opacity: 0.55;
}

.tquote blockquote {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.95;
  color: #777;
  font-style: italic;
  margin-bottom: 9px;
}

.tquote cite {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  color: #bbb;
  text-transform: uppercase;
  font-style: normal;
}

.main-col {
  padding: 52px 44px;
  min-width: 0;
  overflow: hidden;
}

.main-col h2 {
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 12px;
}

.intro-quote {
  font-family: var(--play);
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: #3a3a3a;
  line-height: 1.65;
  margin-bottom: 26px;
  padding: 18px 0 18px 22px;
  border-left: 2px solid var(--gold);
}

.main-col p {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 16px;
}

.main-col img { max-width: 100%; height: auto; }

.main-col p:last-child { margin-bottom: 0; }

/* ── WHO SECTION ── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.who-card {
  padding: 20px 24px;
  border-left: 1.5px solid;
}

.who-card.red    { border-color: var(--red); }
.who-card.green  { border-color: var(--green); }
.who-card.amber  { border-color: var(--amber); }
.who-card.muted  { border-color: #ccc; }

.who-card h4 {
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 7px;
}

.who-card.red   h4 { color: var(--red); }
.who-card.green h4 { color: var(--green); }
.who-card.amber h4 { color: var(--amber); }
.who-card.muted h4 { color: var(--faint); }

.who-card p {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #777;
}

/* ── NOTE SECTION ── */
.note-section {
  padding: 40px 48px;
  background: #f9f6f1;
  border-top: 0.5px solid var(--rule);
}

.note-section p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: #777;
  max-width: 600px;
}

.note-section p + p {
  margin-top: 10px;
  font-style: italic;
  color: var(--faint);
}

/* ── FOOTER ── */
footer {
  padding: 24px 48px;
  border-top: 0.5px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .script {
  font-family: var(--script);
  font-size: 16px;
  color: #bbb;
}

footer p {
  font-family: var(--sans);
  font-size: 11px;
  color: #bbb;
  letter-spacing: 1px;
}

/* ── ELEMENT ROWS (homepage) ── */
.element-row {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.element-accent {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 0.5px solid var(--rule);
}

.element-number {
  font-family: var(--play);
  font-size: 11px;
  font-style: italic;
  letter-spacing: 3px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.element-heading {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
}

.element-body {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.element-lead {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 16px;
}

.element-text {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--muted);
}

/* ── WHO LIST (work with me) ── */
.who-list {
  padding: 0;
}

.who-item {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 0.5px solid var(--rule);
  align-items: start;
}

.who-item:last-child { border-bottom: none; }

.who-bar { width: 3px; height: 100%; min-height: 60px; }

.who-item-content {}

.who-item-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.2;
}

.who-item-text {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--muted);
  max-width: 600px;
}

/* ── TOOLS SECTION (work with me) ── */
.tools-section {
  background: #1a1a1a;
  padding: 64px 48px;
}

.tools-section .section-label {
  color: rgba(255,255,255,0.35);
  margin-bottom: 48px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 2px;
}

.tool-card {
  padding: 36px 32px;
  background: #222;
  border-top: 3px solid;
  transition: background 0.2s;
}

.tool-card:hover { background: #282828; }

.tool-card .tool-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.2;
}

.tool-card .tool-text {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 768px) {
  .element-row { grid-template-columns: 1fr; }
  .element-accent { padding: 32px 24px; border-right: none; border-bottom: 0.5px solid var(--rule); }
  .element-body { padding: 32px 24px; }
  .element-heading { font-size: 28px; }
  .tools-grid { grid-template-columns: 1fr; }
  .tools-section { padding: 44px 24px; }
  .who-item { gap: 20px; }
  .who-item-title { font-size: 22px; }
}

/* ── PROSE PAGE (work with me) ── */
.prose-page {
  padding: 52px 48px;
  border-top: 0.5px solid var(--rule);
}

.prose-col {
  max-width: 680px;
  margin: 0 auto;
}

.prose-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid var(--rule);
}

.prose-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.prose-body {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 14px;
}

.prose-body:last-child { margin-bottom: 0; }

.fern-section {
  padding: 60px 48px;
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}

.fern-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 8px;
}

.fern-visuals {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  justify-content: center;
}

.fern-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fern-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #aaa;
  text-align: center;
  text-transform: uppercase;
  margin-top: 14px;
  transition: opacity 0.3s, transform 0.4s ease;
  display: block;
}

.fern-anim-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fern-anim-wrap canvas {
  display: block;
}

.fern-text h3 {
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 18px;
}

.fern-text p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 14px;
}

.fern-text p:last-child { margin-bottom: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .top-bar-c { padding: 16px 24px 0; }
  .hero-headline { font-size: 44px; }
  .hero-editorial { padding: 36px 24px 28px; }
  .portrait-circle { width: 64px; height: 64px; }
  .hero-nature { height: 200px; }
  .top-bar { padding: 16px 24px 0; }
  nav { padding: 0 24px; }
  nav a { padding: 10px 14px; font-size: 10px; }
  .hero { flex-direction: column; }
  .hero-photo { flex: 0 0 260px; border-left: none; border-top: 0.5px solid var(--rule); }
  .hero-text { padding: 40px 24px 36px; }
  .hero-text h1 { font-size: 34px; }
  .section { padding: 40px 24px; }
  .services { grid-template-columns: 1fr; }
  .about-testimonials { grid-template-columns: 1fr; }
  .sidebar, .sidebar.right { border: none; border-bottom: 0.5px solid var(--rule); padding: 32px 24px; }
  .main-col { padding: 40px 24px; }
  .who-grid { grid-template-columns: 1fr; }
  .fern-layout { grid-template-columns: 1fr; gap: 32px; }
  .fern-section { padding: 40px 24px; }
  footer { flex-direction: column; gap: 8px; padding: 20px 24px; }
}
