/* HERO */
.hero {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 15% 65%, rgba(69,90,115,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 50% 50% at 85% 20%, rgba(163,143,75,0.06) 0%, transparent 100%),
    linear-gradient(160deg, #C9C2B4 0%, #D6CFC1 100%);
  pointer-events: none;
}

.hero-decor { display: none; }

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 60px) var(--gap) 60px;
  max-width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  opacity: 0;
  animation: slideUp 0.8s var(--ease) 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes slideUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0);    }
}

.hero-h1 {
  font-size: clamp(42px, 5.5vw, 82px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 28px;
  overflow: hidden;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(56px);
  animation: lineUp 1s var(--ease) forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.35s; }
.hero-line:nth-child(2) { animation-delay: 0.5s; color: var(--gold); font-style: italic; }
.hero-line:nth-child(3) { animation-delay: 0.65s; }

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

.hero-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 44px;
  opacity: 0;
  animation: slideUp 0.8s var(--ease) 0.9s forwards;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 0.8s var(--ease) 1.05s forwards;
}

/* HERO GALLERY */
.hero-right {
  position: relative;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

.hero-right::before {
  display: none;
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-right::after {
  display: none;
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-right-fade-left {
  display: none;
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-gallery {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 14px;
  padding: 0 20px 0 10px;
  background-color: transparent;
}

.gallery-strip {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: transparent;
  isolation: isolate;
}

.gallery-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: stripUp 900s linear infinite;
  background-color: transparent;
}

.gallery-strip:nth-child(2) .gallery-strip-inner {
  animation-name: stripDown;
  animation-duration: 1200s;
}

.gallery-strip:nth-child(3) .gallery-strip-inner {
  animation-duration: 750s;
}

@keyframes stripUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

@keyframes stripDown {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

.gallery-item {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  background-color: var(--surface2);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(163,143,75,0.35);
  pointer-events: none;
  z-index: 1;
  transition: border-color 0.4s;
}

.gallery-item:hover::after {
  border-color: rgba(163,143,75,0.7);
}

.gallery-item:nth-child(odd) {
  aspect-ratio: 3/4;
}

.gallery-item:nth-child(even) {
  aspect-ratio: 4/5;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(12%) saturate(85%) brightness(1.02);
  transition: transform 6s var(--ease), filter 0.5s;
  background: var(--bg);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.04);
  filter: sepia(4%) saturate(100%) brightness(1.05);
}

.gallery-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 16px 16px;
  background: linear-gradient(to top, rgba(214,207,193,0.92) 0%, transparent 100%);
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s;
}

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

.gallery-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--text);
  line-height: 1.2;
}

.gallery-item-year {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* decorative corner marks */
.gallery-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}

.gallery-item:hover .gallery-corner { opacity: 1; }

.gallery-corner::before,
.gallery-corner::after {
  content: '';
  position: absolute;
  background: var(--gold);
}

.gallery-corner::before { width: 100%; height: 1px; top: 0; left: 0; }
.gallery-corner::after  { width: 1px; height: 100%; top: 0; left: 0; }

.gallery-corner.tl { top: 10px; left: 10px; }
.gallery-corner.tr { top: 10px; right: 10px; transform: scaleX(-1); }
.gallery-corner.bl { bottom: 10px; left: 10px; transform: scaleY(-1); }
.gallery-corner.br { bottom: 10px; right: 10px; transform: scale(-1); }

/* STATS */
.stats {
  border-top: 1px solid var(--gold-bd);
  border-bottom: 1px solid var(--gold-bd);
  background: var(--surface);
}

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

.stat {
  padding: 40px var(--gap);
  border-right: 1px solid var(--gold-bd);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 300;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* FEATURED */
.featured {
  padding: 100px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 16px;
}

.section-title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.05;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.see-all {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
  transition: gap 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.see-all:hover { gap: 14px; color: var(--blue-lt); }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* MAP PROMO */
.promo {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--gold-bd);
  border-bottom: 1px solid var(--gold-bd);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.promo-img {
  position: relative;
}

.promo-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(10%) sepia(5%);
  display: block;
  background: var(--surface2);
}

.promo-frame {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px solid var(--gold-bd);
  pointer-events: none;
  z-index: -1;
}

.promo-text h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

.promo-text h2 em { font-style: italic; color: var(--gold); }

.promo-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* TYPES */
.types {
  padding: 80px 0;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--gold-bd);
  margin-top: 40px;
  background: var(--surface);
}

