:root {
  --bg: #ffffff;
  --text: #0f0f0f;
  --muted: #5c5c5c;
  --accent: #db7653;
  --soft: #f7f4f1;
  --footer: #111111;
  --max-width: 880px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(320px, 43%) 1fr;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 44%, #f5f1ed 100%);
}

.hero__copy {
  align-self: center;
  padding: clamp(32px, 7vw, 96px);
  z-index: 2;
}

.accent-line,
.small-line {
  display: block;
  width: 68px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 28px;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero p {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.35;
  font-weight: 500;
}


.eyebrow {
  margin: 0 0 10px !important;
  color: var(--accent);
  font-size: clamp(18px, 1.5vw, 22px) !important;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700 !important;
}

.hero__image {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center 44%;
}

.hero__scroll {
  position: fixed;
  left: 50%;
  bottom: calc(28px + env(safe-area-inset-bottom));
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 15, 15, 0.12);
  border-radius: 50%;
  text-decoration: none;
  transform: translateX(-50%);
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
}

.hero__scroll:hover {
  background: #ffffff;
  opacity: 0.94;
  transform: translateX(-50%) translateY(-2px);
}

.hero__scroll.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
}

.hero__scroll svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 110px) 28px clamp(64px, 8vw, 100px);
}

.section-label {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.42em;
  font-size: 15px;
  margin-bottom: 18px;
}

.section-label--dark {
  color: var(--text);
}

.about__text {
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.75;
  letter-spacing: -0.01em;
}

.about__text p {
  margin: 0 0 32px;
}


.experience {
  margin: 42px 0 34px;
  padding: 30px;
  background: var(--soft);
  border-left: 3px solid var(--accent);
}

.experience h2 {
  margin: 0 0 18px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.experience ul {
  margin: 0;
  padding-left: 22px;
}

.experience li {
  margin: 8px 0;
}

.closing {
  font-weight: 600;
}

.contact {
  background: var(--soft);
  text-align: center;
  padding: 56px 28px 64px;
}

.contact .small-line {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
  width: 44px;
  height: 2px;
}

.contact__items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 240px;
  color: var(--text);
  text-decoration: none;
  text-align: left;
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: var(--text);
}

.contact-card__icon svg {
  display: block;
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  padding: 18px 34px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 14px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

footer {
  background: var(--footer);
  color: #ffffff;
  text-align: center;
  padding: 28px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
}

@media (max-width: 860px) {
  .hero {
    display: flex;
    flex-direction: column-reverse;
    min-height: auto;
    background: #ffffff;
  }

  
.eyebrow {
  margin: 0 0 10px !important;
  color: var(--accent);
  font-size: clamp(18px, 1.5vw, 22px) !important;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700 !important;
}

.hero__image {
    min-height: auto;
    height: 64vh;
    object-position: center 42%;
  }

  .hero__copy {
    padding: 40px 24px 72px;
  }

  .hero h1 {
    font-size: clamp(48px, 13vw, 72px);
  }

  .hero p {
    font-size: 24px;
  }

  .about {
    padding: 64px 24px;
  }

  .contact__items {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }

  .contact-card {
    width: min(100%, 320px);
  }

  .hero__scroll {
    bottom: calc(18px + env(safe-area-inset-bottom));
  }
}
