/* ============================================================
   Art by Karin Blitz — Redesign v2 "Gallery White"
   ============================================================ */

:root {
  --cream:       #f5ede0;
  --cream-light: #faf7f2;
  --cream-dark:  #ede0cc;
  --brown:       #481E0E;
  --brown-mid:   #7c4a1e;
  --brown-dark:  #2c1508;
  --gold:        #c59d5f;
  --text:        #1e1208;
  --text-mid:    #4a3628;
  --text-muted:  #8a7060;
  --white:       #ffffff;
}

/* ==================== ANIMATIONS ==================== */
@keyframes pageFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes kenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}
@keyframes ruleExpand {
  from { width: 0; opacity: 0; }
  to   { width: 48px; opacity: 1; }
}
@keyframes lbReveal {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  animation: pageFade 0.45s ease both;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ==================== NAVIGATION ==================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.55);
  transition: border-color 0.35s;
}
.site-nav.scrolled .nav-logo img {
  border-color: var(--cream-dark);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.site-nav.scrolled .nav-links a {
  color: var(--text-mid);
}
.site-nav.scrolled .nav-links a:hover,
.site-nav.scrolled .nav-links a.active {
  color: var(--brown);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}
.site-nav.scrolled .nav-toggle span { background: var(--brown); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  bottom: -200px;
  will-change: transform;
  overflow: hidden;
}
.hero-bg-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: kenBurns 14s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 3, 0, 0.38);
}
.hero-content {
  position: relative;
  z-index: 10;
  color: var(--white);
  padding: 0 24px;
}
.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 18px;
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(60px, 9vw, 108px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
  animation: ruleExpand 0.9s ease 0.4s both;
}
.hero-tagline {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  z-index: 10;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 14px 34px;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}
.btn-primary {
  background: var(--brown);
  color: var(--white);
}
.btn-primary:hover { background: var(--brown-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(72,30,14,0.25); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.85); transform: translateY(-2px); }
.btn-dark {
  background: var(--brown);
  color: var(--white);
}
.btn-dark:hover { background: var(--brown-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(72,30,14,0.25); }

.text-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}
.text-link:hover { color: var(--brown-mid); }

/* ==================== SECTION HEADER ==================== */
.section-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-header { margin-bottom: 56px; }
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
}
.section-header--centered { text-align: center; }

/* ==================== QUOTE STRIP ==================== */
.quote-strip {
  background: var(--cream);
  padding: 52px 48px;
  text-align: center;
}
.quote-strip blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto 20px;
}
.quote-strip blockquote cite {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ==================== SELECTED WORKS ==================== */
.selected-works {
  padding: 100px 0;
  background: var(--white);
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 52px;
}
.work-item { position: relative; transition: transform 0.4s ease; }
.work-item:hover { transform: translateY(-4px); }
.work-item a { display: block; overflow: hidden; }
.work-item img {
  width: 100%;
  height: auto;
  box-shadow: 0 6px 28px rgba(0,0,0,0.10);
  transition: transform 0.55s ease, box-shadow 0.55s ease;
}
.work-item a:hover img { transform: scale(1.03); box-shadow: 0 14px 44px rgba(0,0,0,0.18); }
.work-item figcaption {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.03em;
}
.works-cta { text-align: center; }
.work-item--mobile { display: none; }        /* shown only on mobile */
.work-item--desktop-only { display: block; } /* hidden on mobile */
/* Clones injected by mobile scroll JS — always hidden on desktop */
.works-grid .work-item[aria-hidden="true"] { display: none; }
/* Scroll wrapper: transparent to grid layout on desktop */
.works-scroll-inner { display: contents; }

/* ==================== ABOUT PREVIEW ==================== */
.about-preview {
  background: var(--cream-light);
  padding: 100px 0;
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-preview-img img {
  width: 100%;
  height: auto;
  box-shadow: 8px 12px 48px rgba(0,0,0,0.14);
}
.about-preview-text { max-width: 480px; }
.about-preview-text h2 { margin-bottom: 24px; }
.about-preview-text p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 36px;
}

/* ==================== SERVICES ==================== */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.service-card {
  background: var(--cream-light);
  overflow: hidden;
}
.service-card-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  padding: 28px 32px 12px;
}
.service-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  padding: 0 32px 20px;
}
.service-card .text-link {
  display: inline-block;
  margin: 0 32px 32px;
}

