/* ==========================================================================
   Musicians Discount Center
   Palette derived from a Martin dreadnought: amber spruce top (primary),
   tortoiseshell teardrop pickguard (trim), white space (secondary).
   ==========================================================================
   TEXTURE SWITCH
   The wood/tortoise photo textures are applied ONLY via the two custom
   properties below. To fall back to flat colour, set both to `none`.
   Nothing else in this file needs to change.
   ========================================================================== */
:root {
  --tex-wood:     url('images/wood.jpg');
  /* Trim.PNG is only 112x225px. Stretched across a full-width band it blows up
     ~14x into a blurry smear, so the tortoiseshell is used as a COLOUR source
     only, not as a texture. Re-enable by supplying a higher-res photo. */
  --tex-tortoise: none;

  /* Martin amber spruce */
  --wood:      #d99a2b;
  --wood-lt:   #e8b44c;
  --wood-dk:   #a8721a;
  /* Tortoiseshell teardrop */
  --tortoise:  #2a1206;
  --tortoise-lt: #4a2410;
  /* Logo palette */
  --cream:     #f6f1df;
  --burgundy:  #7a2430;
  --gold:      #c9a227;

  --ink:       #1a1208;
  --muted:     #6b6357;
  --line:      #e6ded0;
  --white:     #fff;

  --shadow:    0 10px 30px rgba(42,18,6,.10);
  --shadow-lg: 0 20px 50px rgba(42,18,6,.18);
  --radius:    12px;
  --wrap:      1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Anton', sans-serif; font-weight: 400; line-height: 1.06; letter-spacing: .4px; }
.container { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .2em;
  font-weight: 600; font-size: .85rem; color: var(--burgundy); margin-bottom: .7rem;
}
.eyebrow--light { color: var(--wood-lt); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; font-size: .95rem; padding: .82rem 1.6rem;
  border: 2px solid transparent; border-radius: 8px; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--amber { background: var(--wood); color: var(--tortoise); border-color: var(--wood-dk); }
.btn--amber:hover { background: var(--wood-lt); }
.btn--dark  { background: var(--tortoise); color: var(--cream); border-color: var(--tortoise); }
.btn--dark:hover { background: var(--tortoise-lt); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--outline { background: transparent; color: var(--tortoise); border-color: var(--tortoise); }
.btn--outline:hover { background: var(--tortoise); color: var(--cream); }
.btn--sm { padding: .55rem 1rem; font-size: .82rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Top utility bar (tortoiseshell) ---------- */
.topbar {
  background-color: var(--tortoise);
  background-image: var(--tex-tortoise);
  background-size: cover;
  color: var(--cream); font-size: .84rem;
  border-bottom: 2px solid var(--gold);
}
.topbar__inner { display: flex; align-items: center; gap: 1.2rem; min-height: 40px; flex-wrap: wrap; }
.topbar__spacer { flex: 1; }
.topbar__item { font-family: 'Oswald', sans-serif; letter-spacing: .04em; opacity: .95; }
.topbar__phone { font-weight: 600; color: var(--wood-lt); }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 60; background: var(--white); border-bottom: 1px solid var(--line); }
.nav.is-stuck { box-shadow: var(--shadow); }
.nav__inner { display: flex; align-items: center; gap: 1.4rem; min-height: 74px; }
.nav__brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.nav__logo { height: 56px; width: auto; }
.nav__name { font-family: 'Anton', sans-serif; font-size: 1.02rem; line-height: 1; letter-spacing: .3px; }
.nav__name span { display: block; font-family: 'Oswald', sans-serif; font-weight: 500; font-size: .66rem; letter-spacing: .17em; color: var(--burgundy); margin-top: 3px; }
.nav__links { margin-left: auto; display: flex; align-items: center; gap: 1.5rem; }
.nav__link {
  font-family: 'Oswald', sans-serif; font-weight: 500; text-transform: uppercase;
  letter-spacing: .07em; font-size: .9rem; padding: 4px 0; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--wood); transition: width .22s ease;
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--burgundy); }
.nav__cta-group { display: flex; gap: .6rem; margin-left: .4rem; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; min-height: 660px; display: flex; align-items: center;
  background: url('images/banner.jpg') center center / cover no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(42,18,6,.90) 0%, rgba(42,18,6,.68) 44%, rgba(42,18,6,.12) 100%);
}
.hero__inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 2rem; padding: 4.5rem 22px; width: 100%; }
.hero__content { max-width: 680px; }
.hero__eyebrow { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .2em; font-weight: 600; color: var(--wood-lt); font-size: .88rem; margin-bottom: 1rem; }
.hero__title { font-size: clamp(2.3rem, 5.6vw, 4.3rem); color: #fff; }
.hero__title span { color: var(--wood-lt); }
.hero__tagline { font-family: 'Oswald', sans-serif; font-weight: 500; font-style: italic; font-size: clamp(1.05rem, 2.2vw, 1.38rem); color: var(--cream); margin-top: .7rem; }
.hero__text { font-size: 1.14rem; margin: 1.1rem 0 2rem; color: #f0e8da; max-width: 590px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; font-family: 'Oswald', sans-serif; font-size: .93rem; color: var(--cream); }

/* Hero badge — 1987 heritage stamp */
.seal { position: relative; width: 190px; height: 190px; margin-left: auto; flex-shrink: 0; transform: rotate(-10deg); filter: drop-shadow(0 10px 22px rgba(0,0,0,.45)); }
.seal__ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.seal__ring circle.o { fill: var(--burgundy); stroke: var(--cream); stroke-width: 3; }
.seal__ring circle.i { fill: none; stroke: var(--gold); stroke-width: 2; }
.seal__inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--cream); padding: 0 18px; }
.seal__top { font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; font-size: .72rem; letter-spacing: .1em; }
.seal__big { font-family: 'Anton', sans-serif; font-size: 2.5rem; line-height: 1; color: var(--wood-lt); margin: 4px 0 2px; }
.seal__bottom { font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; font-size: .68rem; letter-spacing: .07em; line-height: 1.2; }

