@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none !important;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix blend-mode: normal;
}

::view-transition-old(root) {
  z-index: 1;
}

::view-transition-new(root) {
  z-index: 2;
}

:root {
  /* --- Light Mode         d) ---
      --deep: #FAF6EE;
      --ink: #FFFFFF;
      --ivory: #1A1208;
      --c    agne: #E8B84B;
      --gold: #C8B49A;
      --muted: #5045 6;
      --amber: #c8922a;
      --rose: #8B3A52;
      --terra: #A 4832                    741;       --cream: #FDF9F1;
      ----------------------------- */

  /* Dark Mode Defaults */
  --deep: #0D0A07;
  --ink: #1A1208;
  --ivory: #FAF6EE;
  --champagne: #F5E6C8;
  --gold: #E8B84B;
  --muted: #9A8B7A;
  --amber: #C8922A;
  --rose: #8B3A52;
  --terra: #A04832;
  #4A6741;
  --cream: #F2E8D5;

  --black: #000000;
  --font-serif: 'EB Garamond' orgia, serif;
  --font-sans: 'Hanken Grotesk', system-ui, apple-system, sans-serif;
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-cinematic: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background: var(--deep);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
  color: var(--ivory)
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none
}

*::-webkit-scrollbar {
  width: 3px
}

*::-webkit-scrollbar-thumb {
  background: var(--amber)
}

@keyframes kenBurns {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.08)
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

@keyframes shimmerLine {

  0%,
  100% {
    opacity: .3
  }

  50% {
    opacity: 1
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px)
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: all .4s;
  font-size: 12px
}

.nav.scrolled {
  /* Light Mode: background: rgba(255, 255, 255, .92); */
  background: rgba(13, 10, 7, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 146, 42, .15)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px
}

.nav-link {
  color: var(--champagne);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 11.5px;
  transition: color .3s;
  padding: 4px 0;
  border-bottom: 1px solid transparent
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold)
}

.dropdown {
  position: relative
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  border: 1px solid rgba(200, 146, 42, .2);
  min-width: 210px;
  padding: 10px 0;
  z-index: 1000;
  animation: slideIn .25s ease;
  display: none
}

.dropdown:hover .dropdown-menu {
  display: block
}

.dropdown-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 22px;
  color: var(--champagne);
  font-size: 13px;
  letter-spacing: .08em;
  transition: all .2s
}

.dropdown-item:hover {
  color: var(--gold);
  padding-left: 30px
}

.dropdown-sub {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: .05em
}

.book-btn {
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 9px 22px;
  transition: all .3s
}

.book-btn:hover {
  background: var(--gold);
  color: var(--deep)
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden
}

.hero-slide {
  position: absolute;
  inset: 0;
  transition: opacity 1.5s ease;
  opacity: 0
}

.hero-slide.active {
  opacity: 1
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-slide.active img {
  animation: kenBurns 8s ease forwards
}

.overlay-main {
  position: absolute;
  inset: 0;
  /* Light Mode: background: linear-gradient(to bottom, rgba(250, 246, 238, .3) 0%, rgba(250, 246, 238, .1) 40%, rgba(250, 246, 238, .6) 80%, var(--deep) 100%) */
  background: linear-gradient(to bottom, rgba(13, 10, 7, .3) 0%, rgba(13, 10, 7, .1) 40%, rgba(13, 10, 7, .4) 80%, rgba(13, 10, 7, .85) 100%)
}

.overlay-side {
  position: absolute;
  inset: 0;
  /* Light Mode: background: linear-gradient(to right, rgba(250, 246, 238, .4) 0%, transparent 60%) */
  background: linear-gradient(to right, rgba(13, 10, 7, .4) 0%, transparent 50%)
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  padding-top: 80px
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  animation: fadeSlideUp .8s ease .2s both
}

.eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--gold)
}

.eyebrow-text {
  font-size: 10px;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--gold)
}

.hero-h1 {
  font-size: clamp(54px, 8vw, 108px);
  font-weight: 300;
  line-height: .92;
  margin-bottom: 16px;
  animation: fadeSlideUp .9s ease .4s both
}

