/* ==========================================================================
   Flute Fix — modern redesign
   ========================================================================== */

:root {
  --color-bg: #faf6ef;
  --color-bg-alt: #f1e9db;
  --color-surface: #ffffff;
  --color-ink: #2a2521;
  --color-ink-soft: #5c5347;
  --color-line: #e5dbc9;

  --color-primary: #1e3a3a;      /* deep teal-charcoal, brand anchor */
  --color-primary-dark: #142828;
  --color-accent: #b8863b;       /* brass gold */
  --color-accent-light: #d9ac63;
  --color-teal: #2f7a78;         /* nod to the original cyan */

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 3px rgba(30, 25, 15, 0.08);
  --shadow-md: 0 8px 24px rgba(30, 25, 15, 0.1);
  --shadow-lg: 0 20px 48px rgba(20, 30, 30, 0.16);

  --container: 1160px;
}

/* Reset ------------------------------------------------------------------ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}
p { margin: 0 0 1.1em; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 72px 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--color-accent-light); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }

/* Topbar -------------------------------------------------------------------- */
.topbar {
  background: var(--color-primary-dark);
  color: #d8ded9;
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.topbar a { color: #e9dcc2; }
.topbar a:hover { color: var(--color-accent-light); }
.topbar-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-social { display: flex; gap: 12px; align-items: center; }
.topbar-social img { width: 16px; height: 16px; filter: grayscale(1) brightness(1.6); opacity: 0.8; }
.topbar-social a:hover img { opacity: 1; }

/* Header / nav --------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-primary);
}
.brand-text span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.main-nav a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--color-ink);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.main-nav a:hover { background: var(--color-bg-alt); }
.main-nav a.is-active {
  background: var(--color-primary);
  color: #fff;
}
.nav-cta { margin-left: 6px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    height: 100vh;
    background: var(--color-surface);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    padding: 90px 24px 24px;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { padding: 13px 16px; }
  .nav-cta { margin: 14px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-scrim {
    display: none;
    position: fixed; inset: 0; background: rgba(20, 20, 15, 0.4); z-index: 45;
  }
  .nav-scrim.is-open { display: block; }
}

/* Hero ------------------------------------------------------------------------ */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary) 0%, #16302f 60%, #0f2423 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 82% 18%, rgba(184, 134, 59, 0.35), transparent 45%),
                     radial-gradient(circle at 15% 85%, rgba(47, 122, 120, 0.35), transparent 50%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-accent-light);
}
.hero p.lead {
  color: #cfd9d4;
  font-size: 1.08rem;
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-media .tile-tall { grid-row: span 2; height: 100%; aspect-ratio: 3/4; }
.hero-media .tile { aspect-ratio: 4/3; }
.hero-badge {
  position: absolute;
  left: -18px;
  bottom: -18px;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
}
.hero-badge strong { display: block; font-size: 1.5rem; line-height: 1; }
.hero-badge span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-body); }

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; text-align: left; }
  .hero-media { order: -1; }
  .hero p.lead { max-width: none; }
}

/* Notice banner (covid message, kept but modernised) --------------------------- */
.notice {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-line);
}
.notice .container {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.notice .notice-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--color-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.notice h2 { font-size: 1.02rem; margin-bottom: 4px; }
.notice p { margin: 0; color: var(--color-ink-soft); font-size: 0.94rem; }

/* Section headings ------------------------------------------------------------- */
.section-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head.align-left { margin-left: 0; text-align: left; }
.kicker {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-head p { color: var(--color-ink-soft); }

/* Page header (interior pages) --------------------------------------------------- */
.page-header {
  background: var(--color-primary);
  color: #fff;
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(184,134,59,0.3), transparent 50%);
}
.page-header .container { position: relative; }
.breadcrumb {
  font-size: 0.82rem;
  color: #b9c6c1;
  margin-bottom: 14px;
}
.breadcrumb a:hover { color: var(--color-accent-light); }
.page-header h1 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 10px; }
.page-header .lead { color: #cfd9d4; max-width: 60ch; margin: 0; }

/* Cards ------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card p { color: var(--color-ink-soft); font-size: 0.95rem; margin-bottom: 0; }
.card a.card-link { color: var(--color-accent); font-weight: 600; font-size: 0.9rem; }

/* Instrument nav cards (home) */
.instrument-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.instrument-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.instrument-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,30,29,0) 35%, rgba(15,24,23,0.88) 100%);
}
.instrument-card .label {
  position: relative; z-index: 1;
  padding: 20px;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.instrument-card .label span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent-light);
  margin-top: 2px;
}
.instrument-card:hover img { transform: scale(1.06); }