/* ==================== CONTACT ==================== */
.contact-section {
  padding: 100px 0;
  background: var(--cream);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.contact-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
}
.contact-text > p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.contact-list { list-style: none; }
.contact-list li {
  font-size: 14px;
  line-height: 2.6;
  color: var(--text-mid);
  border-bottom: 1px solid var(--cream-dark);
}
.contact-list li:first-child { border-top: 1px solid var(--cream-dark); }
.contact-list a {
  color: var(--brown);
  transition: color 0.2s;
}
.contact-list a:hover { color: var(--brown-mid); text-decoration: underline; }
.map-wrap { height: 340px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
#map-facade {
  width: 100%; height: 100%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: filter 0.2s;
}
#map-facade:hover { filter: brightness(0.96); }
.map-facade-label { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 6px; text-align: center; }
.map-facade-addr { font-size: 13px; color: var(--text-muted); text-align: center; }

/* ==================== CONTACT FORM ==================== */
.contact-form {
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid var(--cream-dark);
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 12px 14px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--brown);
}
.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ==================== FAQ ==================== */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}
.faq-list { border-top: 1px solid var(--cream-dark); }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  gap: 16px;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--brown); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-body {
  display: none;
  padding: 0 0 22px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
}
.faq-item.open .faq-body { display: block; }

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--brown-dark);
  padding: 60px 48px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer-logo img {
  width: 62px; height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.18);
}
.footer-nav { display: flex; gap: 36px; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-divider {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.12);
}
.footer-contact { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-contact a, .footer-contact span {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

/* ==================== PORTFOLIO PAGE ==================== */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenBurns 14s ease-in-out infinite alternate;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,3,0,0.75) 0%, rgba(10,3,0,0.2) 60%, rgba(0,0,0,0.05) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 10;
  padding: 0 48px 52px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero-content .section-eyebrow { margin-bottom: 10px; }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Masonry gallery */
.gallery-section {
  padding: 80px 0 100px;
  background: var(--cream-light);
}
.gallery-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
}
.masonry-grid {
  columns: 3;
  column-gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
}
.masonry-item:hover img { transform: scale(1.03); box-shadow: 0 10px 36px rgba(0,0,0,0.18); }
.masonry-caption {
  padding: 10px 4px 6px;
  text-align: center;
}
.masonry-caption p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
}

/* Hidden gallery items (Load More) */
.masonry-item.gallery-hidden { display: none; }

/* Load More */
.load-more-wrap {
  text-align: center;
  padding: 52px 0 16px;
}
.load-more-count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.btn-load-more {
  display: inline-block;
  padding: 14px 48px;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--brown);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-load-more:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(72,30,14,0.22);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,2,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox.open img { animation: lbReveal 0.28s ease both; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 12px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 28px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 36px;
  cursor: pointer;
  padding: 16px;
  transition: color 0.2s;
  line-height: 1;
}
.lightbox-prev:hover, .lightbox-next:hover { color: var(--white); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

/* ==================== ABOUT PAGE ==================== */
.about-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: kenBurns 14s ease-in-out infinite alternate;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,3,0,0.72) 0%, rgba(10,3,0,0.25) 55%, rgba(0,0,0,0.05) 100%);
}
.about-hero-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  gap: 52px;
  padding: 0 48px 52px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.about-hero-text { flex: 1; }
.about-hero-text .section-eyebrow { margin-bottom: 12px; }
.about-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.about-hero-photo {
  width: 240px;
  flex-shrink: 0;
  align-self: flex-end;
}
.about-hero-photo img {
  width: 100%;
  height: auto;
  border: 3px solid rgba(255,255,255,0.4);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

/* About body content */
.about-body {
  padding: 0;
}
.about-block {
  padding: 80px 0;
}
.about-block:nth-child(even) {
  background: var(--cream-light);
}
.about-block-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.about-block-inner--reverse {
  grid-template-columns: 340px 1fr;
}
.about-block-inner--reverse .about-block-text { order: 2; }
.about-block-inner--reverse .about-block-img { order: 1; }
.about-block-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 24px;
}
.about-block-text p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.about-block-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 300;
  color: var(--brown);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0;
  line-height: 1.6;
}
.about-block-img img {
  width: 100%;
  height: auto;
  box-shadow: 6px 10px 36px rgba(0,0,0,0.13);
}
.about-block-img figcaption {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ==================== COMMUNITY PAGE ==================== */
.community-hero {
  position: relative;
  height: 56vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.community-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: -200px;
  will-change: transform;
  overflow: hidden;
}
.community-hero-bg-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 30% 20%;
  background-repeat: no-repeat;
  animation: kenBurns 14s ease-in-out infinite alternate;
}
.community-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,4,0,0.45);
}
.community-hero-content {
  position: relative;
  z-index: 10;
  padding: 0 48px;
  max-width: 680px;
}
.community-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.community-hero-desc {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
}

