/* ══════════════════════════════════════════
   STYLES OF TILES — SHARED STYLESHEET
   Breakpoints: 1024 | 860 | 768 | 480 | 360
══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --gold: #b8943f;
  --gold-light: #d4ac52;
  --dark: #1a1a1a;
  --mid: #3d3d3d;
  --muted: #666;
  --light-bg: #f8f6f2;
  --white: #ffffff;
  --border: #e0d8cc;
  --radius: 2px;
  --sp-v: 80px;
  --sp-h: 40px;
  --hero-v: 70px;
}

/* ── ANIMATED TILE GRID BACKGROUND ── */
    .bg-grid {
      position: fixed;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    /* Repeating diagonal tile texture */
    .bg-grid::before {
      content: '';
      position: absolute;
      inset: -50%;
      width: 200%;
      height: 200%;
      background-image:
        linear-gradient(rgba(184,148,63,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,148,63,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      transform: rotate(-15deg);
      animation: gridDrift 40s linear infinite;
    }

    /* Radial glow from center */
    .bg-grid::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184,148,63,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(184,148,63,0.04) 0%, transparent 60%),
        linear-gradient(180deg, #111010 0%, #1a1814 40%, #111010 100%);
    }

    @keyframes gridDrift {
      0%   { transform: rotate(-15deg) translate(0, 0); }
      100% { transform: rotate(-15deg) translate(60px, 60px); }
    }

    /* Floating tile fragments */
    .tile-fragments {
      position: fixed;
      inset: 0;
      z-index: 1;
      pointer-events: none;
    }
    .fragment {
      position: absolute;
      background: rgba(184,148,63,0.06);
      border: 1px solid rgba(184,148,63,0.1);
      animation: floatUp linear infinite;
    }
    .fragment:nth-child(1)  { width:40px; height:40px; left:5%;   animation-duration:18s; animation-delay:0s;   }
    .fragment:nth-child(2)  { width:20px; height:20px; left:15%;  animation-duration:22s; animation-delay:3s;   }
    .fragment:nth-child(3)  { width:60px; height:60px; left:25%;  animation-duration:26s; animation-delay:7s;   }
    .fragment:nth-child(4)  { width:16px; height:16px; left:35%;  animation-duration:19s; animation-delay:1s;   }
    .fragment:nth-child(5)  { width:30px; height:30px; left:45%;  animation-duration:24s; animation-delay:5s;   }
    .fragment:nth-child(6)  { width:50px; height:50px; left:55%;  animation-duration:28s; animation-delay:9s;   }
    .fragment:nth-child(7)  { width:22px; height:22px; left:65%;  animation-duration:21s; animation-delay:2s;   }
    .fragment:nth-child(8)  { width:44px; height:44px; left:75%;  animation-duration:25s; animation-delay:6s;   }
    .fragment:nth-child(9)  { width:18px; height:18px; left:85%;  animation-duration:17s; animation-delay:4s;   }
    .fragment:nth-child(10) { width:36px; height:36px; left:92%;  animation-duration:23s; animation-delay:8s;   }
    @keyframes floatUp {
      0%   { bottom: -80px; opacity: 0;   transform: rotate(0deg); }
      10%  { opacity: 1; }
      90%  { opacity: 0.6; }
      100% { bottom: 110%;  opacity: 0;   transform: rotate(180deg); }
    }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', sans-serif; color: var(--dark); background: var(--white); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── HEADER ── */
header { background: var(--dark); border-bottom: 3px solid var(--gold); position: sticky; top: 0; z-index: 200; }
.header-inner { max-width: 100%; margin: 0 auto; padding: 0 40px; height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); text-decoration: none; letter-spacing: 0.5px; white-space: nowrap; flex-shrink: 0; }
.logo span { color: var(--gold); }

nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
nav a { color: #bbb; text-decoration: none; font-size: 0.82rem; letter-spacing: 0.6px; text-transform: uppercase; padding: 6px 10px; transition: color 0.2s; white-space: nowrap; }
nav a:hover { color: var(--gold); }
nav a.active { color: var(--gold); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.65rem; opacity: 0.7; }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; background: var(--dark); border: 1px solid #333; border-top: 2px solid var(--gold); min-width: 170px; opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity 0.2s, transform 0.2s; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 16px; border-radius: 0; border-bottom: 1px solid #2a2a2a; font-size: 0.8rem; width: 100%; }
.dropdown-menu a:last-child { border-bottom: none; }

.header-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; flex-shrink: 0; }
.header-contact a { font-size: 0.97rem; color: #999; text-decoration: none; transition: color 0.2s; }
.header-contact a:hover { color: var(--gold); }
.header-contact .phone { font-size: 0.97rem; color: var(--gold); font-weight: 600; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px 6px; flex-direction: column; gap: 5px; z-index: 201; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; transform-origin: center; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 198; cursor: pointer; }
.nav-overlay.open { display: block; }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, #1a1a1a 0%, #2e2a24 50%, #1a1a1a 100%); padding: var(--hero-v) var(--sp-h); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(184,148,63,0.03) 40px, rgba(184,148,63,0.04) 80px); }
.page-hero > * { position: relative; }
.hero-badge { display: inline-block; background: var(--gold); color: var(--dark); font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 18px; margin-bottom: 18px; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 5vw, 3.2rem); color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { color: #b0a898; font-size: clamp(0.92rem, 2.5vw, 1.05rem); max-width: 100%; margin: 0 auto 28px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary { background: var(--gold); color: var(--dark); padding: 13px 28px; font-weight: 700; font-size: 0.88rem; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border-radius: var(--radius); display: inline-block; transition: background 0.2s, transform 0.15s; border: none; cursor: pointer; font-family: inherit; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); padding: 11px 26px; font-weight: 600; font-size: 0.88rem; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border-radius: var(--radius); display: inline-block; transition: all 0.2s; }
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-dark { background: var(--dark); color: var(--white); padding: 13px 28px; font-weight: 700; font-size: 0.88rem; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border-radius: var(--radius); display: inline-block; transition: background 0.2s; border: none; cursor: pointer; font-family: inherit; }
.btn-dark:hover { background: #2a2a2a; }

/* ── TYPOGRAPHY ── */
.section-label { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--dark); margin-bottom: 12px; line-height: 1.2; }
.section-sub { color: var(--muted); max-width: 100%; font-size: clamp(0.9rem, 2vw, 1rem); }

/* ── LAYOUT ── */
.section { padding: var(--sp-v) var(--sp-h); }
.section-light { background: var(--light-bg); }
.section-dark { background: var(--dark); }
.container { max-width: 100%; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-sub { margin: 0 auto; }

/* ── STATS BAR ── */
.stats-bar { background: var(--gold); display: flex; justify-content: center; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 22px 36px; border-right: 1px solid rgba(0,0,0,0.15); flex: 1 1 auto; min-width: 120px; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--dark); font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.76rem; color: rgba(0,0,0,0.65); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── CARDS ── */
.card-grid { display: grid; gap: 24px; }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.feature-card { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--gold); padding: 32px 26px; transition: box-shadow 0.25s, transform 0.2s; }
.feature-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-3px); }
.feature-card .icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; }
.gallery-item { overflow: hidden; background: #222; aspect-ratio: 1/1; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, opacity 0.3s; opacity: 0.9; }
.gallery-item:hover img { transform: scale(1.06); opacity: 1; }
.gallery-item .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 14px; }
.gallery-item:hover .overlay { opacity: 1; }
.overlay-icon { color: var(--gold); font-size: 1.5rem; }

