
:root {
  --header-bg: #B7BBAC;
  --background: #B7BBAC;
  --accent: #ffe059;
  --text: #5b6143;
  --deep: #50523d;
  --white: #ffffff;
  --surface: rgba(255,255,255,0.6);
  --shadow: 0 14px 36px rgba(46, 49, 38, 0.12);
  --radius: 22px;
  --content: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--background);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(183, 187, 172, 0.98);
  border-bottom: 1px solid rgba(91,97,67,.12);
}
.header-inner {
  max-width: var(--content);
  margin: 0 auto;
  min-height: 92px;
  padding: 12px 28px;
  display: grid;
  grid-template-columns: 310px 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.brand img {
  width: 220px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
}
.nav-link {
  position: relative;
  color: var(--text);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 10px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--text);
  transition: right .2s ease;
}
.nav-link:hover::after,
.nav-link.active::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lang-switch button {
  border: 0;
  padding: 6px 4px;
  background: transparent;
  color: rgba(91,97,67,.74);
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.lang-switch button.active { color: var(--deep); font-weight: 600; }

.primary-btn, .secondary-btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: .03em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.primary-btn {
  background: #b7bbac;
  color: #50523d;
  box-shadow: 0 10px 24px rgba(46,49,38,.12);
}
.primary-btn:hover { transform: translateY(-1px); background: #c4c7bc; }
.secondary-btn {
  border: 1px solid rgba(80,82,61,.26);
  color: var(--header-bg);
  background: rgba(255,255,255,.4);
}
.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(91,97,67,.25);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}
.mobile-panel { display: none; }

.home-hero {
  min-height: calc(100vh - 92px);
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.26) 0%, rgba(0,0,0,.10) 35%, rgba(0,0,0,.18) 100%),
    url('assets/home-flowers.png');
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}
.home-hero-inner {
  width: 100%;
  max-width: var(--content);
  margin: 0 auto;
  padding: 80px 28px 110px;
}
.home-message {
  max-width: none;
  width: max-content;
  padding-top: 120px;
}
.home-message h1 {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
}
.home-message p {
  margin: 0 0 30px;
  color: rgba(255,255,255,.92);
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.6;
  font-style: italic;
  white-space: nowrap;
}

