/* =========================================================
   Alexander Hart — Classical Guitar
   Modern editorial single-page landing
   ========================================================= */

:root {
  --bg-1:        #F4EFE3;
  --bg-2:        #EDE5D2;
  --bg-3:        #E8DFC7;
  --paper:       #FAF7EE;
  --ink:         #14110D;
  --ink-2:       #3A352D;
  --muted:       #8A8276;
  --muted-soft:  #B8AF9E;
  --hairline:    rgba(20, 17, 13, 0.10);
  --accent:      #B8704A;
  --accent-deep: #8B5236;
}

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

html, body {
  background: var(--bg-1);
  color: var(--ink);
  font-family: 'Poppins', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: clip;            /* defensive: no sideways scroll, ever */
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
}

/* ---------- Background — neutral cream to light-brown wash ---------- */

body {
  background:
    radial-gradient(ellipse 70% 60% at 15% 0%, #F8F4E8 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 100% 100%, #C9B89A 0%, transparent 60%),
    linear-gradient(170deg, #F1ECDD 0%, #E0D2B0 100%);
  background-attachment: fixed;
}

/* ---------- Layout ---------- */

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 44px 64px 36px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- Topbar ---------- */

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;             /* allow wrap if absolutely necessary */
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hairline);
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;                /* allow shrinking inside flex */
}

.topbar-mark {
  width: 30px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.topbar-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
}

.topnav {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.topnav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}

.topnav a:hover { color: var(--ink); }

.topnav a.active {
  color: var(--ink);
}

.topnav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
}

/* ---------- Hero ---------- */

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 90px;
  align-items: center;
  padding: 48px 0;
  position: relative;
}

.hero-text {
  min-width: 0;
}

.eyebrow {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  padding-left: 0.34em;
}

.eyebrow .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  margin: 0 14px;
  vertical-align: 3px;
}

.hero-text h1 {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 56px;
  font-weight: 200;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 32px;
}

.hero-text h1 em {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}

.hero-text .subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 440px;
}

.hero-text .subtitle em {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

.hero-cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  padding-left: 0.24em;
}

.hero-cta:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-deep);
}

.hero-cta-arrow {
  font-size: 13px;
  transform: translateY(-1px);
  transition: transform 0.3s;
}

.hero-cta:hover .hero-cta-arrow {
  transform: translate(3px, -1px);
}

/* ---------- Hero portrait — clean, no overlay, no filter ---------- */

.hero-img {
  position: relative;
  max-width: 100%;
}

.hero-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Footer — centered, breathes ---------- */

.foot {
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  text-align: center;
}

.foot-links {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.foot-links a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color 0.3s;
}

.foot-links a:hover { color: var(--accent-deep); }

.foot-meta {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding-left: 0.16em;
}

/* ---------- Responsive — TABLET (≤900px) ---------- */

@media (max-width: 900px) {
  /* Simpler, scroll-anchored gradient on mobile.
     `background-attachment: fixed` is unreliable in mobile webviews
     (Facebook / Instagram / Messenger in-app browsers especially) and
     causes visible banding between sections of the page. */
  body {
    background:
      linear-gradient(180deg, #F4EFE3 0%, #ECE0C8 100%);
    background-attachment: scroll;
  }

  .page { padding: 36px 40px 32px; }

  /* Stack the topbar so brand and nav are not fighting for one row */
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 22px;
  }
  .topnav {
    width: 100%;
    gap: 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 32px 0;
  }
  .hero-text h1 { font-size: 44px; }
  .hero-img { max-width: 460px; margin: 0 auto; }
}

/* ---------- Responsive — PHONE (≤560px) ---------- */

