@charset "utf-8";
/* CSS Document */


/* MY CHANGES */


a:hover {
    text-decoration: none;
}

.btn:hover {
    color: #efefef;
    text-decoration: none;
    /* transition: box-shadow 0.3s ease, transform 0.2s ease; */
    box-shadow: 0 0 10px rgb(150 139 121);
}


form#WOD_Form_1_10001_Itm7 {
    margin-top: 20px;
}






/* FORM */
.SpacedItem.WOD_Form_Lable.WOD_Form_Lable_1 > input {
    margin-top: 6px;
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .03);
    color: rgba(255, 255, 255, .92);
}

.SpacedItem.WOD_Form_Lable.WOD_Form_Lable_1 > textarea {
    margin-top: 6px;
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .03);
    color: rgba(255, 255, 255, .92);
}


/* Submit Button */

button#SubmitButton1_10001_Itm7 {
    justify-content: center;
    color: rgb(36 36 37) !important;
}

/*
.btn-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin: 10px auto 35px;
}
.btn {
  position: relative;
  display: inline-block;
  width: auto; height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0px 25px 15px;
  min-width: 150px;
}
 

.btn span {         
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    top: 0; left: 0;
    width: 100%;
    padding: 15px 20px;
    transition: 0.3s;
  }


.btn-3 {
  padding: 5px;
}
.btn-3 span {
  color: rgb(255, 255, 255);
  background-color: rgb(54, 56, 55);
}
.btn-3::before,
.btn-3::after {
  background: transparent;
  z-index: 2;
}


.btn.hover-border-1::before,
.btn.hover-border-1::after {
  width: 10%; height: 25%;
  transition: 0.35s;
}
.btn.hover-border-1::before {
  top: 0; left: 0;
  border-left: 1px solid rgb(28, 31, 30);
  border-top: 1px solid rgb(28, 31, 30);
}
.btn.hover-border-1::after {
  bottom: 0; right: 0;
  border-right: 1px solid rgb(28, 31, 30);
  border-bottom: 1px solid rgb(28, 31, 30);
}
.btn.hover-border-1:hover::before,
.btn.hover-border-1:hover::after {
  width: 99%;
  height: 98%;
} */



/*/////////*/




/* ///////////////////// */

