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

:root {
  --bg-chalk: #f9f8f6;
  --text-graphite: #2c2c2c;
  --accent-olive: #7a8a6d;
  --accent-beige: #d4b8a8;
  --dark-charcoal: #1a1a1a;
  --light-gray: #e8e8e8;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-chalk);
  color: var(--text-graphite);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--text-graphite);
  text-decoration: none;
  transition: all 0.2s ease;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.1rem, 3vw, 1.8rem);
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

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

header {
  background-color: var(--bg-chalk);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  max-width: 100%;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-graphite);
}

.logo a {
  color: inherit;
}

nav {
  display: none;
}

nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--bg-chalk);
  border-top: 1px solid var(--light-gray);
  padding: 1rem 0;
}

nav a {
  padding: 0.75rem 1rem;
  display: block;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
}

nav a:last-child {
  border-bottom: none;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-graphite);
  padding: 0.5rem;
  display: flex;
  align-items: center;
}

.cta-button {
  background-color: var(--accent-olive);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--accent-olive);
  border-radius: 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--accent-olive);
  transform: scale(1.02);
}

.cta-button.outline {
  background-color: transparent;
  color: var(--accent-olive);
  border: 2px solid var(--accent-olive);
}

.cta-button.outline:hover {
  background-color: rgba(122, 138, 109, 0.08);
  transform: scale(1.02);
}

footer {
  background: linear-gradient(135deg, var(--dark-charcoal) 0%, #0f0f0f 100%);
  color: var(--white);
  padding: 3rem 1rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-beige);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.diagonal-divider {
  position: relative;
  overflow: hidden;
}

.diagonal-divider::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200%;
  height: 200%;
  background: var(--dark-charcoal);
  transform: skewY(-3deg);
  z-index: -1;
}

.hero {
  background-color: var(--bg-chalk);
  padding: 2rem 1rem 1rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.hero-text h1 {
  color: var(--text-graphite);
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--text-graphite);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.quick-hints {
  font-size: 0.85rem;
  color: var(--text-graphite);
  letter-spacing: 0.1em;
  margin: 1.5rem 0;
  text-transform: uppercase;
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  transform: rotate(-2deg);
}

.hero-image-frame {
  aspect-ratio: 1;
  border: 2px solid var(--text-graphite);
  overflow: hidden;
  background-color: var(--white);
  transition: all 0.2s ease;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.hero-image-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero-image-frame:hover img {
  transform: scale(1.05);
}

.lookbook-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.lookbook-block {
  background-color: var(--white);
  padding: 2rem 1.5rem;
  border-left: 4px solid var(--accent-olive);
  transition: all 0.2s ease;
}

.lookbook-block:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.lookbook-block h3 {
  margin-bottom: 1rem;
  color: var(--text-graphite);
}

.lookbook-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-graphite);
  margin-bottom: 0.5rem;
}

.lookbook-block small {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--accent-olive);
  font-weight: 600;
}

.texture-map {
  background-color: var(--white);
  padding: 3rem 1rem;
  margin: 3rem 0;
}

.texture-map-container {
  max-width: 1200px;
  margin: 0 auto;
}

.texture-map h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.texture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.texture-btn {
  background-color: transparent;
  border: 2px solid var(--text-graphite);
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-graphite);
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.texture-btn:hover {
  background-color: var(--accent-olive);
  color: var(--white);
  border-color: var(--accent-olive);
  transform: scale(1.02);
}

.texture-description {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-graphite);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.product-card {
  background-color: var(--white);
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--light-gray);
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--light-gray);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  text-align: left;
}

.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-graphite);
}

.product-description {
  font-size: 0.9rem;
  color: var(--text-graphite);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-olive);
  margin-bottom: 1rem;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-graphite);
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  background-color: var(--white);
  color: var(--text-graphite);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-olive);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9rem;
}

.checkbox-group a {
  color: var(--accent-olive);
  text-decoration: underline;
}

.thank-you-section {
  text-align: center;
  padding: 3rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-section h1 {
  margin-bottom: 1rem;
}

.thank-you-section p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.section {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section.dark {
  background: linear-gradient(135deg, var(--dark-charcoal) 0%, #0f0f0f 100%);
  color: var(--white);
  margin: 3rem 0;
  transform: skewY(-2deg);
  padding: 4rem 1rem;
}

.section.dark h2,
.section.dark h3 {
  color: var(--white);
}

.section.dark p {
  color: rgba(255, 255, 255, 0.9);
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.faq-item {
  padding: 1.5rem;
  background-color: var(--white);
  border-left: 4px solid var(--accent-olive);
}

.faq-item h4 {
  margin-bottom: 0.75rem;
  color: var(--text-graphite);
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--text-graphite);
  margin-bottom: 0;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  margin-bottom: 1.5rem;
}

.about-list {
  list-style: none;
  margin: 1.5rem 0;
}

.about-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.about-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-olive);
  font-weight: bold;
}

.about-list li p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.catalog-switcher {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.switcher-btn {
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--text-graphite);
  background-color: transparent;
  color: var(--text-graphite);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.switcher-btn.active {
  background-color: var(--accent-olive);
  color: var(--white);
  border-color: var(--accent-olive);
}

.switcher-btn:hover {
  background-color: var(--accent-olive);
  color: var(--white);
  border-color: var(--accent-olive);
  transform: scale(1.02);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.product-detail-image {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: var(--light-gray);
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-content h1 {
  margin-bottom: 1.5rem;
}

.product-detail-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quick-specs {
  background-color: var(--white);
  padding: 1.5rem;
  margin: 2rem 0;
  border: 1px solid var(--light-gray);
}

.quick-specs h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
  color: var(--accent-olive);
}

.spec-value {
  text-align: right;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-charcoal);
  color: var(--white);
  padding: 1.5rem;
  z-index: 1000;
  display: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-consent.show {
  display: flex;
}

.cookie-text {
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--accent-beige);
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.cookie-btn {
  padding: 0.6rem 1rem;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.2s ease;
}

.cookie-btn.accept {
  background-color: var(--accent-olive);
  color: var(--white);
}

.cookie-btn.accept:hover {
  background-color: rgba(122, 138, 109, 0.8);
}

.cookie-btn.reject {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-btn.reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  nav {
    display: flex;
    flex-direction: row;
    position: static;
    background-color: transparent;
    border-top: none;
    padding: 0;
    gap: 2rem;
  }

  nav.active {
    flex-direction: row;
  }

  nav a {
    padding: 0;
    border-bottom: none;
    font-size: 0.95rem;
  }

  .menu-toggle {
    display: none;
  }

  .header-container {
    padding: 0 2rem;
  }

  .hero-images {
    transform: rotate(0);
  }

  .lookbook-blocks {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .texture-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-card {
    grid-template-columns: 1fr 1fr;
  }

  .faq-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .product-detail {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 3rem 2rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .lookbook-blocks {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.page-heading {
  text-align: center;
  padding: 3rem 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-heading h1 {
  margin-bottom: 1rem;
}

.page-heading p {
  font-size: 1rem;
  color: var(--text-graphite);
  max-width: 600px;
  margin: 0 auto;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0 1rem 2rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

.mini-guide {
  background-color: var(--white);
  padding: 2rem 1rem;
  margin: 2rem 0;
  border-left: 4px solid var(--accent-beige);
}

.mini-guide h3 {
  margin-bottom: 1rem;
}

.mini-guide ol {
  margin-left: 1.5rem;
}

.mini-guide ol li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
