:root {
  --paper: #f0dfc7;
  --ink: #2b211a;
  --soft: #665a4e;
  --maroon: #6a1e21;
  --maroon-dark: #431113;
  --gold: #bd9150;
  --gold-light: #d8b676;
  --dark: #1d1712;
  --line: rgba(67, 45, 31, 0.22);
  --shadow: 0 28px 70px rgba(49, 30, 18, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 12%, rgba(255,255,255,0.48), transparent 24%),
    radial-gradient(circle at 86% 28%, rgba(255,255,255,0.28), transparent 18%),
    var(--paper);
  font-family: 'Manrope', sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

.paper-texture {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.36;
  mix-blend-mode: multiply;
  background-image:
    repeating-linear-gradient(0deg, rgba(75, 48, 28, 0.035) 0px, rgba(75, 48, 28, 0.035) 1px, transparent 1px, transparent 5px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.25) 0px, rgba(255,255,255,0.25) 1px, transparent 1px, transparent 7px);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 6vw;
  background: rgba(188, 158, 132, 0.88);
  border-bottom: 1px solid rgba(88, 56, 38, 0.14);
  box-shadow: 0 10px 24px rgba(43, 25, 14, 0.10);
  backdrop-filter: blur(14px);
}

.branding {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.script-name {
  font-family: 'Parisienne', cursive;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 0.95;
  color: var(--maroon);
}

.business-type {
  margin-top: 7px;
  padding-left: 16px;
  color: rgba(62, 44, 31, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

nav { display: flex; gap: 30px; }

nav a {
  position: relative;
  color: rgba(43, 33, 26, 0.82);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--maroon);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

nav a:hover::after { transform: scaleX(1); }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: stretch;
  padding: 96px 0 0 6vw;
  overflow: hidden;
  background: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 650px;
  padding: 70px 36px 80px 0;
}

.hero-photo {
  position: relative;
  min-height: 650px;
  background: transparent;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: -6vw;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 0 0 -24%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, var(--paper) 0%, rgba(240,223,199,0.90) 18%, rgba(240,223,199,0.34) 43%, transparent 72%);
}

.hero-photo img {
  width: calc(100% + 6vw);
  max-width: none;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: right center;
  transform: none;
  margin-left: auto;
  display: block;
  filter: sepia(0.28) saturate(0.88) contrast(1.03);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--maroon);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  line-height: 1.09;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 650px;
  font-size: clamp(3rem, 5.3vw, 5.5rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.2rem);
  font-weight: 500;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.hero-copy p,
.about-copy p,
.legacy-copy p,
.contact-section p {
  color: var(--soft);
}

.hero-copy p {
  max-width: 560px;
  margin: 26px 0 0;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.flourish {
  width: 92px;
  height: 16px;
  margin: 26px 0;
  background: linear-gradient(var(--maroon), var(--maroon)) center / 100% 1px no-repeat;
  position: relative;
}

.flourish::before {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 0 10px;
  color: var(--maroon);
  background: var(--paper);
  transform: translate(-50%, -50%);
  font-size: 0.65rem;
}

.flourish.light {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(var(--gold-light), var(--gold-light)) center / 100% 1px no-repeat;
}

.flourish.light::before {
  color: var(--gold-light);
  background: var(--dark);
}

.hero-buttons,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.primary-button,
.secondary-button,
.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease;
}

.primary-button {
  color: white;
  background: var(--maroon);
  box-shadow: 0 16px 34px rgba(106, 30, 33, 0.22);
}

.secondary-button {
  color: var(--maroon);
  border: 1px solid rgba(106, 30, 33, 0.28);
  background: rgba(255,255,255,0.35);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.piano-divider {
  position: relative;
  z-index: 5;
  overflow: hidden;
  margin: -2px 0 0;
  height: clamp(86px, 11vw, 140px);
  background: var(--paper);
}

.piano-divider img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0.97;
}

.lower-divider {
  margin: 0;
  height: clamp(70px, 9vw, 110px);
}

.content-wrap {
  width: min(1120px, 88vw);
  margin: 0 auto;
}

.about-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
  padding: 92px 0 100px;
}