@keyframes mdcSlideIn { from { opacity: 0; transform: translateX(-42px); } to { opacity: 1; transform: translateX(0); } }
@keyframes mdcStampIn {
  0%   { opacity: 0; transform: translateY(-90px) rotate(-28deg) scale(.5); }
  70%  { opacity: 1; transform: translateY(0) rotate(-5deg) scale(1.08); }
  100% { opacity: 1; transform: translateY(0) rotate(-10deg) scale(1); }
}
.hero__eyebrow, .hero__title, .hero__tagline, .hero__text, .hero__actions, .hero__trust {
  opacity: 0; animation: mdcSlideIn 1.5s cubic-bezier(.2,.7,.2,1) both;
}
.hero__eyebrow { animation-delay: .45s; }
.hero__title   { animation-delay: .65s; }
.hero__tagline { animation-delay: .8s; }
.hero__text    { animation-delay: .92s; }
.hero__actions { animation-delay: 1.05s; }
.hero__trust   { animation-delay: 1.22s; }
.seal { opacity: 0; animation: mdcStampIn 1.7s cubic-bezier(.2,.8,.25,1) both; animation-delay: 1.4s; }

/* ---------- Sections ---------- */
.section { padding: 5.2rem 0; }
.section--cream { background: var(--cream); }
.section--dark  { background-color: var(--tortoise); background-image: var(--tex-tortoise); background-size: cover; color: var(--cream); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--wood {
  position: relative; color: var(--tortoise);
  background-color: var(--wood); background-image: var(--tex-wood); background-size: cover; background-position: center;
}
.section--wood::before { content: ''; position: absolute; inset: 0; background: rgba(255,251,240,.60); }
.section--wood > * { position: relative; z-index: 1; }
.section__head { max-width: 780px; margin: 0 auto 3rem; text-align: center; }
.section__title { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section__lead { color: var(--muted); font-size: 1.08rem; margin-top: .9rem; }
.section--dark .section__lead { color: #e5dcc9; }

/* Gold trim rule — the binding stripe down a Martin's edge */
.trim {
  height: 7px; border: 0;
  background: linear-gradient(90deg, var(--tortoise) 0%, var(--burgundy) 18%, var(--gold) 50%, var(--burgundy) 82%, var(--tortoise) 100%);
}

/* ---------- Reviews banner ---------- */
.rvw { background: var(--white); padding: 3.4rem 0; border-bottom: 1px solid var(--line); }
.rvw__head { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; text-align: center; }
.rvw__mark { font-family: 'Anton', sans-serif; font-size: 1.15rem; }
.rvw__count { font-family: 'Oswald', sans-serif; color: var(--muted); font-size: .92rem; }
.rvw__thumbs { color: var(--wood); font-size: 1.1rem; letter-spacing: 2px; }
.rvw__track { display: flex; gap: 1rem; overflow-x: auto; padding: 4px 4px 14px; scroll-snap-type: x mandatory; }
.rvw__track::-webkit-scrollbar { height: 6px; }
.rvw__track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }
.rvw__card {
  flex: 0 0 300px; scroll-snap-align: start; background: var(--cream);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.25rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.rvw__badge { font-family: 'Oswald', sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--burgundy); font-weight: 600; }
.rvw__name { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1rem; }
.rvw__date { font-size: .78rem; color: var(--muted); }
.rvw__body { font-size: .92rem; color: #4a4238; }
.rvw__body--muted { font-style: italic; color: #8a8171; }
.rvw__more { font-family: 'Oswald', sans-serif; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--burgundy); cursor: pointer; margin-top: auto; }

/* Auto-cycling "wheel" marquee — added by JS once cards are duplicated.
   The container clips; the track slides one full set then loops seamlessly.
   Each card carries its own right margin (gap:0) so translateX(-50%) lands
   exactly on the start of the duplicate set. Pauses on hover. */
.rvw.is-marquee .container { overflow: hidden; }
.rvw.is-marquee .rvw__track { overflow: visible; width: max-content; gap: 0; scroll-snap-type: none; animation: rvwScroll 60s linear infinite; will-change: transform; }
.rvw.is-marquee .rvw__track:hover { animation-play-state: paused; }
.rvw.is-marquee .rvw__card { margin-right: 1rem; }
@keyframes rvwScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .rvw.is-marquee .rvw__track { animation: none; } }

/* ---------- Recent Arrivals wheel (landing) — same marquee mechanism ---------- */
.arr__track { display: flex; gap: 1.6rem; overflow-x: auto; padding: 4px 4px 14px; }
.arr__track .pcard { flex: 0 0 176px; }
.arr__cta { text-align: center; margin-top: 2.4rem; }
.arr__note { font-size: .8rem; font-style: italic; color: var(--muted); max-width: 620px; margin: .9rem auto 0; }
/* Tighten the Recent Arrivals section so the wheel doesn't float in dead space */
.arr { padding-top: 3.2rem; padding-bottom: 3.2rem; }
.arr .section__head { margin-bottom: 1.8rem; }
.arr .arr__cta { margin-top: 1.8rem; }
/* Reviews section title sits close to the recommendation bar */
.rvw .section__head { margin-bottom: 1.4rem; }
/* JS-driven drag/flick carousel (position controlled by script.js, not CSS animation) */
.arr.is-marquee .container { overflow: hidden; }
.arr.is-marquee .arr__track { overflow: visible; width: max-content; gap: 0; will-change: transform;
  cursor: grab; touch-action: pan-y; -webkit-user-select: none; user-select: none; }
.arr.is-marquee .arr__track.is-grabbing { cursor: grabbing; }
.arr.is-marquee .arr__track .pcard { margin-right: 1.6rem; }
.arr.is-marquee .arr__track img { -webkit-user-drag: none; user-select: none; }

/* Placeholder banner pinned to the top of the Products page */
.note--top { margin: 2.4rem 0 .4rem; }

/* ---------- Repairs + Rentals combined summary ---------- */
.rr { display: grid; grid-template-columns: .9fr 1.6fr; gap: 2.4rem; align-items: stretch; }
.rr__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 340px; }
.rr__media img { width: 100%; height: 100%; object-fit: cover; }
.rr__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem; }
.rr__title { font-size: 1.3rem; line-height: 1.15; margin: .5rem 0 .7rem; }
.rr__text { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }
.rr__col .split__list { margin-bottom: 1.3rem; }
.rr__col .split__list li { font-size: .9rem; }

