/* ============================================
   Queen's Club — Dark Editorial Luxury
   Color: warm black + cream + brushed gold
   ============================================ */

:root {
  --bg: #0a0908;
  --bg-soft: #141210;
  --cream: #f5ebe0;
  --cream-soft: #ebe0d2;
  --gold: #c5a572;
  --gold-bright: #d9bd87;
  --muted: #7a7269;
  --line: rgba(245, 235, 224, 0.12);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --gap: clamp(1rem, 2vw, 2rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 768px) {
  body { cursor: auto; }
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease-out); }
a:hover { color: var(--gold-bright); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.display em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--cream-soft);
  margin-bottom: 1.5rem;
  max-width: 60ch;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s var(--ease-out);
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--cream);
  overflow: hidden;
}

.loader-text span {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  animation: rise 1s var(--ease-out) forwards;
}

.loader-text span:nth-child(2) { animation-delay: 0.15s; color: var(--gold); font-style: italic; }

@keyframes rise {
  to { transform: translateY(0); opacity: 1; }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 50%;
}

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  transition: transform 0.15s var(--ease-out);
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--cream);
  opacity: 0.6;
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}

.cursor-ring.hover {
  width: 72px; height: 72px;
  border-color: var(--gold);
  opacity: 1;
}

@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  font-weight: 400;
  white-space: nowrap;
}
.nav-brand span { color: var(--gold); margin: 0 0.4rem; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  border: 1px solid var(--cream);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.nav-cta .arrow { transition: transform 0.4s var(--ease-out); }
.nav-cta:hover .arrow { transform: translateX(3px); }

@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 9, 8, 0.95) 0%,
    rgba(10, 9, 8, 0.75) 40%,
    rgba(10, 9, 8, 0.4) 100%
  );
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 11rem);
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line:nth-child(2) span {
  font-style: italic;
  color: var(--gold);
}

.hero-tagline {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--cream-soft);
  max-width: 480px;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-soft);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -30px; left: 0;
  width: 100%;
  height: 30px;
  background: var(--gold);
  animation: scrollDot 2s var(--ease-in-out) infinite;
}

@keyframes scrollDot {
  from { top: -30px; }
  to { top: 50px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1.1rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease-out);
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}

.btn-primary span { position: relative; z-index: 2; }

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  z-index: 1;
}

.btn-primary:hover { color: var(--bg); }
.btn-primary:hover::before { transform: translateY(0); }

.btn-primary.big {
  padding: 1.4rem 2.5rem;
  font-size: 0.95rem;
}

.btn-secondary {
  border: 1px solid var(--cream);
  color: var(--cream);
}

.btn-secondary:hover {
  background: var(--cream);
  color: var(--bg);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
  background: var(--bg-soft);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
}

.marquee-track span:nth-child(even) {
  color: var(--gold);
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
}

.split-right p {
  margin-bottom: 1.25rem;
  color: var(--cream-soft);
}

.team-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.team-member {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.team-member small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
}

/* ============================================
   STATS
   ============================================ */
.stats {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}

.stat-num .plus { color: var(--gold); margin-left: 0.1rem; }

.stat-label {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-head {
  margin-bottom: 4rem;
  max-width: 800px;
}

.service-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr auto 60px;
  align-items: center;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  cursor: none;
  transition: padding 0.4s var(--ease-out);
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s var(--ease-out);
  z-index: 0;
}

.service-item:hover::before { transform: scaleY(1); }

.service-item:hover { padding-left: 2rem; padding-right: 1rem; color: var(--bg); }
.service-item:hover .service-num,
.service-item:hover .service-price { color: var(--bg); }
.service-item:hover .service-body p { color: rgba(10, 9, 8, 0.7); }
.service-item:hover .service-arrow { color: var(--bg); transform: rotate(-45deg); }

.service-item > * { position: relative; z-index: 1; }

.service-num {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  transition: color 0.4s var(--ease-out);
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.service-body p {
  font-size: 0.95rem;
  color: var(--cream-soft);
  max-width: 50ch;
  transition: color 0.4s var(--ease-out);
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  white-space: nowrap;
  transition: color 0.4s var(--ease-out);
}

.service-arrow {
  font-size: 1.3rem;
  text-align: right;
  transition: color 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}

@media (max-width: 760px) {
  .service-item {
    grid-template-columns: 50px 1fr;
    grid-template-areas: "num body" ". price" ". arrow";
    gap: 1rem;
  }
  .service-num { grid-area: num; }
  .service-body { grid-area: body; }
  .service-price { grid-area: price; font-size: 1.1rem; }
  .service-arrow { grid-area: arrow; text-align: left; }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: block;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  filter: grayscale(20%);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.gallery-tag {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(10, 9, 8, 0.7);
  backdrop-filter: blur(6px);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.gallery-item:hover .gallery-tag {
  opacity: 1;
  transform: translateY(0);
}

.gallery-footer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.gallery-footer a { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}

@media (max-width: 760px) {
  .price-grid { grid-template-columns: 1fr; }
}

.price-block h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.02em;
}

.price-block ul {
  list-style: none;
}

.price-block li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(245, 235, 224, 0.06);
  gap: 1rem;
}

.price-block li span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream);
  white-space: nowrap;
}