/* Pricing / service blocks ------------------------------------------------------- */
.service-block {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 30px 32px;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}
.service-block h3 { margin-bottom: 6px; }
.service-block .desc { color: var(--color-ink-soft); font-size: 0.95rem; margin-bottom: 12px; }
.service-block ul { margin: 0; }
.service-block ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--color-ink);
  font-size: 0.96rem;
}
.service-block ul li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
}
.price-tag {
  background: var(--color-bg-alt);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.05rem;
  align-self: center;
}
@media (max-width: 640px) {
  .service-block { grid-template-columns: 1fr; }
  .price-tag { justify-self: start; }
}

/* Split / feature sections -------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) {
  .split, .split.reverse .split-media { grid-template-columns: 1fr; order: 0; }
}
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split-media.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.split-media.two-up img:nth-child(2) { margin-top: 32px; }
.split h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.split .lead { color: var(--color-ink-soft); }

.quote-card {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.quote-card p { color: #dbe4e0; font-style: italic; font-size: 1.05rem; }
.quote-card footer { color: var(--color-accent-light); font-weight: 600; font-style: normal; font-size: 0.9rem; }

/* Steps (how to use) --------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}
.step .num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.step h3 { margin-bottom: 4px; font-size: 1.02rem; }
.step p { margin: 0; color: var(--color-ink-soft); font-size: 0.95rem; }

/* Testimonials --------------------------------------------------------------------- */
.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial .stars { color: var(--color-accent); letter-spacing: 2px; font-size: 0.95rem; }
.testimonial p.quote { color: var(--color-ink); font-size: 0.98rem; margin: 0; flex-grow: 1; }
.testimonial .who { display: flex; align-items: center; gap: 10px; }
.testimonial .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-display);
  flex-shrink: 0;
}
.testimonial .who strong { display: block; font-size: 0.92rem; }
.testimonial .who span { display: block; font-size: 0.8rem; color: var(--color-ink-soft); }

/* Gallery ------------------------------------------------------------------------- */
.gallery-feature {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 34px;
  margin-bottom: 30px;
}
.gallery-feature h3 { margin-bottom: 6px; }
.gallery-feature .tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-teal);
  font-weight: 700;
  margin-bottom: 10px;
}
.gallery-feature p { color: var(--color-ink-soft); }
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.gallery-strip img, .gallery-strip-2 img {
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.gallery-strip-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px; }
@media (max-width: 700px) {
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

/* CTA band -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--color-primary), #13302f);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; font-size: 1.7rem; }
.cta-band p { color: #cfd9d4; margin: 0; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Contact page -------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-line);
}
.info-row:last-child { border-bottom: none; }
.info-row .icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--color-bg-alt); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-row h3 { font-size: 0.98rem; margin-bottom: 3px; }
.info-row p { margin: 0; color: var(--color-ink-soft); font-size: 0.95rem; }
.contact-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-row a {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.social-row a:hover { background: var(--color-primary); transform: translateY(-2px); }
.social-row img { width: 20px; height: 20px; }

/* Footer -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-primary-dark);
  color: #c9d3ce;
  padding: 56px 0 26px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text span { color: #93a29c; }
.footer-brand p { color: #93a29c; font-size: 0.92rem; margin-top: 14px; max-width: 32ch; }
.site-footer h4 {
  color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 14px; font-family: var(--font-body); font-weight: 700;
}
.site-footer ul li { margin-bottom: 9px; }
.site-footer a { color: #b7c3bd; font-size: 0.93rem; }
.site-footer a:hover { color: var(--color-accent-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  padding-top: 22px; font-size: 0.82rem; color: #839089;
}
.footer-bottom a { color: #a9b6b0; }

/* Utility spacing ------------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
