/* ============================================================
   CSK PHOTOGRAPHY — CINEMATIC EDITORIAL THEME
   Playfair Display (display) + DM Sans (body)
   Palette: Near-black #080808 · Warm white #f5f0eb · Gold #c9a96e
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --bg:        #080808;
  --bg2:       #0f0f0f;
  --bg3:       #161616;
  --surface:   rgba(255,255,255,.032);
  --border:    rgba(255,255,255,.09);
  --border2:   rgba(255,255,255,.05);
  --text:      #f5f0eb;
  --muted:     rgba(245,240,235,.52);
  --muted2:    rgba(245,240,235,.30);
  --gold:      #c9a96e;
  --gold-dim:  rgba(201,169,110,.15);
  --gold-glow: rgba(201,169,110,.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --nav-h:    72px;
  --footer-h: 56px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; scroll-behavior: smooth; }

body.csk-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: .012em;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--text);
}

a { color: var(--text); text-decoration: none; transition: opacity .22s ease, color .22s ease; }
a:hover { opacity: .8; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(201,169,110,.4); border-radius: 99px; }
::selection { background: var(--gold); color: var(--bg); }

/* =============================================================
   NAVBAR
   ============================================================= */

.csk-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  height: var(--nav-h);
  background: transparent;
  transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease;
}
.csk-navbar.scrolled {
  background: rgba(8,8,8,.9);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border2);
}
.csk-nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* Mobile: 3-column grid so name is truly centred */
@media (max-width: 991px) {
  .csk-nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
  }
  .csk-brand {
    grid-column: 1;
    justify-self: start;
  }
  .csk-nav-center-name {
    grid-column: 2;
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: .025em;
    white-space: nowrap;
    text-align: center;
    padding: 0 8px;
  }
  .csk-burger {
    grid-column: 3;
    justify-self: end;
  }
  /* hide the brand name inside .csk-brand on mobile (shown in center instead) */
  .csk-brand .csk-brand-name { display: none; }
}
.csk-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.csk-brand-logo { height: 36px; width: auto; }
.csk-brand-name {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
  display: block; /* always visible */
}

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

.csk-nav-link {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(245,240,235,.65);
  padding: 7px 15px;
  border-radius: 99px;
  text-decoration: none;
  transition: color .22s ease;
  position: relative;
}
.csk-nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left .3s var(--ease-out-expo), right .3s var(--ease-out-expo);
  border-radius: 1px;
}
.csk-nav-link:hover, .csk-nav-link.active { color: var(--text); opacity: 1; }
.csk-nav-link:hover::after, .csk-nav-link.active::after { left: 18%; right: 18%; }

.csk-nav-cta {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 9px 22px;
  border-radius: 99px;
  text-decoration: none;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 18px rgba(201,169,110,.3);
  margin-left: 8px;
}
.csk-nav-cta:hover {
  background: #d4b47a;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,169,110,.42);
  color: var(--bg);
  opacity: 1;
}

/* Burger */
.csk-burger {
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: border-color .22s;
}
.csk-burger:hover { border-color: var(--gold); }
.csk-burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
}
.csk-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.csk-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.csk-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.csk-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  background: #0c0c0c;
  border-left: 1px solid var(--border);
  z-index: 3000;
  transform: translateX(100%);
  transition: transform .45s var(--ease-out-expo);
  overflow-y: auto;
}
.csk-drawer.open { transform: translateX(0); }
.csk-drawer-inner {
  padding: 24px 28px 48px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.csk-drawer-close {
  align-self: flex-end;
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s, border-color .2s;
  margin-bottom: 28px;
}
.csk-drawer-close:hover { color: var(--text); border-color: var(--gold); }
.csk-drawer-logo { margin-bottom: 36px; }
.csk-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.csk-drawer-nav a {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border2);
  text-decoration: none;
  transition: color .22s ease, padding-left .25s var(--ease-out-expo);
  letter-spacing: -.01em;
}
.csk-drawer-nav a:hover { color: var(--text); padding-left: 8px; opacity: 1; }
.csk-drawer-cta {
  margin-top: 32px !important;
  font-family: var(--font-body) !important;
  font-size: .8rem !important;
  font-weight: 700 !important;
  letter-spacing: .09em !important;
  text-transform: uppercase;
  color: var(--bg) !important;
  background: var(--gold);
  padding: 14px 24px !important;
  border-radius: 99px;
  text-align: center;
  border-bottom: none !important;
  transition: background .25s !important;
}
.csk-drawer-cta:hover { background: #d4b47a; padding-left: 24px !important; color: var(--bg) !important; }

.csk-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
  z-index: 2990;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.csk-drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* =============================================================
   FOOTER
   ============================================================= */

.csk-footer {
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border2);
  padding: 14px 0;
}
.csk-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.csk-footer-copy {
  font-size: .76rem;
  color: var(--muted2);
  letter-spacing: .025em;
}
.csk-footer-links { display: flex; gap: 20px; }
.csk-footer-links a {
  font-size: .72rem;
  color: var(--muted2);
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s;
}
.csk-footer-links a:hover { color: var(--gold); opacity: 1; }

