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

body {
  margin: 0;
  font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f4eee6;
  color: #303030;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 4vw;
  background: rgba(244, 238, 230, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #5ca69a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-title {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: #7c7569;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  color: #3a3a3a;
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #5ca69a;
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.lang-switch {
  display: flex;
  gap: 0.4rem;
  font-size: 0.8rem;
}

.lang-switch a,
.lang-switch span {
  text-decoration: none;
  color: #7c7569;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}

.lang-switch .active {
  background: #5ca69a;
  color: #fff;
}

.lang-switch a:hover {
  background: rgba(92,166,154,0.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  padding: 3.5rem 4vw 3.5rem;
  align-items: center;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #ffffff 0, #f4eee6 42%, #e4e0d7 85%);
  z-index: -1;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  margin: 0 0 0.5rem;
  color: #203e52;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: #7c7569;
  margin: 0 0 1.2rem;
}

.hero-text {
  max-width: 33rem;
  font-size: 0.98rem;
  color: #4b4740;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
}

.btn.primary {
  background: #5ca69a;
  color: #fff;
  border-color: #5ca69a;
}

.btn.primary:hover {
  background: #4b8f85;
  border-color: #4b8f85;
}

.btn.ghost {
  background: transparent;
  color: #203e52;
  border-color: rgba(32,62,82,0.18);
}

.btn.ghost:hover {
  background: rgba(32,62,82,0.06);
}

.hero-image {
  justify-self: center;
  max-width: 380px;
}

.hero-image img {
  border-radius: 1.4rem;
  box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

/* Sections */

.section {
  padding: 3rem 4vw;
}

.section.alt {
  background: #f9f5ee;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #203e52;
}

.section p {
  font-size: 0.97rem;
  color: #4b4740;
}

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.4rem;
}

.stats div strong {
  display: block;
  font-size: 1.05rem;
  color: #203e52;
}

.stats span {
  font-size: 0.8rem;
  color: #7c7569;
}

.card {
  border-radius: 1.4rem;
  overflow: hidden;
}

.card.soft {
  background: rgba(255,255,255,0.9);
  padding: 1.4rem 1.6rem 1.1rem;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #203e52;
}

.card-image {
  margin-top: 1rem;
  border-radius: 1rem;
}

.amazon-link a {
  color: #5ca69a;
}

.amazon-link a:hover {
  text-decoration: none;
}

/* Collections */

.collection-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: flex-start;
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.collection-block.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
}

.collection-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #203e52;
}

.collection-text .tagline {
  font-style: italic;
  font-size: 0.9rem;
  color: #7c7569;
}

.bullets {
  padding-left: 1.1rem;
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.bullets li + li {
  margin-top: 0.25rem;
}

.collection-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.collection-images img {
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 16px 30px rgba(0,0,0,0.07);
}

.collection-images img.wide {
  grid-column: 1 / -1;
}

/* Story */

.story-image {
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
  margin-bottom: 1.2rem;
}

.story-image.secondary {
  opacity: 0.96;
}

/* Contact */

.contact-block h3 {
  font-size: 1rem;
  margin-bottom: 0.1rem;
  color: #203e52;
}

.contact-block p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-block + .contact-block {
  margin-top: 0.9rem;
}

.contact-form {
  background: rgba(255,255,255,0.9);
  padding: 1.4rem 1.6rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #203e52;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  color: #7c7569;
  margin-bottom: 0.7rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(0,0,0,0.12);
  font-family: inherit;
  font-size: 0.85rem;
  background: #fbfaf7;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #5ca69a;
  box-shadow: 0 0 0 1px rgba(92,166,154,0.3);
  background: #fff;
}

.form-note {
  font-size: 0.74rem;
  color: #9a9184;
  margin-top: 0.6rem;
}

/* Footer */

.site-footer {
  padding: 1.6rem 4vw 1.9rem;
  background: #e3ddd1;
  margin-top: 1rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: #70685b;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
}

/* Responsive */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 2.6rem;
  }
  .hero-image {
    max-width: 320px;
    margin-top: 1.2rem;
  }
  .two-cols {
    grid-template-columns: minmax(0, 1fr);
  }
  .collection-block,
  .collection-block.reverse {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
    row-gap: 0.6rem;
  }
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 0.4rem;
  }
  .hero {
    padding: 2.4rem 5vw 2.8rem;
  }
  .section {
    padding: 2.4rem 5vw;
  }
}
