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

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --cream: #f5f0e8;
  --dark: #0d0c0a;
  --deep: #1a1814;
  --muted: #6b6459;
  --white: #fdfcfa;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition:
    transform 0.18s ease,
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
  transform: translate(-50%, -50%);
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 4rem;
  background: linear-gradient(
    to bottom,
    rgba(13, 12, 10, 0.9) 0%,
    transparent 100%
  );
  animation: fadeDown 1.2s ease both;
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-decoration: none;
}
.nav-logo span {
  font-style: italic;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  font-weight: 300;
  opacity: 0.8;
  transition:
    opacity 0.3s,
    color 0.3s;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}
.nav-cta {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  border: none;
  padding: 0.75rem 1.75rem;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  cursor: none;
  transition:
    background 0.3s,
    transform 0.2s;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(13, 12, 10, 0.6) 0%,
      rgba(13, 12, 10, 0.2) 50%,
      rgba(13, 12, 10, 0.7) 100%
    ),
    url("https://images.unsplash.com/photo-1540541338287-41700207dee6?w=1800&q=80")
      center/cover no-repeat;
  transform: scale(1.08);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

/* Noise texture overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: heroReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: rgba(245, 240, 232, 0.6);
  font-weight: 200;
  text-transform: uppercase;
}

.hero-actions {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 2.5rem;
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.3);
  padding: 1rem 2.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  font-weight: 300;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: fadeIn 2s 1.5s both;
}
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

/* STRIP */
.strip {
  background: var(--gold);
  padding: 1.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 400;
}
.strip-item svg {
  opacity: 0.7;
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}
.about-visual {
  position: relative;
  overflow: hidden;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-visual:hover img {
  transform: scale(1.04);
}
.about-visual-tag {
  position: absolute;
  bottom: 2rem;
  right: -1px;
  background: var(--deep);
  padding: 1.25rem 2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  border-left: 2px solid var(--gold);
}

.about-content {
  background: var(--deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
}
.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::after {
  content: "";
  flex: 0 0 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 2rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-body {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.55);
  font-weight: 300;
  max-width: 42ch;
  margin-bottom: 2.5rem;
}

.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 1rem;
}
.stat {
  border-left: 1px solid rgba(201, 169, 110, 0.3);
  padding-left: 1.25rem;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* EXPERIENCES */
.experiences {
  background: var(--dark);
  padding: 7rem 4rem;
}
.experiences-header {
  text-align: center;
  margin-bottom: 4rem;
}
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201, 169, 110, 0.1);
}
.exp-card {
  background: var(--deep);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.exp-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.exp-card:hover {
  background: #1f1d19;
}
.exp-card:hover::before {
  transform: scaleX(1);
}
.exp-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.exp-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.exp-body {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.45);
  font-weight: 300;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 3px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--deep);
}
.gallery-item:first-child {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s ease,
    filter 0.4s;
  filter: brightness(0.85) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.95) saturate(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 12, 10, 0.5) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-tag {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ROOMS */
.rooms {
  background: var(--deep);
  padding: 7rem 4rem;
}
.rooms-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201, 169, 110, 0.08);
}
.room-card {
  background: var(--dark);
  overflow: hidden;
  position: relative;
}
.room-img {
  height: 260px;
  overflow: hidden;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.88);
}
.room-card:hover .room-img img {
  transform: scale(1.06);
}
.room-info {
  padding: 2rem;
}
.room-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.room-features {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding-top: 1.25rem;
}
.room-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
}
.room-price span {
  font-size: 0.65rem;
  color: var(--muted);
  font-family: "Jost", sans-serif;
}
.room-book {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.4);
  padding: 0.6rem 1.25rem;
  background: transparent;
  cursor: none;
  transition: all 0.3s;
  font-family: "Jost", sans-serif;
}
.room-book:hover {
  background: var(--gold);
  color: var(--dark);
}

/* TESTIMONIAL */
.testimonial {
  background: var(--dark);
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 20rem;
  color: rgba(201, 169, 110, 0.04);
  line-height: 1;
  pointer-events: none;
}
.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.3);
  cursor: none;
  transition: background 0.3s;
}
.dot.active {
  background: var(--gold);
}

/* CTA */
.cta {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(13, 12, 10, 0.65), rgba(13, 12, 10, 0.65)),
    url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=80")
      center/cover;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.cta-title em {
  font-style: italic;
  color: var(--gold-light);
}
.cta-sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 3rem;
}
.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* FOOTER */
footer {
  background: #080807;
  padding: 5rem 4rem 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  padding-bottom: 4rem;
}
.footer-brand .brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer-brand .brand-name span {
  font-style: italic;
  color: var(--gold);
}
.footer-brand p {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.35);
  font-weight: 300;
  max-width: 28ch;
}
.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.75rem;
}
.footer-col ul li a {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.4);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.65rem;
  color: rgba(245, 240, 232, 0.2);
  letter-spacing: 0.1em;
}
.footer-social {
  display: flex;
  gap: 1.25rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ANIMATIONS */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

@media (max-width: 900px) {
  nav {
    padding: 1.5rem 2rem;
  }
  .nav-links {
    display: none;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .experiences-grid,
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child {
    grid-row: auto;
    grid-column: span 2;
    height: 280px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .strip {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
  }
  .hero-actions {
    flex-direction: column;
  }
}

/* PAGE HERO */
.page-hero {
  height: 70vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 4rem 5rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(13, 12, 10, 0.3) 0%,
      rgba(13, 12, 10, 0.7) 100%
    ),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1800&q=80")
      center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 12, 10, 1) 0%,
    transparent 60%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.breadcrumb span {
  opacity: 0.4;
}
.page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
}
.page-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* INTRO */
.intro {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
}
.intro-text {
  padding: 7rem 5rem 7rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-text .section-body {
  max-width: 46ch;
  margin-top: 1.75rem;
  margin-bottom: 2.5rem;
}
.intro-pull {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  max-width: 36ch;
}
.intro-visual {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.85) saturate(0.9);
}
.intro-visual:hover img {
  transform: scale(1.04);
}
.intro-visual-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -1px;
  background: var(--gold);
  padding: 1rem 2rem;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 400;
}