/* ---------- Events: two side-by-side columns ---------- */
.ev { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: start; }
.ev__video { max-width: 220px; margin: 0 auto 1.3rem; }
.ev__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/9; margin-bottom: 1.3rem; }
.ev__img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Split feature (repairs / rentals summary) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split--flip .split__media { order: 2; }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: .9rem; }
.split__text { color: var(--muted); margin-bottom: 1.2rem; }
.split__list { list-style: none; display: grid; gap: .5rem; margin-bottom: 1.6rem; }
.split__list li { display: flex; gap: .6rem; font-size: .96rem; }
.split__list li::before { content: '♪'; color: var(--wood-dk); font-weight: 700; }

/* ---------- Heritage / about ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: center; }
.about__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__text p { margin-bottom: 1rem; color: var(--muted); }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.8rem; }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem .8rem; text-align: center; }
.stat__n { font-family: 'Anton', sans-serif; font-size: 1.9rem; color: var(--burgundy); line-height: 1; }
.stat__l { font-family: 'Oswald', sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: 5px; }
.awards { display: grid; gap: .9rem; }
.awards--row { grid-template-columns: repeat(4, 1fr); margin-top: 2.4rem; }
.award { display: flex; gap: .9rem; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: 8px; padding: 1rem 1.1rem; }
.award__ic { font-size: 1.5rem; line-height: 1; }
.award strong { font-family: 'Oswald', sans-serif; display: block; font-size: .98rem; }
.award span { font-size: .84rem; color: var(--muted); }

/* ---------- Community video wall ---------- */
.vwall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.vtile {
  position: relative; aspect-ratio: 9 / 16; border-radius: var(--radius); overflow: hidden;
  background: var(--tortoise); box-shadow: var(--shadow);
  cursor: pointer; transition: transform .25s ease, box-shadow .25s ease;
}
.vtile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.vtile video { width: 100%; height: 100%; object-fit: cover; }
.vtile__ring { position: absolute; inset: 0; border: 2px solid transparent; border-radius: var(--radius); transition: border-color .25s ease; pointer-events: none; }
.vtile:hover .vtile__ring { border-color: var(--wood); }
/* Sound hint — only shown until the page has been interacted with */
.vtile__mute {
  position: absolute; right: 8px; bottom: 8px; z-index: 2;
  background: rgba(42,18,6,.72); color: var(--cream); border-radius: 99px;
  font-size: .7rem; padding: 3px 8px; font-family: 'Oswald', sans-serif; letter-spacing: .05em;
  opacity: 0; transition: opacity .2s ease; pointer-events: none;
}
.vtile:hover .vtile__mute { opacity: 1; }
body.audio-ready .vtile__mute { display: none; }

