
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: hsl(0, 70%, 45%);
  --fg: hsl(0, 0%, 15%);
  --muted: hsl(0, 0%, 50%);
  --border: hsl(0, 0%, 88%);
  --secondary: hsl(0, 0%, 96%);
  --hero-bg: hsl(0, 0%, 8%);
}
body { font-family: 'Raleway', sans-serif; color: var(--fg); background: #fff; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: 'Raleway', sans-serif; letter-spacing: 0.1em; font-weight: 300; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Header */
.header { padding: 2rem 1rem 0; background: #fff; }
.nav { max-width: 72rem; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 2rem; }
.nav-link { padding: 0.5rem 1.5rem; font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); transition: all 0.3s; }
.nav-link:hover { color: var(--fg); }
.nav-link.active { border: 1px solid var(--primary); color: var(--fg); }
.logo-link { display: block; margin: 0 2rem; }
.logo-link img { height: 128px; width: auto; }
.divider { width: 100%; height: 4px; background: var(--primary); margin-top: 2rem; }

/* Hero */
.hero { min-height: 80vh; background: var(--hero-bg); color: #fff; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-content { position: relative; z-index: 10; text-align: left; padding: 0 1rem; max-width: 41rem; width: 100%; }
.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 0.5rem; }
.hero-title { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.hero-sub { font-size: 0.875rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.8); }

/* About */
.about { padding: 5rem 1rem; background: var(--secondary); }
.about-grid { max-width: 72rem; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-portrait { margin-top: 30px; }
.about-portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-portrait p { font-size: 0.75rem; color: var(--muted); text-align: right; margin-top: 0.5rem; letter-spacing: 0.05em; }
.about-text > * + * { margin-top: 1.5rem; }
.about-text h3 { font-size: 1.875rem; text-transform: uppercase; letter-spacing: 0.15em; }
.about-text p { color: var(--muted); line-height: 1.7; }
.about-text p.italic { font-style: italic; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

/* Footer */
.footer { padding: 2rem 1rem; background: var(--hero-bg); color: #fff; text-align: center; }
.footer img { height: 64px; width: auto; margin: 0 auto 1rem; }
.footer p { font-size: 0.875rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }

/* Gallery */
.filters { padding: 3rem 1rem 0; }
.filters-inner { max-width: 72rem; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; }
.filter-tab { background: none; border: none; padding: 0.5rem 1rem; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); cursor: pointer; transition: color 0.3s; font-family: inherit; }
.filter-tab:hover { color: var(--fg); }
.filter-tab.active { color: var(--fg); font-weight: 600; }
.gallery-section { padding: 3rem 1rem 5rem; }
.gallery-grid { max-width: 72rem; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; background: #eee; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.3s; color: #fff; text-align: center; }
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.4); opacity: 1; }
.gallery-overlay h4 { font-size: 1.125rem; font-weight: 500; letter-spacing: 0.05em; }
.gallery-overlay p { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; margin-top: 0.25rem; opacity: 0.8; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 50; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 80vh; object-fit: contain; }
.lightbox-title { color: #fff; margin-top: 1rem; letter-spacing: 0.05em; text-align: center; }
.lightbox-inner { display: flex; flex-direction: column; align-items: center; }
.lb-btn { position: absolute; background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; font-size: 2.5rem; padding: 1rem; }
.lb-btn:hover { color: #fff; }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 767px) {
	.header .logo-link {
  display: block;
  margin: 0rem;
}
	.header .logo-link img {
  height: auto;
  width: auto;
		margin-left: 15px;
}
	
	.hero {
  min-height: 34vh;
	}
	
	.hero-bg {
  position: absolute;
  inset: 0;
  background-size: 132%;
  background-position: -66px -5%;
}
	
	.about {
  padding: 1rem 1rem;
	}
	
	.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
    padding-bottom: 0px;
  max-width: 41rem;
  width: 100%;
  margin-top: 44%;
  text-align: center;
  padding-bottom: 34px;
  background: #1c1c1c;
}
	
}


