:root {
  --ink: #0f0e0c;
  --ink-soft: #2a2722;
  --paper: #f5efe4;
  --paper-soft: #ebe3d6;
  --white: #fffaf2;
  --gold: #d6ae61;
  --teal: #6ea79e;
  --coral: #c8735e;
  --sage: #9bad85;
  --blue: #7d91ba;
  --muted: #786f63;
  --line: rgba(15, 14, 12, 0.16);
  --light-line: rgba(255, 250, 242, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px 34px;
  color: var(--white);
  background: rgba(15, 14, 12, 0.48);
  border-bottom: 1px solid rgba(255, 250, 242, 0.14);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
}

.brand-symbol {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(214, 174, 97, 0.58);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 250, 242, 0.78);
}

.nav-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 250, 242, 0.12);
}

.nav-links .language-link {
  color: var(--ink);
  background: var(--white);
}

.hero {
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  position: relative;
  isolation: isolate;
  padding: 116px 34px 48px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 14, 12, 0.92) 0%, rgba(15, 14, 12, 0.70) 42%, rgba(15, 14, 12, 0.26) 100%),
    linear-gradient(0deg, rgba(15, 14, 12, 0.94) 0%, rgba(15, 14, 12, 0) 42%),
    url("../images/templates/173.jpg") center 45% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  z-index: 1;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--coral), var(--blue), var(--sage));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: 66px;
}

h2 {
  margin-bottom: 18px;
  font-size: 44px;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
  border: 1px solid rgba(214, 174, 97, 0.72);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #e2c079;
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 250, 242, 0.34);
  background: rgba(255, 250, 242, 0.08);
}

.button-secondary.light {
  margin-top: 8px;
  color: var(--white);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 13px;
}

.hero-notes span,
.audience-row span {
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 242, 0.24);
  padding: 8px 12px;
  background: rgba(15, 14, 12, 0.34);
}

.section-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.intro-band {
  background: var(--ink);
  color: var(--white);
  padding: 46px 0;
}

.intro-layout,
.contact-layout,
.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 64px;
  align-items: center;
}

.intro-band h2,
.section-dark h2,
.contact-section h2 {
  color: var(--white);
}

.intro-band p,
.section-dark p,
.contact-section p {
  color: rgba(255, 250, 242, 0.72);
}

.section-light {
  padding: 96px 0;
  background: var(--paper);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 820px;
}

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

.feature-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-index {
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.feature-card h3 {
  margin-top: 72px;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.photo-story {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.8fr;
  grid-auto-rows: 310px;
  gap: 12px;
  padding: 12px;
  background: var(--ink);
}

.photo-tile,
.photo-copy {
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-tall {
  grid-row: span 2;
}

.photo-wide {
  grid-column: span 2;
}

.photo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(110, 167, 158, 0.24), rgba(200, 115, 94, 0.20)),
    var(--ink-soft);
}

.photo-copy h2 {
  color: var(--white);
}

.photo-copy p {
  color: rgba(255, 250, 242, 0.76);
}

.section-dark {
  padding: 96px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(110, 167, 158, 0.12), transparent 38%),
    linear-gradient(315deg, rgba(214, 174, 97, 0.12), transparent 40%),
    var(--ink);
}

.experience-panel {
  display: grid;
  gap: 12px;
}

.experience-panel div {
  padding: 22px;
  border: 1px solid var(--light-line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.06);
}

.experience-panel span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.experience-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 18px;
}

.experience-panel p {
  margin-bottom: 0;
  font-size: 15px;
}

.audience-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-row span {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.contact-section {
  padding: 78px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 14, 12, 0.96), rgba(15, 14, 12, 0.70)),
    url("../images/templates/237.jpg") center / cover no-repeat;
}

.email-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 250, 242, 0.45);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 34px;
  color: rgba(255, 250, 242, 0.58);
  background: var(--ink);
  border-top: 1px solid var(--light-line);
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    padding: 12px 18px;
  }

  .nav-links a:not(.language-link):not([href^="mailto"]) {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding: 116px 22px 48px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section-inner {
    width: min(100% - 32px, 680px);
  }

  .intro-layout,
  .contact-layout,
  .experience-layout,
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-light,
  .section-dark {
    padding: 72px 0;
  }

  .feature-card {
    min-height: 220px;
  }

  .feature-card h3 {
    margin-top: 42px;
  }

  .photo-story {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 250px;
  }

  .photo-copy {
    grid-column: span 2;
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 60px;
    gap: 12px;
  }

  .brand-mark {
    font-size: 15px;
  }

  .nav-links {
    gap: 4px;
    font-size: 13px;
  }

  .nav-links a {
    padding: 7px 9px;
  }

  .hero {
    min-height: 84svh;
    padding: 96px 18px 36px;
    background-position: 58% center;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 29px;
  }

  p {
    font-size: 16px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-notes {
    gap: 8px;
  }

  .hero-notes span {
    font-size: 12px;
  }

  .photo-story {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .photo-copy,
  .photo-wide {
    grid-column: auto;
  }

  .photo-tall {
    grid-row: auto;
  }

  .contact-actions {
    align-items: stretch;
  }

  .email-link {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .site-footer {
    flex-direction: column;
    padding: 22px 18px;
  }
}
