:root{
  --bg: #f3f1ee;
  --ink: #111111;
  --muted: rgba(17,17,17,.72);
  --white: #ffffff;

  --container: 1120px;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(0,0,0,.10);

  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }

html{
  scroll-behavior: smooth;
}

body{
  margin:0;
  font-family: var(--font);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{ max-width:100%; display:block; }

.container{
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 999;
}

/* HERO */
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: #000;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.28) 0%,
    rgba(0,0,0,.18) 40%,
    rgba(0,0,0,.35) 100%
  );
}

.hero__content{
  position: relative;
  width: calc(100% - 48px);
  max-width: 1400px;
  text-align: left;
  padding-top: 8vh;
  padding-left: clamp(20px, 8vw, 120px);
}

.hero__title{
  margin:0 0 22px 0;
  font-family: var(--font);
  font-weight: 500;
  color: rgba(255,255,255,.92);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 6.8vw, 6.6rem);
  line-height: 1.02;
  white-space: normal;
}

.hero__actions{
  display:flex;
  gap: 14px;
  justify-content:flex-start;
  flex-wrap: wrap;
  padding-bottom: 6vh;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 10px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration:none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: rgba(255,255,255,.90);
  color: #111;
  border: 1px solid rgba(255,255,255,.55);
}
.btn--primary:hover{ background: rgba(255,255,255,.98); }

.btn--ghost{
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.28);
}
.btn--ghost:hover{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.40);
}

/* Scroll indicator */
.hero__scroll{
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 1;
  color: rgba(255,255,255,.62);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.12);
  backdrop-filter: blur(4px);
  transition: transform .12s ease, color .12s ease, border-color .12s ease, background .12s ease;
  animation: bounce 2.2s ease-in-out infinite;
}
.hero__scroll:hover{
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.30);
  background: rgba(0,0,0,.18);
}
.hero__scroll:active{
  transform: translateX(-50%) translateY(1px);
}

@keyframes bounce{
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ABOUT */
.about{
  padding: 92px 0 56px;
}

.about__grid{
  display:grid;
  grid-template-columns: 288px 1fr;
  gap: clamp(26px, 5vw, 78px);
  align-items: center;
}

.about__photo{ margin:0; }

.about__photo img{
  width:100%;
  height:auto;
  border-radius: 0;
  box-shadow: 0 12px 32px rgba(0,0,0,.10);
}

.about__title{
  margin: 0 0 16px 0;
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.1vw, 2.2rem);
  letter-spacing: 0.01em;
  color: var(--ink);
}

.about__text{
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

.about__text p{ margin: 0 0 18px 0; }

.about__sign{
  margin-top: 20px;
  color: rgba(17,17,17,.70);
  font-weight: 500;
}

/* CONTACT */
.contact{
  padding: 56px 0 92px;
}

.contact__container{ text-align: center; }

.contact__title{
  font-family: var(--font);
  font-weight: 500;
  margin: 0 0 10px 0;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  color: var(--ink);
}

.contact__subtitle{
  margin: 0 auto 26px auto;
  max-width: 700px;
  color: var(--muted);
  line-height: 1.7;
}

.contact__cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(860px, 100%);
  margin: 0 auto;
}

.card{
  min-width: 0;
  text-decoration:none;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(17,17,17,.10);
  border-radius: var(--radius);
  padding: 18px 18px;
  text-align:left;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.card:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.70);
  border-color: rgba(17,17,17,.16);
}

.card__label{
  font-size: 0.85rem;
  color: rgba(17,17,17,.55);
  margin-bottom: 6px;
  font-weight: 500;
}

.card__value{
  color: rgba(17,17,17,.85);
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* FOOTER */
.footer{
  padding: 22px 0;
  border-top: 1px solid rgba(17,17,17,.10);
}

.footer__container{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 14px;
  color: rgba(17,17,17,.65);
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .about__grid{
    grid-template-columns: 234px 1fr;
  }
}

@media (max-width: 760px){
  .hero__content{
    padding-top: 10vh;
    padding-left: 20px;
  }

  .about{
    padding: 70px 0 40px;
  }

  .about__grid{
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about__photo{
    width: min(320px, 100%);
  }

  .contact__cards{
    grid-template-columns: 1fr;
  }

  .footer__container{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile title sizing fix */
@media (max-width: 480px){
  .hero__title{
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    line-height: 1.05;
  }
}