/* =============================================================
   Segel Violins — violinsdirect.com
   Direction 5 "Varnish": deep oxblood, amber, cream.
   Edit the variables below to retune the whole site.
   ============================================================= */

:root {
  /* Palette */
  --bg: #3a1d12;            /* page ground (oxblood) */
  --bg-deep: #2c140b;       /* darker band */
  --bg-lift: #4a2415;       /* lighter band / cards */
  --line: rgba(224, 165, 74, 0.40);
  --line-strong: rgba(224, 165, 74, 0.65);
  --amber: #e0a54a;         /* accent: buttons, labels, rules */
  --amber-hover: #f2c477;
  --cream: #f4e6cf;         /* headings, primary text */
  --cream-soft: #e8d5b8;    /* body text */
  --cream-muted: #c79a6a;   /* captions, placeholders */

  /* Type */
  --font-display: 'Gilda Display', 'Didot', Georgia, 'Times New Roman', serif;
  --font-body: 'Crimson Pro', Georgia, 'Times New Roman', serif;

  /* Layout */
  --max: 1440px;
  --pad: 72px;              /* horizontal page padding (desktop) */
  --section: 80px;          /* vertical rhythm between sections */
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], #violins { scroll-margin-top: 96px; }   /* menu links land below the sticky header */
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--amber); text-decoration: none; }
a:hover { color: var(--amber-hover); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; margin: 0; line-height: 1.1; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--amber);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.btn:hover { background: rgba(224,165,74,0.12); color: var(--cream); }
.btn--solid { background: var(--amber); color: var(--bg); }
.btn--solid:hover { background: var(--amber-hover); color: var(--bg); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* Placeholder boxes — replace with real <img> / map embed */
.ph {
  border: 1px solid var(--line-strong);
  padding: 14px;
  display: flex;
}
.ph > img { width: 100%; height: auto; display: block; }      /* photos keep their own proportions: never cropped or zoomed */
.ph:has(> img) { height: auto !important; min-height: 0; }   /* the frame follows the photo, not a fixed height */
.ph:has(> img) > img { height: auto !important; }
.ph--map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }
.hero__lede p { margin: 0; }
.service__text p { margin: 0; font-size: 17px; line-height: 1.55; color: var(--cream-soft); }
.feature__copy p + p { margin-top: 2px; }
.ph__inner {
  height: 100%;
  min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  color: var(--cream-muted); font-size: 15px; font-style: italic;
  background: radial-gradient(ellipse at 40% 30%, #7a3b1f 0%, var(--bg-lift) 60%, var(--bg-deep) 100%);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(58, 29, 18, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 22px; padding-bottom: 22px; }
.brand { font-family: var(--font-display); font-size: 28px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); }
.brand:hover { color: var(--amber-hover); }
.nav { display: flex; gap: 22px; align-items: center; margin: 0; padding: 0; list-style: none; flex-wrap: wrap; justify-content: flex-end; }
.nav a { font-size: 16px; white-space: nowrap; font-style: italic; color: var(--cream); }
.nav a:hover { color: var(--amber-hover); }
.nav a.nav__cta { font-style: normal; color: var(--amber); }
.nav-toggle { display: none; background: none; border: 1px solid var(--amber); color: var(--cream); font: 500 13px/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase; padding: 10px 14px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero .wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding-top: var(--section); padding-bottom: var(--section);
}
.hero__art { height: 620px; }
.hero__art > img { height: 100%; }
.hero__art .ph__inner { min-height: 100%; }
.hero__copy { display: flex; flex-direction: column; gap: 26px; }
.hero h1 { font-size: clamp(40px, 4.6vw, 66px); line-height: 1.08; text-wrap: pretty; }
.hero__lede { font-size: 21px; color: var(--cream-soft); max-width: 540px; text-wrap: pretty; }

/* ---------- Services ---------- */
.services .wrap { padding-top: 24px; padding-bottom: 24px; }
.services__wrap {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding-top: 56px; padding-bottom: 56px;
}
.services__photo { height: 420px; }
.services__copy { display: flex; flex-direction: column; gap: 14px; }
.services__copy h2 { font-size: 40px; line-height: 1.15; }
.services__copy > p { color: var(--cream-soft); }
.services__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 32px; margin-top: 18px; padding-top: 22px; border-top: 1px solid var(--line); }
.service { display: flex; flex-direction: column; gap: 6px; }
.service h3 { font-size: 22px; color: var(--amber); }
.service p { font-size: 17px; line-height: 1.55; color: var(--cream-soft); }

