:root {
  --bg: #101113;
  --bg-elev: #17191d;
  --text: #f3f4f6;
  --muted: #b8bcc6;
  --accent: #d4a96a;
  --border: #2a2d33;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #1c1f25, var(--bg) 45%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container { width: min(var(--maxw), 92vw); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(10px);
  background: rgba(16, 17, 19, 0.86);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand { font-weight: 700; letter-spacing: 0.2px; }

.menu { display: flex; gap: 18px; flex-wrap: wrap; }
.menu a { color: var(--muted); font-size: 0.95rem; }
.menu a.active, .menu a:hover { color: var(--text); }

.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  padding: 60px 0 30px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.hero-photo {
  min-height: 460px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

h1, h2, h3 { margin: 0 0 10px; line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.accent { color: var(--accent); }
.muted { color: var(--muted); }

.btn {
  display: inline-block;
  margin-top: 12px;
  background: var(--accent);
  color: #141414;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 10px;
}

.grid-two {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0 40px;
}

.full { grid-column: 1 / -1; }

.interest-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  display: block;
}

.golf-image-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.golf-image-row .interest-image {
  margin-bottom: 0;
  height: 260px;
}

ul { margin: 8px 0 0 18px; padding: 0; }
li { margin: 4px 0; }

.work-list {
  display: grid;
  gap: 26px;
  margin-top: 24px;
}

.job {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
}

.job-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.job p {
  margin: 0 0 12px;
}

.job p:last-child {
  margin-bottom: 0;
}

.quote { font-style: italic; color: #d8dbe2; }

footer {
  border-top: 1px solid var(--border);
  margin-top: 46px;
  color: var(--muted);
}
footer .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-photo { min-height: 300px; }
  .grid-two { grid-template-columns: 1fr; }
  .golf-image-row { grid-template-columns: 1fr; }
  .golf-image-row .interest-image { height: 220px; }
}