@media (max-width: 576px) {
  .csk-footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
  .csk-footer-brand { display: none; }
}

/* =============================================================
   PAGE LAYOUT
   ============================================================= */

.csk-page {
  padding-top: calc(var(--nav-h) + 52px);
  padding-bottom: calc(var(--footer-h) + 64px);
}

.csk-page-header { margin-bottom: 44px; }
.csk-page-header h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin: 10px 0 12px;
}
.csk-page-header p { font-size: .97rem; color: var(--muted); max-width: 540px; }

.csk-eyebrow {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.csk-muted { color: var(--muted); }
.csk-gold  { color: var(--gold); }

/* =============================================================
   CARDS
   ============================================================= */

.csk-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .3s ease, box-shadow .3s ease;
}

.csk-badge {
  display: inline-block;
  padding: .22rem .6rem;
  border-radius: 99px;
  border: 1px solid rgba(201,169,110,.28);
  background: rgba(201,169,110,.08);
  color: var(--gold);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Buttons */
.btn-csk-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--bg);
  font-family: var(--font-body); font-size: .78rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  padding: 12px 28px; border-radius: 99px; border: none;
  text-decoration: none; cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(201,169,110,.3);
}
.btn-csk-primary:hover {
  background: #d4b47a; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,.42);
  color: var(--bg); opacity: 1;
}

.btn-csk-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  font-family: var(--font-body); font-size: .78rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 11px 26px; border-radius: 99px;
  border: 1px solid var(--border); text-decoration: none; cursor: pointer;
  transition: border-color .25s, color .25s, background .25s, transform .2s;
}
.btn-csk-ghost:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,169,110,.08);
  transform: translateY(-2px); opacity: 1;
}

/* =============================================================
   HERO
   ============================================================= */

.csk-home-hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
}
.csk-hero-swiper,
.csk-hero-swiper .swiper-wrapper,
.csk-hero-swiper .swiper-slide { height: 100%; }

.csk-hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.csk-hero-img { background-size: cover; background-position: center; }

.csk-hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top, rgba(8,8,8,.97) 0%, rgba(8,8,8,.6) 35%, rgba(8,8,8,.12) 68%, transparent 100%),
    linear-gradient(to right, rgba(8,8,8,.6) 0%, transparent 55%);
}

/* Grain */
.csk-home-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: .5;
  pointer-events: none;
}

/* Slide caption */
.csk-slide-caption {
  position: absolute;
  top: calc(var(--nav-h) + 32px);
  left: 8%; z-index: 4;
  color: #fff;
  animation: fadeUp .7s var(--ease-out-expo) both;
  pointer-events: none;
  max-width: 55%;
}
.csk-slide-caption h2 {
  font-family: var(--font-display);
  font-size: clamp(.9rem, 1.8vw, 1.4rem);
  font-weight: 400; font-style: italic;
  margin: 0 0 .25rem;
  color: rgba(245,240,235,.88);
  text-shadow: 0 2px 18px rgba(0,0,0,.7);
}
.csk-slide-caption p {
  font-size: .72rem; margin: 0;
  color: rgba(245,240,235,.48);
  letter-spacing: .06em; text-transform: uppercase;
}

/* Landing box */
.csk-hero-content {
  position: absolute; inset: 0; z-index: 5;
  display: flex; align-items: flex-end;
  pointer-events: none;
  padding-top: var(--nav-h);
  padding-bottom: calc(var(--footer-h) + 36px);
}
.csk-hero-box {
  pointer-events: auto;
  max-width: 800px;
}
.csk-hero-brandline {
  font-family: var(--font-body);
  font-size: .67rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.csk-hero-box h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 600; line-height: 1.05;
  color: var(--text); margin: 0 0 14px;
  letter-spacing: -.025em;
}
.csk-hero-box h1 em { font-style: italic; color: rgba(245,240,235,.65); }