.hero-h1 em {
  color: var(--gold);
  font-style: italic
}

.hero-sub {
  font-size: clamp(16px, 2vw, 24px);
  color: var(--champagne);
  max-width: 440px;
  line-height: 1.5;
  margin-bottom: 44px;
  font-weight: 300;
  animation: fadeSlideUp .9s ease .6s both
}

.hero-btns {
  display: flex;
  gap: 18px;
  animation: fadeSlideUp .9s ease .8s both
}

.btn-primary {
  background: var(--gold);
  color: var(--deep);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: all .3s;
  border: none
}

.btn-primary:hover {
  background: var(--amber)
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--muted);
  color: var(--ivory);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: all .3s
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.slide-dots {
  position: absolute;
  bottom: 36px;
  right: 44px;
  display: flex;
  gap: 8px
}

.slide-dot {
  height: 2px;
  background: var(--muted);
  border: none;
  padding: 0;
  transition: all .4s;
  cursor: pointer
}

.slide-dot.active {
  background: var(--gold)
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .5
}

.scroll-label {
  font-size: 9px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--champagne)
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: shimmerLine 2s ease infinite
}

/* About */
.about {
  display: flex;
  justify-content: center;
  /* centers horizontally */
  align-items: center;
  /* centers vertically */
  gap: 80px;
  /* space between text and image */
  max-width: 1400px;
  margin: 0 auto;
  /* centers the whole section */
  min-height: 100vh;
  /* optional: center within viewport height */
  padding: 0 40px;
}

.section-eye {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px
}

.section-line {
  height: 1px;
  background: var(--amber)
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold)
}

.h2 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.05;
  margin-bottom: 28px
}

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

.body-serif {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 17px;
  color: var(--champagne);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 18px
}

.body-muted {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9
}

.stat-box {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--ink);
  border: 1px solid rgba(200, 146, 42, .25);
  padding: 22px 28px
}

.stat-num {
  font-size: 38px;
  font-weight: 300;
  color: var(--gold)
}

.stat-label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted)
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 3px
}

.g-3 {
  grid-template-columns: repeat(3, 1fr)
}

.g-4 {
  grid-template-columns: repeat(4, 1fr)
}

.g-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 300px
}

.g-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.25, .46, .45, .94)
}

.g-card:hover img {
  transform: scale(1.07)
}

.g-base-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 10, 7, .8) 0%, rgba(13, 10, 7, .2) 60%, transparent 100%);
  pointer-events: none
}

.g-hover-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px
}

.g-card:hover .g-hover-overlay {
  opacity: 1
}

.g-content {
  transform: translateY(18px);
  transition: transform .5s ease
}

.g-card:hover .g-content {
  transform: translateY(0)
}

.g-accent-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 12px
}

.g-cat {
  font-size: 9px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px
}

.g-tagline {
  font-size: 19px;
  font-style: italic;
  color: #FAF6EE;
  line-height: 1.3;
  margin-bottom: 18px
}

.g-explore {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold)
}

.g-arrow {
  transition: transform .3s
}

.g-card:hover .g-arrow {
  transform: translateX(6px)
}

.g-default-label {
  position: absolute;
  bottom: 22px;
  left: 22px;
  transition: opacity .3s
}

.g-card:hover .g-default-label {
  opacity: 0
}

.g-def-cat {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px
}

.g-def-desc {
  font-size: 13px;
  color: var(--champagne);
  font-style: italic
}

/* ─── LOADING SCREEN ─── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 1s var(--ease-luxury), visibility 1s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-brand {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--ivory);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-cinematic) 0.3s forwards;
}

.loader-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-cinematic) 0.7s forwards;
}

.loader-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-top: 1rem;
  animation: expandLine 1.5s var(--ease-cinematic) 0.5s forwards;
}

@keyframes expandLine {
  to {
    width: 200px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 56px
}

.section-title {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.05
}

.section-title em {
  color: var(--gold)
}

/* Stories */
.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px
}

.story-img {
  overflow: hidden
}

.story-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease
}

.story-img:hover img {
  transform: scale(1.04)
}

