:root {
  --bg: #f6f0f1;
  --panel: rgba(250,245,245,0.78);
  --stroke: #e4d6d7;
  --heading: #986f63;
  --text: #675c60;
  --hero: #5c4851;
  --soft: #fbf7f7;
  --accent: #b78a72;
  --accent-dark: #9f7360;
}

* { box-sizing: border-box; }
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(#f7f2f3, #f5efef);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
}

.page-bg {
  min-height: 100vh;
  padding: 72px 20px 56px;
}

.sheet {
  width: min(1230px, 100%);
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(92, 72, 81, 0.08);
  padding: 36px 32px 34px;
}

.hero {
  text-align: center;
  padding: 10px 0 28px;
  border-bottom: 1px solid var(--stroke);
}
.hero h1 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 0.98;
  color: var(--hero);
  font-weight: 500;
  letter-spacing: 0.2px;
}
.hero-subtitle {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.05;
  color: var(--heading);
}
.hero-text {
  width: min(760px, 92%);
  margin: 12px auto 0;
  font-size: 14px;
  line-height: 1.85;
  color: #706469;
}
.cta {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(159, 115, 96, 0.22);
}
.cta:hover {
  transform: translateY(-1px);
}

.gallery-section {
  padding: 30px 0 0;
}
.section-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  color: var(--heading);
}
.section-rule::before,
.section-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--stroke);
}
.section-rule-top {
  margin: 0 0 24px;
}
.section-rule-top span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1.05;
}
.section-rule-middle {
  margin: 24px 0 10px;
}
.section-rule-middle span {
  font-size: 13px;
  line-height: 1.8;
  color: #7a6e73;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid var(--stroke);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255,255,255,0.52);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(92, 72, 81, 0.08);
}
.image-placeholder {
  height: 200px;
  border-bottom: 1px solid var(--stroke);
  background-size: cover;
  background-position: center;
}
.country {
  padding: 14px 16px;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1;
  color: var(--heading);
  background: rgba(250,245,245,0.88);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 24px 0 0;
}
.content-grid article {
  background: rgba(250,245,245,0.7);
  border: 1px solid var(--stroke);
  border-radius: 6px;
  padding: 26px 28px;
}
.content-grid article h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1.05;
  color: var(--heading);
  font-weight: 500;
}
.content-grid article p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
}

.site-footer {
  padding: 26px 0 0;
}
.footer-line {
  text-align: center;
  color: #6b5f64;
  font-size: 13px;
  line-height: 1.9;
}
.footer-links {
  width: min(1230px, 100%);
  margin: 18px auto 0;
  text-align: center;
  color: #75696f;
  font-size: 12px;
  line-height: 1.9;
}
.home-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.home-nav a {
  color: #7f666c;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #e2d4d6;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  font-size: 13px;
}

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

@media (max-width: 980px) {
  .page-bg { padding-top: 46px; }
  .sheet { padding: 26px 18px 28px; }
  .gallery-grid,
  .content-grid { grid-template-columns: 1fr; }
  .section-rule span { white-space: normal; }
}

@media (max-width: 640px) {
  .hero-text,
  .content-grid article p,
  .section-rule-middle span,
  .footer-line,
  .footer-links { font-size: 13px; }
  .section-rule-top span { font-size: 29px; }
  .country { font-size: 24px; }
  .content-grid article { padding: 22px 20px; }
  .content-grid article h2 { font-size: 30px; }
}
