@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --bg: #FFFDF7;
  --bg-aged: #F5EDD8;
  --bg-card: #FFFEF5;
  --text: #2C1810;
  --accent: #8B4513;
  --accent2: #A0522D;
  --muted: #6B5040;
  --border: rgba(139, 69, 19, 0.25);
  --border-dark: rgba(139, 69, 19, 0.5);
  --rule: #2C1810;
  --highlight: #F0E6C8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
  color: var(--text);
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg);
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 27px,
    rgba(139,69,19,0.06) 27px,
    rgba(139,69,19,0.06) 28px
  );
  background-attachment: local;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

h1 {
  font-family: 'Caveat', cursive;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--text);
}
h2 {
  font-family: 'Caveat', cursive;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 48px;
  color: var(--text);
}
h3 {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.label {
  font-family: 'Lora', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 16px;
  font-style: italic;
}
p { color: var(--muted); }

section {
  padding: 100px 100px;
  position: relative;
}
.paper-photo {
  filter: sepia(15%) grayscale(10%);
}
.hand-divider {
  width: 100%;
  height: 20px;
}
.hand-divider svg {
  width: 100%;
  height: 100%;
}

.card {
  background: var(--bg-card);
  box-shadow: 2px 2px 0 rgba(139,69,19,0.08), 4px 4px 12px rgba(139,69,19,0.12);
  padding: 32px;
  border-radius: 2px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: rotate(0deg) translateY(-4px) !important;
  box-shadow: 4px 6px 20px rgba(139,69,19,0.2);
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(225deg, var(--bg-aged) 50%, transparent 50%);
}
.card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  width: 48px;
  height: 16px;
  background: rgba(255,220,120,0.6);
  border-radius: 2px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #FFFDF7;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 22px;
  padding: 14px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(44,24,16,0.3);
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
  transform: rotate(-0.5deg);
}
.btn-primary:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 4px 5px 0 rgba(44,24,16,0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--accent);
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 22px;
  padding: 13px 34px;
  border: 2px solid var(--border-dark);
  border-radius: 3px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  transform: rotate(0.5deg);
}
.btn-secondary:hover {
  background: var(--highlight);
  transform: rotate(0deg);
}
.full { width: 100%; justify-content: center; }

.site-nav nav {
  padding: 24px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}
