
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 
:root {
  --black: #161616;
  --white: #f5f0ea;
  --cream: #f0e8db;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --red: #c0392b;
  --mid: #1a1a1a;
  --text-muted: #888;
}
 
html { scroll-behavior: smooth; }
 
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}
 
.cursor {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s ease;
  opacity: 0.6;
}

nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
}
nav::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, transparent 100%);
  pointer-events: none;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
  position: relative;
}
.nav-logo span { color: var(--white); }
.nav-links {
  display: flex; gap: 40px;
  list-style: none;
  position: relative;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-social {
  display: flex; gap: 20px; position: relative;
}
.nav-social a {
  color: var(--white); opacity: 0.5;
  font-size: 13px; letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.3s, color 0.3s;
}
.nav-social a:hover { opacity: 1; color: var(--gold); }

.hero {
  height: 100vh;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 80px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.95) 100%),
    url('https://wilhrisca.com/wp-content/uploads/2024/09/img_7459.jpg') center/cover no-repeat;
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}
.hero-noise {
  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");
  pointer-events: none;
}
.hero-line {
  position: absolute; top: 0; right: 120px;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.hero-tag {
  font-size: 11px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; display: block;
  animation: fadeUp 1s 0.2s both;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  animation: fadeUp 1s 0.4s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75em;
}
.hero-sub {
  margin-top: 32px;
  color: rgba(245,240,234,0.65);
  max-width: 480px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.8;
  animation: fadeUp 1s 0.6s both;
}
.hero-cta {
  margin-top: 48px;
  display: flex; gap: 20px; align-items: center;
  animation: fadeUp 1s 0.8s both;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 14px 36px;
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  color: var(--white); font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  text-decoration: none; opacity: 0.6;
  border-bottom: 1px solid rgba(245,240,234,0.3);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}
.btn-ghost:hover { opacity: 1; }
.hero-scroll {
  position: absolute; right: 60px; bottom: 80px;
  writing-mode: vertical-rl;
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  opacity: 0.6; z-index: 2;
  display: flex; align-items: center; gap: 16px;
  animation: fadeUp 1s 1s both;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 60px;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(0.5); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.marquee-bar {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 0;
  animation: marquee 25s linear infinite;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px; letter-spacing: 0.2em;
  color: var(--black);
  padding: 0 48px;
}
.marquee-dot {
  color: var(--black); opacity: 0.5;
  font-size: 20px; line-height: 1;
  display: inline-block; vertical-align: middle;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.about {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.about-images {
  position: relative; overflow: hidden;
  background: var(--mid);
}
.about-img-main {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(20%);
  transition: filter 0.5s;
}
.about-img-main:hover { filter: grayscale(0%); }
.about-img-overlay {
  position: absolute; bottom: 40px; right: -40px;
  width: 55%;
  border: 3px solid var(--black);
  box-shadow: -8px 8px 40px rgba(0,0,0,0.6);
  object-fit: cover;
  height: 280px;
}
.about-content {
  background: var(--black);
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.about-content::before {
  content: '"';
  position: absolute; top: 60px; left: 60px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px; color: var(--gold);
  opacity: 0.08; line-height: 1;
  pointer-events: none;
}
.section-label {
  font-size: 10px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; display: flex; align-items: center; gap: 16px;
}
.section-label::before {
  content: '';
  display: block; width: 40px; height: 1px;
  background: var(--gold);
}
.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
}
.about-title strong { font-weight: 600; color: var(--gold); }
.about-body {
  font-size: 15px; line-height: 1.9;
  color: rgba(245,240,234,0.6);
  margin-bottom: 40px;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px;
  border-top: 1px solid rgba(245,240,234,0.1);
  padding-top: 48px;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
  margin-top: 4px;
}
 
.services {
  padding: 120px 60px;
  background: var(--cream);
  color: var(--black);
}
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 80px;
}
.services-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 90px);
  line-height: 0.9;
  color: var(--black);
}
.services-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--gold);
}
.services-intro {
  max-width: 300px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(10,10,10,0.6);
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--black);
  color: var(--white);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); }
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px; color: var(--gold);
  opacity: 0.15; line-height: 1;
  margin-bottom: 24px;
}
.service-icon { font-size: 32px; margin-bottom: 20px; }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600;
  margin-bottom: 16px; color: var(--gold);
}
.service-desc {
  font-size: 14px; line-height: 1.8;
  color: rgba(245,240,234,0.6);
}
 
