/* ---------- The Artist's Money Studio --------------------------------------
   Palette taken from the orchid logo:
     --navy    deep blue of the petal outlines
     --teal    aqua of the central column
     --ochre   warm orange dot above the column
     --cream   soft warm white used as the page background
     --ink     near-black body text (slightly warm)
   ---------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy:    #1b2a5e;
  --navy-2:  #2a3a78;
  --teal:    #2ba39a;
  --teal-2:  #218a82;
  --ochre:   #e89a2c;
  --cream:   #faf7f0;
  --cream-2: #f1ece0;
  --ink:     #1f2230;
  --muted:   #5b6172;
  --rule:    #d9d3c2;

  --serif:   'Playfair Display', Georgia, 'Iowan Old Style', serif;
  --sans:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- Base ----------------------------------------------------- */

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

html { background: var(--cream); }

body {
  font-family: var(--sans);
  margin: 0 auto;
  padding: 0 1.5rem;
  line-height: 1.65;
  color: var(--ink);
  max-width: 880px;
  background: var(--cream);
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.005em;
}

h1 {
  font-size: 2.2rem;
  margin: 0 0 1rem;
  font-weight: 700;
}

h2 {
  font-size: 1.5rem;
  margin: 2.25rem 0 0.75rem;
  position: relative;
  padding-left: 0.9rem;
}

h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 4px;
  height: 0.85em;
  background: var(--teal);
  border-radius: 2px;
}

h2.no-tick { padding-left: 0; }
h2.no-tick::before { display: none; }

h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--navy-2);
}

p { margin: 0.7rem 0; }

a {
  color: var(--teal-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(43, 163, 154, 0.35);
  transition: color .15s ease, border-color .15s ease;
}

a:hover {
  color: var(--ochre);
  border-bottom-color: var(--ochre);
}

strong { color: var(--navy); font-weight: 600; }

blockquote {
  margin: 1.25rem 0;
  padding: 0.25rem 0 0.25rem 1.25rem;
  border-left: 3px solid var(--teal);
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.05rem;
}


h4 {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.5rem;
  letter-spacing: 0.005em;
}

ul, ol {
  margin: 0.5rem 0;
  padding-left: 1.4rem;
}

ul li, ol li { margin: 0.2rem 0; }

.offering {
  background: var(--cream-2);
  border-radius: 6px;
  padding: 1rem 1.25rem 1.1rem;
  margin: 1rem 0;
}

.offering > *:last-child { margin-bottom: 0; }

.rates {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.rates li { margin: 0.2rem 0; }

.rates strong { color: var(--navy); }

.rate-total {
  font-weight: 600;
  color: var(--navy);
  margin: 0.4rem 0 0.3rem;
}

.placeholder {
  color: var(--muted);
  font-style: italic;
  font-size: 0.95rem;
  margin: 0;
}

.focus-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.25rem 2rem;
  margin: 1rem 0 1.5rem;
}

.focus-areas .area { margin: 0.5rem 0 0.75rem; }

.focus-areas .area h4 { margin-bottom: 0.25rem; }

.focus-areas .area ul {
  margin: 0;
  padding-left: 1.2rem;
}

.focus-areas .area ul li {
  font-size: 0.95rem;
  margin: 0.15rem 0;
}


/* ---------- Header --------------------------------------------------- */

header.site-header {
  padding: 1.75rem 0 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

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

.site-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: inline-block;
  border: none;
}

.site-logo svg, .site-logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.site-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: none;
  line-height: 1.15;
}

.site-brand:hover { color: inherit; }

.site-brand .brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.005em;
}

.site-brand .brand-tag {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-2);
  margin-top: 0.15rem;
}

header.site-header nav {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}

header.site-header nav a {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border: none;
  padding: 0.15rem 0;
  position: relative;
}

header.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s ease;
}

header.site-header nav a:hover { color: var(--navy); }
header.site-header nav a:hover::after { transform: scaleX(1); }

/* ---------- Main ----------------------------------------------------- */

main { margin: 1rem 0 3rem; }

.lead p {
  font-size: 1.08rem;
  color: var(--ink);
  margin: 0.6rem 0;
}

.lead p:first-child {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 1rem;
}

/* ---------- Footer --------------------------------------------------- */

footer.site-footer {
  margin-top: 3rem;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.95rem;
  color: var(--muted);
  position: relative;
}

footer.site-footer::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  background: var(--ochre);
  border-radius: 50%;
}

footer.site-footer nav {
  margin: 0 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

footer.site-footer nav a {
  color: var(--navy);
  border: none;
  font-size: 0.92rem;
}

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

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--rule);
}

.footer-meta .email { font-weight: 500; color: var(--navy); }
.footer-meta .copy  { font-size: 0.85rem; color: var(--muted); }

/* ---------- Small screens ------------------------------------------- */

@media (max-width: 560px) {
  body { font-size: 16px; padding: 0 1.1rem; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.3rem; }
  .site-logo { width: 48px; height: 48px; flex-basis: 48px; }
  .site-brand .brand-name { font-size: 1.2rem; }
  header.site-header nav { gap: 0.25rem 1rem; }