.cwall__cta { text-align: center; margin-top: 2.6rem; }
.cwall__sub { font-family: 'Oswald', sans-serif; font-size: 1.25rem; font-weight: 500; margin-bottom: 1.1rem; }

/* ---------- Products ---------- */
.arrivals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; max-width: 80%; margin: 0 auto; }
/* Tighten the Products-page "Just In" section (the :not(.arr) keeps the landing wheel untouched) */
#recent-arrivals:not(.arr) { padding-top: 2.8rem; padding-bottom: 3rem; }
#recent-arrivals:not(.arr) .section__head { margin-bottom: 1.6rem; }
.pcard { display: flex; flex-direction: column; }
.pcard__img { aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; background: var(--cream); border: 1px solid var(--line); }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.pcard:hover .pcard__img img { transform: scale(1.05); }
.pcard__name { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: .95rem; margin-top: .7rem; line-height: 1.3; }
.pcard__price { font-family: 'Anton', sans-serif; color: var(--burgundy); font-size: 1.05rem; margin-top: .2rem; }

/* small sorted list */
.plist { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem; }
.plist .pcard__name { font-size: .8rem; }
.plist .pcard__price { font-size: .9rem; }

.pfilter { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.2rem; }
.pfilter button {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .07em; font-size: .82rem;
  padding: .5rem 1.1rem; border: 1px solid var(--line); background: var(--white); border-radius: 99px; cursor: pointer;
  transition: .18s;
}
.pfilter button:hover { border-color: var(--wood); }
.pfilter button.is-active { background: var(--tortoise); color: var(--cream); border-color: var(--tortoise); }