/* Testimonials */
.community-section {
  padding: 80px 0 100px;
  background: var(--cream-light);
}
.testimonial-card {
  max-width: 960px;
  margin: 0 auto 64px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 52px;
  align-items: start;
}
.testimonial-card:last-child { margin-bottom: 0; }
.testimonial-card--reverse {
  grid-template-columns: 1fr 260px;
}
.testimonial-card--reverse .testimonial-artwork { order: 2; }
.testimonial-card--reverse .testimonial-text { order: 1; }
.testimonial-artwork img {
  width: 100%;
  height: auto;
  box-shadow: 6px 8px 32px rgba(0,0,0,0.12);
}
.testimonial-text { padding-top: 8px; }
.testimonial-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.testimonial-artwork-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.testimonial-reviewer {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
/* ==================== SCROLL REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Testimonial fade-in (uses .reveal) */
.testimonial-card {
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.testimonial-divider {
  max-width: 960px;
  margin: 0 auto 64px;
  padding: 0 48px;
  border: none;
  border-top: 1px solid var(--cream-dark);
}

/* ==================== THANK YOU PAGE ==================== */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-light);
  padding: 120px 24px 80px;
}
.thankyou-inner {
  text-align: center;
  max-width: 560px;
}
.thankyou-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
  animation: ruleExpand 0.9s ease 0.2s both;
}
.thankyou-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin: 12px 0 28px;
}
.thankyou-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 44px;
}
.thankyou-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-ghost-dark {
  display: inline-block;
  padding: 14px 34px;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--brown);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-ghost-dark:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(72,30,14,0.22);
}

/* ==================== BACK TO TOP ==================== */
#back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--brown);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 500;
  box-shadow: 0 3px 12px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--brown-mid); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 960px) {
  .container, .container--narrow { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .about-preview-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-preview-text { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  /* works-grid stays 3-col on tablet — only 3 items visible */
  .masonry-grid { columns: 2; padding: 0 32px; }
  .about-block-inner,
  .about-block-inner--reverse { grid-template-columns: 1fr; gap: 40px; }
  .about-block-inner--reverse .about-block-text,
  .about-block-inner--reverse .about-block-img { order: unset; }
  .about-hero-inner { flex-direction: column; align-items: flex-start; }
  .about-hero-photo { width: 180px; }
  .testimonial-card,
  .testimonial-card--reverse { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-card--reverse .testimonial-artwork,
  .testimonial-card--reverse .testimonial-text { order: unset; }
  .page-hero-content { padding: 0 32px 44px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 32px 24px;
    gap: 0;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 13px 0; border-bottom: 1px solid var(--cream); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { color: var(--text-mid) !important; font-size: 12px; }
  .hero-name { font-size: 52px; }
  .hero-actions { flex-direction: column; align-items: center; }
  /* Selected Works: infinite auto-scroll on mobile */
  .work-item--mobile { display: block; }
  .work-item--desktop-only { display: none; }
  .works-grid .work-item[aria-hidden="true"] { display: block; }
  .works-grid {
    overflow: hidden;
    padding-left: 16px;
    margin-bottom: 32px;
  }
  .works-scroll-inner {
    display: flex;
    width: max-content;
    will-change: transform;
  }
  .works-grid .work-item {
    flex: 0 0 75vw;
    margin-right: 16px;
  }
  .quote-strip { padding: 40px 28px; }
  /* Mobile: 2-column masonry with natural aspect ratios */
  .masonry-grid {
    columns: 2;
    column-gap: 14px;
    padding: 0 16px;
  }
  .masonry-item {
    margin-bottom: 14px;
    aspect-ratio: unset;
    overflow: visible;
  }
  .masonry-item img {
    height: auto;
  }
  .masonry-caption { display: block; }
  .load-more-wrap { padding: 36px 24px 16px; }
  .about-hero-photo { display: none; }
  .about-hero-inner { padding: 0 28px 44px; }
  .community-hero-content { padding: 0 28px; }
  .community-hero-title { font-size: 32px; }
  .testimonial-card { padding: 0 28px; }
  .footer-contact { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .container, .container--narrow { padding: 0 20px; }
  .hero-name { font-size: 42px; }
  .about-block-inner { padding: 0 20px; }
  .footer-nav { gap: 16px; }
}

/* Print */
@media print {
  .site-nav, .hero, .hero-scroll, #back-to-top, .site-footer { display: none !important; }
  body { color: #000; }
}
