:root{
  --bg: #f7f8f6;
  --ink: #1f2a23;
  --muted: rgba(31,42,35,.75);
  --card: #ffffff;
  --line: rgba(31,42,35,.10);
  --accent: #e6c27a;
  --shadow: 0 14px 40px rgba(0,0,0,.10);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Georgia, serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

/* Top nav */
.topnav{
  position: sticky;
  top: 0;
  z-index: 50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 6vw;
  background: rgba(247,248,246,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand{
  text-decoration:none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .01em;
  font-size: 22px;
}

.navlinks{
  display:flex;
  gap: 18px;
  align-items:center;
}

.navlinks a{
  text-decoration:none;
  color: rgba(31,42,35,.86);
  font-size: 14px;
}

.navbtn{
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31,42,35,.18);
  background: rgba(255,255,255,.6);
}

/* Hero */
.hero{
  filter: brightness(1.12) contrast(1.05);
  position: relative;
  min-height: 82vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,.62)),
    url('assets/hero-ireland.jpg') center/cover no-repeat;
  background-color: #2a372f;
}

.hero-content{
  max-width: 920px;
  padding: 5.2rem 6vw 4.2rem;
  color: #fff;
}

.kicker{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}

h1{
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.03;
  margin: .3rem 0 1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.50);
}

.lede{
  max-width: 62ch;
  font-size: 18px;
  margin: 0 0 22px 0;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}

.actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.btn{
  display:inline-block;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration:none;
  font-size: 14px;
  border: 1px solid transparent;
}

.btn.primary{
  background: var(--accent);
  color: var(--ink);
}

.btn.ghost{
  border-color: rgba(255,255,255,.65);
  color: #fff;
  background: rgba(255,255,255,.06);
}

.section{ padding: 4.2rem 6vw; }

.split{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 2.2rem;
  align-items:center;
}

.split .text{
  max-width: 72ch;
}

.split .text p{
  font-size: 17px;
  line-height: 1.7;
}

.section h2{
  font-size: 2rem;
  margin: 0 0 10px 0;
}

.section-head .subhead{
  margin: 8px 0 0 0;
  color: var(--muted);
  max-width: 70ch;
}

.image img{
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

/* v6: better balance in the Intent split */
.split .image img{
  max-height: 360px;
  width: 100%;
  object-fit: cover;
}

.caption{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(31,42,35,.72);
}

.principle{
  margin-top: 1.1rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(195,181,138,.95);
  color: rgba(31,42,35,.92);
}

/* Work cards */
.work-grid{
  margin-top: 2rem;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.work-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  display:flex;
  flex-direction: column;
  min-height: 420px;
}

.work-img{
  height: 210px;
  overflow:hidden;
  background: #e9ede7;
}

.work-img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.work-body{
  padding: 18px 18px 16px;
}

.work-body h3{
  margin: 0 0 8px 0;
  font-size: 22px;
}

.work-body p{
  margin: 0 0 12px 0;
  color: rgba(31,42,35,.82);
}

.work-body ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(31,42,35,.78);
}

.work-body li{ margin: 6px 0; }

/* Register */
.register{
  background: #eef1ed;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.register-inner{
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

/* v5 fix: center CTA + improve visibility of Back to top */
.register-actions{
  justify-content: center;
  margin: 18px auto 10px;
  gap: 12px;
}

.register .btn.ghost{
  border-color: rgba(31,42,35,.22);
  color: var(--ink);
  background: rgba(255,255,255,.55);
}

.register .btn.ghost:hover{
  background: rgba(255,255,255,.75);
}

.fineprint{
  margin-top: 14px;
  font-size: 13px !important;
  color: rgba(31,42,35,.68) !important;
}

.footer{
  text-align:center;
  padding: 2.2rem 6vw 3rem;
  color: rgba(31,42,35,.62);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 860px){
  .split{ grid-template-columns: 1fr; }
  .work-grid{ grid-template-columns: 1fr; }
  .work-card{ min-height: 0; }
  .work-img{ height: 230px; }
  .navlinks a{ display:none; }
  .navbtn{ display:inline-block; }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; }
}


.section.split{ padding-top: 3.6rem; padding-bottom: 3.6rem; }