.menu {
  display: flex;
  gap: 16px;
  align-items: center;
}
.menu a {
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
  text-decoration: underline transparent;
  transition: color .2s, text-decoration-color .2s;
}
.menu a:hover,
.menu a.active {
  color: var(--accent);
  text-decoration-color: var(--accent);
}
.nav-phone {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.burger {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 3px;
  align-items: center;
  justify-content: center;
}
.burger svg { width: 24px; height: 24px; }
.menu-close { display: none; }

.hero {
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-bg-number {
  position: absolute;
  right: -80px;
  top: -60px;
  z-index: 0;
  user-select: none;
  font-family: 'Caveat', cursive;
  font-size: 600px;
  color: rgba(139,69,19,0.04);
  line-height: 1;
}
.hero-note {
  position: absolute;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: rgba(139,69,19,0.2);
  z-index: 0;
}
.hero-note.n1 { top: 15%; left: 5%; transform: rotate(-8deg); }
.hero-note.n2 { bottom: 20%; right: 8%; transform: rotate(4deg); }
.hero-note.n3 { top: 40%; right: 12%; transform: rotate(-3deg); }
.hero-arrow {
  position: absolute;
  width: 70px;
  opacity: .2;
  z-index: 0;
}
.hero-arrow.a1 { left: 3%; top: 30%; }
.hero-arrow.a2 { right: 20%; top: 58%; }
.hero-arrow.a3 { right: 6%; top: 26%; }

.hero-main {
  position: relative;
  z-index: 1;
  width: 70%;
}
.top10 {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: rgba(139,69,19,0.4);
}
.hero-wave {
  display: block;
  margin-top: -16px;
  margin-bottom: 24px;
  width: 280px;
  height: 12px;
}
.hero-sub {
  font-size: 20px;
  font-style: italic;
  max-width: 420px;
}

.hero-action-card {
  position: absolute;
  right: 100px;
  bottom: 80px;
  width: 280px;
  transform: rotate(2deg);
  z-index: 1;
}
.hero-action-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}
.hero-photo {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 2px;
  margin-top: 16px;
  box-shadow: 4px 4px 16px rgba(139,69,19,0.2);
  transform: rotate(-1deg);
}

.hero-facts {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 32px;
  position: relative;
  z-index: 1;
  align-items: flex-start;
}
.fact-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 12px;
  width: 100%;
}
.hero-fact strong {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero-fact span {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

.manifesto { background: var(--bg-aged); }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.manifesto p { font-size: 19px; margin-bottom: 18px; }
.sticky-note {
  display: inline-block;
  margin-top: 32px;
  background: rgba(255,220,120,0.5);
  border-radius: 2px;
  padding: 16px 20px;
  transform: rotate(-2deg);
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: var(--text);
}
.manifesto-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 4px 4px 16px rgba(139,69,19,0.2);
  transform: rotate(-1deg);
}
.hand-sign {
  margin-top: 12px;
  font-family: 'Caveat', cursive;
  font-style: italic;
  font-size: 18px;
  text-align: center;
}
.hand-sign.center { text-align: center; }
.growth-doodle {
  width: 100%;
  height: 120px;
  margin-top: 8px;
}

.notebook-container {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: stretch;
}
.notebook-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 160px;
  flex-shrink: 0;
}
.notebook-tab {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg-aged);
  padding: 12px 20px;
  border-radius: 3px 0 0 3px;
  cursor: pointer;
  transition: all .2s;
  transform: translateX(0);
  border-right: 3px solid var(--border);
}
.notebook-tab.active {
  color: var(--accent);
  background: var(--bg-card);
  transform: translateX(8px);
  border-right: 3px solid var(--accent);
  box-shadow: 2px 2px 8px rgba(139,69,19,0.15);
}
.notebook-content {
  flex: 1;
  background: var(--bg-card);
  padding: 40px;
  box-shadow: 3px 3px 12px rgba(139,69,19,0.1);
  border-radius: 0 4px 4px 4px;
  border: 1px solid var(--border);
  min-height: 360px;
}
.notebook-panel { display: none; }
.notebook-panel.active { display: block; }
.notebook-panel p { margin-bottom: 14px; }
.panel-photo {
  float: right;
  width: 220px;
  height: 180px;
  object-fit: cover;
  margin: 0 0 12px 18px;
}
.notebook-panel:nth-child(1) .panel-photo { transform: rotate(2deg); }
.notebook-panel:nth-child(2) .panel-photo { transform: rotate(-1deg); }
.notebook-panel:nth-child(3) .panel-photo { transform: rotate(1.5deg); }
.notebook-panel:nth-child(4) .panel-photo { transform: rotate(-2deg); }
.notebook-panel:nth-child(5) .panel-photo { transform: rotate(1deg); }
.notebook-panel:nth-child(6) .panel-photo { transform: rotate(-1.5deg); }
.hand-list { list-style: none; }
.hand-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
}
.hand-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent);
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
}

.cases-pinboard { background: var(--bg-aged); }
.pinboard {
  position: relative;
  min-height: 600px;
}
.pin-card {
  position: absolute;
  width: 320px;
}
.pin-card .pin {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
}
.pin-card.c1 { left: 0; top: 40px; width: 340px; transform: rotate(-2deg); }
.pin-card.c2 { left: 360px; top: 0; width: 300px; transform: rotate(1.5deg); }
.pin-card.c3 { right: 0; top: 60px; width: 320px; transform: rotate(-1deg); }
.case-tag {
  font-size: 12px;
  font-style: italic;
  color: var(--muted);
}
.case-lead {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  line-height: 1.15;
  color: var(--text);
  margin: 6px 0 8px;
}
.case-stats {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}
.case-stats span {
  font-family: 'Caveat', cursive;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}
.pin-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin-top: 16px;
}

.numbers-handwritten {
  padding: 80px 100px;
  background: var(--text);
}
.numbers-row {
  display: flex;
}
.number-item {
  flex: 1;
  padding: 18px 26px;
  border-right: 1px solid rgba(255,253,247,0.1);
}
.number-item:last-child { border-right: none; }
.number-item strong {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: clamp(72px,10vw,120px);
  color: var(--bg);
  line-height: 1;
}
.number-item p {
  font-style: italic;
  font-size: 16px;
  color: rgba(255,253,247,0.5);
}
.numbers-note {
  margin-top: 32px;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: rgba(255,253,247,0.35);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.process-title {
  font-size: 28px;
  color: var(--accent);
}
.chef-icon {
  width: 48px;
  height: 48px;
  margin: 8px 0 18px;
}
.ingredients {
  display: grid;
  gap: 4px;
}
.ingredients li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}
.ingredients li span { color: var(--text); }
.ingredients li em {
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-size: 22px;
  color: var(--accent);
}
.steps {
  list-style: none;
  display: grid;
  gap: 10px;
}
.steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}
.steps b {
  font-family: 'Caveat', cursive;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}
.steps h4 {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--text);
}
.steps p { font-size: 16px; }
.steps small {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
}