.photo-card {
  position: relative;
  padding: 16px;
  background: rgba(245, 231, 209, 0.72);
  border: 1px solid rgba(67,45,31,0.15);
  box-shadow: var(--shadow);
  transform: rotate(-1.3deg);
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: -9px;
  z-index: -1;
  border: 1px solid rgba(67,45,31,0.12);
  background: rgba(255,255,255,0.18);
}

.photo-card img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: sepia(0.42) saturate(0.72) contrast(1.08);
}

.about-copy p {
  margin: 18px 0 0;
  max-width: 680px;
}

.services-section {
  position: relative;
  overflow: hidden;
  padding: 78px 5vw 84px;
  color: #f7e6ca;
  background:
    radial-gradient(circle at 18% 16%, rgba(150, 106, 62, 0.18), transparent 25%),
    radial-gradient(circle at 82% 24%, rgba(95, 45, 31, 0.16), transparent 30%),
    radial-gradient(circle at 50% 92%, rgba(255, 225, 170, 0.04), transparent 34%),
    repeating-linear-gradient(
      38deg,
      rgba(255,255,255,0.022) 0px,
      rgba(255,255,255,0.022) 1px,
      transparent 1px,
      transparent 9px
    ),
    repeating-linear-gradient(
      -42deg,
      rgba(0,0,0,0.16) 0px,
      rgba(0,0,0,0.16) 1px,
      transparent 1px,
      transparent 11px
    ),
    linear-gradient(145deg, #241a16 0%, #171210 52%, #0d0c0b 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.34);
  box-shadow:
    inset 0 24px 46px rgba(255,255,255,0.035),
    inset 0 -32px 60px rgba(0,0,0,0.34);
}

.section-header {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.services-section .eyebrow {
  color: var(--gold-light);
}

.services-section h2 {
  color: #f7e6ca;
}

.services-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}

.service-item {
  position: relative;
  min-height: 250px;
  padding: 10px 24px 0;
  text-align: center;
}

.service-item + .service-item {
  border-left: 1px solid rgba(216, 182, 118, 0.34);
}

.service-icon {
  height: 58px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 2.4rem;
  line-height: 1;
}

.service-item h3 {
  color: var(--gold-light);
  font-size: 0.94rem;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.service-item p {
  margin: 16px auto 0;
  max-width: 180px;
  color: rgba(247,230,202,0.82);
  font-size: 0.96rem;
  line-height: 1.6;
}

.legacy-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  padding: 86px 0 92px;
}

.sketch img {
  width: 100%;
  opacity: 0.62;
  mix-blend-mode: multiply;
  filter: sepia(0.55) saturate(0.7);
}

.contact-section {
  width: min(980px, 88vw);
  margin: 0 auto 90px;
  padding: 76px clamp(30px, 6vw, 86px);
  text-align: left;
  border: 1px solid rgba(67,45,31,0.16);
  background:
    linear-gradient(135deg, rgba(106,30,33,0.08), transparent 42%),
    rgba(255,255,255,0.30);
  box-shadow: var(--shadow);
}

.contact-section p {
  max-width: 650px;
  margin: 22px auto 0;
}

.contact-links {
  justify-content: center;
}

.contact-links a {
  color: var(--maroon);
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(106,30,33,0.16);
}

footer {
  padding: 36px 20px;
  text-align: center;
  color: var(--soft);
  border-top: 1px solid var(--line);
}

.fade-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .services-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 0;
  }

  .service-item:nth-child(4) {
    border-left: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .about-section,
  .legacy-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 110px 6vw 0;
  }

  .hero-copy {
    padding: 46px 0 24px;
  }

  .hero-photo {
    min-height: 420px;
    margin: 0 -6vw;
    overflow: hidden;
  }

  .hero-photo img {
    min-height: 420px;
  }

  .hero-photo::before {
    inset: -1px 0 auto 0;
    height: 42%;
    background: linear-gradient(to bottom, var(--paper), transparent);
  }
}

