:root {
  --bg: #f2ebe4;
  --panel: rgba(247,240,233,0.86);
  --stroke: #d7c4b3;
  --heading: #7b5637;
  --text: #5f4736;
  --hero: #4e3526;
  --soft: #f8f2ec;
  --accent: #8a5a36;
  --accent-dark: #6f4528;
}

* { 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(#f4ede6, #efe4d8);
  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(78, 53, 38, 0.10);
  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: #6a5140;
}
.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: #7a5b43;
}

.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.58);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(78, 53, 38, 0.10);
}
.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(248,242,236,0.92);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 24px 0 0;
}
.content-grid article {
  background: rgba(248,242,236,0.82);
  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: #6b503e;
  font-size: 13px;
  line-height: 1.9;
}
.footer-links {
  width: min(1230px, 100%);
  margin: 18px auto 0;
  text-align: center;
  color: #735741;
  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: #7b5b43;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #d7c4b3;
  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;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 18px;
  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-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; }
}