.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.cat { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat:hover img { transform: scale(1.06); }
.cat__label {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1rem 1.1rem;
  background: linear-gradient(to top, rgba(42,18,6,.85) 0%, rgba(42,18,6,.1) 60%);
  font-family: 'Anton', sans-serif; color: #fff; font-size: 1.25rem; letter-spacing: .5px;
}

/* ---------- Services subtabs ---------- */
.subtabs { position: sticky; top: 74px; z-index: 40; background: var(--cream); border-bottom: 1px solid var(--line); }
.subtabs__inner { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; padding: .8rem 22px; }
.subtab {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem;
  padding: .5rem 1.2rem; border-radius: 99px; border: 1px solid var(--line); background: var(--white);
  transition: .18s;
}
.subtab:hover { border-color: var(--wood); }
.subtab.is-active { background: var(--tortoise); color: var(--cream); border-color: var(--tortoise); }

.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.svc-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; }
.svc-card h3 { font-size: 1.15rem; margin-bottom: .7rem; color: var(--burgundy); }
.svc-card ul { list-style: none; display: grid; gap: .42rem; }
.svc-card li { font-size: .92rem; color: var(--muted); display: flex; gap: .55rem; }
.svc-card li::before { content: '•'; color: var(--wood-dk); font-weight: 700; }

.note {
  background: #fff8e6; border: 1px dashed var(--gold); border-radius: 8px;
  padding: .9rem 1.1rem; font-size: .88rem; color: #6b5a2a; margin-top: 1.4rem;
}

/* ---------- Contact / form ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
.contact__media { background-size: cover; background-position: center; min-height: 380px; }
.contact__panel { background-color: var(--tortoise); background-image: var(--tex-tortoise); background-size: cover; display: flex; align-items: center; padding: 3.4rem 3rem; }
.contact__inner { width: 100%; max-width: 560px; margin: 0 auto; color: var(--cream); }
.contact__title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: #fff; }
.contact__lead { color: #e0d6c2; margin: .7rem 0 1.6rem; font-size: .98rem; }
.contact .eyebrow { color: var(--wood-lt); }
.field { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .85rem; }
.field label { font-family: 'Oswald', sans-serif; font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; color: var(--wood-lt); }
.field input, .field select, .field textarea {
  /* 16px min prevents iOS Safari from auto-zooming the page on focus */
  font-family: 'Inter', sans-serif; font-size: 16px; padding: .72rem .85rem;
  border: 1px solid rgba(246,241,223,.28); border-radius: 7px;
  background: rgba(255,255,255,.07); color: #fff; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(246,241,223,.45); }
.field select option { color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--wood); outline-offset: 1px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.form__status { margin-top: .8rem; font-size: .88rem; min-height: 1.2em; }
.form__status.ok  { color: #8fd06a; }
.form__status.err { color: #ffb3a7; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 860px; margin: 0 auto; display: grid; gap: .7rem; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 1.02rem;
  padding: 1.05rem 3rem 1.05rem 1.3rem; position: relative; color: var(--ink);
}
.faq__q::after { content: '+'; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--wood-dk); }
.faq__item.is-open .faq__q::after { content: '–'; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 1.3rem 1.15rem; color: var(--muted); font-size: .95rem; }
.faq__item.is-open .faq__a { max-height: 320px; }

/* ---------- Map ---------- */
.map__wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid var(--tortoise); }
.map__wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
.map__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2.4rem; align-items: center; }

