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

:root {
  --bg: #faf8f5;
  --text: #1a1a1a;
  --text-light: #6b6560;
  --accent: #b85c3e;
  --border: #e8e4df;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== Navigation ===== */
.site-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-links { display: flex; gap: 32px; }

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: 60px 24px 50px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.05rem;
  color: var(--text-light);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* ===== Gallery Grid ===== */
.gallery {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.gallery-item {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

.img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .img-wrap img {
  transform: scale(1.04);
}

.gallery-grid.landscape-grid {
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
}

.gallery-grid.landscape-grid .img-wrap {
  aspect-ratio: 16 / 10;
}

.item-info {
  padding: 18px 20px 20px;
}

.item-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.item-info .meta {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Print Detail Page ===== */
.print-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 820px) {
  .print-layout { grid-template-columns: 1fr; gap: 32px; }
}

.print-image img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.print-details h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 10px;
}

.print-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.print-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #3a3532;
  margin-bottom: 28px;
}

.print-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 3px;
  border: 1.5px solid var(--text);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #9e4d33;
  border-color: #9e4d33;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: var(--text-light);
  transition: color 0.2s;
}

.back-link:hover { color: var(--text); }

/* ===== About / Contact ===== */
.page-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.page-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 24px;
}

.page-content p {
  margin-bottom: 18px;
  color: #3a3532;
}

.contact-info {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-info p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-info a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.contact-info a:hover { border-bottom-color: var(--accent); }

/* ===== Footer ===== */
.site-footer {
  text-align: center;
  padding: 40px 24px;
  font-size: 0.8rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
}

/* ===== Mobile Nav ===== */
@media (max-width: 560px) {
  .site-nav { flex-direction: column; gap: 14px; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 30px; }
}