.price-note {
  text-align: center;
  margin-top: 4rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   VISIT
   ============================================ */
.visit {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (max-width: 760px) {
  .info-grid { grid-template-columns: 1fr; }
}

.info-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
  display: block;
}

.info-item p {
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.5;
}

.info-item small {
  color: var(--muted);
  font-size: 0.85rem;
}

.info-item a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.info-item a:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: clamp(6rem, 12vw, 10rem) 0;
  text-align: center;
  border-top: 1px solid var(--line);
}

.cta-final .display {
  margin-bottom: 3rem;
}

.cta-secondary {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-secondary a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 760px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--cream-soft);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-bottom a { color: var(--gold); }

/* ============================================
   REVEAL / SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children for split sections */
.split.visible .reveal { transition-delay: 0.1s; }
.split.visible .reveal:nth-child(2) { transition-delay: 0.25s; }

.stats-grid .reveal:nth-child(1).visible { transition-delay: 0s; }
.stats-grid .reveal:nth-child(2).visible { transition-delay: 0.1s; }
.stats-grid .reveal:nth-child(3).visible { transition-delay: 0.2s; }
.stats-grid .reveal:nth-child(4).visible { transition-delay: 0.3s; }

/* Rise-on-load for hero — animation applied via JS class */
.rise-on-load {
  opacity: 0;
  transform: translateY(40px);
}

.rise-on-load.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}

.hero-title .line span {
  display: inline-block;
}
.hero-title .line:nth-child(1) span.in { transition-delay: 0.1s; }
.hero-title .line:nth-child(2) span.in { transition-delay: 0.25s; }
.hero-tagline.in { transition-delay: 0.45s; }
.hero-actions.in { transition-delay: 0.6s; }
.hero-eyebrow.in { transition-delay: 0s; }
.hero-scroll.in { transition-delay: 1s; }

/* ============================================
   SELECTION + SCROLLBAR
   ============================================ */
::selection {
  background: var(--gold);
  color: var(--bg);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-bright); }

/* ▒▒▒ BRAND LOGO (echtes Queen's Club Logo · gold) ▒▒▒ */
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-logo {
  height: 2.7rem;
  width: auto;
  flex: none;
  filter: drop-shadow(0 0 7px rgba(197, 165, 114, 0.25));
  transition: filter 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
.nav-brand:hover .brand-logo {
  filter: drop-shadow(0 0 14px rgba(217, 189, 135, 0.6));
  transform: scale(1.06) rotate(-2deg);
}
.footer-brand .footer-logo {
  display: block;
  height: 4.4rem;
  width: auto;
  margin: 0 auto 0.9rem;
  filter: drop-shadow(0 0 12px rgba(197, 165, 114, 0.22));
}

/* Hero showcase logo + gold shimmer (lung linh / pro) */
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
  margin-bottom: 1.4rem;
}
.hero-logo {
  height: clamp(3rem, 5.5vw, 5rem);
  width: auto;
  animation: logoFloat 5.5s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0);     filter: drop-shadow(0 6px 22px rgba(197, 165, 114, 0.30)); }
  50%      { transform: translateY(-9px);  filter: drop-shadow(0 12px 34px rgba(217, 189, 135, 0.55)); }
}
.hero-logo-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-mask: url(logo.png) center / contain no-repeat;
          mask: url(logo.png) center / contain no-repeat;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 250, 238, 0.9) 50%, transparent 62%);
  background-size: 280% 100%;
  background-position: 200% 0;
  animation: logoShine 4.5s ease-in-out 1.2s infinite;
  mix-blend-mode: screen;
}
@keyframes logoShine {
  0%        { background-position: 200% 0;  opacity: 0; }
  12%       { opacity: 1; }
  55%       { background-position: -120% 0; opacity: 1; }
  60%, 100% { background-position: -120% 0; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo, .hero-logo-shine { animation: none; }
}