.posts {
  padding: 120px 60px;
  background: var(--black);
}
.posts-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 64px;
}
.posts-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.9;
}
.posts-title span { color: var(--gold); }
.posts-link {
  color: var(--gold); text-decoration: none;
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}
.posts-link:hover { opacity: 0.6; }
.posts-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2px;
}
.post-card {
  position: relative; overflow: hidden;
  background: var(--mid);
  cursor: none ;
}
.post-img {
  width: 100%; height: 380px;
  object-fit: cover; display: block;
  filter: grayscale(30%) brightness(0.8);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.post-card:first-child .post-img { height: 460px; }
.post-card:hover .post-img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(0.7);
}
.post-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px;
}
.post-date {
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  line-height: 1.3;
}
.post-card:first-child .post-title { font-size: 30px; }
.post-excerpt {
  font-size: 13px; line-height: 1.7;
  color: rgba(245,240,234,0.55);
  margin-top: 10px;
  display: none;
}
.post-card:first-child .post-excerpt { display: block; }
 
.testimonials {
  background: var(--mid);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.test-header {
  text-align: center; margin-bottom: 80px;
  position: relative; z-index: 1;
}
.test-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 90px);
  line-height: 1;
}
.test-title span { color: var(--gold); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative; z-index: 1;
}
.test-card {
  background: rgba(245,240,234,0.04);
  border: 1px solid rgba(245,240,234,0.08);
  padding: 48px 40px;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}
.test-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}
.test-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px; color: var(--gold);
  line-height: 0.5; margin-bottom: 24px;
  opacity: 0.5;
}
.test-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; line-height: 1.8;
  color: rgba(245,240,234,0.75);
  font-style: italic;
  margin-bottom: 32px;
}
.test-author {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}
.test-stars { color: var(--gold); margin-top: 16px; font-size: 13px; }
 
.newsletter {
  background: var(--gold);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nl-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--black);
  line-height: 0.9;
}
.nl-sub {
  margin-top: 20px;
  font-size: 16px; line-height: 1.7;
  color: rgba(10,10,10,0.65);
  font-family: 'Cormorant Garamond', serif;
}
.nl-form {
  display: flex; flex-direction: column; gap: 16px;
}
.nl-input {
  background: rgba(10,10,10,0.12);
  border: 1px solid rgba(10,10,10,0.25);
  color: var(--black);
  padding: 16px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.nl-input::placeholder { color: rgba(10,10,10,0.4); }
.nl-input:focus { border-color: var(--black); }
.nl-btn {
  background: var(--black);
  color: var(--gold);
  border: none;
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: none;
  width: 100%;
  transition: opacity 0.3s;
}
.nl-btn:hover { opacity: 0.8; }
 
footer {
  background: #050505;
  padding: 80px 60px 40px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,240,234,0.08);
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; color: var(--gold);
  letter-spacing: 0.1em;
}
.footer-tagline {
  font-size: 13px; color: var(--text-muted);
  margin-top: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.footer-links { display: flex; gap: 60px; }
.footer-col h4 {
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 13px; color: var(--text-muted);
  text-decoration: none; transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 40px;
}
.footer-copy { font-size: 12px; color: rgba(245,240,234,0.2); }
.footer-social { display: flex; gap: 24px; }
.footer-social a {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
}

@media (max-width: 768px) {
  
  .hero, .services, .posts, .testimonials, .newsletter, footer {
    padding: 60px 24px;
  }

  /* Navigation */
  nav {
    padding: 20px 24px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    background: rgba(10, 10, 10, 0.95);
  }
  .nav-logo {
    width: 100%;
    text-align: center;
  }
  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-social {
    display: none;
  }

  .hero-content { margin-top: 80px; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-scroll { right: 24px; bottom: 24px; }

  .about { 
    grid-template-columns: 1fr; 
    min-height: auto;
  }
  .about-images { height: 400px; }
  .about-content { padding: 60px 24px; }
  .about-content::before { top: 20px; left: 20px; font-size: 120px; }
  .about-stats { gap: 16px; }
  .stat-num { font-size: 36px; }

  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 40px 24px; }

  .posts-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
  .posts-grid { grid-template-columns: 1fr; gap: 16px; }
  .post-card .post-img, .post-card:first-child .post-img { height: 300px; }
  .post-card:first-child .post-excerpt { display: none; } /* Hide long excerpt on mobile */

  .test-grid { grid-template-columns: 1fr; gap: 24px; }
  .test-card { padding: 32px 24px; }

  .newsletter { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .nl-sub { margin: 20px auto 0; }

  .footer-top { flex-direction: column; gap: 40px; padding-bottom: 40px; }
  .footer-links { flex-direction: column; gap: 40px; width: 100%; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

.contact-page {
  padding: 160px 60px 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}
.contact-container {
  max-width: 800px;
  width: 100%;
  background: var(--mid);
  padding: 80px;
  border: 1px solid rgba(245,240,234,0.08);
  position: relative;
}
.contact-container::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}
.contact-form input, .contact-form textarea {
  background: rgba(10,10,10,0.5);
  border: 1px solid rgba(245,240,234,0.1);
  color: var(--white);
  padding: 16px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--gold);
}
.contact-form textarea {
  resize: vertical;
  min-height: 180px;
}
.btn-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: none;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
}
.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-page { padding: 120px 24px 60px; }
  .contact-container { padding: 40px 24px; }
  .btn-submit { width: 100%; text-align: center; }
}

