body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  color: #111;
}

.header {
  border-bottom: 2px solid #eee;
  margin-bottom: 2rem;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3vw 1rem 3vw;
}

.header-social {
  display: flex;
  gap: 1rem;
}

.header-social .icon {
  width: 22px;
  height: 22px;
  filter: grayscale(1);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.header-social .icon:hover {
  opacity: 1;
}

.header-title {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
}

.header-login-cart {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header-login-cart .login {
  font-size: 1rem;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-right: 0.5rem;
}

.header-login-cart .cart {
  display: flex;
  align-items: center;
  color: #111;
  text-decoration: none;
  font-weight: 600;
}
.header-login-cart .cart .icon {
  width: 20px;
  height: 20px;
  margin-right: 0.2rem;
}

.header-nav {
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
  background: #fff;
}
.header-nav ul {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0.8rem 0;
}
.header-nav a {
  color: #111;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 0.2em;
  transition: color 0.2s;
}
.header-nav a.active,
.header-nav a:hover {
  color: #222;
}
.header-nav a.active::after,
.header-nav a:hover::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #111;
  position: absolute;
  left: 0;
  bottom: -2px;
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2vw;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  background: #fafafa;
  transition: box-shadow 0.2s;
}
.gallery-item:hover {
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.13);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 700px) {
  .header-title {
    font-size: 1.3rem;
  }
  .header-nav ul {
    gap: 1.1rem;
    font-size: 0.95rem;
  }
  .gallery {
    gap: 1rem;
  }
  main {
    padding: 1vw;
  }
}

.contact-section {
  position: relative;
  min-height: calc(100vh - 100px);
  height: calc(100vh - 100px);
  margin-top: 100px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center center/cover no-repeat;
  z-index: 0;
  opacity: 0.7;
}
.contact-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
  padding: 4rem 2vw 2rem 2vw;
  align-items: center;
}
.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  font-family: 'Bebas Neue', 'Bebas Kai', Arial, sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  gap: 1.2rem;
  font-weight: bold;
}
.contact-title {
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}
.contact-email {
  font-size: 2.1rem;
  font-weight: bold;
  letter-spacing: 0.13em;
}
.contact-address {
  font-size: 2.1rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: rgba(255,255,255,0.04);
  padding: 2rem 1.5rem 2rem 1.5rem;
  border-radius: 0.7rem;
}
.contact-form label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.contact-form .required {
  font-size: 0.9rem;
  color: #e0e0e0;
  font-weight: 400;
  margin-left: 0.2em;
  text-transform: none;
}
.contact-names {
  display: flex;
  gap: 1rem;
}
.contact-form input, .contact-form textarea {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 0.7em 1em;
  border: 1px solid #fff;
  border-radius: 0.3em;
  background: rgba(255,255,255,0.7);
  color: #222;
  outline: none;
  margin-bottom: 0.2rem;
  transition: border 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border: 1.5px solid #111;
}
.contact-form textarea {
  min-height: 90px;
  resize: vertical;
}
.contact-form button {
  font-family: 'Bebas Neue', 'Bebas Kai', Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.13em;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 0.3em;
  padding: 0.7em 2.5em;
  cursor: pointer;
  margin-top: 0.7rem;
  transition: background 0.2s, color 0.2s;
}
.contact-form button:hover {
  background: #fff;
  color: #222;
}
@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1vw 2rem 1vw;
    max-width: 98vw;
  }
  .contact-left, .contact-title, .contact-email, .contact-address {
    font-size: 1.2rem;
  }
}

