:root {
  color-scheme: light;
  --ink: #1d1a16;
  --ink-soft: #4d473e;
  --muted: #7d766a;
  --line: #e7e0d2;
  --line-strong: #d8cfbc;
  --paper: #f7f3ea;
  --paper-deep: #f1ebdd;
  --surface: #fffdf8;
  --surface-2: #f4efe2;
  --pine: #1e4d40;
  --pine-bright: #266052;
  --pine-deep: #143830;
  --pine-soft: #e4ede6;
  --brass: #ab8434;
  --brass-bright: #d8b15f;
  --coral: #c75b3e;
  --font-display: "Noto Serif KR", "Noto Sans KR", serif;
  --font-body: "Noto Sans KR", system-ui, sans-serif;
  --shadow-sm: 0 1px 2px rgba(29, 26, 22, 0.05), 0 3px 10px rgba(29, 26, 22, 0.05);
  --shadow-md: 0 10px 30px rgba(29, 26, 22, 0.11);
  --shadow-lg: 0 24px 70px rgba(22, 18, 12, 0.18);
  --ring: 0 0 0 3px rgba(30, 77, 64, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: 0;
  word-break: keep-all;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 620px at 88% -6%, rgba(30, 77, 64, 0.07), transparent 62%),
    radial-gradient(720px 520px at -12% 28%, rgba(171, 132, 52, 0.07), transparent 56%),
    radial-gradient(640px 460px at 104% 78%, rgba(30, 77, 64, 0.05), transparent 58%);
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

::selection {
  background: rgba(171, 132, 52, 0.28);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
}

h1 {
  font-size: clamp(3.2rem, 8.5vw, 6.8rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.14;
}

h3 {
  font-size: 1.08rem;
}

/* ---------- buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 47px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  padding: 0 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button:active {
  transform: translateY(0) scale(0.99);
  box-shadow: none;
}

.button:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(180deg, #266052 0%, var(--pine) 55%, var(--pine-deep) 100%);
  color: #fdfbf4;
  box-shadow: 0 8px 22px rgba(20, 56, 48, 0.28);
}

.button.primary:hover {
  box-shadow: 0 14px 30px rgba(20, 56, 48, 0.34);
}

.button.dark {
  border-color: var(--ink);
  background: var(--ink);
  color: #f8f4ea;
}

.button.light {
  border-color: rgba(255, 252, 244, 0.5);
  background: rgba(255, 252, 244, 0.13);
  color: #fffcf4;
  backdrop-filter: blur(10px);
}

.button.light:hover {
  background: rgba(255, 252, 244, 0.22);
}

.button.outline {
  border-color: rgba(30, 77, 64, 0.34);
  background: transparent;
  color: var(--pine-deep);
}

.button.outline:hover {
  border-color: var(--pine);
  background: var(--pine-soft);
}

.button.danger {
  border-color: #e3beb1;
  background: #fdf3ef;
  color: #a23d2b;
}

/* ---------- guitar tool ---------- */

.guitar-tool-section {
  padding-top: clamp(38px, 6vw, 82px);
}

.guitar-tool-section h1 {
  color: var(--pine-deep);
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 24px;
  width: min(920px, 100%);
}

.guitar-tool-shell {
  overflow: hidden;
  border: 1px solid rgba(30, 77, 64, 0.18);
  border-radius: 22px;
  background: #2e2e2f;
  box-shadow: var(--shadow-lg);
}

.guitar-frame {
  display: block;
  width: 100%;
  height: 980px;
  border: 0;
  background: #2e2e2f;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(216, 207, 188, 0.55);
  background: rgba(247, 243, 234, 0.84);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  padding: 11px max(18px, calc((100vw - 1180px) / 2));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 46%),
    var(--pine-deep);
  color: #ecdfc0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 4px 12px rgba(20, 56, 48, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand small {
  margin-top: 1px;
  color: var(--brass);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.site-nav a {
  position: relative;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 11px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  background: var(--pine-soft);
  color: var(--pine-deep);
}

.site-nav a[aria-current="page"] {
  background: var(--pine-deep);
  color: #f3ede0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  background: var(--ink);
  color: #f8f4ea;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0 18px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.nav-toggle span + span {
  margin-top: 6px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100svh - 130px);
  overflow: hidden;
  isolation: isolate;
  background: #11100c;
  color: #fffdf6;
  padding: clamp(80px, 8vw, 120px) max(20px, calc((100vw - 1180px) / 2)) 72px;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(88deg, rgba(14, 12, 8, 0.88) 6%, rgba(14, 12, 8, 0.46) 50%, rgba(14, 12, 8, 0.1)),
    linear-gradient(0deg, rgba(14, 12, 8, 0.92), rgba(14, 12, 8, 0.05) 52%),
    radial-gradient(1100px 480px at 86% 4%, rgba(216, 177, 95, 0.14), transparent 60%);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-zoom 26s ease-in-out infinite alternate;
  transform-origin: 62% 38%;
}

@keyframes hero-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}