/* ── LIGHTBOX ── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 60px 70px 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border: 2px solid #333; }
.lightbox-close { position: absolute; top: 16px; right: 20px; color: var(--white); font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; opacity: 0.8; transition: opacity 0.2s, color 0.2s; padding: 8px; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { opacity: 1; color: var(--gold); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: var(--white); font-size: 1.8rem; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s, color 0.2s; }
.lightbox-nav:hover { background: var(--gold); color: var(--dark); }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--gold) 0%, #9a7530 100%); padding: 65px var(--sp-h); text-align: center; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--dark); margin-bottom: 12px; }
.cta-band p { color: rgba(0,0,0,0.6); font-size: clamp(0.9rem, 2vw, 1.02rem); max-width: 520px; margin: 0 auto 28px; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--dark); border-top: 3px solid var(--gold); padding: 40px var(--sp-h); }
.footer-inner { max-width: 100%; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: start; }
.footer-brand .logo { font-size: 1.2rem; display: inline-block; margin-bottom: 10px; }
.footer-brand p { color: #666; font-size: 0.85rem; max-width: 280px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-links a { color: #888; text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { max-width: 100%; margin: 24px auto 0; padding-top: 18px; border-top: 1px solid #2a2a2a; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: #555; font-size: 0.8rem; }
.footer-bottom a { color: #888; text-decoration: none; margin-left: 14px; font-size: 0.8rem; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-links a { width: 36px; height: 36px; border: 1px solid #333; display: flex; align-items: center; justify-content: center; color: #888; font-size: 0.85rem; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.social-links a:hover { border-color: var(--gold); color: var(--gold); }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 14px var(--sp-h); background: var(--light-bg); border-bottom: 1px solid var(--border); font-size: 0.82rem; color: #999; }
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* ── GALLERY NAV ── */
.gallery-nav { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.gallery-nav a { border: 1.5px solid var(--border); padding: 8px 22px; font-size: 0.82rem; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 600; text-decoration: none; color: var(--mid); transition: all 0.2s; }
.gallery-nav a:hover, .gallery-nav a.active { border-color: var(--gold); background: var(--gold); color: var(--dark); }


/* ╔════════════════════════════╗
   ║  BREAKPOINTS               ║
   ╚════════════════════════════╝ */

/* 1024 — tablet landscape */
@media (max-width: 1024px) {
  :root { --sp-h: 32px; }
  .header-inner { padding: 0 28px; }
  nav a { padding: 6px 8px; font-size: 0.78rem; }
}

/* 860 — tablet portrait */
@media (max-width: 860px) {
  :root { --sp-v: 64px; --sp-h: 24px; --hero-v: 56px; }
  .header-contact { display: none; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

/* 768 — mobile */
@media (max-width: 768px) {
  :root { --sp-v: 52px; --sp-h: 20px; --hero-v: 48px; }

  .header-inner { padding: 0 16px; height: 60px; }
  .logo { font-size: 1.15rem; }
  .header-contact { display: none; }

  /* Hamburger on, desktop nav off */
  .nav-toggle { display: flex; }
  nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: #111;
    padding: 8px 0 20px;
    border-bottom: 2px solid var(--gold);
    z-index: 199;
    gap: 0;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  }
  nav.open { display: flex; }
  nav > a { padding: 13px 22px; font-size: 0.88rem; border-bottom: 1px solid #1e1e1e; width: 100%; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown > a { padding: 13px 22px; font-size: 0.88rem; border-bottom: 1px solid #1e1e1e; width: 100%; justify-content: space-between; }
  .nav-dropdown > a::after { margin-left: auto; }
  .dropdown-menu { position: static; opacity: 1; pointer-events: all; transform: none; border: none; border-top: 1px solid #1a1a1a; background: #0d0d0d; min-width: 0; width: 100%; }
  .dropdown-menu a { padding: 11px 22px 11px 36px; font-size: 0.85rem; border-bottom-color: #191919; }

  /* Stats */
  .stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); padding: 16px 10px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.12); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.72rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 8px 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom a { margin-left: 0; margin-right: 14px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 5px; }
  .gallery-nav { gap: 8px; margin-bottom: 32px; }
  .gallery-nav a { padding: 7px 14px; font-size: 0.78rem; }

  /* Lightbox */
  .lightbox { padding: 55px 8px 8px; }
  .lightbox img { max-width: 98vw; max-height: 80vh; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.4rem; }

  /* CTA */
  .cta-band { padding: 48px var(--sp-h); }
  .cta-band .btns { flex-direction: column; align-items: stretch; gap: 10px; max-width: 300px; margin: 0 auto; }
  .cta-band .btns a, .cta-band .btns button { text-align: center; }

  /* Section header */
  .section-header { margin-bottom: 32px; }
  .hero-ctas { gap: 10px; }
}

/* 480 — small phones */
@media (max-width: 480px) {
  :root { --sp-v: 40px; --sp-h: 16px; --hero-v: 40px; }

  .page-hero p { margin-bottom: 22px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; max-width: 260px; margin-left: auto; margin-right: auto; }
  .hero-ctas a { text-align: center; }

  .stat-item { flex: 1 1 100%; border-right: none !important; }
  .stat-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,0.12) !important; }
  .stat-item:last-child { border-bottom: none !important; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 4px; }

  .btn-primary, .btn-outline, .btn-dark { padding: 12px 20px; font-size: 0.84rem; }

  .footer-links { flex-direction: column; gap: 8px; }
  .footer-bottom p { font-size: 0.75rem; }
}

/* 360 — tiny phones */
@media (max-width: 360px) {
  :root { --sp-h: 12px; }
  .logo { font-size: 1rem; }
  .hero-badge { font-size: 0.64rem; padding: 4px 10px; letter-spacing: 1.5px; }
  .header-inner { padding: 0 12px; }
}

/* ── LOGO WITH IMAGE ── */
.logo {
  display: inline-flex;
  flex-direction: column;   /* stack vertically */
  align-items: flex-start;
  gap: 4px;
  text-decoration: none;
  line-height: 1;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.logo-accent { color: var(--gold); }
.logo-img {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.logo-img--footer { height: 28px; }

@media (max-width: 768px) {
  .logo-text { font-size: 1.1rem; }
  .logo-img { height: 26px; max-width: 130px; }
}
@media (max-width: 360px) {
  .logo-text { font-size: 1rem; }
  .logo-img { height: 22px; max-width: 110px; }
}

/* ══════════════════════
   WORDPRESS-SPECIFIC
══════════════════════ */

/* Alignment classes */
.alignleft  { float: left;  margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter, .alignwide { display: block; margin-left: auto; margin-right: auto; }
.alignfull  { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }

/* WP core classes */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--muted); text-align: center; margin-top: 6px; }
.sticky .entry-title::before { content: '📌 '; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }
.screen-reader-text:focus { background: var(--dark); clip: auto; color: var(--white); display: block; font-size: 0.875rem; font-weight: 700; height: auto; left: 5px; padding: 15px 23px 14px; text-decoration: none; top: 5px; width: auto; z-index: 100000; }

/* WP Generated Blocks */
.wp-block-image img { max-width: 100%; height: auto; }
.wp-block-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; }

/* Comments */
.comments-area { max-width: 800px; margin: 60px auto; padding: 0 var(--sp-h); }
.comment-list { list-style: none; }
.comment-body { padding: 20px 0; border-bottom: 1px solid var(--border); }
.comment-author .fn { font-weight: 700; }
.comment-metadata { font-size: 0.82rem; color: var(--muted); margin-bottom: 10px; }
.reply a { font-size: 0.82rem; color: var(--gold); text-decoration: none; font-weight: 600; }

/* Post navigation */
.post-navigation { display: flex; justify-content: space-between; gap: 20px; padding: 40px var(--sp-h); max-width: 100%; margin: 0 auto; border-top: 1px solid var(--border); }
.nav-previous a, .nav-next a { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.nav-next { text-align: right; }

/* Pagination */
.pagination { text-align: center; padding: 40px var(--sp-h); }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1.5px solid var(--border); margin: 0 3px; font-size: 0.9rem; text-decoration: none; color: var(--dark); transition: all 0.2s; }
.page-numbers.current, .page-numbers:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* CF7 / WPForms overrides */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpforms-field input,
.wpforms-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  border-radius: var(--radius);
  transition: border-color 0.2s;
  outline: none;
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus { border-color: var(--gold); }
.wpcf7-submit, .wpforms-submit {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 13px 32px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.wpcf7-submit:hover, .wpforms-submit:hover { background: var(--gold-light); }
.wpcf7-not-valid-tip { color: #c00; font-size: 0.82rem; margin-top: 4px; }
.wpcf7-response-output { padding: 12px 16px; margin-top: 20px; border-radius: var(--radius); font-size: 0.9rem; }
.wpcf7-mail-sent-ok { background: #e8f5e9; border: 1px solid #4caf50; color: #2e7d32; }
.wpcf7-validation-errors { background: #fff3e0; border: 1px solid #ff9800; color: #e65100; }

/* Gallery page (WP gallery custom post type) */
.gallery-page-wrap { max-width: 100%; margin: 0 auto; padding: var(--sp-v) var(--sp-h); }

/* Under Construction page */
.maintenance-wrap { min-height: 100vh; display: flex; flex-direction: column; background: #111010; }

/* ══════════════════════════════════════════
   BLOG STYLES
   archive, single post, sidebar, categories
══════════════════════════════════════════ */

/* ── BLOG LAYOUT ── */
.blog-layout {
  max-width: 100%;
  margin: 0 auto;
  padding: var(--sp-v) var(--sp-h);
}
.blog-main { min-width: 0; }
.blog-sidebar { display: none; }

/* ── POST CARDS (archive) ── */
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
  margin-bottom: 32px;
}
.post-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}
.post-card-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #1a1a1a;
}
.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card-thumb img { transform: scale(1.04); }

.post-card-body { padding: 28px 30px 30px; }

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.post-category {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  text-decoration: none;
  transition: background 0.2s;
}
.post-category:hover { background: var(--gold-light); }
.post-date {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.3px;
}
.post-read-time {
  font-size: 0.78rem;
  color: var(--muted);
}

.post-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--dark);
}
.post-card-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.post-card-title a:hover { color: var(--gold); }

.post-card-excerpt {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.post-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}
.post-author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--dark);
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}
.post-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.read-more-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  white-space: nowrap;
}
.read-more-link:hover { gap: 10px; }
.read-more-link::after { content: '→'; }