.type-tile {
  display: block;
  padding: 40px 28px;
  border-right: 1px solid var(--gold-bd);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}

.type-tile:last-child { border-right: none; }
.type-tile:hover { background: var(--blue-dim); }
.type-tile:hover .type-arr { transform: translate(3px,-3px); }

.type-icon { font-size: 28px; margin-bottom: 16px; display: block; }

.type-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 6px;
}

.type-cnt { font-size: 12px; color: var(--text-dim); }

.type-arr {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 15px;
  color: var(--blue);
  transition: transform 0.3s;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--gold-bd); }
  .stat:nth-child(odd)  { border-right: 1px solid var(--gold-bd); }
  .stat:nth-child(3),
  .stat:nth-child(4)    { border-bottom: none; }
  .cards-3 { grid-template-columns: repeat(2,1fr); }
  .types-grid { grid-template-columns: repeat(2,1fr); }
  .type-tile:nth-child(2) { border-right: none; }
  .type-tile:nth-child(3) { border-right: 1px solid var(--gold-bd); border-top: 1px solid var(--gold-bd); }
  .type-tile:nth-child(4) { border-top: 1px solid var(--gold-bd); border-right: none; }
  .promo-grid { grid-template-columns: 1fr; gap: 40px; }
  .promo-frame { display: none; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
  }
  .hero-right { display: none; }
  .hero-mobile-strip { display: none; }
  .hero-left {
    flex: 0 0 auto;
    justify-content: center;
  }
  .hero-mobile-decor { display: flex; }
}

/* MOBILE DECORATIVE ORNAMENT */
.hero-mobile-decor {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 0 20px;
  position: relative;
  z-index: 1;
}

.hero-mobile-decor-inner {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mobile-decor-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-bd);
  border-radius: 50%;
  animation: ringPulse 4s ease-in-out infinite;
}

.hero-mobile-decor-ring:nth-child(2) {
  inset: 14px;
  border-color: rgba(163,143,75,0.2);
  animation-delay: 0.5s;
}

.hero-mobile-decor-ring:nth-child(3) {
  inset: 28px;
  border-color: rgba(163,143,75,0.12);
  animation-delay: 1s;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.03); opacity: 0.7; }
}

.hero-mobile-decor-cross {
  position: relative;
  z-index: 2;
  color: var(--gold);
  opacity: 0;
  animation: slideUp 1s var(--ease) 0.3s forwards;
}

.hero-mobile-decor-year {
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  animation: slideUp 1s var(--ease) 0.6s forwards;
}

.hero-mobile-decor-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-bd), transparent);
  margin-top: 16px;
  opacity: 0;
  animation: slideUp 1s var(--ease) 0.8s forwards;
}

@media (max-width: 768px) {
  .hero-content { padding: 40px 20px 60px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 28px 20px; }
  .featured { padding: 60px 0; }
  .cards-3 { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .promo { padding: 60px 0; }
  .types { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-content { padding: 48px 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--gold-bd) !important; }
  .stat:last-child { border-bottom: none !important; }
  .types-grid { grid-template-columns: 1fr; }
  .type-tile { border-right: none !important; border-bottom: 1px solid var(--gold-bd); }
  .type-tile:last-child { border-bottom: none; }
}

/* MOBILE HORIZONTAL GALLERY */
.hero-mobile-strip {
  display: none;
  width: 100%;
  overflow: hidden;
  padding: calc(var(--nav-h) + 20px) 0 0;
  position: relative;
  flex-shrink: 0;
}

.hero-mobile-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(to right, var(--bg), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-mobile-strip::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(to left, var(--bg), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-mobile-track {
  display: flex;
  gap: 12px;
  animation: mobileScroll 60s linear infinite;
  width: max-content;
}

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

.hero-mobile-item {
  flex-shrink: 0;
  width: 140px;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.hero-mobile-item::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(163,143,75,0.35);
  pointer-events: none;
  z-index: 1;
}

.hero-mobile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(10%) saturate(88%);
}

@media (max-width: 900px) {
  .hero-mobile-strip { display: none; }
}