/* ---------- Two-column feature rows ---------- */
.feature .wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding-top: 40px; padding-bottom: 40px;
}
.feature__copy { display: flex; flex-direction: column; gap: 14px; }
.feature h2 { font-size: 40px; line-height: 1.15; }
.feature p { color: var(--cream-soft); }
.feature .ph { height: 320px; }
.feature .ph__inner { min-height: 100%; }
.feature__copy .feature__foot { font-size: 16px; color: var(--cream-muted); font-style: italic; }
.instrument-list { list-style: none; margin: 6px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 24px; }
.instrument-list li { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--cream); font-size: 19px; }
.brands { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.brands span { padding: 8px 14px; border: 1px solid var(--line-strong); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Testimonial + also ---------- */
.proof .wrap { padding-top: 40px; padding-bottom: 40px; }
.proof__box {
  margin: 0; padding: 48px 64px; background: rgba(0,0,0,0.25); border: 1px solid var(--line);
  text-align: center; align-items: center;
}
.quote { display: flex; flex-direction: column; gap: 12px; }
.quote blockquote { max-width: 900px; margin: 0 auto; }
.quote blockquote { margin: 0; font-family: var(--font-display); font-size: 30px; line-height: 1.4; }
.quote cite { font-style: normal; }
.also { display: flex; flex-direction: column; gap: 8px; border-left: 1px solid var(--line-strong); padding-left: 28px; }
.also h2 { font-size: 28px; line-height: 1.2; }
.also p { font-size: 16px; line-height: 1.55; color: var(--cream-soft); }

/* ---------- Visit ---------- */
.visit { border-top: 1px solid var(--line); }
.visit .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding-top: 64px; padding-bottom: 64px; }
.visit__copy { display: flex; flex-direction: column; gap: 22px; }
.visit h2 { font-size: 52px; line-height: 1.05; }
.details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin: 0; }
.details dt { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
.details dd { margin: 0; color: var(--cream-soft); line-height: 1.55; }
.hours { border-top: 1px solid var(--line); padding-top: 18px; }
.special { margin-bottom: 18px; padding: 16px 18px; border: 1px solid var(--amber); }
.special__title { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--amber); font-weight: 700; margin-bottom: 6px; }
.special__text { color: var(--amber); font-weight: 700; font-size: 19px; line-height: 1.45; white-space: pre-line; }
.hours__title { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.hours__list { display: flex; flex-direction: column; align-items: flex-start; text-align: left !important; max-width: 420px; font-variant-numeric: tabular-nums; }
.hours__row { display: grid; grid-template-columns: 140px 1fr; gap: 24px; width: 100%; padding: 6px 0; border-bottom: 1px dotted var(--line); text-align: left !important; justify-items: start; }
.hours__day { color: var(--cream); text-align: left !important; }
.hours__time { color: var(--cream-soft); white-space: nowrap; text-align: left !important; }
.hours__row.is-today .hours__day, .hours__row.is-today .hours__time { color: var(--amber); }
.hours__note { margin-top: 10px; font-size: 15px; font-style: italic; color: var(--cream-muted); }
.visit .ph { height: 320px; }
.visit .ph__inner { min-height: 100%; }

/* ---------- Request a service form ---------- */
.request { background: var(--bg-deep); border-top: 1px solid var(--line); }
.request .wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; padding-top: 64px; padding-bottom: 72px; }
.request__intro { display: flex; flex-direction: column; gap: 14px; }
.request h2 { font-size: 40px; line-height: 1.1; }
.request p { color: var(--cream-soft); }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); }
.form label.full { grid-column: 1 / -1; }
.form input, .form select, .form textarea {
  font: 17px/1.4 var(--font-body); color: var(--cream);
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-strong);
  padding: 12px 14px; border-radius: 0; width: 100%;
}
.form textarea { min-height: 120px; resize: vertical; }
.form input::placeholder, .form textarea::placeholder { color: var(--cream-muted); }
.form .btn { justify-self: start; }
.form small { grid-column: 1 / -1; font-size: 14px; color: var(--cream-muted); }
.form-sent.is-error { border-color: #d97c6a; background: rgba(140,50,35,0.3); color: #f5d4cc; }
.form-sent { padding: 20px 24px; border: 1px solid #7fb27a; background: rgba(60,110,55,0.25); color: #dff0dc; font-size: 18px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-top: 20px; padding-bottom: 28px; font-size: 14px; color: #b08f6a; }
.site-footer nav { display: flex; gap: 24px; }
.site-footer a { color: #b08f6a; } .site-footer a:hover { color: var(--amber); }

/* ---------- Responsive ----------
   Desktop  > 1200px : full layout
   Tablet   701–1200 : navigation stays across the top (no Menu button); hero photo about a third smaller
   Phone    <= 700px : Menu button, single column
*/
@media (max-width: 1200px) {
  :root { --pad: 32px; --section: 48px; }
  /* header: brand on one line, full navigation on the next, all visible */
  .site-header .wrap { flex-wrap: wrap; justify-content: center; row-gap: 10px; padding-top: 16px; padding-bottom: 14px; }
  .brand { font-size: 24px; }
  .nav { width: 100%; justify-content: center; gap: 8px 22px; }
  .nav a { font-size: 15px; }
  /* hero: two columns, photo ~35% smaller than desktop */
  .hero .wrap { gap: 36px; align-items: center; }
  .hero__art { height: 400px; }
  .hero h1 { font-size: clamp(32px, 4.2vw, 44px); }
  .hero__lede { font-size: 18px; }
  .services__wrap { gap: 36px; padding-top: 40px; padding-bottom: 40px; }
  .services__photo { height: 300px; }
  .services__copy h2 { font-size: 32px; }
  .feature .ph { height: 280px; }
  .feature h2 { font-size: 32px; }
  .proof__box { padding: 32px 36px; }
  .quote blockquote { font-size: 24px; }
  .visit h2 { font-size: 40px; }
  .visit .ph { height: 280px; }
  .form { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1000px) {
  /* tablet portrait: stack the two-column sections, but keep the hero photo modest and centered */
  .hero .wrap { grid-template-columns: 1fr; gap: 28px; }
  .hero__art { height: 380px; width: 65%; margin: 0 auto; }
  .feature .wrap, .visit .wrap, .request .wrap, .services__wrap { grid-template-columns: 1fr; gap: 28px; }
  .services__photo { width: 80%; margin: 0 auto; }
  .feature--flip .ph { order: -1; }
  .feature .ph, .visit .ph { height: 300px; width: 80%; margin: 0 auto; }
  .also { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-strong); padding-top: 24px; }
}
@media (max-width: 700px) {
  :root { --pad: 20px; --section: 40px; }
  .site-header .wrap { flex-wrap: nowrap; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; }
  .nav-toggle { display: inline-block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%; width: auto;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .nav li { border-top: 1px solid var(--line); }
  .nav a { display: block; padding: 16px var(--pad); font-size: 18px; }
  .hero__art { height: 300px; width: 100%; }
  .hero h1 { font-size: 36px; }
  .feature .ph, .visit .ph { width: 100%; height: 260px; }
  .services__grid { grid-template-columns: 1fr; gap: 24px; }
  .services__photo { width: 100%; height: 260px; }
  .proof__box { padding: 28px 24px; }
  .quote blockquote { font-size: 22px; }
  .visit h2 { font-size: 36px; }
  .details { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .btn { width: 100%; text-align: center; }
  .btn-row { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn { transition: none; } }
