/* ─── TOKENS ─── */
:root {
  --green:       #1A4A35;
  --green-light: #266040;
  --green-pale:  #E6EFEA;
  --rust:        #8B3520;
  --rust-light:  #A8401A;
  --rust-pale:   #F5EAE6;
  --gold:        #D4A83C;
  --cream:       #FBF8F3;
  --white:       #FFFFFF;
  --ink:         #1A1A1A;
  --ink-soft:    #4A4A4A;
  --ink-muted:   #8A8A8A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* Screen-reader only — hidden from view, indexed by crawlers */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── CONTAINER ─── */
.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

/* ─── SECTION BASE ─── */
.section {
  padding-block: clamp(72px, 10vw, 120px);
}
.section__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section__title em {
  font-style: italic;
  color: var(--rust);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 48px);
  transition: background 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}
.nav.scrolled {
  background: rgba(251, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav__logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}
.nav__links {
  list-style: none;
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rust);
  transition: width 0.3s var(--ease-smooth);
}
.nav__links a:hover::after { width: 100%; }

/* Language Switcher */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.nav__lang span {
  color: var(--ink-muted);
  font-weight: 300;
}
.lang-link {
  color: var(--ink-muted);
  transition: color 0.2s;
  padding: 2px 0;
}
.lang-link:hover   { color: var(--rust); }
.lang-link--active { color: var(--ink); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 80%, rgba(26,74,53,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(139,53,32,0.05) 0%, transparent 60%),
    var(--cream);
}
.hero__content {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 100px 24px 80px;
}
.hero__logo-wrap {
  animation: fadeUp 1s var(--ease-smooth) both;
}
.hero__logo {
  width: min(420px, 72vw);
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.08));
}
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-style: italic;
  color: var(--ink-soft);
  animation: fadeUp 1s 0.2s var(--ease-smooth) both;
}
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  animation: fadeUp 1s 0.4s var(--ease-smooth) both;
}
.hero__scroll span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--rust), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── STORY ─── */
.story { background: var(--white); }
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.story__text p {
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.story__text .lead {
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.7;
}
.story__visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.story__card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px 28px 24px;
  border-left: 3px solid var(--green);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}
.story__card:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 24px rgba(26,74,53,0.08);
}
.story__card-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 8px;
}
.story__card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.story__card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ─── VISION ─── */
.vision { background: var(--cream); }
.vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.vision__block {
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 56px);
  color: var(--white);
}
.vision__block--green { background: var(--green); }
.vision__block--rust  { background: var(--rust); }
.vision__icon {
  font-size: 2rem;
  margin-bottom: 20px;
  opacity: 0.7;
}
.vision__block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 20px;
  opacity: 0.95;
}
.vision__block p {
  font-size: 0.97rem;
  line-height: 1.75;
  opacity: 0.85;
  margin-bottom: 14px;
}
.vision__values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  list-style: none;
}
.value {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  border: 1px solid rgba(0,0,0,0.06);
}
.value__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

/* ─── NAME ─── */
.name {
  background: var(--ink);
  color: var(--white);
}
.name .section__label { color: rgba(255,255,255,0.4); }
.name__hero {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 5vw, 60px);
  margin-bottom: 56px;
}
.name__word { flex: 1; }
.name__word--right { text-align: right; }
.name__big {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.name__word:first-child .name__big { color: var(--rust-light); }
.name__word--right      .name__big { color: var(--green-light); }
.name__lang {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.name__def p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}
.name__divider {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  color: rgba(255,255,255,0.12);
  padding-top: clamp(2rem, 4vw, 3.5rem);
  user-select: none;
}
.name__summary {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.name__summary p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}
.name__summary strong {
  color: var(--white);
  font-style: normal;
}

/* ─── FIND US ─── */
.find { background: var(--cream); }
.find__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.find__card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth), border-color 0.3s;
  cursor: pointer;
}
.find__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.find__card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.find__card-icon svg { width: 24px; height: 24px; }
.find__card--instagram .find__card-icon { background: var(--rust-pale);  color: var(--rust); }
.find__card--maps      .find__card-icon { background: var(--green-pale); color: var(--green); }
.find__card--tiktok    .find__card-icon { background: #F0F0F0;            color: var(--ink); }
.find__card--address   .find__card-icon { background: var(--green-pale); color: var(--green); }
.find__card-text { flex: 1; }
.find__card-text h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.find__card-text span {
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.find__card-arrow {
  font-size: 1.1rem;
  color: var(--ink-muted);
  transition: transform 0.25s var(--ease-smooth), color 0.25s;
}
.find__card:hover .find__card-arrow {
  transform: translateX(4px);
  color: var(--rust);
}
.find__card--instagram:hover { border-color: rgba(139,53,32,0.2); }
.find__card--maps:hover      { border-color: rgba(26,74,53,0.2); }

/* ─── FOOTER ─── */
.footer {
  background: var(--ink);
  padding-block: 48px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer__logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.6);
}
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─── SCROLL FADE-IN ─── */
.observe {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.observe.visible { opacity: 1; transform: translateY(0); }
.observe-delay-1 { transition-delay: 0.1s; }
.observe-delay-2 { transition-delay: 0.2s; }
.observe-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(251,248,243,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 16px 0 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  }
  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; text-align: center; }
  .nav__links a { display: block; padding: 14px 24px; font-size: 15px; }
  .nav__links a::after { display: none; }
  .nav__toggle { display: flex; }

  .story__grid  { grid-template-columns: 1fr; }
  .vision__grid { grid-template-columns: 1fr; }
  .find__grid   { grid-template-columns: 1fr; }

  .name__hero { flex-direction: column; gap: 32px; }
  .name__divider { display: none; }
  .name__word--right { text-align: left; }
}

@media (max-width: 480px) {
  .story__card   { padding: 20px; }
  .vision__block { padding: 28px 24px; }
  .find__card    { padding: 20px; }
}
