/* ==========================================================================
   THE PIANO MAN — Art Deco design system (1925–1935 revival)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,900;1,500&family=Jost:wght@300;400;500;600&family=Tangerine:wght@700&display=swap');

:root {
  /* -- palette -- */
  --ivory:        #FFFFFF;   /* page background */
  --ivory-deep:   #F6F6F4;   /* recessed panels */
  --charcoal:     #15120E;   /* warm near-black */
  --charcoal-soft:#1F1B15;
  --brass:        #AC8A45;   /* primary metallic accent, matches badge */
  --brass-light:  #D8BE84;
  --brass-dim:    #7C6432;
  --burgundy:     #591923;   /* piano velvet / wood */
  --burgundy-deep:#3E1119;
  --walnut:       #3A2A1D;   /* piano case wood */
  --line:         rgba(172,138,69,0.55);

  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-script:  'Tangerine', cursive;
  --font-body:    'Jost', 'Century Gothic', sans-serif;

  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* -- eyebrow / label style used throughout -- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}

/* ==========================================================================
   ORNAMENTS — signature Deco devices
   ========================================================================== */

/* thin gold rule with diamond center, used to divide sections */
.rule-diamond {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin: 0 auto;
}
.rule-diamond::before,
.rule-diamond::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 220px;
  background: linear-gradient(90deg, transparent, var(--brass) 50%, transparent);
}
.rule-diamond span {
  width: 9px; height: 9px;
  background: var(--brass);
  transform: rotate(45deg);
  flex: none;
}

/* stepped ziggurat divider — skyline silhouette, echoes Deco skyscraper fronts */
.ziggurat {
  width: 100%;
  height: 26px;
  display: block;
}
.ziggurat svg { width: 100%; height: 100%; display: block; }

/* sunburst behind hero badge */
.sunburst {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.sunburst svg { width: 140%; max-width: 1400px; opacity: 0.5; }

/* corner fan ornament, used on cards */
.corner-fan {
  position: absolute;
  width: 34px;
  height: 34px;
  opacity: 0.9;
}
.corner-fan.tl { top: 10px; left: 10px; }
.corner-fan.tr { top: 10px; right: 10px; transform: scaleX(-1); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */

.top-bar {
  background: var(--charcoal);
  color: var(--brass-light);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 7px 12px;
}

header.site-header {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 100px; height: 100px;
  border-radius: 50%;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text .the {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--brass-dim);
  line-height: 0.6;
}
.brand-text .piano-man {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}

nav.primary-nav ul {
  display: flex;
  gap: 38px;
  list-style: none;
  margin: 0; padding: 0;
}
nav.primary-nav a {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}
nav.primary-nav a:hover,
nav.primary-nav a[aria-current="page"] {
  color: var(--burgundy);
  border-bottom-color: var(--brass);
}

.nav-cta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ivory);
  background: var(--burgundy);
  padding: 12px 24px;
  border: 1px solid var(--burgundy);
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-cta:hover { background: var(--charcoal); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--charcoal);
  padding: 8px 10px;
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 860px) {
  nav.primary-nav { display: none; }
  .nav-cta.desktop-only { display: none; }
  .nav-toggle { display: block; }
  .nav-inner { padding: 14px 20px; }
}

/* mobile menu panel */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--charcoal);
  padding: 10px 20px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--ivory);
  padding: 14px 0;
  border-bottom: 1px solid rgba(216,190,132,0.18);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.mobile-menu .nav-cta { margin-top: 16px; text-align: center; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  background: radial-gradient(circle at 50% 30%, var(--charcoal-soft), var(--charcoal) 70%);
  color: var(--ivory);
  overflow: hidden;
  padding: 96px 32px 110px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  width: 320px; height: 320px;
  border-radius: 50%;
  margin: 0 auto 30px;
  border: 1px solid var(--line);
  padding: 8px;
}
.hero-badge img { border-radius: 50%; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.12;
  margin: 0 0 22px;
  letter-spacing: 0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--brass-light);
}

.hero .lede {
  font-size: 17px;
  color: rgba(241,233,216,0.82);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 34px;
  border: 1px solid var(--brass);
  transition: background 0.25s ease, color 0.25s ease, border-color .25s ease;
}
.btn-solid {
  background: var(--brass);
  color: var(--charcoal);
}
.btn-solid:hover { background: var(--brass-light); }
.btn-outline {
  background: transparent;
  color: var(--ivory);
}
.btn-outline:hover { background: rgba(216,190,132,0.12); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */

section { padding: 88px 32px; }
.section-tight { padding: 64px 32px; }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  margin: 14px 0 16px;
}
.section-head p {
  color: var(--walnut);
  font-weight: 300;
  font-size: 16px;
}