@media (max-width: 640px) {
  .hero-buttons,
  .contact-links {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .contact-links a {
    width: 100%;
  }

  .services-strip {
    grid-template-columns: 1fr;
  }

  .service-item {
    border-left: none !important;
    border-top: 1px solid rgba(216, 182, 118, 0.28);
    padding-top: 30px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }
}


/* Soft fade for piano divider */
.piano-divider,
.section-divider,
.divider-wrap {
  position: relative;
  overflow: hidden;
}

.piano-divider::after,
.section-divider::after,
.divider-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(232, 216, 192, 0) 0%,
    rgba(232, 216, 192, 0.55) 45%,
    rgba(232, 216, 192, 0.92) 78%,
    rgba(232, 216, 192, 1) 100%
  );
}

.notes-icon {
  position: relative;
}

.notes-icon span:first-child {
  position: relative;
  top: 8px;
  right: 4px;
}

.notes-icon span:last-child {
  position: relative;
  bottom: 8px;
  left: 4px;
}

.svg-icon svg {
  width: 58px;
  height: 58px;
  display: block;
  margin: 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 24% 30%, rgba(255,255,255,0.10) 0 0.55px, transparent 0.9px),
    radial-gradient(circle at 72% 74%, rgba(0,0,0,0.30) 0 0.65px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025), transparent 32%, rgba(0,0,0,0.10) 78%, transparent);
  background-size: 15px 15px, 21px 21px, 100% 100%;
  mix-blend-mode: soft-light;
}

.services-section .section-header,
.services-section .services-strip {
  position: relative;
  z-index: 1;
}

.resources-section {
  padding: 96px 0 110px;
}

.resources-section > h2 {
  max-width: 820px;
  margin-bottom: 54px;
}

.resources-editorial {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(67,45,31,0.18);
  border-bottom: 1px solid rgba(67,45,31,0.18);
}

.resource-column {
  position: relative;
  padding: 38px 24px 40px;
}

.resource-column + .resource-column {
  border-left: 1px solid rgba(67,45,31,0.14);
}

.resource-column.stagger {
  padding-top: 34px;
}

