/* =============================================
   ROSEY'S TRINKETS & TREASURES
   Site by BoxStar Deliveries
   ============================================= */

:root {
  --cream:     #faf6f0;
  --warm:      #f5ede0;
  --terracotta:#c1654a;
  --rust:      #9e3f26;
  --gold:      #c9952a;
  --dark:      #1e1610;
  --text:      #2d2118;
  --muted:     #8a7060;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
  --radius:    4px;
  --max:       1160px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
}

/* ---- HEADER ---- */
header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--terracotta);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-title h1 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.site-title h1 span { color: var(--gold); }
.site-title .tagline {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s;
}
nav a:hover { opacity: 1; }
.btn-market {
  background: var(--terracotta) !important;
  color: white !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: var(--radius) !important;
  opacity: 1 !important;
  font-weight: 400 !important;
  transition: background 0.2s !important;
}
.btn-market:hover { background: var(--rust) !important; }

/* ---- HERO ---- */
.hero {
  min-height: 88vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(193,101,74,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 70%, rgba(201,149,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-content h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-content h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: white;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--rust); transform: translateY(-1px); }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- GALLERY ---- */
.gallery-section {
  padding: 6rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 460px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.placeholder {
  background: var(--warm);
  border: 2px dashed #d4c4b0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.gallery-item.placeholder span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
}
.gallery-cta {
  text-align: center;
  padding: 2.5rem;
  background: var(--warm);
  border-radius: var(--radius);
  border-left: 4px solid var(--terracotta);
}
.gallery-cta p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}

/* ---- ABOUT ---- */
.about-section {
  background: var(--dark);
  padding: 6rem 2rem;
}
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.9;
}
.about-location {
  color: var(--gold) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.04em;
  margin-top: 1.5rem !important;
}
.about-accent {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.accent-block {
  border-left: 3px solid var(--terracotta);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
}
.accent-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.accent-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ---- CONTACT ---- */
.contact-section {
  padding: 6rem 2rem;
  text-align: center;
  background: var(--warm);
}
.contact-inner {
  max-width: 560px;
  margin: 0 auto;
}
.contact-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--text);
}
.contact-inner p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.contact-placeholder {
  margin-top: 1.5rem !important;
  font-size: 0.8rem !important;
  color: #b0a090 !important;
}

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  padding: 2.5rem 2rem;
  border-top: 2px solid var(--terracotta);
  text-align: center;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.footer-location {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-credit {
  font-size: 0.7rem;
  color: #4a3828;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.footer-mark {
  height: 20px;
  width: auto;
  opacity: 0.5;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  nav a:not(.btn-market) { display: none; }
}
@media (max-width: 540px) {
  .header-inner { padding: 0 1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h2 { font-size: 2.5rem; }
}
