:root {
  --bg: #f7f3ec;
  --paper: #fffdfa;
  --line: #e8dfd2;
  --ink: #1f1914;
  --muted: #6c6258;
  --accent: #c59c59;
  --shadow: 0 18px 42px rgba(26, 20, 14, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(180deg, #fbf8f2 0%, #f4eee6 100%);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  max-width: 1720px;
  margin: 0 auto;
  padding: 12px 18px 24px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.logo {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  letter-spacing: 0.34em;
}

.header-nav {
  display: flex;
  gap: 34px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.header-actions {
  display: flex;
  gap: 14px;
}

.header-icon {
  width: 22px;
  display: inline-flex;
  justify-content: center;
  font-size: 18px;
}

.main-layout {
  padding-top: 18px;
}

.hero {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 820px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 82px 72px 72px 40px;
  background: #fbf8f2;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-tag::after {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.section-tag--center {
  justify-content: center;
}

.hero-copy h1,
.about-copy h2,
.talent-copy h2,
.footer-copy h2 {
  margin: 0;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  max-width: 640px;
  font-size: clamp(72px, 7vw, 108px);
}

.hero-copy p,
.about-copy p,
.talent-copy p,
.world-body p,
.talent-card p,
.footer-copy p,
.footer-links a {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy p {
  max-width: 470px;
  margin: 28px 0 0;
  font-size: 18px;
}

.hero-actions-row {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.btn,
.mail-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.btn-dark {
  background: #171411;
  color: #fff;
}

.btn-light,
.mail-chip {
  border: 1px solid var(--line);
  background: var(--paper);
}

.hero-note {
  margin-top: 48px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8b7f72;
}

.hero-media,
.about-media,
.footer-image {
  min-height: 100%;
}

.placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed #cdbda8;
  background:
    linear-gradient(135deg, rgba(199, 154, 113, 0.14), rgba(255, 255, 255, 0.55)),
    repeating-linear-gradient(
      45deg,
      rgba(185, 155, 120, 0.15) 0,
      rgba(185, 155, 120, 0.15) 18px,
      rgba(255, 255, 255, 0.2) 18px,
      rgba(255, 255, 255, 0.2) 36px
    );
  color: #8d7458;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.placeholder span {
  max-width: 70%;
  line-height: 1.5;
}

.placeholder-hero {
  min-height: 820px;
}

.content-section {
  padding-top: 34px;
}

.section-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.world-card,
.talent-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.world-image {
  height: 320px;
}

.world-body {
  padding: 18px 18px 22px;
}

.world-body h3,
.talent-card h3,
.footer-links h4 {
  margin: 0;
  font-weight: 400;
}

.world-body h3 {
  font-size: 22px;
}

.world-body p {
  min-height: 92px;
  margin: 12px 0 18px;
  font-size: 15px;
}

.world-body a,
.talent-card a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: var(--accent);
}

.about-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: stretch;
  padding-top: 54px;
}

.about-copy {
  padding: 22px 16px 22px 42px;
}

.about-copy h2,
.talent-copy h2,
.footer-copy h2 {
  max-width: 540px;
  font-size: clamp(56px, 5vw, 84px);
}

.about-copy p,
.footer-copy p {
  max-width: 500px;
  margin: 24px 0 0;
  font-size: 18px;
}

.about-media {
  min-height: 560px;
  border-radius: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.gallery-tile {
  height: 210px;
  overflow: hidden;
  border-radius: 16px;
}

.talent-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 26px;
  padding-top: 54px;
}

.talent-copy {
  padding: 14px 18px 14px 42px;
}

.talent-copy p {
  max-width: 440px;
  margin: 24px 0 0;
  font-size: 18px;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.talent-card {
  min-height: 250px;
  padding: 28px;
}

.talent-icon {
  display: inline-flex;
  margin-bottom: 22px;
  font-size: 26px;
  color: #9c9389;
}

.talent-card h3 {
  font-size: 30px;
}

.talent-card p {
  min-height: 92px;
  margin: 14px 0 22px;
  font-size: 15px;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.92fr 0.7fr 0.78fr;
  gap: 30px;
  margin-top: 62px;
  padding: 34px 0 22px;
  border-top: 1px solid var(--line);
}

.footer-copy {
  padding-left: 42px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 8px;
}

.footer-links h4 {
  margin-bottom: 14px;
  font-size: 18px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-image {
  min-height: 240px;
  border-radius: 18px;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #8c7f73;
}

@media (max-width: 1180px) {
  .hero,
  .about-section,
  .talent-section,
  .site-footer,
  .world-grid,
  .gallery-grid,
  .talent-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .placeholder-hero {
    min-height: 520px;
  }
}

@media (max-width: 820px) {
  .page-shell {
    padding: 10px;
  }

  .site-header,
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero-copy,
  .about-copy,
  .talent-copy,
  .footer-copy {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-copy {
    padding-top: 38px;
  }

  .hero-copy h1,
  .about-copy h2,
  .talent-copy h2,
  .footer-copy h2 {
    font-size: clamp(46px, 11vw, 70px);
  }
}