/* -- services grid -- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 760px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  position: relative;
  background: var(--ivory-deep);
  border: 1px solid var(--line);
  padding: 46px 38px;
  text-align: center;
}
.service-card .icon {
  width: 56px; height: 56px;
  margin: 0 auto 22px;
  color: var(--brass);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--burgundy);
}
.service-card p {
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 300;
  margin: 0 0 22px;
}
.service-card a.card-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass-dim);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 3px;
}
.service-card a.card-link:hover { color: var(--burgundy); }

/* -- band (dark full-bleed) -- */
.band {
  background: var(--burgundy);
  background: linear-gradient(160deg, var(--burgundy), var(--burgundy-deep));
  color: var(--ivory);
  text-align: center;
  position: relative;
}
.band .eyebrow { color: var(--brass-light); }
.band blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  max-width: 760px;
  margin: 20px auto 22px;
  line-height: 1.45;
  font-weight: 500;
}
.band cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-light);
}

/* -- process / timeline (used sparingly, real sequence only) -- */
.steps {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
}
.step .num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--brass);
  text-align: right;
}
.step h4 {
  margin: 4px 0 6px;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--burgundy);
}
.step p { margin: 0; font-weight: 300; font-size: 15px; }

/* -- testimonial marquee -- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 860px) {
  .testimonials { grid-template-columns: 1fr; }
}
.testimonial {
  border-top: 2px solid var(--brass);
  padding-top: 22px;
}
.testimonial p.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--charcoal);
  margin: 0 0 16px;
}
.testimonial .who {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-dim);
  font-weight: 600;
}

/* -- final CTA band -- */
.cta-final {
  background: var(--charcoal);
  color: var(--ivory);
  text-align: center;
  padding: 90px 32px;
  position: relative;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  margin: 16px 0 30px;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.page-hero {
  background: var(--charcoal);
  color: var(--ivory);
  text-align: center;
  padding: 70px 32px 56px;
}
.page-hero-badge {
  width: 150px; height: 150px;
  border-radius: 50%;
  margin: 0 auto 22px;
  border: 1px solid var(--line);
  padding: 6px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 46px);
  margin: 14px 0 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-grid h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 34px);
  color: var(--burgundy);
  margin: 0 0 20px;
}
.about-grid p { font-weight: 300; font-size: 15.5px; margin: 0 0 16px; }

.frame-portrait {
  position: relative;
  border: 1px solid var(--brass);
  padding: 14px;
  background: var(--ivory-deep);
}
.frame-portrait .inner {
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  overflow: hidden;
}
.frame-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* credentials strip */
.creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 760px) {
  .creds { grid-template-columns: 1fr 1fr; }
}
.creds .cred-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--brass-dim);
}
.creds .cred-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-top: 6px;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 27px;
  color: var(--burgundy);
  margin: 0 0 18px;
}
.contact-info ul { list-style: none; padding: 0; margin: 0 0 30px; }
.contact-info li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  font-size: 15px;
  font-weight: 300;
}
.contact-info li .label {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: var(--brass-dim);
  min-width: 92px;
}

.contact-form-panel {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 46px 42px;
  border: 1px solid var(--brass);
  position: relative;
}

form.deco-form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 10px 2px;
  width: 100%;
}
.field select { appearance: none; }
.field select option { color: var(--charcoal); }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--brass);
  outline: none;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

.submit-btn {
  background: var(--brass);
  color: var(--charcoal);
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 30px;
  cursor: pointer;
  transition: background 0.25s ease;
  justify-self: start;
}
.submit-btn:hover { background: var(--brass-light); }

.form-note {
  font-size: 12.5px;
  color: rgba(241,233,216,0.6);
  font-weight: 300;
}

.form-status {
  font-size: 13.5px;
  padding: 12px 14px;
  border: 1px solid var(--brass);
  display: none;
}
.form-status.show { display: block; }

/* small map / service-area block */
.service-area {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.service-area .towns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 10px;
  margin-top: 24px;
}
.service-area .towns span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--walnut);
  border: 1px solid var(--line);
  padding: 8px 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer.site-footer {
  background: var(--charcoal);
  color: rgba(241,233,216,0.75);
  padding: 60px 32px 30px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-inner h5 {
  color: var(--brass-light);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand img { width: 78px; height: 78px; border-radius: 50%; }
.footer-brand .piano-man {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ivory);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-inner p, .footer-inner li { font-size: 14px; font-weight: 300; }
.footer-inner ul { list-style: none; padding: 0; margin: 0; }
.footer-inner li { padding: 6px 0; }
.footer-inner a:hover { color: var(--brass-light); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid rgba(216,190,132,0.2);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(241,233,216,0.5);
}