.hero-copy {
  width: min(780px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
  content: "";
}

.hero .eyebrow {
  color: var(--brass-bright);
}

.hero h1 {
  text-shadow: 0 3px 40px rgba(0, 0, 0, 0.35);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 56ch;
  margin-top: 22px;
  color: rgba(255, 250, 238, 0.85);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 500;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(920px, 100%);
  margin-top: clamp(38px, 6vw, 76px);
}

.hero-facts article {
  min-height: 96px;
  border: 1px solid rgba(255, 252, 240, 0.16);
  border-radius: 16px;
  background: rgba(17, 15, 10, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 20px;
  transition: transform 200ms ease, border-color 200ms ease;
}

.hero-facts article:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 177, 95, 0.45);
}

.hero-facts span {
  display: block;
  color: rgba(236, 226, 205, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-facts strong {
  display: block;
  margin-top: 9px;
  font-family: var(--font-display);
  font-size: 1.07rem;
  font-weight: 600;
  line-height: 1.42;
}

/* ---------- layout shells ---------- */

.booking-strip,
.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.booking-strip {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: -40px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  padding: 24px 30px;
}

.booking-strip strong {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
}

.booking-strip p {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}

.strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section {
  scroll-margin-top: 78px;
  padding: clamp(80px, 10vw, 124px) 0;
}

.section + .section {
  border-top: 1px solid rgba(216, 207, 188, 0.5);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(300px, 0.84fr);
  gap: clamp(22px, 6vw, 72px);
  align-items: end;
  margin-bottom: 40px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
  padding-bottom: 6px;
}

.process-grid,
.info-grid {
  display: grid;
  gap: 14px;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
}

.info-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-grid.compact {
  margin-top: 18px;
}

.process-card,
.info-card,
.notice-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.process-card,
.info-card {
  min-height: 178px;
  padding: 22px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.process-card:hover,
.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(171, 132, 52, 0.42);
  box-shadow: var(--shadow-md);
}

.process-card span,
.info-card span {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  border-radius: 999px;
  background: rgba(171, 132, 52, 0.12);
  color: #8a6a24;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  text-transform: uppercase;
}

.process-card h3,
.info-card h3,
.split-panel h3,
.notice-panel h3 {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
}

.process-card p,
.info-card p,
.notice-panel p {
  margin-top: 11px;
  color: var(--muted);
  line-height: 1.72;
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.split-panel > div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: clamp(22px, 3vw, 30px);
}

.split-panel h3 {
  margin-top: 0;
  color: var(--pine-deep);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  line-height: 1.68;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brass);
  content: "";
  transform: translateY(-50%);
}

.notice-panel {
  margin-bottom: 22px;
  background:
    linear-gradient(90deg, rgba(30, 77, 64, 0.08), rgba(171, 132, 52, 0.08)),
    var(--surface);
  padding: 24px;
}

.notice-panel h3 {
  margin-top: 0;
  color: var(--pine-deep);
}

/* ---------- reserve ---------- */

.reserve-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.reserve-form,
.rule-card,
.faq-list,
.map-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.reserve-form {
  display: grid;
  gap: 19px;
  padding: clamp(22px, 3vw, 32px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fcfaf3;
  color: var(--ink);
  font-weight: 500;
  padding: 11px 14px;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231e4d40' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pine);
  outline: none;
  box-shadow: var(--ring);
  background: #fff;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.estimate-card {
  position: sticky;
  top: 92px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background:
    radial-gradient(420px 260px at 110% -10%, rgba(216, 177, 95, 0.16), transparent 60%),
    linear-gradient(165deg, #1c473b 0%, #143830 56%, #0f2b25 100%);
  color: #f6f1e4;
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 3vw, 32px);
}

.card-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brass-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-label::before {
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
  content: "";
}

.estimate-card > strong {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: #fffdf6;
}

.estimate-card > p {
  margin-top: 10px;
  color: rgba(243, 237, 224, 0.72);
  font-weight: 500;
}

.message-preview {
  overflow-wrap: anywhere;
  margin-top: 22px;
  border: 1px dashed rgba(243, 237, 224, 0.32);
  border-radius: 14px;
  background: rgba(255, 253, 246, 0.06);
  color: rgba(250, 246, 236, 0.92);
  font-size: 0.93rem;
  line-height: 1.66;
  padding: 15px 16px;
  white-space: pre-wrap;
}

.message-preview:empty {
  display: none;
}

.estimate-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  color: rgba(243, 237, 224, 0.68);
  font-size: 0.92rem;
  line-height: 1.62;
  padding-left: 18px;
}

.estimate-card ul li::marker {
  color: var(--brass-bright);
}

.operator-link {
  margin-top: 18px;
  color: var(--brass-bright);
  font-size: 0.9rem;
  font-weight: 800;
}

.operator-link a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- space ---------- */

.space-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}

