:root {
  --bg: #f7f3ed;
  --paper: #fffaf3;
  --ink: #24211d;
  --muted: #746c62;
  --line: #e5d8c8;
  --accent: #8f2f25;
  --accent-dark: #6f231c;
  --gold: #b88746;
  --shadow: 0 18px 45px rgba(70, 50, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(184, 135, 70, 0.12), transparent 32rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 243, 237, 0.94)),
    var(--bg);
}

a {
  color: inherit;
}

.site-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 22px 16px 36px;
}

.cover {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.brand {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.brand-logo {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.brand-logo.small {
  width: 64px;
  height: 64px;
  border-width: 3px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 8vw, 4.2rem);
  font-weight: 700;
  line-height: 0.98;
}

.intro {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.home-photo {
  width: 100%;
  min-height: 150px;
  height: clamp(150px, 30vw, 260px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.section-link {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 9px 24px rgba(70, 50, 28, 0.08);
  font-size: 1.05rem;
  font-weight: 700;
}

.section-link::after {
  content: ">";
  color: var(--accent);
  font-size: 1.2rem;
}

.social-section {
  margin-top: 14px;
}

.social-link {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.social-link::after {
  color: white;
}

.contact-panel {
  margin-top: 14px;
  padding: 14px;
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 9px 24px rgba(70, 50, 28, 0.08);
}

.contact-panel h2 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.contact-panel p {
  margin: 6px 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.35;
}

.contact-panel a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  text-decoration: underline;
}

.section-link:focus-visible,
.section-link:hover,
.back-link:focus-visible,
.back-link:hover,
.sections-toggle:focus-visible,
.sections-toggle:hover {
  outline: 3px solid rgba(143, 47, 37, 0.22);
  border-color: rgba(143, 47, 37, 0.45);
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  background: rgba(247, 243, 237, 0.94);
  backdrop-filter: blur(10px);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.header-title {
  min-width: 0;
}

.header-title strong {
  display: block;
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-title span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.sections-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: white;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 8px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.hamburger {
  width: 18px;
  display: grid;
  gap: 4px;
}

.hamburger span {
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.section-nav {
  display: none;
  margin: 4px 0 18px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-nav.is-open {
  display: grid;
  gap: 6px;
}

.section-nav a {
  padding: 12px;
  color: var(--ink);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
}

.section-nav a:hover,
.section-nav a[aria-current="page"] {
  color: var(--accent-dark);
  background: rgba(143, 47, 37, 0.08);
}

.menu-section {
  padding: 18px 0 26px;
}

.section-heading {
  margin: 18px 0 16px;
}

.section-heading h1 {
  font-size: clamp(2rem, 9vw, 3.4rem);
}

.menu-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.item-name {
  min-width: 0;
  font-weight: 700;
  line-height: 1.28;
}

.item-price {
  color: var(--accent-dark);
  font-weight: 800;
  line-height: 1.28;
  text-align: right;
  white-space: nowrap;
}

.item-desc {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.subsection-title {
  margin: 24px 0 8px;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.note {
  margin: 20px 0 0;
  padding: 14px;
  color: var(--muted);
  background: rgba(255, 250, 243, 0.8);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.back-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 12px 16px;
  color: white;
  text-decoration: none;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-weight: 800;
}

.site-footer {
  padding: 22px 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.site-footer a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.install-card {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  max-width: 460px;
  margin: 0 auto;
  padding: 14px;
  background: rgba(255, 250, 243, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.install-card[hidden] {
  display: none;
}

.install-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.install-icon {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.install-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.install-text {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.install-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.install-button,
.install-close {
  min-height: 42px;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.install-button {
  flex: 1;
  color: white;
  background: var(--accent);
  border: 1px solid var(--accent);
}

.install-button:disabled {
  color: var(--muted);
  background: rgba(116, 108, 98, 0.12);
  border-color: var(--line);
  cursor: default;
}

.install-close {
  width: 44px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
}

.install-steps {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.install-steps li + li {
  margin-top: 4px;
}

@media (min-width: 680px) {
  .site-shell {
    padding-inline: 28px;
  }

  .cover {
    min-height: 92vh;
  }

  .section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-link {
    min-height: 66px;
    padding: 18px 20px;
  }

  .menu-list {
    gap: 4px;
  }

  .menu-item {
    padding-block: 15px;
  }
}

@media (min-width: 940px) {
  .cover {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .brand {
    justify-items: start;
    text-align: left;
  }

  .brand-logo {
    width: 138px;
    height: 138px;
  }
}
