:root{
  --ink: 128 161 155;
  --paper: 252 251 249;    /* warm off-white */
  --muted: 100 116 139;    /* slate-500-ish */
  --line: 226 232 240;     /* slate-200-ish */
  --accent: 17 24 39;      /* keep accent minimal */
}

/* Global */
html, body { height: 100%; }
body {
  background: rgb(var(--paper));
  color: rgb(var(--ink));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle editorial grain (very light) */
.irishweds-grain {
  position: relative;
}
.irishweds-grain:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  opacity: .18;
  mix-blend-mode: multiply;
}

/* Editorial link */
.navlink {
  color: rgba(var(--ink), .72);
  letter-spacing: .01em;
  transition: opacity .2s ease, transform .2s ease;
}
.navlink:hover {
  opacity: .9;
  transform: translateY(-1px);
}

/* Hairline borders look more premium */
.hairline {
  border-color: rgba(var(--line), .8);
}

/* Better focus */
*:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.12);
  border-radius: 16px;
}

/* Type rhythm helpers */
.kicker {
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(var(--ink), .55);
}

.irish-weds-logo {
  color:#80a19b
}

