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

:root {
  --bg: #fff;
  --bg-off: #f4f4f4;
  --text: #1a1a1a;
  --text-mid: #555;
  --text-muted: #999;
  --border: #e0e0e0;
  --ph: #cacaca;
  --ph-dark: #b0b0b0;
  --ph-text: #909090;
  --nav-h: 62px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 300;
}

.brand {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  z-index: 301;
  position: relative;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.32s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 299;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-size: clamp(1.8rem, 8vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.38s ease, transform 0.38s ease, color 0.2s;
}
.mobile-menu.open a { opacity: 1; transform: translateX(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu a:hover { color: var(--text-muted); }

/* PLACEHOLDER */
.ph {
  background: var(--ph);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ph span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ph-text);
  font-family: 'Montserrat', sans-serif;
}

/* HERO */
.hero {
  margin-top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  position: relative;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1) .ph { background: #bfc0c0; }
.hero-slide:nth-child(2) .ph { background: #c4c5c4; }
.hero-slide:nth-child(3) .ph { background: #b8bab8; }
.hero-slide:nth-child(4) .ph { background: #c6c7c5; }
.hero-slide:nth-child(5) .ph { background: #bdbebe; }
.hero-slide:nth-child(6) .ph { background: #c2c3c2; }
.hero-slide:nth-child(7) .ph { background: #b5b7b5; }

.hero-text {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  width: 92%;
}
.hero-title {
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  margin-bottom: 0.6rem;
}
.hero-sub {
  font-size: clamp(0.68rem, 1.4vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-dots {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s;
}
.hero-dot.active { background: #fff; }

/* TAGLINE SECTION */
.tagline-section {
  padding: 5rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.tagline-section h2 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.tagline-section p {
  font-size: clamp(0.8rem, 1.6vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* PROJECTS SECTION */
.projects-section { padding: 4rem 0; }
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2.5rem;
}
.projects-stack { display: flex; flex-direction: column; gap: 3px; }

.project-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 21/8;
  width: 100%;
}
.project-card .ph { transition: transform 0.65s ease; }
.project-card:hover .ph { transform: scale(1.025); }
.project-card:nth-child(1) .ph { background: #bec0bd; }
.project-card:nth-child(2) .ph { background: #c0bdbd; }
.project-card:nth-child(3) .ph { background: #bdbec0; }
.project-card:nth-child(4) .ph { background: #c0bfbc; }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.35) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 3rem;
  pointer-events: none;
}
.project-title {
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

/* INSTAGRAM SECTION */
.ig-section {
  padding: 4rem 0 0;
  border-top: 1px solid var(--border);
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.ig-item {
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}
.ig-item .ph {
  background: #cdcdcd;
  transition: transform 0.4s ease;
}
.ig-item:nth-child(even) .ph { background: #c5c5c5; }
.ig-item:nth-child(3n) .ph { background: #d0d0d0; }
.ig-item:hover .ph { transform: scale(1.04); }

.ig-footer-cta {
  padding: 1.8rem;
  text-align: center;
  border-top: 1px solid var(--border);
}
.ig-footer-cta a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.ig-footer-cta a:hover { color: var(--text); }

/* FOOTER */
footer {
  background: var(--bg-off);
  border-top: 1px solid var(--border);
  padding: 3.5rem 2.5rem 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
}
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.footer-col p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.newsletter-row {
  display: flex;
  border: 1px solid var(--border);
}
.newsletter-row input {
  flex: 1;
  border: none;
  padding: 0.65rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  outline: none;
  background: #fff;
  color: var(--text);
}
.newsletter-row button {
  background: var(--text);
  color: #fff;
  border: none;
  padding: 0.65rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-row button:hover { background: #444; }

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links-list a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links-list a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-social {
  display: flex;
  gap: 1.5rem;
}
.footer-social a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--text); }
.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* PAGE HEADER */
.page-header {
  margin-top: var(--nav-h);
  padding: 4rem 2.5rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}
.page-header p {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* GALLERIES PAGE */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 3px;
}
.gallery-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-thumb .ph { transition: transform 0.6s ease; }
.gallery-thumb:hover .ph { transform: scale(1.04); }
.gallery-thumb:nth-child(1) .ph { background: #c2c4c2; }
.gallery-thumb:nth-child(2) .ph { background: #bfc0be; }
.gallery-thumb:nth-child(3) .ph { background: #c5c6c4; }
.gallery-thumb:nth-child(4) .ph { background: #bdbfc0; }
.gallery-thumb:nth-child(5) .ph { background: #c0c2c1; }
.gallery-thumb:nth-child(6) .ph { background: #c3c3c1; }
.gallery-thumb:nth-child(7) .ph { background: #bebfc0; }
.gallery-thumb:nth-child(8) .ph { background: #c6c4c3; }

.gallery-name-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.4s;
}
.gallery-thumb:hover .gallery-name-overlay { background: rgba(0,0,0,0.3); }

.gallery-name-overlay span {
  font-size: clamp(0.9rem, 2.2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-thumb:hover .gallery-name-overlay span { opacity: 1; }

/* STORE PAGE */
.store-intro {
  padding: 1.5rem 2.5rem 3rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.store-intro p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2.5rem 5rem;
}
.store-card {
  display: block;
  color: var(--text);
}
.store-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1rem;
}
.store-card-img .ph { transition: transform 0.5s ease; }
.store-card:hover .store-card-img .ph { transform: scale(1.04); }
.store-card:nth-child(1) .ph { background: #c5c5c5; }
.store-card:nth-child(2) .ph { background: #c0c2c4; }
.store-card:nth-child(3) .ph { background: #c4c2c0; }
.store-card:nth-child(4) .ph { background: #c2c4c2; }

.store-card h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.store-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

@media (max-width: 767px) {
  nav { padding: 0 1.25rem; }
  .hero-text { bottom: 3rem; }
  .project-card { aspect-ratio: 16/9; }
  .project-overlay { padding: 1.5rem; }
  .tagline-section { padding: 3rem 1.5rem; }
  .projects-section { padding: 3rem 0; }
  .ig-section { padding: 3rem 0 0; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .store-grid { grid-template-columns: 1fr; padding: 0 1.5rem 4rem; }
  .page-header { padding: 3rem 1.5rem 2rem; }
  footer { padding: 2.5rem 1.5rem 0; }
}

@media (max-width: 480px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-title { letter-spacing: 0.14em; }
}
