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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.site-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: #1a1a1a;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

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

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1a1a1a;
}

.nav-social {
  margin-left: 16px;
  display: flex;
  align-items: center;
}

.nav-social a {
  display: flex;
  align-items: center;
  color: #999;
  transition: color 0.2s;
}

.nav-social a:hover {
  color: #1a1a1a;
}

.nav-social svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1024px) {
  nav {
    padding: 20px 24px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    z-index: 10;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .nav-social {
    margin-left: 0;
    padding: 14px 24px;
  }
  .nav-social svg {
    width: 14px;
    height: 14px;
  }
}

/* Hero — full width editorial */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 64px;
  background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 100%);
}

.hero-overlay h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 200;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-overlay p {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  letter-spacing: 0.04em;
  max-width: 500px;
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }
  .hero-overlay {
    padding: 40px 24px;
  }
}

/* Editorial intro — two column text */
.editorial-intro {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 48px;
}

.editorial-intro-left {
  position: relative;
}

.editorial-intro-left img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.editorial-intro-left .caption {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 400;
  color: #aaa;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.editorial-intro-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-intro-right .label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 24px;
}

.editorial-intro-right blockquote {
  font-size: 18px;
  line-height: 2;
  color: #333;
  font-weight: 300;
  font-style: italic;
  quotes: none;
}

.editorial-intro-right blockquote::before {
  content: '\201C';
  font-size: 56px;
  line-height: 0;
  vertical-align: -14px;
  color: #ddd;
  margin-right: 4px;
}

.editorial-intro-right blockquote::after {
  content: '\201D';
  font-size: 56px;
  line-height: 0;
  vertical-align: -8px;
  color: #ddd;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .editorial-intro {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
}

/* Divider */
.divider {
  width: 60px;
  height: 1px;
  background: #ddd;
  margin: 0 auto;
}

/* Section header */
.section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  max-width: 1100px;
  margin: 80px auto 40px;
  padding: 0 48px;
}

.section-header h2 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.section-header .count {
  font-size: 11px;
  font-weight: 300;
  color: #bbb;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .section-header {
    padding: 0 24px;
    margin: 60px auto 24px;
  }
}

/* Editorial gallery — alternating rhythm */
.editorial-gallery {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

.editorial-row {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

.editorial-row.feature {
  grid-template-columns: 2fr 1fr;
}

.editorial-row.pair {
  grid-template-columns: 1fr 1fr;
}

.editorial-row.triple {
  grid-template-columns: 1fr 1fr 1fr;
}

.editorial-row.offset {
  grid-template-columns: 1fr 2fr;
}

.editorial-row a {
  overflow: hidden;
  display: block;
}

.editorial-row img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.editorial-row a:hover img {
  transform: scale(1.03);
}

.editorial-row.feature img {
  min-height: 420px;
}

@media (max-width: 768px) {
  .editorial-gallery {
    padding: 0 24px 60px;
  }
  .editorial-row.feature,
  .editorial-row.pair,
  .editorial-row.triple,
  .editorial-row.offset {
    grid-template-columns: 1fr;
  }
  .editorial-row img {
    min-height: 240px;
  }
  .editorial-row.feature img {
    min-height: 280px;
  }
}

/* Pull quote between sections */
.pull-quote {
  max-width: 700px;
  margin: 40px auto 80px;
  padding: 0 48px;
  text-align: center;
}

.pull-quote p {
  font-size: 24px;
  font-weight: 200;
  line-height: 1.8;
  color: #444;
  font-style: italic;
}

.pull-quote .attr {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #bbb;
  font-style: normal;
}

@media (max-width: 768px) {
  .pull-quote {
    padding: 0 24px;
    margin: 40px auto 60px;
  }
  .pull-quote p {
    font-size: 18px;
  }
}

/* Sub-page styles */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.page-title {
  text-align: center;
  padding: 60px 24px 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 8px;
  padding: 0 0 80px;
}

.gallery a {
  overflow: hidden;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
  .gallery-2col {
    grid-template-columns: 1fr;
  }
}

/* Contact section */
.contact-section {
  max-width: 540px;
  margin: 60px auto 120px;
  padding: 0 24px;
  text-align: center;
}

.contact-section h2 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.contact-section p {
  font-size: 15px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-form {
  text-align: left;
}

.form-field {
  margin-bottom: 16px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fafafa;
  color: #1a1a1a;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #aaa;
}

.form-field textarea {
  resize: vertical;
}

.form-submit {
  display: inline-block;
  width: 100%;
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #1a1a1a;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover {
  background: #444;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  transition: color 0.2s;
}

.instagram-link:hover {
  color: #1a1a1a;
}

/* Call to action */
.cta {
  margin: 0 auto 80px;
  padding: 60px 48px;
  text-align: center;
}

.cta p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 20px;
}

.cta a {
  display: inline-block;
  padding: 14px 40px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  transition: background 0.2s, color 0.2s;
}

.cta a:hover {
  background: #1a1a1a;
  color: #fff;
}

@media (max-width: 768px) {
  .cta {
    padding: 48px 24px;
    margin: 0 auto 60px;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 48px 24px;
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.08em;
  border-top: 1px solid #eee;
}