.csk-hero-sub {
  font-size: .98rem; color: rgba(245,240,235,.58);
  margin-bottom: 20px; max-width: 540px;
  font-weight: 300; line-height: 1.7;
}
.csk-hero-meta {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(245,240,235,.28); margin-bottom: 28px;
}
.csk-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Swiper pagination */
.swiper-pagination {
  bottom: calc(var(--footer-h) + 16px) !important;
  z-index: 6 !important;
  pointer-events: auto;
}
.swiper-pagination-bullet {
  width: 20px; height: 2px; border-radius: 1px;
  background: rgba(245,240,235,.3); opacity: 1;
  transition: background .3s, width .35s var(--ease-out-expo);
}
.swiper-pagination-bullet-active {
  background: var(--gold); width: 44px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 768px) {
  .csk-hero-meta { display: none; }
  .csk-slide-caption { max-width: 82%; left: 5%; }
  /* Push the landing box up enough to avoid overlapping the swiper dots */
  .csk-hero-content { padding-bottom: calc(var(--footer-h) + 56px) !important; }
}
@media (max-width: 480px) {
  .csk-hero-box h1 { font-size: 2.2rem; }
  .csk-hero-content { padding-bottom: calc(var(--footer-h) + 64px) !important; }
}

/* =============================================================
   REVEAL ANIMATIONS
   ============================================================= */

.csk-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease-out-expo), transform .75s var(--ease-out-expo);
}
.csk-reveal.visible { opacity: 1; transform: none; }
.csk-reveal-d1 { transition-delay: .06s; }
.csk-reveal-d2 { transition-delay: .14s; }
.csk-reveal-d3 { transition-delay: .22s; }
.csk-reveal-d4 { transition-delay: .3s; }

/* =============================================================
   ALBUM CARDS
   ============================================================= */

.csk-album-card {
  position: relative; display: block;
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--bg3);
  text-decoration: none;
  border: 1px solid var(--border2);
  transition: transform .4s var(--ease-out-expo), box-shadow .4s ease, border-color .4s ease;
}
.csk-album-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  border-color: rgba(201,169,110,.2);
  opacity: 1;
}
.csk-album-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s var(--ease-out-expo);
}
.csk-album-card:hover .csk-album-card-img { transform: scale(1.07); }
.csk-album-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.93) 0%, rgba(8,8,8,.45) 40%, transparent 100%);
  transition: opacity .4s ease;
}
.csk-album-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 18px;
}
.csk-album-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600;
  color: var(--text); margin: 0 0 3px; line-height: 1.25;
}
.csk-album-card-cat {
  font-size: .65rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
}

/* Filter pills */
.csk-filter-pill {
  font-size: .7rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 99px; border: 1px solid var(--border);
  background: transparent; color: var(--muted);
  text-decoration: none; transition: all .22s ease; cursor: pointer;
}
.csk-filter-pill:hover, .csk-filter-pill.active {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,169,110,.08); opacity: 1;
}

/* =============================================================
   PHOTO GRID + LIGHTBOX
   ============================================================= */

.csk-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 991px) { .csk-photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .csk-photo-grid { grid-template-columns: repeat(2, 1fr); } }

.csk-photo-thumb {
  position: relative; aspect-ratio: 1/1;
  overflow: hidden; border-radius: var(--radius);
  background: var(--bg3); cursor: pointer;
  border: 1px solid var(--border2);
  transition: border-color .3s ease;
}
.csk-photo-thumb:hover { border-color: rgba(201,169,110,.25); }
.csk-photo-thumb-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .55s var(--ease-out-expo);
}
.csk-photo-thumb:hover .csk-photo-thumb-img { transform: scale(1.09); }
.csk-photo-thumb-veil {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease;
}
.csk-photo-thumb:hover .csk-photo-thumb-veil { background: rgba(8,8,8,.3); }
.csk-zoom-icon {
  opacity: 0; transform: scale(.6);
  transition: opacity .3s ease, transform .3s var(--ease-out-expo);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(8,8,8,.65); border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.csk-photo-thumb:hover .csk-zoom-icon { opacity: 1; transform: scale(1); }
.csk-zoom-icon svg { width: 17px; height: 17px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; }

/* Custom lightbox */
.csk-lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(4,4,4,.97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.csk-lightbox.open { opacity: 1; pointer-events: auto; }

.csk-lb-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid var(--border2);
  flex-shrink: 0; gap: 16px;
}
.csk-lb-caption {
  font-family: var(--font-display); font-style: italic;
  color: var(--muted); font-size: .9rem; flex: 1;
}
.csk-lb-counter { font-size: .72rem; letter-spacing: .1em; color: var(--muted2); }
.csk-lb-close {
  background: none; border: 1px solid var(--border); color: var(--muted);
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, border-color .2s;
  flex-shrink: 0;
}
.csk-lb-close:hover { color: var(--text); border-color: var(--gold); }

.csk-lb-stage {
  flex: 1; display: flex; align-items: center;
  justify-content: center; position: relative;
  overflow: hidden; min-height: 0;
}
.csk-lb-img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; border-radius: 4px;
  padding: 16px 80px;
  transition: opacity .25s ease;
}
.csk-lb-img.fading { opacity: 0; }