.resource-column h3,
.resources-notes h3 {
  color: var(--maroon);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.resource-column a {
  display: block;
  margin: 12px 0;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.resource-column a:hover {
  color: var(--maroon);
}

.resource-column span {
  display: block;
  color: var(--soft);
  font-weight: 400;
  font-size: 0.9rem;
}

.resources-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 44px;
}

.resources-notes > div {
  padding: 30px 34px;
  background: rgba(255,255,255,0.22);
  border-left: 3px solid rgba(106,30,33,0.42);
  box-shadow: 0 18px 42px rgba(49,30,18,0.08);
}

.resources-notes p {
  margin: 0;
  color: var(--soft);
}

@media (max-width: 1000px) {
  .resources-editorial {
    grid-template-columns: repeat(2, 1fr);
  }

  .resource-column {
    border-left: none !important;
    border-top: 1px solid rgba(67,45,31,0.14);
  }

  .resource-column.stagger {
    padding-top: 34px;
  }
}

@media (max-width: 640px) {
  .resources-editorial,
  .resources-notes {
    grid-template-columns: 1fr;
  }
}

.resource-mini-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(67,45,31,0.12);
  color: var(--soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.resource-mini-note strong {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--maroon);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
}



.resources-contact-divider {
  margin: -123px 0 72px;
}



.contact-info {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(67,45,31,0.14);
}

.contact-line {
  margin: 0;
  color: var(--soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

.contact-line span {
  display: block;
  margin-bottom: 5px;
  color: rgba(102,90,78,0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-line strong,
.contact-line a {
  color: var(--maroon);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-line a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
}




/* Final contact alignment fix */
.contact-section {
  text-align: center;
}

.contact-section .eyebrow {
  text-align: center;
}

.contact-heading {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.contact-subtext {
  max-width: 650px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--soft);
}

.contact-info {
  justify-content: center;
}



/* Final subtle movement polish - more visible, still restrained */
@keyframes heroSlowBreath {
  0%, 100% {
    transform: scale(1);
    filter: sepia(0.28) saturate(0.88) contrast(1.03) brightness(1);
  }
  50% {
    transform: scale(1.035);
    filter: sepia(0.31) saturate(0.96) contrast(1.06) brightness(1.06);
  }
}

@keyframes servicesLightDrift {
  0% {
    transform: translateX(-28%) translateY(-10%);
    opacity: 0.16;
  }
  50% {
    transform: translateX(30%) translateY(8%);
    opacity: 0.42;
  }
  100% {
    transform: translateX(-28%) translateY(-10%);
    opacity: 0.16;
  }
}

@keyframes dividerSoftGlow {
  0%, 100% {
    filter: sepia(0.10) saturate(0.95) brightness(1);
    opacity: 0.92;
  }
  50% {
    filter: sepia(0.28) saturate(1.2) brightness(1.12);
    opacity: 1;
  }
}

@keyframes resourceWarmth {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: rgba(255,255,255,0.055);
  }
}

.hero-photo img {
  transform-origin: center right;
  animation: heroSlowBreath 14s ease-in-out infinite !important;
  will-change: transform, filter;
}

.services-section::after {
  content: "";
  position: absolute;
  width: 58%;
  height: 165%;
  top: -34%;
  left: 8%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(216, 182, 118, 0.22), transparent 62%);
  mix-blend-mode: soft-light;
  animation: servicesLightDrift 16s ease-in-out infinite !important;
  z-index: 0;
  will-change: transform, opacity;
}

.services-section .section-header,
.services-section .services-strip {
  position: relative;
  z-index: 1;
}

.piano-divider img {
  animation: dividerSoftGlow 10s ease-in-out infinite !important;
  will-change: filter, opacity;
}

.resource-column {
  animation: resourceWarmth 18s ease-in-out infinite;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.resource-column:nth-child(2) {
  animation-delay: 2s;
}

.resource-column:nth-child(3) {
  animation-delay: 4s;
}

.resource-column:nth-child(4) {
  animation-delay: 6s;
}

.resource-column:nth-child(5) {
  animation-delay: 8s;
}

.resource-column a,
.contact-line a,
nav a {
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.resource-column a:hover,
.contact-line a:hover {
  color: var(--maroon);
  text-shadow: 0 0 12px rgba(189, 145, 80, 0.24);
}

.resource-column:hover {
  background: rgba(255,255,255,0.11);
  box-shadow: inset 0 0 34px rgba(106,30,33,0.05);
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo img,
  .services-section::after,
  .piano-divider img,
  .resource-column {
    animation: none !important;
  }

  .resource-column,
  .resource-column a,
  .contact-line a,
  nav a {
    transition: none !important;
  }
}



/* Final contact restore */
.contact-section {
  text-align: center !important;
}

.contact-section .eyebrow,
.contact-heading,
.contact-subtext {
  text-align: center !important;
}

.contact-heading {
  max-width: 920px;
  margin: 0 auto;
}

.contact-subtext {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--soft);
}

.contact-info {
  justify-content: center;
}

/* Mobile hamburger navigation */
.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(106,30,33,0.20);
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  margin: 5px 0;
  background: var(--maroon);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding-top: 16px;
    overflow: visible;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
    border-top: 1px solid rgba(67,45,31,0.12);
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}



.about-copy a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.about-copy a:hover {
  color: var(--maroon);
  text-shadow: 0 0 12px rgba(189, 145, 80, 0.24);
}
