/* Holy Trinity Fortitude Valley — design tokens & global styles */

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

:root {
  /* Sandstone heritage palette */
  --ink: #1d1219;
  --ink-soft: #3a2a32;
  --muted: #6f6168;
  --rule: #e3d8c4;
  --rule-soft: #efe7d6;

  --bone: #fdfaf2;
  --cream: #f5ecd9;
  --cream-deep: #ead9b8;

  --plum: #4d1a5e;
  --plum-deep: #2e0e3a;
  --plum-soft: #8a4ea0;
  --plum-tint: #f1e6f5;

  --brick: #a3502b;
  --brick-soft: #c97a4f;
  --brick-tint: #f3e3d6;

  --moss: #4a5c3a;
  --moss-tint: #e6ead9;

  --gold: #b88a3a;

  /* Type */
  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(29, 18, 25, 0.06), 0 1px 1px rgba(29, 18, 25, 0.04);
  --shadow-md: 0 4px 12px rgba(29, 18, 25, 0.08), 0 2px 4px rgba(29, 18, 25, 0.04);
  --shadow-lg: 0 24px 48px -12px rgba(29, 18, 25, 0.18);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
}

.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.005em; }
.sans { font-family: var(--sans); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum);
}
.eyebrow.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--plum); color: var(--bone); }
.btn-primary:hover { background: var(--plum-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }
.btn-cream { background: var(--cream); color: var(--ink); border-color: var(--rule); }
.btn-cream:hover { background: var(--cream-deep); }
.btn-on-dark { background: var(--bone); color: var(--ink); }
.btn-on-dark:hover { background: var(--cream); }
.btn-link {
  background: transparent;
  padding: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  color: var(--plum);
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d23535;
  box-shadow: 0 0 0 0 rgba(210, 53, 53, 0.55);
  animation: livePulse 1.6s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(210, 53, 53, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(210, 53, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(210, 53, 53, 0); }
}

/* Triquetra mark — minimal SVG used as small icon */
.triq {
  display: inline-block;
  width: 1em; height: 1em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 3.5c2.8 2 4 4.5 4 7s-1.5 4.5-4 4.5-4-2-4-4.5 1.2-5 4-7zM5 14.5c2.5-1.5 5-1.5 7 0s2 3.5 0 5-5 1-7 0-2.5-3.5 0-5zm14 0c2.5 1.5 2.5 4 0 5s-5 1.5-7 0-2-3.5 0-5 4.5-1.5 7 0z' fill='none' stroke='%234d1a5e' stroke-width='1.2' stroke-linejoin='round'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: -0.15em;
}

/* Site frame typography */
.h-display { font-family: var(--serif); font-weight: 500; line-height: 1.02; letter-spacing: -0.018em; }
.h-section { font-family: var(--serif); font-weight: 500; line-height: 1.05; letter-spacing: -0.012em; }
.body-l { font-family: var(--sans); font-size: 18px; line-height: 1.55; color: var(--ink-soft); }
.body-m { font-family: var(--sans); font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.body-s { font-family: var(--sans); font-size: 13px; line-height: 1.5; color: var(--muted); }

/* Reusable section frame */
.section { padding: 96px 64px; }
.section-tight { padding: 64px 64px; }
.container { max-width: 1240px; margin: 0 auto; }

/* Image placeholder slot styling */
.imgslot {
  background: var(--cream-deep);
  background-size: cover;
  background-position: center;
  position: relative;
}
.imgslot::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(29,18,25,0) 60%, rgba(29,18,25,0));
}