:root {
--bg: #0f0f10;
--panel: rgba(255, 255, 255, .06);
--panel2: rgba(255, 255, 255, .08);
--text: rgba(255, 255, 255, .92);
--muted: rgba(255, 255, 255, .68);
--line: rgba(255, 255, 255, .14);
--accent: #d9c6aa; /* warm beige */
--accent2: #bba889;
--shadow: 0 12px 40px rgba(0, 0, 0, .35);
--radius: 18px;
--max: 1120px;
--serif: ui-serif, "Georgia", "Times New Roman", serif;
--sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}
* {
	box-sizing:border-box
}
html, body {
	height:100%;
      scroll-behavior: smooth;
}
body {
	margin:0;
	font-family: var(--sans);
	/* background: radial-gradient(1200px 700px at 10% 0%, rgba(217, 198, 170, .16), transparent 55%), radial-gradient(900px 600px at 90% 10%, rgba(187, 168, 137, .12), transparent 50%), linear-gradient(180deg, #0b0b0c, var(--bg)); */
	color: var(--text);
	line-height: 1.55;
	overflow-x:hidden;
  

  width: 100vw;
  height: 100vh;
  background-color:var(--bg);
  
}
a {
	color:inherit;
	text-decoration:none
}
.wrap {
	max-width:var(--max);
	margin:0 auto;
	padding:28px 18px 80px
}
header {
	position:sticky;
	top:0;
	z-index:20;
	backdrop-filter: blur(10px);
	background: rgba(15, 15, 16, .55);
	border-bottom: 1px solid var(--line);
}
.nav {
	max-width:var(--max);
	margin:0 auto;
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:14px 18px;
	gap:14px;
}
.brand {
	display:flex;
	align-items:baseline;
	gap:10px;
	white-space:nowrap;
}
.brand b {
	font-family:var(--serif);
	letter-spacing:.06em;
	font-weight:700
}
.brand span {
	color:var(--muted);
	font-size:13px
}
.links {
	display:flex;
	gap:14px;
	flex-wrap:wrap;
	justify-content:flex-end
}
.links a {
	font-size:13px;
	color:var(--muted);
	padding:8px 10px;
	border-radius:999px;
	border:1px solid transparent;
}
.links a:hover {
	color:var(--text);
	border-color:var(--line);
	background:rgba(255, 255, 255, .04)
}
.hero {
	display:grid;
grid-template-columns: 1.1fr .9fr;
	gap:22px;
	align-items:stretch;
	padding:34px 0 18px;
}
@media (max-width: 920px) {
.hero {
grid-template-columns:1fr;
}
.links {
display:none
}
}
.card {
	background: var(--panel);
	border:1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.heroText {
	padding:28px
}
.kicker {
	color:var(--accent);
	letter-spacing:.18em;
	font-size:12px;
	text-transform:uppercase
}
h1 {
	font-family: var(--serif);
	font-size: clamp(34px, 4.2vw, 56px);
	margin: 10px 0 10px;
	letter-spacing:.04em;
}
.sub {
	color: var(--muted);
	font-size: 15px;
	max-width: 60ch;
	margin: 0 0 18px;
}
.pillRow {
	display:flex;
	gap:10px;
	flex-wrap:wrap;
	margin:18px 0 0
}
.pill {
	padding:10px 12px;
	border-radius:999px;
	border:1px solid var(--line);
	background: rgba(255, 255, 255, .03);
	font-size:13px;
	color: var(--muted);
}
.ctaRow {
	display:flex;
	gap:12px;
	flex-wrap:wrap;
	margin-top:22px
}
.btn {
	display:inline-flex;
	align-items:center;
	gap:10px;
	padding:12px 14px;
	border-radius: 14px;
	border:1px solid var(--line);
	background: rgba(255, 255, 255, .05);
	color: var(--text);
	font-weight:600;
	font-size:14px;
}
.btn.primary {
	border-color: rgba(217, 198, 170, .55);
	background: linear-gradient(180deg, rgba(217, 198, 170, .22), rgba(217, 198, 170, .08));
}
.btn:hover {
	transform: translateY(-1px)
}
.btn:active {
	transform: translateY(0)
}
.heroMedia {
	overflow:hidden;
	position:relative
}
.heroMedia img {
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
	filter: contrast(1.02) saturate(.95);
	transform: scale(1.02);
}
.badge {
	position:absolute;
	left:16px;
	bottom:16px;
	padding:10px 12px;
	border-radius: 14px;
	background: rgba(10, 10, 10, .55);
	border:1px solid var(--line);
	backdrop-filter: blur(8px);
	max-width: 90%;
}
.badge b {
	font-family:var(--serif);
	letter-spacing:.06em
}
.badge div {
	color:var(--muted);
	font-size:12px;
	margin-top:2px
}
section {
	margin-top:34px
}
.sectionHead {
	display:flex;
	align-items:flex-end;
	justify-content:space-between;
	gap:14px;
	margin-bottom:14px
}
h2 {
	font-family: var(--serif);
	font-size: 28px;
	margin:0;
	letter-spacing:.05em;
}
.hint {
	color:var(--muted);
	font-size:13px
}
.grid2 {
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:18px
}
@media (max-width: 920px) {
.grid2 {
grid-template-columns:1fr;
}
}
.pad {
	padding:22px
}
.list {
	margin:0;
	padding-left:18px;
	color:var(--muted)
}
.list li {
	margin:8px 0
}
.kv {
	display:grid;
	grid-template-columns: 120px 1fr;
	gap:8px 14px;
	margin-top:14px;
	color:var(--muted);
	font-size:14px
}
.kv b {
	color:var(--text);
	font-weight:600
}
.skills {
	display:grid;
grid-template-columns: 1.2fr .8fr;
	gap:18px
}
@media (max-width: 920px) {
.skills {
grid-template-columns:1fr;
}
}
.skillCols {
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:14px
}
@media (max-width: 560px) {
.skillCols {
grid-template-columns:1fr;
}
}
.tile {
	padding:14px 14px;
	border-radius: 16px;
	border:1px solid var(--line);
	background: rgba(255, 255, 255, .03);
}
.tile h3 {
	margin:0 0 8px;
	font-size:14px;
	color:var(--text);
	letter-spacing:.04em
}
.tile p {
	margin:0;
	font-size:13px;
	color:var(--muted)
}
.mediaCard img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: calc(var(--radius) - 2px);
    object-fit: cover;
}
.caption {
	padding:12px 14px;
	border-top:1px solid var(--line);
	color:var(--muted);
	font-size:13px
}
.caseGrid {
	display:grid;
	grid-template-columns: 1fr;
	gap:18px
}
.split {
	display:grid;
	grid-template-columns: 1fr 1fr;
	gap:18px;
	align-items:stretch;
}
@media (max-width: 920px) {
.split {
grid-template-columns:1fr;
}
}
.tag {
	display:inline-flex;
	align-items:center;
	padding:7px 10px;
	border-radius:999px;
	border:1px solid rgba(217, 198, 170, .35);
	color: var(--accent);
	font-size:12px;
	letter-spacing:.12em;
	text-transform:uppercase;
}
.mini {
	font-size:13px;
	color:var(--muted)
}
.divider {
	height:1px;
	background:var(--line);
	margin:14px 0
}
.contactGrid {
	display:grid;
grid-template-columns: 1.2fr .8fr;
	gap:18px
}
@media (max-width: 920px) {
.contactGrid {
grid-template-columns:1fr;
}
}
footer {
	margin-top:40px;
	padding-top:18px;
	border-top:1px solid var(--line);
	color:var(--muted);
	font-size:13px
}
.mono {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}






