.gallery {
  display: grid;
  gap: 12px;
}

.gallery > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 20px;
  object-fit: cover;
  background: var(--paper-deep);
  box-shadow: var(--shadow-md);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-thumbs button {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 14px;
  background: var(--surface);
  padding: 0;
  transition: border-color 160ms ease, transform 160ms ease;
}

.gallery-thumbs button:hover {
  transform: translateY(-2px);
}

.gallery-thumbs button.active {
  border-color: var(--brass);
  box-shadow: 0 6px 18px rgba(171, 132, 52, 0.22);
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 11px;
  object-fit: cover;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  min-height: 216px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.feature-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(171, 132, 52, 0.4);
  box-shadow: var(--shadow-md);
}

.feature-grid span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(171, 132, 52, 0.28);
}

.feature-grid h3 {
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 700;
}

.feature-grid p,
.rule-card p,
.faq-list p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.74;
}

/* ---------- price ---------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  display: grid;
  min-height: 212px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(171, 132, 52, 0.4);
  box-shadow: var(--shadow-md);
}

.price-card span {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  align-self: start;
  border-radius: 999px;
  background: rgba(171, 132, 52, 0.12);
  color: #8a6a24;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 5px 11px;
}

.price-card.featured {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(300px 200px at 110% -16%, rgba(216, 177, 95, 0.2), transparent 62%),
    linear-gradient(165deg, #1c473b, #143830 70%);
  color: #fdfbf2;
  box-shadow: 0 18px 44px rgba(20, 56, 48, 0.3);
}

.price-card.featured span {
  background: rgba(216, 177, 95, 0.18);
  color: #e8cd8e;
}

.price-card.featured p {
  color: rgba(243, 237, 224, 0.66);
}

.price-card h3 {
  align-self: end;
  min-height: 48px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.45;
}

.price-card strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
}

.price-card p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ---------- guide ---------- */

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.rule-card {
  min-height: 176px;
  border-radius: 18px;
  padding: 24px;
}

