/*
=================================================================
  Artist Alchemy — Main Stylesheet
  Font substitution notes:
    Heading/nav: Montserrat (closest free match to the
    geometric sans-serif used in the live site)
    Body:        Open Sans (closest free match to the
    neutral body text on the live site)
    Both loaded via Google Fonts — no API key required.
=================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Open+Sans:wght@400;600&display=swap');

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.65;
}

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

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

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

/* ── Image Placeholders ─────────────────────────────
   Replace each placeholder <div> with an <img> tag
   or a CSS background-image pointing to your file.
   Label format: IMAGE: [filename-hint]
─────────────────────────────────────────────────── */
.img-placeholder {
  background-color: #c0bfbd;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  width: 100%;
  min-height: 400px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a4a4a;
}

/* ── Site Header ────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
}

.site-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-logo:hover {
  text-decoration: none;
}

/* ── Primary Navigation ─────────────────────────── */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.primary-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: #b07d3a;
  text-decoration: none;
}

/* ── Hamburger (mobile) ─────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #2e2e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #ffffff;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  opacity: 0.95;
}

/* ── Page Hero (inner pages) ────────────────────── */
.page-hero {
  background: #1a1a1a;
  color: #ffffff;
  padding: 4rem 3rem;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  line-height: 1;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-gold {
  background: #b07d3a;
  color: #ffffff;
  border-color: #b07d3a;
}

.btn-gold:hover {
  background: #8f6429;
  border-color: #8f6429;
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: #1a1a1a;
}

/* ── Layout: Split sections ─────────────────────── */
.section {
  padding: 5.5rem 3rem;
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.25;
  color: #1a1a1a;
}

.split-text p {
  color: #484848;
  font-size: 0.97rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.split-text .btn {
  margin-top: 0.75rem;
}

/* ── Stats Bar ───────────────────────────────────── */
.stats-bar {
  background: #1a1a1a;
  padding: 3.5rem 3rem;
}

.stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #b07d3a;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-item .stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cccccc;
}

/* ── Contact Section ─────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
}

.contact-info-col h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.contact-info-col p {
  font-size: 0.95rem;
  color: #484848;
  margin-bottom: 0.6rem;
}

.contact-info-col a {
  color: #b07d3a;
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: background 0.2s;
  text-decoration: none;
}

.social-btn:hover {
  background: #b07d3a;
  text-decoration: none;
}

/* ── Map ─────────────────────────────────────────── */
.map-wrap {
  width: 100%;
  height: 340px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── Contact Form ────────────────────────────────── */
.contact-form-col {
  /* form sits in right column on contact page,
     left column on home page */
}

.form-note {
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 0.45rem;
}

.form-group label .req {
  color: #b07d3a;
  margin-left: 2px;
}

.form-group input[type="text"],
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.93rem;
  color: #1a1a1a;
  background: #fff;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b07d3a;
}

.form-group textarea {
  min-height: 145px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #b07d3a;
  cursor: pointer;
}

.checkbox-group label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.55;
  cursor: pointer;
}

.checkbox-group label .req {
  color: #b07d3a;
  margin-left: 2px;
}

/* ── Prose pages (Legal, Privacy) ────────────────── */
.prose-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.prose-page h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: #1a1a1a;
}

.prose-page h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.prose-page p {
  font-size: 0.95rem;
  color: #484848;
  margin-bottom: 0.75rem;
  line-height: 1.75;
}

.prose-page .spacer {
  height: 1rem;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: #111111;
  color: #aaaaaa;
  text-align: center;
  padding: 1.75rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .site-header {
    padding: 0 1.5rem;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.25rem;
    z-index: 199;
  }

  .primary-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 440px;
    padding: 4rem 1.5rem;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split .img-placeholder {
    min-height: 280px;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-inner {
    flex-direction: column;
  }

  .prose-page {
    padding: 3rem 1.5rem;
  }

  .page-hero {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

  .stat-item .stat-number {
    font-size: 2.25rem;
  }
}