/* ---------- Get in touch ---------- */
.touch__inner { text-align: center; max-width: 760px; margin: 0 auto; }
.touch__title { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.touch__sub { color: #e5dcc9; margin: .8rem 0 1.8rem; }
.touch__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.touch__info { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 3.2rem; }
.tinfo { display: flex; gap: .8rem; align-items: flex-start; }
.tinfo__ic { font-size: 1.3rem; }
.tinfo strong { font-family: 'Oswald', sans-serif; display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--wood-lt); }
.tinfo a, .tinfo span { font-size: .9rem; color: var(--cream); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #cbc2b2; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.2rem; padding: 3.4rem 22px 2.4rem; }
.footer__logo { font-family: 'Anton', sans-serif; color: #fff; font-size: 1.3rem; line-height: 1.1; }
.footer__logo span { display: block; font-family: 'Oswald', sans-serif; font-weight: 500; font-size: .7rem; letter-spacing: .16em; color: var(--wood); margin-top: 4px; }
.footer__tag { font-size: .88rem; margin: .9rem 0 1rem; max-width: 340px; }
.footer__social { display: flex; gap: .7rem; }
.footer__social a { font-family: 'Oswald', sans-serif; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; border: 1px solid #3a3226; padding: .35rem .8rem; border-radius: 99px; transition: .18s; }
.footer__social a:hover { border-color: var(--wood); color: var(--wood-lt); }
.footer__col h4 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: #fff; margin-bottom: .9rem; }
.footer__col a, .footer__col span { display: block; font-size: .88rem; margin-bottom: .5rem; transition: color .18s; }
.footer__col a:hover { color: var(--wood-lt); }
.footer__bar { border-top: 1px solid #2b2419; padding: 1.1rem 0; font-size: .8rem; }
.footer__bar p { text-align: center; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Page header (interior pages) ---------- */
.phead { position: relative; color: #fff; padding: 4.2rem 0; background: url('images/banner.jpg') center 30% / cover no-repeat; }
.phead::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(42,18,6,.92), rgba(42,18,6,.62)); }
.phead__inner { position: relative; z-index: 1; }
.phead__title { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.phead__sub { color: #e6dcc8; margin-top: .6rem; max-width: 640px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .vwall  { grid-template-columns: repeat(3, 1fr); }
  .arrivals { grid-template-columns: repeat(3, 1fr); }
  .plist  { grid-template-columns: repeat(4, 1fr); }
  .cats   { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .touch__info { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 74px 0 auto; background: var(--white); flex-direction: column;
    align-items: flex-start; gap: 0; padding: 1rem 22px 1.6rem; border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .3s ease; box-shadow: var(--shadow);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__link { padding: .8rem 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav__cta-group { margin: .9rem 0 0; width: 100%; }
  .nav__toggle { display: block; }
  .hero { min-height: auto; }
  .hero__inner { flex-direction: column; align-items: flex-start; padding: 3.2rem 22px; }
  .seal { margin: 1.6rem 0 0; width: 150px; height: 150px; }
  .split, .about__grid, .contact, .map__grid, .rr, .ev { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .about__grid { gap: 2rem; }
  .awards--row { grid-template-columns: repeat(2, 1fr); }
  .rr__media { min-height: 240px; }
  .contact__panel { padding: 2.6rem 1.4rem; }
  .svc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .vwall  { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
  .arrivals { grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 100%; }
  .plist  { grid-template-columns: repeat(2, 1fr); }
  .cats   { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr; }
  .rr__cols { grid-template-columns: 1fr; }
  .awards--row { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .touch__info { grid-template-columns: 1fr; }
  .section { padding: 3.4rem 0; }
  /* Slim the top utility bar on phones: drop the tagline, center hours + a
     bigger tap-to-call phone so it stops wrapping to three lines. */
  .topbar__inner { justify-content: center; gap: .35rem 1.1rem; }
  .topbar__item:first-child, .topbar__spacer { display: none; }
  .topbar__phone { font-size: .95rem; padding: 2px 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__eyebrow, .hero__title, .hero__tagline, .hero__text, .hero__actions, .hero__trust, .seal { animation: none; opacity: 1; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .vtile:hover { transform: none; }
}