.rule-card::before {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #cda451, var(--brass));
  content: "";
}

.rule-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--pine-deep);
}

.faq-list {
  overflow: hidden;
}

details {
  padding: 0 24px;
}

details + details {
  border-top: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  list-style: none;
  font-weight: 800;
  cursor: pointer;
  padding: 12px 0;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  display: grid;
  flex: none;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--pine);
  content: "+";
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  transition: background 160ms ease, transform 160ms ease, color 160ms ease;
}

summary:hover::after {
  background: var(--pine-soft);
}

details[open] summary::after {
  content: "−";
  background: var(--pine-deep);
  border-color: var(--pine-deep);
  color: #f3ede0;
}

details > p,
.fee-table {
  padding-bottom: 24px;
}

.fee-table {
  display: grid;
  gap: 8px;
}

.fee-table div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-radius: 11px;
  background: var(--surface-2);
  padding: 12px 16px;
}

.fee-table strong {
  color: var(--pine-deep);
}

/* ---------- location ---------- */

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 22px;
}

.map-panel {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 420px;
  text-align: center;
  background:
    radial-gradient(420px 300px at 18% 12%, rgba(171, 132, 52, 0.1), transparent 60%),
    linear-gradient(150deg, rgba(30, 77, 64, 0.1), rgba(255, 253, 248, 0)),
    var(--surface);
  padding: 32px;
}

.map-pin {
  position: relative;
  width: 86px;
  height: 86px;
  border: 15px solid var(--brass);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 16px 30px rgba(171, 132, 52, 0.3);
}

.map-pin::after {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--pine-deep);
  content: "";
}

.map-panel strong {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
}

.map-panel p {
  margin: 8px 0 22px;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  overflow: hidden;
}

.contact-panel article {
  display: grid;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 22px 24px;
}

.contact-panel article:last-child {
  border-bottom: 0;
}

.contact-panel span {
  color: var(--brass);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-panel a,
.contact-panel strong {
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.5;
}

.contact-panel a:hover {
  color: var(--pine-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- admin ---------- */

.subpage-main h1,
.admin-page-main h1 {
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  line-height: 1.06;
}

.admin-page-main h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.22;
}

.admin-login,
.admin-settings,
.calendar-sync-panel,
.sms-automation-panel,
.manual-reservation-panel,
.calendar-shell,
.reservation-board {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 20px;
  align-items: center;
  padding: clamp(22px, 3vw, 32px);
}

.admin-login p,
.admin-settings p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.calendar-sync-panel p,
.sms-automation-panel p,
.manual-reservation-panel p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.admin-login form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.admin-login-actions,
.live-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-dashboard {
  display: grid;
  gap: 18px;
}

.admin-livebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(30, 77, 64, 0.08), rgba(171, 132, 52, 0.08)),
    var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.admin-livebar p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.62;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-summary article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(260px 160px at 110% -20%, rgba(216, 177, 95, 0.18), transparent 60%),
    linear-gradient(165deg, #1c473b, #143830 72%);
  color: #f6f1e4;
  box-shadow: 0 14px 36px rgba(20, 56, 48, 0.24);
  padding: 22px;
}

.admin-summary span {
  color: rgba(236, 226, 205, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.admin-summary strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
}

.admin-settings {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  padding: 24px;
}

.settings-form {
  display: grid;
  grid-template-columns: 0.75fr 1fr 0.75fr auto;
  gap: 10px;
}

.calendar-sync-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  padding: 24px;
}

.sms-automation-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
}

.calendar-settings-form {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(190px, auto) auto;
  gap: 12px;
  align-items: end;
}

.sms-automation-form {
  display: grid;
  gap: 12px;
}

.calendar-sync-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sms-automation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkbox-field {
  display: flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fcfaf3;
  color: var(--ink-soft);
  padding: 0 14px;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin: 0 8px 0 0;
  accent-color: var(--pine);
}

