/* Home page — fonts, tokens, nav, footer, buttons and cards
   all come from assets/styles.css */

html, body {
  min-height: 100%;
  overflow-x: hidden;
  background: var(--footer-bg); /* shows behind photos while they load */
}

/* ---- Rotating hero background ---- */
.bg-layer {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(36, 17, 20, 0.45);
  background-blend-mode: darken;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 2.2s ease-in-out;
}
#bg1 { z-index: 0; }
#bg2 { z-index: 1; }

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

/* ---- Hero ---- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-height) + 96px) 20px 110px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: clamp(38px, 7vw, 92px);
  max-width: 920px;
  margin: 0 0 18px;
  line-height: 1.06;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.hero-text {
  color: rgba(255,255,255,.94);
  font-size: clamp(15px, 2vw, 19px);
  max-width: 480px;
  margin: 0 0 34px;
}

/* Glass name input */
.custom-input {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 22px;
  width: min(380px, 88vw);
  justify-content: space-between;
  margin-bottom: 26px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.custom-input:focus-within {
  border-color: var(--gold);
  background: rgba(255,255,255,0.20);
}
.custom-input input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  outline: none;
  box-shadow: none;
  color: #fff;
  font-family: var(--font-text);
  font-size: 16px;
  padding: 6px;
}
.custom-input input:focus { box-shadow: none; border: none !important; }
.custom-input input::placeholder { color: rgba(255,255,255,0.75); }
.submit-btn {
  background: linear-gradient(135deg, #dcbb6d, var(--gold) 60%, #a9863a);
  color: #2a1216;
  border: none;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: transform .2s var(--ease), filter .2s var(--ease);
}
.submit-btn:hover { filter: brightness(1.08); transform: scale(1.07); }

.hero-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-links .btn-outline {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.65);
}
.hero-links .btn-outline:hover { background: #fff; color: var(--brand); border-color: #fff; }

/* ---- Quick links: ivory band over the rotating photos ---- */
.quick-section {
  background: var(--surface);
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -24px 60px rgba(20, 8, 10, .35);
  padding: 72px 0 84px;
}
.quick-eyebrow { text-align: center; }
.quick-title { margin-bottom: 40px; }

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.quick-card {
  padding: 32px 22px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
}
.quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--brand);
  font-size: 20px;
  margin-bottom: 14px;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.quick-card:hover .quick-icon {
  background: linear-gradient(135deg, #dcbb6d, var(--gold) 60%, #a9863a);
  color: #2a1216;
  transform: scale(1.08);
}
.quick-card h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 19px; color: var(--brand); }
.quick-card p { margin: 0; font-size: 14px; }

/* ---- What our clients say ---- */
.reviews-strip-section { background: #fff; padding: 72px 0; }
.reviews-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.reviews-strip-card { padding: 26px 24px; }
.reviews-strip-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 10px; }
.reviews-strip-quote { margin: 0 0 14px; font-size: 14.5px; line-height: 1.6; color: var(--ink); font-style: italic; }
.reviews-strip-name { margin: 0; font-weight: 700; color: var(--brand); font-family: var(--font-display); font-size: 14px; }
.reviews-strip-link { text-align: center; margin: 32px 0 0; }
.reviews-strip-link a { color: var(--brand); font-weight: 600; text-decoration: none; }
.reviews-strip-link a:hover { color: var(--gold); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .quick-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .quick-links { grid-template-columns: 1fr; }
  .hero { padding: calc(var(--nav-height) + 64px) 16px 80px; }
  .quick-section { border-radius: 24px 24px 0 0; padding: 56px 0 64px; }
  .reviews-strip-section { padding: 56px 0; }
}