/* ── FEATURED POST (first post, larger) ── */
.post-card--featured .post-card-body { padding: 32px 36px 34px; }
.post-card--featured .post-card-title { font-size: clamp(1.4rem, 3.5vw, 1.85rem); }

/* ── BLOG PAGINATION ── */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 0 0;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: all 0.2s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.blog-pagination .page-numbers.dots {
  border-color: transparent;
  background: none;
  width: auto;
  padding: 0 4px;
}

/* ── SIDEBAR ── */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 26px 24px;
  margin-bottom: 28px;
}
.sidebar-widget:last-child { margin-bottom: 0; }
.widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
}

/* About widget */
.widget-about-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Categories widget */
.widget-categories { list-style: none; }
.widget-categories li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.widget-categories li:last-child { border-bottom: none; }
.widget-categories a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.widget-categories a:hover { color: var(--gold); }
.widget-categories .cat-count {
  font-size: 0.75rem;
  background: var(--light-bg);
  color: var(--muted);
  padding: 2px 8px;
  min-width: 24px;
  text-align: center;
}

/* Recent posts widget */
.widget-recent-posts { list-style: none; }
.widget-recent-post {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.widget-recent-post:last-child { border-bottom: none; }
.widget-recent-thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--light-bg);
}
.widget-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.widget-recent-thumb.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: #f0ede8;
}
.widget-recent-info a {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.35;
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.widget-recent-info a:hover { color: var(--gold); }
.widget-recent-date { font-size: 0.75rem; color: var(--muted); }

/* Tags widget */
.widget-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.widget-tag {
  font-size: 0.76rem;
  border: 1px solid var(--border);
  padding: 4px 12px;
  color: var(--mid);
  text-decoration: none;
  transition: all 0.2s;
}
.widget-tag:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,148,63,0.06); }

