* { box-sizing: border-box; }
:root{
  --bg: #f2ebe4;
  --panel: #f6efe8;
  --stroke: #d7c4b3;
  --heading: #7b5637;
  --text: #5f4736;
  --hero: #4e3526;
}
html, body { margin: 0; padding: 0; }
body{
  background:
    radial-gradient(1200px 520px at 50% 2%, rgba(255,255,255,0.92), rgba(255,255,255,0) 70%),
    linear-gradient(#f4ede6, #efe4d8);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
}
.page{ width: min(1230px, calc(100vw - 64px)); margin: 0 auto; padding: 72px 0 52px; }
.hero{ text-align: center; margin-bottom: 58px; }
.hero h1{ margin: 0 0 22px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 46px; line-height: 1; color: var(--hero); font-weight: 500; letter-spacing: 0.2px; }
.hero p{ width: min(1120px, 94%); margin: 0 auto; font-size: 14px; line-height: 1.85; color: #6a5140; }
.cards{ display: grid; gap: 28px; }
.city-card{ display: grid; grid-template-columns: 340px 1fr; min-height: 286px; background: rgba(248,242,236,0.78); border: 1px solid var(--stroke); border-radius: 6px; overflow: hidden; }
.media-placeholder{ background: #eadfd3; border-right: 1px solid var(--stroke); background-size:cover; background-position:center; }
.content{ padding: 28px 34px 24px; }
.content h2{ margin: 0 0 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 42px; line-height: 1; color: var(--heading); font-weight: 500; }
.content p{ margin: 0; font-size: 14px; line-height: 1.9; color: #604837; }
.closing{ margin: 44px 4px 26px; color: #6b503e; font-size: 13px; line-height: 1.9; }
.closing p{ margin: 0 0 8px; }
.footer{ text-align: center; color: #735741; font-size: 12px; line-height: 1.9; padding-top: 6px; }
.page-nav{ display:flex; justify-content:center; flex-wrap:wrap; gap:10px; margin-top:0; }
.page-nav a{ text-decoration:none; color:#7b5b43; border:1px solid #d7c4b3; padding:6px 12px; border-radius:999px; background:rgba(255,255,255,.55); font-size:13px; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 18px;
  transform: translateY(-6px);
  color: var(--hero);
  text-decoration: none;
}
.logo-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, #9a6a42, #6f4528);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(78, 53, 38, 0.16);
}
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.logo-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1;
  color: var(--hero);
}
.logo-domain {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--heading);
}

@media (max-width: 980px){
  .page{ width: min(100vw - 28px, 1230px); padding-top: 60px; }
  .hero h1{ font-size: 40px; }
  .city-card{ grid-template-columns: 1fr; min-height: unset; }
  .media-placeholder{ min-height: 220px; border-right: none; border-bottom: 1px solid var(--stroke); }
  .content h2{ font-size: 36px; }
}
@media (max-width: 640px){
  .hero p, .content p, .closing{ font-size: 13px; }
  .content{ padding: 22px 20px; }
  .content h2{ font-size: 32px; }
}

.footer a, .footer-links a{ color: inherit; text-decoration: none; }
.footer a:hover, .footer-links a:hover{ text-decoration: underline; }