.gearlist-section {
  max-width: 1200px;
  margin: 4rem auto 0 auto;
  padding: 0 2vw 4rem 2vw;
}
.gearlist-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
.gearlist-left img {
  width: 100%;
  max-width: 350px;
  border-radius: 1.2rem;
  display: block;
  margin: 0 auto;
}
.gearlist-title {
  font-family: 'Bebas Neue', 'Bebas Kai', Arial, sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.13em;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.gearlist-desc {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 1.1rem;
  line-height: 1.5;
}
.gearlist-updated {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #111;
  margin-top: 1.5rem;
  margin-bottom: 0.2rem;
  font-weight: bold;
}
.gearlist-bottom-img {
  margin-top: 2.5rem;
  text-align: left;
}
.gearlist-bottom-img img {
  width: 100%;
  max-width: 600px;
  border-radius: 1.2rem;
  display: block;
}
@media (max-width: 900px) {
  .gearlist-section {
    padding: 0 1vw 2rem 1vw;
  }
  .gearlist-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gearlist-left img, .gearlist-bottom-img img {
    max-width: 100%;
  }
  .gearlist-bottom-img {
    text-align: center;
  }
}

.rawfiles-section {
  max-width: 1200px;
  margin: 4rem auto 0 auto;
  padding: 0 2vw 4rem 2vw;
}
.rawfiles-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}
.rawfiles-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.rawfiles-title {
  font-family: 'Bebas Neue', 'Bebas Kai', Arial, sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.13em;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
}
.rawfiles-desc {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 1.5rem;
}
.rawfiles-list-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #111;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.rawfiles-list {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 1.5rem;
  padding-left: 1.2em;
}
.rawfiles-list li {
  margin-bottom: 0.2em;
}
.rawfiles-disclaimer-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #111;
  margin-top: 1.5rem;
  margin-bottom: 0.2rem;
}
.rawfiles-disclaimer {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: #222;
  margin-bottom: 0.5rem;
}
.rawfiles-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 1.2rem;
  display: block;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .rawfiles-section {
    padding: 0 1vw 2rem 1vw;
  }
  .rawfiles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .rawfiles-right img {
    max-width: 100%;
  }
}

.presets-section {
  max-width: 1200px;
  margin: 4rem auto 0 auto;
  padding: 0 2vw 4rem 2vw;
}
.presets-title {
  font-family: 'Bebas Neue', 'Bebas Kai', Arial, sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.13em;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}
.presets-desc {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 2.5rem;
  margin-left: 0.5rem;
}
.presets-hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin-bottom: 3.5rem;
}
.presets-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 0.5rem;
}
.preset-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
}
.preset-item img {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1.2rem;
}
.preset-name {
  font-family: 'Bebas Neue', 'Bebas Kai', Arial, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.13em;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-align: center;
}
.preset-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #111;
  text-align: center;
  margin-bottom: 0.5rem;
}
@media (max-width: 700px) {
  .presets-section {
    padding: 0 1vw 2rem 1vw;
  }
  .presets-list {
    justify-content: center;
    gap: 1.5rem;
    margin-left: 0;
  }
  .preset-item {
    width: 90vw;
    max-width: 320px;
  }
  .presets-title {
    font-size: 1.5rem;
  }
}

.blog-basic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 3rem;
  max-width: 1200px;
  margin: 4rem auto 0 auto;
  padding: 0 2vw 4rem 2vw;
  align-items: flex-start;
}
.blog-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: none;
  padding-bottom: 2.5rem;
}
.blog-item img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 1.2rem 1.2rem 0 0;
  margin-bottom: 1.5rem;
}
.blog-date {
  display: block;
  font-family: 'Source Code Pro', monospace;
  font-size: 1rem;
  color: #000;
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
  text-align: center;
}
.blog-title {
  display: block;
  font-family: 'Bebas Neue', 'Bebas Kai', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.blog-desc {
  font-family: 'Montserrat', 'Europa', Arial, sans-serif;
  font-size: 1.15rem;
  color: #222;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.blog-more-link {
  font-family: 'Montserrat', 'Europa', Arial, sans-serif;
  font-size: 1rem;
  color: #9C8B7E;
  text-decoration: none;
  font-style: italic;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.blog-more-link:hover {
  color: #7a6a5a;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .blog-basic-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1vw 2rem 1vw;
  }
  .blog-title {
    font-size: 1.4rem;
  }
} 