.pricing-menu { background: var(--bg-aged); }
.menu-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px;
}
.menu-rule { width: 100%; height: 12px; margin: 8px 0 18px; }
.menu-sub {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}
.menu-item strong {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--text);
}
.menu-item p {
  font-size: 14px;
  font-style: italic;
}
.menu-item > span {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.rec-item {
  transform: rotate(-0.5deg);
  background: rgba(255,220,120,0.2);
  border: 1px solid rgba(139,69,19,0.2);
  padding: 14px 12px;
}
.rec-item i { font-size: 18px; color: var(--accent); font-style: normal; }
.included {
  list-style: none;
  display: grid;
  gap: 6px;
  margin: 8px 0 10px;
}
.included li { font-size: 15px; color: var(--muted); }
.center-btn { display: block; width: max-content; margin: 24px auto 0; }

.reviews-columns {
  columns: 2;
  column-gap: 32px;
}
.letter {
  break-inside: avoid;
  margin-bottom: 24px;
}
.letter:nth-child(1) { transform: rotate(-2deg); }
.letter:nth-child(2) { transform: rotate(1.5deg); }
.letter:nth-child(3) { transform: rotate(-1deg); }
.letter:nth-child(4) { transform: rotate(2deg); }
.letter:nth-child(5) { transform: rotate(-1.5deg); }
.letter:nth-child(6) { transform: rotate(1deg); }
.stamp {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 2px solid var(--border-dark);
}
.letter time {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 14px;
}
.letter p {
  font-size: 17px;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
}
.letter-line {
  width: 100%;
  height: 12px;
  margin: 14px 0 10px;
}
.sign {
  display: flex;
  gap: 12px;
  align-items: center;
}
.sign img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.sign h3 {
  font-size: 22px;
  margin: 0;
}
.sign span {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.faq-notes { background: var(--bg-aged); }
.faq-item {
  border-bottom: 1.5px dashed var(--border);
  padding: 28px 0;
}
.faq-btn {
  width: 100%;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}
.q {
  width: 32px;
  flex-shrink: 0;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--accent);
}
.q-text {
  flex: 1;
  text-align: left;
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--text);
}
.faq-btn svg {
  width: 20px;
  height: 20px;
  transition: transform .25s;
}
.faq-item.open .faq-btn svg { transform: rotate(180deg); }
.faq-answer {
  padding: 16px 0 0 44px;
  border-left: 2px solid var(--border);
  margin-left: 16px;
}
.faq-answer p { font-size: 17px; }
.faq-item:not(.open) .faq-answer { display: none; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.fact-list {
  margin-top: 20px;
}
.fact-list p {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1.5px dashed var(--border);
  padding: 12px 0;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--text);
}
.fact-list svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-grid .paper-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-top: 32px;
  border-radius: 2px;
  box-shadow: 4px 4px 16px rgba(139,69,19,0.15);
  transform: rotate(-1.5deg);
}

.notepad {
  padding: 40px;
  background: var(--bg-card);
}
.spiral { width: 100%; height: 18px; margin-bottom: 8px; }
.notepad-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(139,69,19,0.3);
  padding: 12px 0;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  transition: border-color .2s;
  display: block;
  resize: vertical;
}
.notepad-field::placeholder {
  color: rgba(139,69,19,0.3);
  font-style: italic;
}
.notepad-field:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.notepad-label {
  font-family: 'Lora', serif;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
  margin-top: 20px;
}
.privacy {
  margin-top: 12px;
  font-size: 12px;
  font-style: italic;
}
.privacy a { color: var(--accent); text-decoration: underline; }
.thank-you { display: none; text-align: center; padding: 40px; }
.thank-you.show { display: block; }
.thank-you svg { width: 60px; height: 60px; margin: 0 auto 12px; }
.thank-you h3 { font-size: 36px; }

