/* ═══════════════════════════════════════════
   Start Luthiers — style.css
   ═══════════════════════════════════════════ */

/* ─── Reset ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Variables ─── */
:root {
  --bg:     #FAFAF7;
  --text:   #1C1410;
  --muted:  #8A7E78;
  --border: #E5E0D8;
  --gap:    clamp(0.6rem, 1.5vw, 1rem);
}

/* ─── Base ─── */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont,
               'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ─── Skip link (accessibility) ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--text);
  color: var(--bg);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

/* ─── Header ─── */
.site-header {
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─── Language nav ─── */
.lang-nav {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.lang-nav a {
  transition: color 0.2s;
  padding: 0.2rem 0;
}
.lang-nav a:hover        { color: var(--text); }
.lang-nav .sep           { color: var(--border); user-select: none; }
.lang-nav a.active       {
  color: var(--text);
  font-weight: 600;
  pointer-events: none;
}

/* ─── Brand ─── */
.brand-wrap {
  text-align: center;
  padding: 2.75rem 0 0.75rem;
}

.brand {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
}

.tagline {
  margin-top: 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.9rem, 2.2vw, 1.15rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.rule {
  width: 36px;
  height: 1px;
  background: var(--border);
  margin: 2.25rem auto 0;
}

/* ─── Gallery ─── */
.gallery-section {
  padding: 3rem clamp(1rem, 3vw, 2.5rem) 5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.gallery {
  columns: 2;
  column-gap: var(--gap);
}

.gallery figure {
  break-inside: avoid;
  margin-bottom: var(--gap);
  overflow: hidden;
  background-color: #EDE9E3;
}

.gallery figure img {
  width: 100%;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery figure:hover img {
  transform: scale(1.03);
}

/* ─── About ─── */
.about-section {
  border-top: 1px solid var(--border);
  padding: 4.5rem clamp(1.5rem, 5vw, 3rem) 5.5rem;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.about-section p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.05rem, 2.3vw, 1.25rem);
  line-height: 1.9;
  color: var(--text);
}

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem clamp(1.5rem, 5vw, 4rem) 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.follow-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.social-link:hover { color: var(--text); }

.social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Beehiiv signup goes here */
.footer-email {
  width: 100%;
  max-width: 400px;
}

.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ─── Responsive ─── */
@media (max-width: 580px) {
  .gallery      { columns: 1; }
  .lang-nav     { align-self: center; }
  .social-links { gap: 1.75rem; }
}

@media (min-width: 1100px) {
  .gallery { columns: 3; }
}
