/* ========================================
   GRAEME GREEN — Photography Site
   Light, minimal, photography-forward
   ======================================== */

:root {
  --white: #ffffff;
  --off-white: #f8f8f6;
  --light-grey: #e8e8e4;
  --mid-grey: #999990;
  --dark-grey: #444440;
  --near-black: #1a1a18;
  --accent: #2a2a28;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--near-black);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer { margin-top: auto; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition);
}

#nav.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--light-grey);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--white);
  transition: color var(--transition);
}

#nav.scrolled .logo { color: var(--near-black); }

.logo-icon {
  width: 20px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  position: relative;
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 3px;
  border: 1.5px solid currentColor;
  border-radius: 2px 2px 0 0;
}

.logo-bold { font-weight: 600; }
.logo-light { font-weight: 300; }

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

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

#nav.scrolled .nav-links a { color: var(--dark-grey); }

#nav.scrolled .nav-links a:hover,
#nav.scrolled .nav-links a.active { color: var(--near-black); }

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

#nav.scrolled .nav-links a:hover,
#nav.scrolled .nav-links a.active {
  color: var(--near-black);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--white);
}

#nav.scrolled .nav-toggle { color: var(--near-black); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.1) 50%,
    rgba(0,0,0,0.5) 100%
  );
}

.hero-caption {
  position: absolute;
  bottom: 80px;
  left: 40px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  border: none;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.hero-arrow:hover { background: rgba(0,0,0,0.5); }

.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

@media (max-width: 700px) {
  .hero-arrow { width: 36px; height: 36px; font-size: 22px; }
  .hero-arrow-prev { left: 12px; }
  .hero-arrow-next { right: 12px; }
}

/* ── INTRO ── */
.intro {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--dark-grey);
  max-width: 780px;
  margin: 0 auto;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 60px 0 80px;
  background: var(--off-white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

blockquote {
  padding: 0;
}

blockquote p {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark-grey);
  margin-bottom: 16px;
}

blockquote cite {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  font-style: normal;
}

/* ── GALLERY PREVIEW ── */
.gallery-preview {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  color: var(--near-black);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.preview-item {
  position: relative;
  overflow: hidden;
  display: block;
}

.preview-item:first-child {
  grid-row: span 1;
}

.preview-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

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

.preview-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

/* ── PRESS STRIP ── */
.press-strip {
  padding: 48px 0;
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  overflow: hidden;
}

.press-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 28px;
}

.press-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.press-marquee-track {
  display: flex;
  width: max-content;
  gap: 60px;
  animation: marquee-scroll 30s linear infinite;
}

.press-marquee-track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark-grey);
  white-space: nowrap;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .press-marquee-track { animation: none; }
}

/* ── FOOTER ── */

 footer {
  background: var(--white);
  border-top: 1px solid var(--light-grey);
  padding: 32px 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--mid-grey);
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social img {
  width: 18px;
  height: 18px;
  display: block;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-social a:hover img {
  opacity: 1;
}

/* ── GALLERY PAGE ── */
.page-hero {
  height: 40vh;
  min-height: 280px;
  background: var(--near-black);
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
}

.filter-bar {
  position: sticky;
  top: 56px;
  z-index: 50;
  background: var(--white);
  padding: 100px 0 30px 0;
}

.filter-inner {

  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 4px;
  justify-content: center;
}

.filter-btn {
  background: none;
  border: 1px solid transparent;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--mid-grey);
  transition: all var(--transition);
  font-family: var(--font-body);
}

.filter-btn:hover { color: var(--near-black); }

.filter-btn.active {
  color: var(--black);
  border-bottom: 1px solid #222

}
.gallery-grid {
  padding: 40px 32px;
  margin: 0 auto;
  columns: 3;
  column-gap: 4px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 4px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: block;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-item .img-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  font-size: 11px;
  font-weight: 400;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .img-title { opacity: 1; }

.gallery-item.hidden {
  display: none;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  line-height: 1;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition);
  padding: 20px;
  line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 80vw;
}

.lightbox-counter {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

/* ── ABOUT PAGE ── */
.about-section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.3;
}

.about-text p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--dark-grey);
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* ── PRESS PAGE ── */
.press-section { min-height: 100vh; }

.press-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px 80px;
}

.press-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  color: var(--near-black);
  margin-bottom: 48px;
}

.press-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

.press-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.press-card-img {
  width: 100%;
  overflow: hidden;
}

.press-card-img img {
  width: 100%;
  aspect-ratio: 960/636;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.press-card:hover .press-card-img img { transform: scale(1.03); }

.press-card-pub {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--near-black);
  margin-top: 14px;
  text-align: center;
}

.press-card-line {
  width: 30px;
  height: 1px;
  background: var(--near-black);
  margin: 8px auto 0;
}

@media (max-width: 900px) {
  .press-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .press-container { padding: 100px 20px 60px; }
}

@media (max-width: 600px) {
  .press-cards-grid { grid-template-columns: 1fr; }
}

/* ── CONTACT PAGE ── */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--dark-grey);
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--light-grey);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--near-black);
  background: none;
  outline: none;
  margin-bottom: 28px;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--near-black);
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--mid-grey);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.submit-btn {
  background: var(--near-black);
  color: var(--white);
  border: none;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}

.submit-btn:hover { background: var(--dark-grey); }