/* CTA widget */
.widget-cta {
  background: var(--dark);
  border: none;
  text-align: center;
  padding: 28px 24px;
}
.widget-cta .widget-title { color: var(--white); border-bottom-color: #333; }
.widget-cta p { font-size: 0.85rem; color: #999; line-height: 1.65; margin-bottom: 18px; }
.widget-cta .btn-primary { width: 100%; text-align: center; font-size: 0.82rem; padding: 12px 16px; }

/* ── SINGLE POST ── */
.single-post-layout {
  max-width: 100%;
  margin: 0 auto;
  padding: var(--sp-v) var(--sp-h);
}
.single-post-content { min-width: 0; }

.single-post-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  margin-bottom: 36px;
}

.post-header { margin-bottom: 32px; }
.post-header .post-meta { margin-bottom: 16px; }
.post-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 18px;
}
.post-header .post-excerpt {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-style: italic;
}

/* Post body typography */
.post-body {
  font-size: 0.97rem;
  line-height: 1.85;
  color: #3d3d3d;
}
.post-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  color: var(--dark);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.post-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin: 30px 0 12px;
}
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol {
  margin: 0 0 20px 24px;
}
.post-body li { margin-bottom: 8px; line-height: 1.7; }
.post-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--gold-light); }
.post-body blockquote {
  border-left: 3px solid var(--gold);
  margin: 28px 0;
  padding: 16px 24px;
  background: var(--light-bg);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--mid);
}
.post-body img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}
.post-body .wp-caption { margin: 24px 0; }
.post-body strong { font-weight: 700; color: var(--dark); }
.post-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}