@media (max-width: 560px) {
  .page { padding: 24px 20px 24px; }

  .topbar { gap: 16px; padding-bottom: 18px; }
  .topbar-mark { width: 26px; }
  .topbar-name { font-size: 11px; letter-spacing: 0.18em; }
  .topnav { gap: 14px 18px; }
  .topnav a { font-size: 10px; letter-spacing: 0.14em; padding: 4px 0; }

  .hero { gap: 32px; padding: 20px 0; }
  .eyebrow { font-size: 9.5px; letter-spacing: 0.28em; margin-bottom: 22px; }
  .eyebrow .dot { margin: 0 10px; }
  .hero-text h1 { font-size: 34px; margin-bottom: 24px; }
  .hero-text .subtitle { font-size: 14.5px; }
  .hero-cta { margin-top: 28px; font-size: 10px; letter-spacing: 0.2em; }
  .hero-img { max-width: 340px; }

  .foot { padding-top: 24px; }
  .foot-links { gap: 18px; margin-bottom: 12px; }
  .foot-links a { font-size: 10px; letter-spacing: 0.2em; }

  /* Content pages */
  .content { padding: 28px 0 36px !important; }
  .content h1 { font-size: 32px !important; }
  .content-lead { font-size: 14.5px !important; margin-bottom: 36px !important; }
  .content-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .info-grid { grid-template-columns: 1fr !important; }
  .offer-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .lessons-rate-amount { font-size: 44px !important; }
  .lessons-rate-amount-modest { font-size: 26px !important; }
  .event-title { font-size: 22px !important; }
  .channel-name { font-size: 21px !important; }
  .press-title { font-size: 17px !important; }
}

/* ---------- Very narrow phones (≤380px) ---------- */

@media (max-width: 380px) {
  .page { padding: 20px 16px; }
  .topnav { gap: 10px 14px; }
  .topnav a { font-size: 9.5px; letter-spacing: 0.12em; }
  .hero-text h1 { font-size: 30px; }
  .content h1 { font-size: 28px !important; }
}

/* =========================================================
   CONTENT PAGES (Bio · Calendar · Media · Lessons)
   ========================================================= */

.content {
  flex: 1;
  padding: 48px 0 56px;
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}

.content .eyebrow {
  text-align: center;
  margin-bottom: 18px;
}

.content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  font-weight: 200;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  margin-bottom: 12px;
}

.content h1 em {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
}

.content-lead {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  font-weight: 300;
}

.content-divider {
  width: 32px;
  height: 1px;
  background: var(--accent);
  margin: 56px auto;
  border: 0;
}

.content-section {
  margin-bottom: 48px;
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 22px;
  padding-left: 0.34em;
}

.content-section h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}

.content-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 16px;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.content-section p em {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.content-grid-img {
  width: 100%;
  height: auto;
  display: block;
}

.content-img-caption {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-align: center;
  margin-top: 16px;
  padding-left: 0.24em;
}

/* ---------- Concert listings (Calendar) ---------- */

.event {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
}

.event:last-child {
  border-bottom: 1px solid var(--hairline);
}

.event-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding-left: 0.28em;
}

.event-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.event-venue {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-2);
  margin-bottom: 14px;
}

.event-detail {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto;
}

.event-detail .price {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding-left: 0.2em;
}

/* ---------- Lesson hero ---------- */

.lessons-rate {
  text-align: center;
  margin: 32px 0 28px;
}

.lessons-rate-amount-modest {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}

.lessons-rate-usd {
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.06em;
  vertical-align: 4px;
  color: var(--ink-2);
}

.lessons-rate-amount {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
}

.lessons-rate-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  padding-left: 0.34em;
}

.lessons-principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 640px;
  margin: 0 auto;
}

.lessons-principles .principle h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.offer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
  max-width: 720px;
  margin: 0 auto;
}

.offer-pill {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
}

.offer-sep {
  color: var(--accent);
  font-size: 14px;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 56px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.offer h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.offer p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

.format-list {
  text-align: center;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-2);
}

.format-list strong {
  font-weight: 500;
  color: var(--ink);
}

/* ---------- Media channels ---------- */

.channel {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
}

.channel:last-child {
  border-bottom: 1px solid var(--hairline);
}

.channel-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  padding-left: 0.28em;
}

.channel-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 12px;
}

.channel-handle {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-bottom: 1px solid var(--ink-2);
  padding-bottom: 2px;
  padding-left: 0.18em;
  display: inline-block;
}

.channel-handle:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-deep);
}

/* ---------- Press list ---------- */

.press-item {
  text-align: center;
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
}

.press-item:last-child {
  border-bottom: 1px solid var(--hairline);
}

.press-source {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  padding-left: 0.28em;
}

.press-lang {
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--ink-2);
  text-transform: none;
  font-style: italic;
  font-family: 'Lora', Georgia, serif;
  font-size: 12px;
  margin-left: 4px;
  letter-spacing: 0;
}

.press-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.35;
}

.press-link {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-bottom: 1px solid var(--ink-2);
  padding-bottom: 2px;
  padding-left: 0.22em;
  display: inline-block;
}

.press-link:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-deep);
}