.manual-reservation-panel {
  overflow: hidden;
}

.panel-head {
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
  padding: 22px 24px;
}

.manual-reservation-form {
  display: grid;
  gap: 16px;
  padding: 22px 24px 24px;
}

.field-row.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.manual-form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.manual-form-foot p {
  color: var(--pine-deep);
  font-weight: 900;
}

.calendar-shell {
  overflow: auto;
  padding: 20px;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.calendar-toolbar strong {
  min-width: 150px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  transition: background 150ms ease, border-color 150ms ease;
}

.icon-button:hover {
  background: var(--pine-soft);
  border-color: rgba(30, 77, 64, 0.3);
}

.calendar-weekdays,
.calendar-grid {
  min-width: 760px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-day {
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fffdf8;
  padding: 10px;
}

.calendar-day.muted {
  background: var(--paper-deep);
  color: #a59d8d;
}

.calendar-day.today {
  border-color: var(--pine);
  background: #f2f6f1;
  box-shadow: inset 0 0 0 2px rgba(30, 77, 64, 0.12);
}

.day-number {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 900;
}

.today .day-number {
  background: var(--pine);
  color: #fff;
}

.day-bookings {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.reservation-chip {
  display: grid;
  gap: 2px;
  width: 100%;
  border: 0;
  border-radius: 9px;
  color: #2d2a23;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
  padding: 7px 9px;
  transition: filter 140ms ease;
}

.reservation-chip:hover {
  filter: brightness(0.96);
}

.reservation-chip span {
  font-size: 0.72rem;
  opacity: 0.72;
}

.status-pending,
.reservation-chip.status-pending {
  background: #f7e9c8;
  color: #7e5a10;
}

.status-confirmed,
.reservation-chip.status-confirmed {
  background: #def0e6;
  color: #14584a;
}

.status-canceled,
.reservation-chip.status-canceled {
  background: #ece9e0;
  color: #6f6a5d;
}

.reservation-board {
  overflow: hidden;
}

.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
  padding: 18px 24px;
}

.board-head select {
  width: min(190px, 100%);
  background-color: #fff;
}

.reservation-list {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.reservation-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf8;
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.reservation-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.reservation-card h4 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
}

.reservation-card-head strong {
  flex: none;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0 11px;
}

.source-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 0 10px;
}

.reservation-details {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
}

.reservation-details div {
  min-width: 0;
  border-radius: 11px;
  background: var(--surface-2);
  padding: 11px 12px;
}

.reservation-details dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.reservation-details dd {
  overflow-wrap: anywhere;
  margin: 5px 0 0;
  font-weight: 800;
  line-height: 1.45;
}

.reservation-note {
  margin-top: 14px;
  border-left: 3px solid var(--brass);
  color: var(--muted);
  line-height: 1.65;
  padding-left: 12px;
}

.reservation-note.conflict {
  border-left-color: #c23b22;
  color: #9f2d1a;
  font-weight: 800;
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.empty-state {
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
  padding: 34px 18px;
}

/* ---------- modal ---------- */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  overflow: auto;
  background: rgba(17, 14, 9, 0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 18px;
}

.modal-card {
  position: relative;
  width: min(640px, 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 4vw, 36px);
  animation: modal-in 220ms cubic-bezier(0.2, 0.9, 0.3, 1.2);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-card h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
}

.modal-copy {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.72;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 200ms ease, background 200ms ease;
}

.modal-close:hover {
  transform: rotate(90deg);
  background: var(--surface-2);
}

.deposit-box {
  margin-top: 22px;
  border: 1px dashed var(--line-strong);
  border-radius: 16px;
  background: var(--surface-2);
  padding: 18px;
}

.deposit-box dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.deposit-box div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 12px;
}

.deposit-box dt {
  color: var(--brass);
  font-size: 0.84rem;
  font-weight: 900;
}

.deposit-box dd {
  overflow-wrap: anywhere;
  margin: 0;
  font-weight: 800;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* ---------- footer ---------- */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: clamp(40px, 6vw, 72px);
  background: #161e1a;
  color: #f3ede0;
  padding: 38px max(18px, calc((100vw - 1180px) / 2)) 46px;
}

.site-footer strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
}