/* ── PORTFOLIO PAGE ── */
.portfolio-grid {
  padding: 60px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

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

.portfolio-item:first-child {
  grid-column: span 2;
}

.portfolio-item:first-child img { aspect-ratio: 16/7; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; gap: 32px; }
  .preview-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:first-child { grid-column: span 1; }
  .gallery-grid { columns: 2; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--near-black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--white) !important; font-size: 14px; }
  .nav-toggle { display: block; }
  .gallery-grid { columns: 1; padding: 20px 16px; }
  .filter-inner { flex-wrap: wrap; gap: 4px; }
  .container { padding: 0 20px; }
  .hero-caption { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .gallery-item img, .preview-img { transition: none; }
}

/* ── GALLERIES CATEGORY GRID ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 4px;
  padding: 4px;
}

.cat-card {
  display: block;
  overflow: hidden;
}

.cat-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.cat-card:hover img { transform: scale(1.03); }

.cat-card-name {
  position: static;
  padding: 14px 0 0;
  background: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--near-black);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* ── CONTACT PAGE ── */
.contact-page { padding-top: 72px; }

.contact-header {
  text-align: center;
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--light-grey);
  margin-bottom: 60px;
}

.contact-header h1 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--near-black);
}

.contact-intro {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-photo img {
  width: 100%;
  display: block;
}

.contact-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--dark-grey);
  margin-bottom: 24px;
  max-width: 480px;
}

.contact-email a {
  font-weight: 700;
  color: var(--near-black);
  font-size: 17px;
}

.contact-socials {
  margin-top: 32px;
}

.contact-socials h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 12px;
}

.contact-socials p {
  font-size: 15px;
  color: var(--dark-grey);
  margin-bottom: 8px;
}

.contact-galleries {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.contact-gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
}

.contact-gallery-item img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.contact-gallery-item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

@media (max-width: 800px) {
  .contact-intro { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .contact-galleries { grid-template-columns: 1fr; padding: 0 20px; }
}

/* ── ABOUT PAGE ── */
.about-page { padding-top: 72px; }

.about-header {
  text-align: center;
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--light-grey);
  margin-bottom: 60px;
}

.about-header h1 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--near-black);
  margin-bottom: 16px;
}

.about-header .divider {
  width: 40px;
  height: 1px;
  background: var(--near-black);
  margin: 0 auto 20px;
}

.about-header .subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--dark-grey);
}

.about-intro {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-intro-photo img { width: 100%; display: block; }

.about-intro-quotes { padding-top: 20px; }

.about-quote { margin-bottom: 28px; }

.about-quote p {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: normal;
  line-height: 1.7;
  color: var(--dark-grey);
  margin-bottom: 8px;
}

.about-quote cite {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  font-style: normal;
}

.about-body {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.about-row {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-body .about-row {
  max-width: none;
  padding: 0;
}

.about-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--dark-grey);
  margin-bottom: 18px;
}

.about-text p:last-child { margin-bottom: 0; }

.pull-quote {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: normal;
  line-height: 1.8;
  color: var(--dark-grey);
  border-left: 2px solid var(--light-grey);
  padding-left: 20px;
}

.pull-quote cite {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  font-style: normal;
  margin-top: 10px;
}

.about-photo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-photo img { width: 100%; display: block; }

.about-photo-single img {
  width: 100%;
  display: block;
}

.about-socials-inline {
  margin-top: 12px;
}

.about-socials-inline a {
  display: block;
  font-size: 13px;
  color: var(--dark-grey);
  margin-bottom: 6px;
  transition: color var(--transition);
}

.about-socials-inline a span {
  font-weight: 600;
  color: var(--near-black);
}

.about-socials-inline a:hover { color: var(--near-black); }

.socials-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--near-black);
  margin-bottom: 16px;
}

.social-group-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--near-black);
  margin-bottom: 10px;
}

.about-socials {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.social-group { margin-bottom: 28px; }

.social-group h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--near-black);
  margin-bottom: 12px;
}

.social-group a {
  display: block;
  font-size: 13px;
  color: var(--dark-grey);
  margin-bottom: 6px;
  transition: color var(--transition);
}

.social-group a span {
  font-weight: 600;
  color: var(--near-black);
}

.social-group a:hover { color: var(--near-black); }

.about-galleries {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 60px;
}

.about-galleries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.about-gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
}

.about-gallery-item img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.about-gallery-item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.about-newsletter {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 60px;
}

.newsletter-box {
  border: 1px solid var(--light-grey);
  padding: 40px;
  text-align: center;
  max-width: 520px;
}

.newsletter-box h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--near-black);
  margin-bottom: 20px;
}

.newsletter-box input[type="email"] {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--light-grey);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--near-black);
  background: none;
  outline: none;
  margin-bottom: 20px;
  text-align: center;
}

.newsletter-box input::placeholder { color: var(--mid-grey); }

.newsletter-box button {
  background: var(--near-black);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 800px) {
  .about-row { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .about-body { padding: 0 20px; }
  .about-body .about-row { padding: 0; }
  .about-galleries, .about-newsletter { padding: 0 20px; }
  .about-galleries-grid { grid-template-columns: 1fr; }
}


/* ── SIMPLE GALLERY HEADERS ── */
.page-hero.plain {
  height: auto;
  min-height: 0;
  background: var(--white);
  align-items: center;
  justify-content: center;
  padding: 120px 20px 42px;
  text-align: center;
}

.page-hero.plain h1 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--near-black);
}

.page-hero.plain + .filter-bar {
  padding-top: 28px;
}
/* ── END SIMPLE GALLERY HEADERS ── */

/* Hide homepage slider photo captions */
.hero-caption {
  display: none;
}


/* ── UNIFORM PHOTO GALLERY GRID ── */
.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 4px !important;
  padding: 4px !important;
  column-count: initial !important;
}

.gallery-grid .gallery-item {
  position: relative;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  break-inside: auto !important;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-grid .gallery-item img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ── END UNIFORM PHOTO GALLERY GRID ── */