.contacts-postcard { background: var(--bg-aged); }
.postcard-grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  align-items: stretch;
}
.postcard-map {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 3px 0 0 3px;
  filter: sepia(20%);
}
.postcard-info {
  position: relative;
  border-left: 3px dashed var(--border);
  padding: 40px 40px 40px 60px;
}
.post-stamps {
  position: absolute;
  right: 18px;
  top: 14px;
  display: flex;
  gap: 6px;
}
.post-stamps span {
  width: 44px;
  height: 52px;
  border: 2px solid var(--border-dark);
}
.postcard-info small {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
}
.accent-link {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--accent);
}
.postcard-info .accent {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: var(--text);
}
.socials-hand {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.socials-hand a {
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: var(--accent);
}

footer {
  background: var(--text);
  padding: 48px 100px;
  color: rgba(255,253,247,0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-left strong {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--bg);
}
.footer-left p,
.footer-mid,
.footer-right {
  font-size: 14px;
  color: rgba(255,253,247,0.7);
}
.footer-mid a {
  color: rgba(255,253,247,0.5);
}
.footer-mid a:hover { color: rgba(255,253,247,0.9); }

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFDF7;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 rgba(44,24,16,0.3);
  z-index: 150;
  transform: rotate(-1deg);
}
.floating-call.show { display: inline-flex; }
.floating-call span {
  font-family: 'Caveat', cursive;
  font-size: 30px;
  line-height: 1;
}

.fade {
  opacity: 0;
  transform: translateY(16px);
  transition: .8s ease;
}
.fade.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  section { padding: 60px 20px; }
  .site-nav nav { padding: 16px 20px; }
  h1 { font-size: 52px; }
  h2 { font-size: 40px; }

  .hero-action-card { position: static; width: 100%; margin-top: 32px; transform: rotate(0.5deg); }
  .hero-main { width: 100%; }
  .hero-photo {
    display: block;
    width: 100%;
    height: 180px;
    margin-top: 16px;
    transform: rotate(-1deg);
  }
  .hero-facts { flex-wrap: wrap; gap: 20px; align-items: center; justify-content: center; text-align: center; }
  .hero-fact { width: calc(50% - 10px); }
  .hero-note, .hero-arrow { display: none; }
  .hero-bg-number { font-size: 320px; right: -70px; top: 20px; }

  .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }

  .notebook-container { flex-direction: column; }
  .notebook-tabs { flex-direction: row; width: 100%; overflow-x: auto; }
  .notebook-tab { border-radius: 3px 3px 0 0; border-right: none; border-bottom: 3px solid var(--border); transform: none; white-space: nowrap; }
  .notebook-tab.active { transform: none; border-bottom: 3px solid var(--accent); }
  .notebook-content { border-radius: 0 4px 4px 4px; padding: 24px 18px; }
  .panel-photo { float: none; width: 100%; height: 180px; margin: 0 0 12px; transform: none !important; }

  .pinboard { min-height: auto; }
  .pinboard .card { position: static !important; width: 100% !important; transform: rotate(-0.5deg) !important; margin-bottom: 24px; }

  .numbers-row { flex-wrap: wrap; }
  .number-item { width: 50%; border-right: none; border-bottom: 1px solid rgba(255,253,247,0.1); padding: 24px; }
  .numbers-handwritten {padding: 60px 20px;}
  .process-grid { grid-template-columns: 1fr; gap: 40px; }

  .menu-card { padding: 28px 20px; }
  .menu-item { flex-direction: column; align-items: flex-start; }

  .reviews-columns { columns: 1; }

  .form-grid { grid-template-columns: 1fr; gap: 40px; }

  .postcard-grid { grid-template-columns: 1fr; }
  .postcard-map { height: 260px; border-radius: 3px 3px 0 0; }
  .postcard-info { padding: 32px 24px; border-left: none; border-top: 3px dashed var(--border); }

  footer { flex-direction: column; gap: 20px; text-align: center; padding: 36px 20px; }
  .footer-left p, .footer-mid, .footer-right 

  .menu, .nav-phone { display: none; }
  .menu.open {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 220;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    padding: 72px 20px 20px;
    gap: 12px;
  }
  .menu.open a {
    width: 100%;
    max-width: 360px;
    padding: 10px 12px;
    text-align: center;
    border-bottom: 1px dashed var(--border);
  }
  .menu.open .menu-close {
    display: inline-flex;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    align-items: center;
    justify-content: center;
    background: var(--bg);
    color: var(--accent);
    font-size: 20px;
  }
  .burger { display: inline-flex; }
}

@media (min-width: 768px) and (max-width: 1279px) {
  section { padding: 80px 60px; }
  .site-nav nav { padding: 20px 60px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 60px; }
  .notebook-container { flex-direction: column; }
  .notebook-tabs { flex-direction: row; width: 100%; overflow: auto; }
  .notebook-tab { border-radius: 3px 3px 0 0; border-right: none; border-bottom: 3px solid var(--border); transform: translateY(0); white-space: nowrap; }
  .notebook-tab.active { transform: translateY(-4px); border-bottom: 3px solid var(--accent); }
  .pinboard .card { position: static !important; width: 100% !important; margin-bottom: 24px; }
  .form-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .postcard-grid { grid-template-columns: 55fr 45fr; }
  footer { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1280px) {
  .manifesto-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .notebook-container { display: flex; flex-direction: row; align-items: stretch; }
  .notebook-tabs { flex-direction: column; width: 160px; }
  .pinboard { position: relative; min-height: 600px; }
  .form-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .postcard-grid { grid-template-columns: 60fr 40fr; }
  footer { display: flex; flex-direction: row; justify-content: space-between; align-items: center; }
}
