:root {
  --accent: #C41E3A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: #FFFFFF;
  background: #0A0A0A;
  -webkit-font-smoothing: antialiased;
}

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

/* Contact button — fixed to the upper-right corner */
.contact-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 13px 30px;
  border-radius: 8px;
  transition: filter 0.15s ease;
}
.contact-btn:hover { filter: brightness(1.08); }

/* Title link + first-load shimmer */
.masthead h1 a { color: #FFFFFF; }
.masthead h1 a:hover { opacity: 0.9; }

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .masthead h1 a {
    background-image: linear-gradient(100deg,
      #FFFFFF 0%, #FFFFFF 36%,
      #E0A93A 46%, #FFF3D0 50%, #E0A93A 54%,
      #FFFFFF 64%, #FFFFFF 100%);
    background-size: 220% 100%;
    background-position: 115% 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: title-shimmer 2.6s ease-in-out 0.5s 2 both;
  }
}

@keyframes title-shimmer {
  from { background-position: 115% 0; }
  to   { background-position: -15% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .masthead h1 a { animation: none; background-position: -100% 0; }
}

/* Hero — full-screen background, content anchored to lower third */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  padding: 0 24px 72px;
  text-align: center;
  background-image:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.48) 42%,
      rgba(0, 0, 0, 0.08) 82%,
      rgba(0, 0, 0, 0) 100%),
    url('assets/bg-v2.jpg');
  background-size: cover;
  background-position: center 30%;
}

.content {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Masthead */
.masthead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Eyebrow — red on a frosted ivory chip */
.eyebrow {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  /* Fallback for browsers without backdrop-filter: more opaque so it stays readable */
  background: rgba(250, 246, 238, 0.82);
}
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .eyebrow {
    background: rgba(250, 246, 238, 0.5);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}

.masthead h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 54px);
  font-weight: 400;
  line-height: 1.1;
}

.subtitle {
  max-width: 540px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Icon actions */
.actions {
  display: flex;
  justify-content: center;
  gap: 44px;
}

.action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 108px;
  transition: transform 0.15s ease;
}
.action:hover { transform: translateY(-3px); }

.circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.circle--primary {
  background: var(--accent);
  border-color: transparent;
}
.circle svg { width: 26px; height: 26px; color: #FFFFFF; }

.label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Footer */
/* Social icons */
.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.social a {
  display: flex;
  color: #FFFFFF;
  opacity: 0.85;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.social a:hover { opacity: 1; transform: translateY(-2px); }
.social svg { width: 22px; height: 22px; fill: currentColor; display: block; }

/* Footer */
.foot {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
}
.foot a:hover { color: #FFFFFF; }
