:root {
  --bg: #e8d4c4;
  --bg-soft: #f3e6da;
  --paper: #fffaf5;
  --paper-80: rgba(255, 250, 245, 0.82);
  --burgundy: #7a1f18;
  --burgundy-hover: #5c1611;
  --ink: #2b1814;
  --muted: #6d5248;
  --line: rgba(43, 24, 20, 0.12);
  --rose: #c4a090;
  --white: #fffdfb;
  --shadow: 0 18px 48px rgba(80, 40, 28, 0.1);
  --radius: 14px;
  --header-h: 108px;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Montserrat", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 100;
  background: var(--burgundy);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: relative;
  z-index: 20;
}

.page-home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 48px 18px;
}

.header-panel {
  display: contents;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
  justify-self: start;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.brand-text strong {
  font-size: 15px;
  font-weight: 700;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  position: relative;
  padding: 4px 0;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--burgundy);
}

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--burgundy);
}

.founder {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  line-height: 1.25;
  font-size: 12px;
  color: var(--muted);
  justify-self: end;
}

.founder strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  justify-self: end;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  margin: 0 auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 1.15fr);
  align-items: stretch;
}

.hero-copy {
  padding: calc(var(--header-h) + 36px) 24px 200px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
}

.hero h1 {
  margin: 0 0 36px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.5rem, 4.6vw, 4.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--burgundy);
}

.hero-photo {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 22%;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(232, 212, 196, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--burgundy);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  width: fit-content;
}

.btn:hover {
  background: var(--burgundy-hover);
}

.btn:focus-visible,
.nav a:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
}

.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  box-shadow: inset 0 0 0 1.5px var(--burgundy);
}

.btn-ghost:hover {
  background: var(--burgundy);
  color: var(--white);
}

.features {
  position: absolute;
  left: 48px;
  bottom: 32px;
  z-index: 2;
  width: min(760px, 58vw);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 8px;
}

.feature {
  padding: 4px 22px;
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: 0;
}

.feature-num {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}

.feature strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 40px 80px;
}

.page-intro {
  margin-bottom: 40px;
  max-width: 720px;
}

.page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 40px;
}

.page-hero .page-intro {
  margin-bottom: 0;
  max-width: none;
}

.page-visual,
.page-banner {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}

.page-visual img,
.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-visual img {
  min-height: 320px;
  max-height: 420px;
}

.page-banner {
  margin: 0 0 32px;
}

.page-banner img {
  height: 280px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.page h1 {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: var(--burgundy);
}

.lede {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.card p:not(.price):not(.price-note) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.section-grid {
  display: grid;
  gap: 18px;
}

.section-grid.two {
  grid-template-columns: 1fr 1fr;
}

.section-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-wide {
  grid-column: 1 / -1;
}

.card {
  background: var(--paper-80);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h2,
.card h3 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
}

.card .price {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--burgundy);
  background: rgba(122, 31, 24, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 0 12px;
}

.card .price-note {
  margin: -4px 0 12px;
  font-size: 13px;
  color: var(--muted);
}

.card .price + p:not(.price-note),
.card .price-note + p {
  margin-top: 4px;
}

.draft-banner {
  background: rgba(122, 31, 24, 0.08);
  border: 1px solid rgba(122, 31, 24, 0.16);
  color: var(--burgundy);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 24px;
}

.placeholder {
  margin: 0;
  border: 1.5px dashed rgba(122, 31, 24, 0.32);
  background: rgba(255, 251, 247, 0.55);
  padding: 18px 20px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

.placeholder + .placeholder,
.card .placeholder {
  margin-top: 12px;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-values {
  margin-top: 28px;
}

.about-photo {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-soft);
  min-height: 420px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  min-height: 420px;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.review-body p + p {
  margin-top: 12px;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 16px;
}

.review-meta strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.review-place {
  display: block;
  margin-top: 3px;
}

.review-lang {
  white-space: nowrap;
  font-weight: 600;
  color: var(--burgundy);
}

.cta-band {
  margin-top: 48px;
  background: var(--paper-80);
  border-radius: 18px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow);
}

.cta-band > div {
  flex: 1;
  min-width: 0;
}

.cta-band .btn {
  flex-shrink: 0;
}

.cta-band h2 {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.qr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}

.qr-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 28px 24px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

.qr-card h2 {
  margin: 0 0 6px;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
}

.qr-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.qr-code {
  display: block;
  width: min(280px, 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.qr-code img {
  width: 100%;
  height: auto;
  display: block;
}

.qr-handle {
  margin: 14px 0 0;
  font-weight: 600;
  font-size: 14px;
}

.qr-handle a {
  color: var(--burgundy);
  text-decoration: none;
}

.qr-handle a:hover {
  text-decoration: underline;
}

.site-footer {
  padding: 28px 40px 36px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.page-home .site-footer {
  display: none;
}

.site-footer a {
  color: var(--burgundy);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    padding: 16px 24px;
  }

  .nav {
    gap: 18px;
  }

  .hero-copy {
    padding-left: 32px;
    padding-right: 16px;
  }

  .features {
    left: 24px;
    width: min(680px, 62vw);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .header-panel {
    display: none;
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    background: var(--paper);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    z-index: 30;
  }

  body.nav-open .header-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .founder {
    align-items: flex-start;
    text-align: left;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero,
  .about-layout,
  .page-hero,
  .section-grid.two,
  .section-grid.three,
  .qr-grid {
    grid-template-columns: 1fr;
  }

  .page-visual img {
    min-height: 240px;
    max-height: 280px;
  }

  .page-banner img {
    height: 200px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: calc(var(--header-h) + 12px) 24px 28px;
    max-width: none;
  }

  .hero-photo {
    min-height: 52vh;
    order: 1;
  }

  .features {
    order: 2;
  }

  .hero-photo::before {
    width: 100%;
    height: 18%;
    inset: 0 0 auto;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(232, 212, 196, 0) 100%);
  }

  .features {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 32px);
    margin: -36px 16px 24px;
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px 18px;
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .page {
    padding: 16px 20px 64px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 28px;
  }

  .page-home .site-footer {
    display: flex;
  }
}

@media (max-width: 560px) {
  .brand-text span:nth-child(1),
  .brand-text span:nth-child(2) {
    display: none;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .btn {
    width: 100%;
  }
}