/* Post footer tags */
.post-footer-tags {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.post-footer-tags .label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

/* Author box */
.author-box {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 24px 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 40px;
}
.author-box-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--dark);
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}
.author-box-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-box-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 6px;
}
.author-box-bio { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* Post navigation (prev/next) */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.post-nav-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px 22px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.post-nav-item:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.post-nav-item.next { text-align: right; }
.post-nav-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.post-nav-title { font-size: 0.9rem; font-weight: 600; color: var(--dark); line-height: 1.35; }

/* Related posts */
.related-posts-section {
  background: var(--light-bg);
  padding: var(--sp-v) var(--sp-h);
  border-top: 1px solid var(--border);
}
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.related-post-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.25s, transform 0.2s;
}
.related-post-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-2px); }
.related-post-card .rp-thumb { aspect-ratio: 16/9; overflow: hidden; background: #1a1a1a; }
.related-post-card .rp-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.related-post-card:hover .rp-thumb img { transform: scale(1.05); }
.related-post-card .rp-body { padding: 18px 20px; }
.related-post-card .rp-category { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 6px; display: block; }
.related-post-card .rp-title { font-family: 'Playfair Display', serif; font-size: 1rem; line-height: 1.3; color: var(--dark); }
.related-post-card .rp-date { font-size: 0.76rem; color: var(--muted); margin-top: 8px; }

/* No thumbnail placeholder */
.post-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2e2a24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.6;
}

/* ── BLOG RESPONSIVE ── */
@media (max-width: 768px) {
  .blog-layout { padding: var(--sp-v) var(--sp-h); }
  .single-post-layout { padding: var(--sp-v) var(--sp-h); }
  .post-card-body { padding: 20px 22px 22px; }
  .post-card--featured .post-card-body { padding: 22px 22px 24px; }
  .author-box { flex-direction: column; gap: 14px; }
}

@media (max-width: 480px) {
  .post-card-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .related-posts-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-item.next { text-align: left; }
  .post-nav { gap: 10px; }
}
