@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Noto+Serif:wght@500;600;700&display=swap');

:root {
  --bg: #f5f5ee;
  --bg-soft: #edf0e7;
  --surface: #ffffff;
  --surface-deep: #dde5da;
  --ink: #1b231d;
  --muted: #59675c;
  --outline: rgba(116, 133, 120, 0.24);
  --primary: #5d7666;
  --primary-strong: #7f9a88;
  --accent: #9b775d;
  --font-heading: "Noto Serif", serif;
  --font-body: "Manrope", sans-serif;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 80px rgba(27, 35, 29, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(127, 154, 136, 0.22), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(155, 119, 93, 0.12), transparent 24%),
    linear-gradient(180deg, #f5f5ee 0%, #f0f2eb 48%, #e9eee7 100%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header,
main,
.intro-band,
.testimonial-strip,
.contact-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 16px 22px;
  background: rgba(245, 245, 238, 0.84);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(150, 169, 155, 0.32);
  border-radius: 999px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(150, 169, 155, 0.28);
}

.lang-switch a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--muted);
}

.lang-switch a.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: var(--surface);
}

.brandmark,
.site-nav a,
.header-cta,
.btn,
.text-link {
  text-decoration: none;
}

.brandmark {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta {
  padding: 12px 18px;
  background: var(--primary);
  color: var(--surface);
}

.hero {
  min-height: calc(100svh - 140px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  padding: 84px 0 56px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  max-width: 13ch;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.hero-text,
.listing-card p,
.event-row p,
.product-card p,
.approach-card p,
.founder-copy p,
.contact-section p,
.intro-band p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-actions,
.contact-actions,
.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.hero-note {
  margin-top: 22px;
  max-width: 48ch;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.7;
}

.btn {
  border: 1px solid transparent;
  padding: 14px 22px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}

.btn:hover,
.header-cta:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: var(--surface);
  box-shadow: 0 18px 40px rgba(147, 69, 42, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  border-color: var(--outline);
}

.btn-tertiary,
.text-link {
  background: transparent;
  color: var(--primary);
  padding: 0;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-panel {
  position: absolute;
  display: flex;
  align-items: end;
  padding: 26px;
  color: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-panel span {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 14, 12, 0.02) 0%, rgba(18, 14, 12, 0.52) 100%),
    linear-gradient(135deg, rgba(95, 118, 102, 0.95), rgba(127, 154, 136, 0.86));
}

.hero-panel-large {
  inset: 0 70px 70px 0;
  border-radius: 180px 28px 28px 28px;
}

.hero-panel-small {
  right: 0;
  top: 70px;
  width: 240px;
  height: 280px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(18, 14, 12, 0.08) 0%, rgba(18, 14, 12, 0.46) 100%),
    linear-gradient(135deg, rgba(127, 154, 136, 0.92), rgba(91, 108, 94, 0.76));
}

.hero-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(189, 215, 191, 0.74);
  filter: blur(80px);
  left: -40px;
  bottom: 40px;
}

.intro-band,
.contact-section,
.testimonial-strip {
  display: grid;
  gap: 30px;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(150, 169, 155, 0.22);
  box-shadow: 0 18px 50px rgba(41, 56, 44, 0.04);
}

.intro-band {
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 120px;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intro-stats strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
}

.section-grid,
.feature-story,
.approach-section,
.founder-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 120px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.approach-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(150, 169, 155, 0.24);
  border-radius: var(--radius-lg);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 38px;
}

.listing-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.listing-card,
.product-card,
.event-row {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(150, 169, 155, 0.24);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.listing-meta,
.listing-footer,
.event-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.listing-meta,
.product-category,
.event-date,
.event-location,
.detail-list dt {
  color: var(--primary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(150, 169, 155, 0.22);
}

.detail-list dd {
  margin: 0;
  color: var(--ink);
  text-align: right;
}

.feature-story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
}

.feature-story-copy {
  padding-top: 30px;
}

.event-stack {
  display: grid;
  gap: 18px;
}

.event-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
}

.shop-section {
  padding-top: 12px;
}

.founder-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: center;
}

.founder-portrait {
  min-height: 520px;
  border-radius: 36px 160px 36px 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(18, 14, 12, 0.34)),
    linear-gradient(135deg, rgba(115, 135, 122, 0.82), rgba(195, 107, 77, 0.86));
  box-shadow: var(--shadow-soft);
}

.founder-role {
  color: var(--primary);
  font-weight: 700;
}

.testimonial-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 120px;
}

.testimonial {
  margin: 0;
}

.testimonial p {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.45;
}

.testimonial footer {
  color: var(--muted);
  font-weight: 700;
}

.contact-section {
  grid-template-columns: 1.1fr 0.9fr;
  margin-bottom: 80px;
  align-items: center;
}

.contact-actions {
  justify-content: flex-end;
}

.inquiry-dialog {
  width: min(560px, calc(100% - 24px));
  border: 0;
  padding: 0;
  border-radius: 28px;
  background: transparent;
}

.inquiry-dialog::backdrop {
  background: rgba(32, 22, 17, 0.45);
  backdrop-filter: blur(10px);
}

.inquiry-form {
  padding: 28px;
  background: #f9fbf6;
  border-radius: 28px;
  border: 1px solid rgba(150, 169, 155, 0.28);
  box-shadow: 0 24px 70px rgba(31, 21, 18, 0.16);
}

.dialog-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.dialog-close {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 700;
}

.inquiry-form span {
  font-size: 0.92rem;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(150, 169, 155, 0.34);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: 2px solid rgba(93, 118, 102, 0.16);
  border-color: rgba(93, 118, 102, 0.45);
}

.form-feedback {
  min-height: 24px;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .intro-band,
  .feature-story,
  .founder-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 26px;
    position: static;
    padding: 18px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .header-tools {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .listing-grid,
  .approach-grid,
  .product-grid,
  .testimonial-strip,
  .intro-stats {
    grid-template-columns: 1fr;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header,
  main,
  .intro-band,
  .testimonial-strip,
  .contact-section,
  .section-grid,
  .feature-story,
  .founder-section {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    max-width: none;
  }

  .hero-panel-large {
    inset: 0 20px 46px 0;
  }

  .hero-panel-small {
    width: 170px;
    height: 190px;
    top: 30px;
  }

  .intro-band,
  .contact-section,
  .testimonial-strip {
    padding: 24px;
  }

  .listing-card,
  .product-card,
  .event-row {
    padding: 22px;
  }
}