/* PHILOSOPHY */
.philosophy {
  background: var(--deep);
  padding: 8rem 4rem;
}
.philosophy-header {
  text-align: center;
  margin-bottom: 5rem;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 169, 110, 0.1);
}
.philo-card {
  background: var(--dark);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.philo-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.philo-card:hover {
  background: #1c1a16;
}
.philo-card:hover::after {
  transform: scaleX(1);
}
.philo-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--gold);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.philo-card:hover .philo-icon {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}
.philo-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.philo-body {
  font-size: 0.75rem;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.4);
  font-weight: 300;
}

/* STORY TIMELINE */
.story {
  background: var(--dark);
  padding: 8rem 4rem;
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.story-visual-stack {
  position: relative;
  height: 580px;
}
.story-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 70%;
  overflow: hidden;
}
.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.7s;
}
.story-img-main:hover img {
  transform: scale(1.05);
}
.story-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 55%;
  overflow: hidden;
  border: 3px solid var(--dark);
}
.story-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.9);
  transition: transform 0.7s;
}
.story-img-secondary:hover img {
  transform: scale(1.05);
}
.story-year-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.story-year-badge .year {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}
.story-year-badge .founded {
  font-size: 0.45rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13, 12, 10, 0.6);
}
.story-content {
  padding-top: 1rem;
}
.story-content .section-body {
  margin: 1.5rem 0;
}
.timeline {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  transition: padding-left 0.3s;
}
.timeline-item:last-child {
  border-bottom: none;
}
.timeline-item:hover {
  padding-left: 0.5rem;
}
.timeline-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 300;
  padding-top: 0.1rem;
}
.timeline-text h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.35rem;
  font-weight: 300;
}
.timeline-text p {
  font-size: 0.75rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.4);
  font-weight: 300;
}

/* TEAM */
.team {
  background: var(--deep);
  padding: 8rem 4rem;
}
.team-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(201, 169, 110, 0.08);
}
.team-card {
  background: var(--dark);
  overflow: hidden;
}
.team-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) grayscale(0.3);
  transition:
    transform 0.6s,
    filter 0.4s;
}
.team-card:hover .team-img img {
  transform: scale(1.06);
  filter: brightness(0.9) grayscale(0);
}
.team-info {
  padding: 1.5rem 1.75rem;
}
.team-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
}

/* AWARDS */
.awards {
  background: var(--dark);
  padding: 5rem 4rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}
.awards-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.5;
  transition: opacity 0.3s;
  cursor: default;
}
.award-item:hover {
  opacity: 1;
}
.award-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.award-name {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
  max-width: 100px;
  line-height: 1.5;
}
.award-year {
  font-size: 0.55rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .page-hero {
    padding: 0 2rem 4rem;
  }
  .intro,
  .story-inner,
  .sustainability {
    grid-template-columns: 1fr;
  }
  .intro-visual {
    min-height: 320px;
  }
  .story-visual-stack {
    height: 380px;
  }
  .philosophy-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .awards-inner {
    gap: 2rem;
  }
}


/* SUSTAINABILITY */
.sustainability {
  background: var(--deep);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 70vh;
}
.sustain-content {
  padding: 7rem 5rem 7rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sustain-content .section-body {
  margin: 1.75rem 0;
  max-width: 44ch;
}
.sustain-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}
.sustain-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(201, 169, 110, 0.12);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.sustain-point:hover {
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.03);
}
.sp-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}
.sp-text h4 {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.3rem;
  font-weight: 300;
}
.sp-text p {
  font-size: 0.73rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.4);
}
.sustain-visual {
  position: relative;
  overflow: hidden;
}
.sustain-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.85);
  transition:
    transform 0.8s,
    filter 0.4s;
}
.sustain-visual:hover img {
  transform: scale(1.04);
  filter: brightness(0.85) saturate(1);
}
.sustain-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 24, 20, 0.4) 0%,
    transparent 70%
  );
}

/* CTA */
.cta {
  position: relative;
  overflow: hidden;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(13, 12, 10, 0.65), rgba(13, 12, 10, 0.65)),
    url("https://images.unsplash.com/photo-1512100356356-de1b84283e18?w=1800&q=80")
      center/cover;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.cta-title em {
  font-style: italic;
  color: var(--gold-light);
}
.cta-sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 2.5rem;
}
.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 2.5rem;
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.3);
  padding: 1rem 2.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