.page-shell {
  max-width: var(--content);
  margin: 0 auto;
  padding: 74px 28px 110px;
}
.page-hero {
  padding: 24px 0 44px;
  border-bottom: 1px solid rgba(80,82,61,.18);
}
.page-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--deep);
}
.page-title {
  margin: 12px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1;
  color: var(--deep);
}
.page-intro {
  max-width: 740px;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 42px 0;
}
.placeholder-card {
  min-height: 250px;
  border: 1px dashed rgba(80,82,61,.34);
  border-radius: var(--radius);
  background: rgba(255,255,255,.22);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.placeholder-card h3 {
  margin: 0 0 8px;
  color: var(--deep);
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 28px;
}
.placeholder-card p {
  margin: 0;
  line-height: 1.6;
  opacity: .82;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 42px;
}
.contact-card,
.form-card {
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
.contact-row {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(80,82,61,.14);
}
.contact-label {
  display: block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.contact-value {
  color: var(--deep);
  font-size: 18px;
}
.form-grid { display: grid; gap: 16px; }
label {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
input, textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(80,82,61,.25);
  border-radius: 14px;
  background: rgba(255,255,255,.42);
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  color: var(--deep);
}
textarea { min-height: 130px; resize: vertical; }
.site-footer {
  background: #aab09e;
  color: rgba(80,82,61,.9);
}
.footer-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img {
  width: 145px;
  height: auto;
  object-fit: contain;
}
.footer-copy { font-size: 12px; }

@media (max-width: 1040px) {
  .header-inner { grid-template-columns: 250px 1fr auto; }
  .desktop-nav { gap: 18px; }
  .nav-link { font-size: 11px; }
}
@media (max-width: 820px) {
  .header-inner {
    min-height: 78px;
    grid-template-columns: 1fr auto;
    padding: 10px 18px;
  }
  .brand img { width: 182px; }
  .desktop-nav, .header-actions { display: none; }
  .mobile-menu-btn { display: inline-grid; place-items: center; }
  .mobile-panel {
    position: fixed;
    inset: 78px 0 auto 0;
    background: rgba(183, 187, 172, 0.98);
    padding: 18px;
    border-top: 1px solid rgba(91,97,67,.08);
  }
  .mobile-panel.open { display: block; }
  .mobile-nav { display: grid; gap: 4px; }
  .mobile-nav .nav-link { font-size: 15px; padding: 14px 8px; }
  .mobile-controls {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(91,97,67,.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .home-hero { min-height: calc(100vh - 78px); background-position: 62% center; }
  .home-hero-inner { padding: 50px 20px 70px; }
 .home-message { max-width: none; width: max-content; padding-top: 130px; }
  .home-message h1 { font-size: clamp(18px, 4.8vw, 30px); }
  .home-message p { font-size: clamp(11px, 2.9vw, 16px); }
  .placeholder-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .home-message h1 { font-size: clamp(16px, 4.3vw, 22px); }
  .home-message p { font-size: clamp(10px, 2.65vw, 14px); }
  .page-shell { padding-left: 18px; padding-right: 18px; }
  .page-title { font-size: 50px; }
  .contact-card, .form-card { padding: 22px; }
  .primary-btn { min-height: 46px; padding: 0 22px; }
}


/* language helpers */
html[lang="en"] .lang-ru { display: none !important; }
html[lang="ru"] .lang-en { display: none !important; }

.about-page {
  padding-top: 56px;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 56px;
  align-items: start;
}
.about-eyebrow {
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 14px;
}
.about-headline {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  color: var(--deep);
}
.about-subtitle {
  margin: 0 0 26px;
  max-width: 740px;
  font-size: 18px;
  line-height: 1.75;
}
.about-content {
  font-size: 18px;
  line-height: 1.9;
}
.about-content p {
  margin: 0 0 18px;
}
.about-lead {
  font-size: 28px;
  line-height: 1.35;
  color: var(--deep);
  margin-bottom: 16px;
}
.about-content ul {
  margin: 4px 0 22px 0;
  padding: 0;
  list-style: none;
}
.about-content li {
  position: relative;
  padding-left: 24px;
  margin: 0 0 12px;
}
.about-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--deep);
}
.about-content strong {
  color: var(--deep);
}
.about-signoff {
  color: var(--deep);
  font-weight: 600;
}
.about-media {
  position: sticky;
  top: 116px;
}
.about-photo-stack {
  position: relative;
  min-height: 0;
  padding-bottom: 0;
}
.about-photo-main {
  width: min(100%, 500px);
  margin-left: auto;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.34);
}
.about-photo-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about-bio-card {
  margin-top: 26px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 24px;
  padding: 24px 24px 22px;
  box-shadow: var(--shadow);
}
.about-bio-label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--deep);
}
.about-bio-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}
.mobile-short { display: none; }
.desktop-full { display: block; }

@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-media {
    position: static;
    order: -1;
  }
  .about-photo-stack {
    min-height: 0;
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 40px;
  }
  .about-photo-main {
    width: min(100%, 430px);
  }
}

@media (max-width: 820px) {
  .about-page {
    padding-top: 28px;
  }
  .about-grid {
    gap: 28px;
  }
  .about-headline {
    font-size: 42px;
  }
  .about-subtitle,
  .about-content {
    font-size: 17px;
    line-height: 1.75;
  }
  .about-lead {
    font-size: 24px;
  }
  .about-photo-stack {
    padding-bottom: 22px;
  }
  .about-photo-main {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
  .desktop-full { display: none; }
  .mobile-short { display: block; }
}
