:root {
  --paper: #fffaf1;
  --paper-soft: #f5ead7;
  --ink: #221d19;
  --muted: #6d6257;
  --line: rgba(34, 29, 25, 0.14);
  --honey: #d8a044;
  --blue: #436f87;
  --brick: #a5533f;
  --sage: #7c8b73;
  --cream: #fff7e8;
  --shadow: 0 24px 60px rgba(34, 29, 25, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(255, 250, 241, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 41px;
  flex: 0 0 auto;
  color: var(--ink);
  transform: rotate(-4deg);
}

.brand-mark .mark-letter {
  position: absolute;
  left: 50%;
  top: 57%;
  z-index: 3;
  display: block;
  color: var(--ink);
  font-size: 1.46rem;
  font-weight: 950;
  line-height: 1;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.brand-mark .face,
.brand-mark .ear {
  position: absolute;
  display: block;
}

.brand-mark .face {
  inset: 8px 2px 0;
  z-index: 2;
  border: 3px solid var(--ink);
  border-radius: 48% 48% 43% 43%;
  background: var(--paper);
}

.brand-mark .ear {
  z-index: 1;
  top: 1px;
  width: 15px;
  height: 15px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.brand-mark .ear.left {
  left: 6px;
  transform-origin: 70% 80%;
  animation: ear-wink-left 4.8s ease-in-out infinite;
}

.brand-mark .ear.right {
  right: 5px;
  top: 4px;
  transform-origin: 30% 80%;
  animation: ear-wink-right 4.8s ease-in-out infinite;
  animation-delay: 0.08s;
}

.brand-text {
  margin-left: -2px;
  font-size: 1.24rem;
  font-weight: 900;
  line-height: 1;
}

@keyframes ear-wink-left {
  0%,
  76%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  80% {
    transform: rotate(-9deg) scale(0.96);
  }
  84% {
    transform: rotate(4deg) scale(1.02);
  }
  88% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes ear-wink-right {
  0%,
  76%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  80% {
    transform: rotate(8deg) scale(0.96);
  }
  84% {
    transform: rotate(-4deg) scale(1.02);
  }
  88% {
    transform: rotate(0deg) scale(1);
  }
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  padding: clamp(36px, 7vw, 96px) clamp(20px, 6vw, 84px) 48px;
}

.language-field {
  position: absolute;
  inset: 7% -4% auto auto;
  z-index: 0;
  display: flex;
  width: min(760px, 70vw);
  max-height: 42vh;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
  color: rgba(34, 29, 25, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.5vw, 3rem);
  line-height: 1.05;
  transform: rotate(-5deg);
  user-select: none;
}

.language-field span:nth-child(3n) {
  color: rgba(67, 111, 135, 0.14);
}

.language-field span:nth-child(4n) {
  color: rgba(165, 83, 63, 0.14);
}

.hero-content,
.hero-image {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brick);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7.8rem);
  font-weight: 700;
  line-height: 0.93;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.9rem);
  font-weight: 700;
  line-height: 1;
}

h3 {
  margin: 18px 0 6px;
  font-size: 1.2rem;
}

.hero-copy,
.section-copy p,
.center-copy p,
.cta-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.26rem);
  line-height: 1.65;
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 13px 21px;
  font-weight: 800;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  background: rgba(255, 250, 241, 0.58);
}

.hero-image {
  align-self: stretch;
  min-height: 500px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: 49% 50%;
  filter: saturate(0.96) contrast(1.02);
}

.section {
  padding: clamp(62px, 9vw, 128px) clamp(20px, 6vw, 84px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 0.75fr);
  background: #eef3f1;
}

.section-copy p {
  max-width: 670px;
}

.image-panel {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.image-panel img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}

.language-section {
  background: var(--ink);
  color: var(--paper);
}

.center-copy {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.center-copy .eyebrow {
  color: #eccb8c;
}

.center-copy p {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255, 250, 241, 0.78);
}

.title-wall {
  display: flex;
  max-width: 1150px;
  margin: clamp(34px, 6vw, 76px) auto 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

.title-wall strong,
.title-wall span {
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 250, 241, 0.08);
  color: rgba(255, 250, 241, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.7vw, 1.55rem);
}

.title-wall strong {
  background: var(--paper);
  color: var(--ink);
}

.language-note {
  max-width: 780px;
  margin: 38px auto 0;
  color: rgba(255, 250, 241, 0.68);
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: center;
}

.cards-section {
  background: #f8f1e5;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(30px, 5vw, 58px);
}

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

.experience-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.experience-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.experience-card h3,
.experience-card p {
  padding: 0 18px;
}

.experience-card p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.45;
}

.quote-band {
  padding: clamp(48px, 7vw, 86px) clamp(20px, 6vw, 84px);
  background: var(--blue);
  color: var(--paper);
}

.quote-band p {
  max-width: 1050px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 5.6rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--brick);
  content: "";
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(330px, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.cta-grid {
  display: grid;
  gap: 14px;
}

.cta-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fffdf8;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(34, 29, 25, 0.11);
}

.cta-card span {
  color: var(--brick);
  font-weight: 850;
}

.cta-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1;
}

.cta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 6vw, 84px);
  background: var(--ink);
  color: var(--paper);
}

.site-footer p {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.site-footer a {
  border: 1px solid rgba(255, 250, 241, 0.35);
  border-radius: 999px;
  padding: 12px 17px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .split.reverse,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    min-height: 380px;
  }

  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  .site-nav {
    gap: 10px 14px;
    font-size: 0.9rem;
  }

  .language-field {
    inset: 4% 0 auto auto;
    width: 72vw;
    max-height: 30vh;
    opacity: 0.8;
    font-size: 1.15rem;
    transform: none;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.6rem);
  }

  .hero-image {
    min-height: 310px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .title-wall {
    justify-content: flex-start;
  }

  .center-copy {
    text-align: left;
  }

  .center-copy p,
  .language-note {
    text-align: left;
  }
}