.site-footer p {
  margin-top: 6px;
  color: rgba(243, 237, 224, 0.55);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(243, 237, 224, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--brass-bright);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- mobile cta / toast ---------- */

.mobile-cta {
  display: none;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  max-width: min(360px, calc(100vw - 36px));
  border-radius: 14px;
  background: var(--ink);
  color: #f8f4ea;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
  padding: 14px 18px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    grid-column: 1 / -1;
    align-items: stretch;
    justify-content: start;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 243, 234, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 14px 18px 18px;
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-radius: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 740px;
    padding-top: 116px;
  }

  .hero-facts,
  .section-heading,
  .process-grid,
  .info-grid.three,
  .info-grid.four,
  .reserve-grid,
  .space-layout,
  .location-layout,
  .admin-login,
  .admin-livebar,
  .admin-settings,
  .calendar-sync-panel,
  .sms-automation-panel {
    grid-template-columns: 1fr;
  }

  .estimate-card {
    position: static;
  }

  .price-grid,
  .guide-grid,
  .split-panel,
  .reservation-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .settings-form,
  .calendar-settings-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .booking-strip {
    align-items: stretch;
    flex-direction: column;
    margin-top: -30px;
    padding: 20px;
  }

  .strip-actions,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 700px;
    padding-bottom: 64px;
  }

  .hero-facts {
    gap: 8px;
  }

  .hero-facts article {
    min-height: 72px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
  }

  .hero-facts strong {
    margin-top: 0;
    text-align: right;
  }

  .hero-facts,
  .process-grid,
  .info-grid.three,
  .info-grid.four,
  .feature-grid,
  .guide-grid,
  .field-row,
  .split-panel,
  .admin-summary,
  .reservation-details,
  .settings-form,
  .calendar-settings-form,
  .field-row.three {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .price-card {
    min-height: 0;
    padding: 18px;
  }

  .price-card h3 {
    min-height: 0;
  }

  .tool-actions {
    justify-content: stretch;
  }

  .tool-actions .button {
    width: 100%;
  }

  .guitar-tool-shell {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    margin-right: -18px;
    margin-left: -18px;
  }

  .guitar-frame {
    height: 1020px;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.6rem);
  }

  .section {
    padding: 68px 0;
  }

  .section-heading .eyebrow {
    margin-bottom: -12px;
  }

  .gallery > img {
    aspect-ratio: 4 / 3;
  }

  .feature-grid article,
  .process-card,
  .info-card,
  .rule-card {
    min-height: 0;
  }

  .feature-grid h3 {
    margin-top: 30px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 110px;
  }

  .admin-login form,
  .admin-livebar,
  .board-head,
  .reservation-card-head,
  .modal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-login form,
  .admin-login-actions,
  .live-actions,
  .calendar-sync-actions,
  .sms-automation-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .manual-form-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .reservation-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .deposit-box div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 50;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 8px;
    border: 1px solid rgba(216, 207, 188, 0.8);
    border-radius: 20px;
    background: rgba(252, 250, 244, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
    padding: 8px;
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 14px;
    font-weight: 900;
  }

  .mobile-cta a:first-child {
    border: 1px solid var(--line-strong);
    background: #fff;
  }

  .mobile-cta a:last-child {
    background: linear-gradient(180deg, #266052, var(--pine-deep));
    color: #fdfbf4;
    box-shadow: 0 8px 20px rgba(20, 56, 48, 0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img {
    animation: none;
  }

  .modal-card {
    animation: none;
  }

  .button,
  .feature-grid article,
  .process-card,
  .info-card,
  .price-card,
  .hero-facts article {
    transition: none;
  }
}