.csk-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(8,8,8,.55); border: 1px solid var(--border);
  color: var(--text); width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .3s ease, background .25s ease, border-color .25s ease, transform .25s ease;
  z-index: 1;
}
.csk-lb-stage:hover .csk-lb-nav { opacity: 1; }
.csk-lb-nav:hover {
  background: rgba(201,169,110,.15); border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.csk-lb-prev { left: 16px; }
.csk-lb-next { right: 16px; }

@media (max-width: 600px) {
  .csk-lb-img { padding: 10px 52px; }
  .csk-lb-prev { left: 8px; }
  .csk-lb-next { right: 8px; }
  .csk-lb-nav { width: 38px; height: 38px; opacity: .75; }
}

/* =============================================================
   BLOG
   ============================================================= */

.csk-post-card {
  display: block; text-decoration: none;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border2);
  transition: border-color .3s ease, transform .35s var(--ease-out-expo), box-shadow .35s ease;
  height: 100%;
}
.csk-post-card:hover {
  border-color: rgba(201,169,110,.2); transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(0,0,0,.5); opacity: 1;
}
.csk-post-card-img-wrap { overflow: hidden; }
.csk-post-card-img {
  aspect-ratio: 16/9; background-size: cover; background-position: center;
  transition: transform .55s var(--ease-out-expo);
}
.csk-post-card:hover .csk-post-card-img { transform: scale(1.05); }
.csk-post-card-body { padding: 22px 22px 24px; }
.csk-post-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  color: var(--text); margin: 10px 0 8px; line-height: 1.3;
}
.csk-post-card-excerpt { font-size: .87rem; color: var(--muted); line-height: 1.65; }

/* =============================================================
   SERVICES
   ============================================================= */

.csk-service-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 28px 24px;
  height: 100%; position: relative; overflow: hidden;
  transition: border-color .3s ease, transform .35s var(--ease-out-expo), box-shadow .35s ease;
}
.csk-service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.4), transparent);
  opacity: 0; transition: opacity .4s ease;
}
.csk-service-card:hover {
  border-color: rgba(201,169,110,.18);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.csk-service-card:hover::after { opacity: 1; }

.csk-service-ico {
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(201,169,110,.1); border: 1px solid rgba(201,169,110,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.csk-service-title {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 600; color: var(--text); margin-bottom: 10px;
}
.csk-service-desc { font-size: .88rem; color: var(--muted); line-height: 1.65; }

.csk-strip {
  display: flex; gap: 8px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--border2);
}
.csk-strip-img, .csk-strip-ph {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  background-size: cover; background-position: center;
  border: 1px solid var(--border2);
}
.csk-strip-ph { background: var(--bg3); }

/* =============================================================
   ABOUT
   ============================================================= */

.csk-about-img {
  width: 100%; border-radius: var(--radius-xl);
  background-size: cover; background-position: center;
  border: 1px solid var(--border); box-shadow: 0 28px 64px rgba(0,0,0,.5);
  will-change: transform;
}

.csk-quote-wrap { text-align: center; padding: 72px 24px; }
.csk-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 2.8vw, 1.95rem); font-weight: 400;
  line-height: 1.55; color: var(--text);
  max-width: 840px; margin: 0 auto; position: relative;
}
.csk-quote::before {
  content: '\201C';
  font-size: 4.5rem; color: var(--gold); opacity: .4;
  line-height: 1; position: absolute; top: -24px; left: -6px;
  font-family: var(--font-display);
}

.csk-about-thumb {
  display: block; width: 100%; aspect-ratio: 1/1;
  border-radius: var(--radius); background-size: cover; background-position: center;
  border: 1px solid var(--border2);
  transition: transform .35s var(--ease-out-expo), border-color .3s ease, box-shadow .3s ease;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
}
.csk-about-thumb:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(201,169,110,.3);
  box-shadow: 0 16px 38px rgba(0,0,0,.4);
}

/* =============================================================
   CONTACT FORM
   ============================================================= */

.csk-contact-form .form-control,
.csk-contact-form .form-select {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); border-radius: var(--radius);
  padding: 13px 18px; font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.csk-contact-form .form-control:focus,
.csk-contact-form .form-select:focus {
  background: rgba(255,255,255,.04); border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
  color: var(--text); outline: none;
}
.csk-contact-form .form-control::placeholder { color: var(--muted2); }
.csk-contact-form label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.csk-contact-form textarea.form-control { resize: vertical; min-height: 140px; }

/* Divider */
.csk-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: .3; margin: 52px 0;
}

/* Alerts */
.alert-success { background: rgba(74,222,128,.07); border-color: rgba(74,222,128,.22); color: #6ee7b7; border-radius: var(--radius); }
.alert-danger  { background: rgba(248,113,113,.07); border-color: rgba(248,113,113,.22); color: #fca5a5; border-radius: var(--radius); }