.story-badge {
  font-size: 9px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(232, 184, 75, .12);
  padding: 4px 12px;
  border: 1px solid rgba(232, 184, 75, .3);
  display: inline-block;
  margin-bottom: 10px
}

.story-date {
  font-size: 11px;
  color: var(--muted);
  margin-left: 14px
}

.story-h {
  font-size: clamp(24px, 3vw, 38px);
  color: var(--ivory);
  font-weight: 400;
  line-height: 1.2;
  margin: 14px 0
}

.story-excerpt {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 16px;
  color: var(--champagne);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 20px
}

.read-more {
  background: none;
  border: none;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: gap .3s;
  font-family: inherit
}

.read-more:hover {
  gap: 16px
}

/* CTA */
.cta {
  position: relative;
  overflow: hidden;
  padding: 150px 8%;
  text-align: center
}

.cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 10, 7, .8)
}

.cta-inner {
  position: relative
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 120px)
}

.form-left {
  position: relative;
  overflow: hidden
}

.form-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.form-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--deep))
}

.form-right {
  padding: 80px 9%
}

.form-field {
  margin-bottom: 28px
}

.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(200, 146, 42, .35);
  padding: 11px 0;
  font-size: 16px;
  color: var(--ivory);
  outline: none;
  font-family: inherit;
  transition: border-color .3s
}

.form-input:focus {
  border-bottom-color: var(--gold)
}

/* Page header */
.page-header {
  padding: 56px 8% 72px;
  text-align: center
}

.page-h1 {
  font-size: clamp(46px, 6vw, 80px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1
}

.page-h1 em {
  color: var(--gold)
}

/* Footer */
.footer {
  background: var(--ink);
  padding: 56px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(200, 146, 42, .18)
}

.footer-links {
  display: flex;
  gap: 28px
}

.footer-link {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s
}

.footer-link:hover {
  color: var(--gold)
}

.footer-copy {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .1em
}

/* Page transitions */
.page-wrap {
  animation: fadeSlideUp .5s ease both
}

/* Experiences strip */
.exp-strip {
  background: var(--ink);
  padding: 90px 8%
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start
}

.logo-main {
  font-size: 21px;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: .08em;
  line-height: 1
}

.logo-sub {
  font-size: 10px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .32em;
  text-transform: uppercase;
  line-height: 1.4
}

/* About image */
.about-img-wrap {
  position: relative
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--ivory);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-luxury);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245, 240, 232, 0.5);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: all 0.4s var(--ease-luxury);
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
}

/* ─── SERVICES SECTION ─── */
.services-section {
  position: relative;
  padding: 140px 8%;
  background-color: var(--surface-container-low, #f7f3eb);
  overflow: hidden;
  color: var(--ink-text, #1A1208);
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.services-marquee {
  position: absolute;
  top: calc(50% - 180px);
  left: 0;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: clamp(150px, 20vw, 320px);
  font-weight: 800;
  color: #F5E6C8;
  opacity: 0.15;
  /* subtle color for dark mode or light mode */
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  animation: marquee 40s linear infinite;
  user-select: none;
}

html.dark .services-section {
  background-color: var(--deep);
}

html.dark .services-marquee {
  color: #F5E6C8;
}

@keyframes marquee {
  0% {
    transform: translate(0, -50%);
  }

  100% {
    transform: translate(-50%, -50%);
  }
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.service-card {
  background: var(--ink, #ffffff);
  padding: 56px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s var(--ease-luxury), border-color 0.5s var(--ease-luxury);
  border-top: 3px solid transparent;
  display: flex;
  flex-direction: column;
}

html.dark .service-card {
  background: rgba(26, 18, 8, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 184, 75, 0.1);
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-top-color: var(--champagne);
}

html.dark .service-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-top-color: var(--gold);
  background: rgba(26, 18, 8, 0.8);
}

.service-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ink-text, #1A1208);
  margin-bottom: 28px;
  text-transform: uppercase;
}

html.dark .service-title {
  color: var(--ivory);
}

.service-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.8;
  color: var(--on-surface-variant, #504536);
  font-weight: 400;
}

html.dark .service-desc {
  color: var(--champagne);
}

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

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

  .services-section {
    padding: 80px 8%;
  }
}