.stories-page {
  padding: 160px 60px 80px;
  background: var(--black);
  min-height: 100vh;
}

.stories-header-container {
  text-align: center;
  margin-bottom: 80px;
}

.stories-page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.9;
  color: var(--white);
}

.stories-page-title span {
  color: var(--gold);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.story-card {
  background: var(--mid);
  border: 1px solid rgba(245,240,234,0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: none;
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.3);
}

.story-img-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.9);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.story-card:hover .story-img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1);
}

.story-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.story-date {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  padding-top: 20px;
}

.story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
}

@media (max-width: 900px) {
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .stories-page { padding: 120px 24px 60px; }
  .stories-grid { grid-template-columns: 1fr; gap: 24px; }
  .story-img-wrapper { height: 250px; }
}

.blog-post-page {
  padding: 160px 60px 80px;
  background: var(--black);
  min-height: 100vh;
}

.blog-post-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.blog-post-date {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.blog-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 40px;
}

.blog-post-hero {
  display: block;
  width: 100%;
  max-width: 800px;
  height: 40vh;
  min-height: 250px;
  margin: 0 auto 60px;
  object-fit: cover;
  filter: grayscale(10%);
  border: 1px solid rgba(245,240,234,0.05);
}

.blog-post-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(245,240,234,0.8);
}

.blog-post-content p {
  margin-bottom: 24px;
}

.blog-post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
  margin: 48px 0 24px;
  font-weight: 400;
}

.blog-post-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
  margin: 48px 0 24px;
  font-weight: 400;
}

.blog-post-content img {
  display: block;
  max-width: 70%;
  height: auto;
  margin: 40px auto;
  border: 1px solid rgba(245,240,234,0.05);
}

.blog-post-content blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 40px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--white);
}

@media (max-width: 768px) {
  .blog-post-page { padding: 120px 24px 60px; }

  .blog-post-hero { 
    max-width: 100%;
    height: 30vh; 
    min-height: 200px; 
    margin-bottom: 40px; 
  }
  
  .blog-post-content { font-size: 15px; }
  
  .blog-post-content img {
    max-width: 90%;
  }
}

.blog-image-container {
  margin: 40px auto;
  text-align: center;
}

.blog-image-container img {
  margin: 0 auto 12px;
}

.image-credit {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(245, 240, 234, 0.5);
  font-style: italic;
  letter-spacing: 0.05em;
}

a {
  cursor: none;
}

input {
  cursor: none;
}