* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #111214;
  color: #f3ead0;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, 90%); margin: auto; }

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 18, 20, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(218, 180, 89, 0.22);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-size: 1.7rem;
  letter-spacing: 2px;
  color: #d8b65f;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-links a { opacity: 0.78; transition: 0.25s; }
.nav-links a:hover, .nav-links a.active { color: #d8b65f; opacity: 1; }

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(17,18,20,0.9), rgba(17,18,20,0.42), rgba(17,18,20,0.88)),
    url('images/ruby-hero.jpg') center/cover;
}
.hero-content { max-width: 760px; padding: 80px 0; }
.eyebrow {
  font-family: Arial, sans-serif;
  color: #d8b65f;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.82rem;
  margin-bottom: 16px;
}
h1 {
  color: #d8b65f;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.85;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero p {
  max-width: 640px;
  font-size: 1.2rem;
  color: #f7f0dc;
  margin-bottom: 30px;
}
.tagline-large {
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: #fff5d8;
  max-width: 800px;
  line-height: 1.15;
}
.buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.25s;
}
.btn-primary { background: #d8b65f; color: #111214; }
.btn-outline { border: 1px solid rgba(216, 182, 95, 0.6); color: #d8b65f; }
.btn:hover { transform: translateY(-2px); }

.page-hero {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, #17181b, #111214);
  border-bottom: 1px solid rgba(216, 182, 95, 0.18);
}
.page-hero h2, .section-title {
  color: #d8b65f;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.92;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
}
.page-hero p, .section-intro {
  max-width: 820px;
  color: #d8d0b8;
  font-size: 1.05rem;
}
section { padding: 78px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.card {
  background: #18191d;
  border: 1px solid rgba(216, 182, 95, 0.16);
  border-radius: 22px;
  padding: 26px;
}
.card h3 {
  color: #fff3cf;
  font-size: 1.45rem;
  margin-bottom: 8px;
}
.role, .meta {
  color: #d8b65f;
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.card p { color: #d2c9af; }

.profile-card {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: 0.25s;
}
.profile-card:hover { transform: translateY(-5px); border-color: rgba(216, 182, 95, 0.45); }
.profile-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  background: #24252a;
}
.profile-card-content { padding: 24px; }
.profile-card .hint {
  margin-top: 12px;
  color: #d8b65f;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.modal-toggle { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-toggle:checked + .modal { display: flex; }
.modal-box {
  width: min(840px, 96vw);
  max-height: 88vh;
  overflow-y: auto;
  background: #17181b;
  border: 1px solid rgba(216, 182, 95, 0.35);
  border-radius: 26px;
  padding: 30px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: Arial, sans-serif;
  color: #d8b65f;
  cursor: pointer;
  font-size: 1.4rem;
}
.modal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
.modal-layout img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 18px;
  background: #24252a;
}
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.social-buttons a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(216, 182, 95, 0.45);
  color: #d8b65f;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
}
@media (max-width: 700px) { .modal-layout { grid-template-columns: 1fr; } }

.trailer-box {
  aspect-ratio: 16 / 9;
  background: #050505;
  border-radius: 24px;
  border: 1px solid rgba(216, 182, 95, 0.2);
  display: grid;
  place-items: center;
  color: #d8b65f;
  font-size: 1.2rem;
  text-align: center;
  padding: 30px;
}
.info-list { display: grid; gap: 14px; margin-top: 24px; }
.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 12px;
}
.info-list strong { color: #d8b65f; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.gallery-item {
  min-height: 270px;
  border-radius: 20px;
  background: #191a1d;
  border: 1px solid rgba(216, 182, 95, 0.18);
  display: grid;
  place-items: center;
  color: #d8b65f;
  padding: 24px;
  text-align: center;
}
.quote-box {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  color: #fff1c7;
  line-height: 1.15;
  max-width: 980px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  color: #d8b65f;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #18191d;
  border: 1px solid rgba(216, 182, 95, 0.22);
  border-radius: 12px;
  color: #f3ead0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  line-height: 1.6;
  transition: border-color 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d8b65f;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d8b65f' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

footer {
  padding: 36px 0;
  color: #9b927b;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}
@media (max-width: 850px) {
  .nav-links { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
}