:root {
  --color-ink: #282827;
  --color-gold: #e1c97b;
  --color-mist: #e2e0dc;
  --color-white: #ffffff;
}

/* Brand color fallbacks (independent of Tailwind CDN) */
.bg-ink { background-color: #282827 !important; }
.bg-gold { background-color: #e1c97b !important; }
.bg-mist { background-color: #e2e0dc !important; }
.bg-white { background-color: #ffffff; }
.text-ink { color: #282827 !important; }
.text-gold { color: #e1c97b !important; }
.text-mist { color: #e2e0dc !important; }
.text-white { color: #ffffff !important; }
.border-ink { border-color: #282827; }
.border-gold { border-color: #e1c97b; }
.border-mist { border-color: #e2e0dc; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-ink);
  background: #fff;
}

a {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

/* ---------- Header (dark) ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header--dark {
  background-color: #282827;
  color: #fff;
}

.site-header--dark.is-scrolled {
  background-color: rgba(40, 40, 39, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.site-header__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .site-header__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-header--dark .brand-mark {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #e1c97b;
  color: #282827;
  font-weight: 700;
  font-size: 1.125rem;
}

.site-header--dark .brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.site-header__nav {
  display: none;
}

.site-header__cta {
  display: none;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header--dark .nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.site-header--dark .nav-link:hover,
.site-header--dark .is-active-item > .nav-link,
.site-header--dark .current-menu-item > .nav-link {
  color: #fff;
}

.site-header--dark .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #e1c97b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-header--dark .nav-link:hover::after,
.site-header--dark .nav-link.is-active::after,
.site-header--dark .is-active-item > .nav-link::after,
.site-header--dark .current-menu-item > .nav-link::after {
  transform: scaleX(1);
}

.site-header--dark .nav-toggle {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.site-header--dark .mobile-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #282827;
}

@media (min-width: 1024px) {
  .site-header__nav,
  .site-header__cta {
    display: block;
  }

  .site-header__cta {
    display: flex;
  }

  .site-header--dark .nav-toggle,
  .site-header--dark .mobile-nav {
    display: none !important;
  }
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo-link img,
.custom-logo {
  max-height: 44px;
  width: auto;
}

/* ---------- Footer (dark) ---------- */
.site-footer {
  background-color: #282827 !important;
  color: #fff;
}

.site-footer .footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #e1c97b;
}

.site-footer .footer-text {
  margin-top: 1rem;
  max-width: 28rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .footer-heading {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e1c97b;
}

.site-footer .footer-nav a,
.site-footer .footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.site-footer .footer-nav a:hover,
.site-footer .footer-link:hover {
  color: #e1c97b;
}

.site-footer .footer-nav .nav-link::after {
  display: none;
}

.site-footer .footer-contact {
  display: grid;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer .footer-contact a:hover {
  color: #e1c97b;
}

.site-footer .footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 768px) {
  .site-footer .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.9rem 1.6rem;
  border-radius: 9999px;
  border: 2px solid transparent;
}

.btn-sm {
  padding: 0.65rem 1.25rem !important;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
}

.btn-primary:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-ink);
}

.btn-secondary {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}

.btn-secondary:hover {
  background: var(--color-ink);
  color: #fff;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-ink);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background: #fff;
  border-color: #fff;
  color: var(--color-ink);
}

.btn-on-dark {
  border-color: #fff !important;
  color: #fff !important;
}

.btn-on-dark:hover {
  background: #fff !important;
  color: #282827 !important;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  margin: 0 0.15rem;
  border-radius: 9999px;
  border: 1px solid rgba(40, 40, 39, 0.12);
  font-size: 0.875rem;
  font-weight: 600;
  color: #282827;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: #e1c97b;
  border-color: #e1c97b;
}

/* ---------- Homepage Hero (split) ---------- */
.home-hero--split {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
  color: #282827;
}

.home-hero__atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(225, 201, 123, 0.28), transparent 60%),
    radial-gradient(ellipse 55% 45% at 100% 20%, rgba(226, 224, 220, 0.95), transparent 55%),
    linear-gradient(180deg, #f7f6f3 0%, #ffffff 55%, #e2e0dc 100%);
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 7.5rem 1.25rem 3.5rem;
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .home-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3.5rem;
    padding: 8.5rem 2rem 4.5rem;
  }
}

.home-hero__copy {
  max-width: 36rem;
}

.home-hero__brand {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: #282827;
}

.home-hero__eyebrow {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(40, 40, 39, 0.55);
}

.home-hero__title {
  margin: 1rem 0 0;
  max-width: 16ch;
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #282827;
}

.home-hero__subtitle {
  margin: 1.25rem 0 0;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(40, 40, 39, 0.72);
}

.home-hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.home-hero__collage {
  position: relative;
  min-height: 22rem;
  width: 100%;
  max-width: 34rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .home-hero__collage {
    min-height: 32rem;
    max-width: none;
    margin: 0;
  }
}

.home-hero__shot {
  margin: 0;
  overflow: hidden;
  background: #e2e0dc;
}

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

.home-hero__shot--main {
  position: absolute;
  top: 8%;
  right: 0;
  width: 68%;
  aspect-ratio: 4 / 5;
  z-index: 2;
  animation: heroFloatA 7s ease-in-out infinite alternate;
}

.home-hero__shot--top {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  aspect-ratio: 1;
  z-index: 3;
  animation: heroFloatB 6s ease-in-out infinite alternate;
}

.home-hero__shot--bottom {
  position: absolute;
  bottom: 2%;
  left: 8%;
  width: 48%;
  aspect-ratio: 5 / 4;
  z-index: 3;
  animation: heroFloatC 8s ease-in-out infinite alternate;
}

.home-hero__accent {
  position: absolute;
  right: 8%;
  bottom: 10%;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 9999px;
  background: #e1c97b;
  z-index: 1;
  opacity: 0.9;
  animation: heroPulse 5s ease-in-out infinite alternate;
}

.hero-reveal {
  animation: heroFadeUp 0.9s ease both;
}

.hero-reveal-delay {
  animation: heroFadeUp 0.9s ease 0.15s both;
}

.hero-reveal-delay-2 {
  animation: heroFadeUp 0.9s ease 0.3s both;
}

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

@keyframes heroFloatA {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-12px);
  }
}

@keyframes heroFloatB {
  from {
    transform: translateY(0) rotate(-1deg);
  }
  to {
    transform: translateY(10px) rotate(1deg);
  }
}

@keyframes heroFloatC {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-8px);
  }
}

@keyframes heroPulse {
  from {
    transform: scale(0.92);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.bg-atmosphere {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(225, 201, 123, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(226, 224, 220, 0.9), transparent 50%),
    #ffffff;
}

.bg-mist-band {
  background:
    linear-gradient(180deg, rgba(226, 224, 220, 0.55) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.type-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(225, 201, 123, 0.25);
  color: var(--color-ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-nav.is-open {
  max-height: 420px;
}

.eb-form input,
.eb-form textarea,
.eb-form select {
  width: 100%;
  border: 1px solid #d6d4cf;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  color: var(--color-ink);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.eb-form input:focus,
.eb-form textarea:focus,
.eb-form select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(225, 201, 123, 0.35);
}

.eb-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--color-ink);
}

.entry-content > * + * {
  margin-top: 1.25rem;
}

.entry-content h2,
.entry-content h3 {
  font-weight: 700;
  line-height: 1.25;
  margin-top: 2rem;
}

.entry-content p {
  line-height: 1.8;
  color: rgba(40, 40, 39, 0.88);
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.25rem;
  line-height: 1.8;
}

.entry-content a {
  color: var(--color-ink);
  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-underline-offset: 3px;
}

.entry-content blockquote {
  border-left: 3px solid var(--color-gold);
  padding-left: 1.25rem;
  font-style: italic;
  color: rgba(40, 40, 39, 0.75);
}

.shadow-soft {
  box-shadow: 0 18px 50px rgba(40, 40, 39, 0.08);
}
