@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Nunito+Sans:wght@300;400;500;600&display=swap');

:root {
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --border: #e8e8e5;
  --accent: #c96b4f;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Nunito Sans', -apple-system, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ─── HEADER ─── */
.site-header {
  text-align: center;
  padding: 50px 30px 30px;
  border-bottom: 1px solid var(--border);
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.site-logo:hover { color: var(--accent); }
.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.site-nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  padding: 6px 16px;
  transition: color 0.2s ease;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

/* ─── PAGE CONTENT ─── */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ─── SECTION LABEL ─── */
.section-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

/* ─── MASONRY GRID ─── */
.masonry {
  columns: 4;
  column-gap: 14px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  animation: fadeIn 0.5s ease both;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: opacity 0.3s ease;
}
.masonry-item:hover img {
  opacity: 0.92;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── FILTER PILLS ─── */
.filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover {
  color: var(--text);
  border-color: var(--text-light);
}
.filter-btn.active {
  color: var(--text);
  border-color: var(--text);
}

/* ─── DIVIDER ─── */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 50px 0;
}

/* ─── ABOUT ─── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #f0e6d6, #d6e6f0);
  position: relative;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-placeholder::after {
  content: 'your photo here';
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.about-text p {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 18px;
}

/* ─── TESTIMONIALS ─── */
.testimonial {
  margin-bottom: 36px;
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 10px;
}
.testimonial cite {
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: var(--text);
  display: block;
}
.testimonial cite span {
  font-weight: 300;
  color: var(--text-muted);
}

/* ─── CLIENTS ─── */
.clients-list {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
}

/* ─── CONTACT ─── */
.contact-email {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: all 0.2s ease;
}
.contact-email:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.contact-links {
  margin-top: 16px;
  display: flex;
  gap: 20px;
}
.contact-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-links a:hover { color: var(--text); }

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(255,255,255,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  cursor: default;
  animation: lbFade 0.25s ease;
}
.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 40px; height: 40px;
  border: none;
  background: none;
  font-size: 28px;
  color: var(--text);
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 0.5; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }

/* ─── FOOTER ─── */
.site-footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .masonry { columns: 3; }
  .about-layout { gap: 40px; }
}
@media (max-width: 768px) {
  .site-header { padding: 36px 20px 24px; }
  .site-logo { font-size: 30px; margin-bottom: 14px; }
  .site-nav a { padding: 5px 10px; font-size: 11px; letter-spacing: 1px; }
  .masonry { columns: 2; column-gap: 10px; }
  .masonry-item { margin-bottom: 10px; }
  .page-content { padding: 0 20px; }
  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-image { max-width: 320px; }
}
@media (max-width: 480px) {
  .masonry { columns: 2; }
  .site-nav a { padding: 4px 8px; font-size: 10px; }
}
